/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-black: #000000;
    --color-charcoal: #1a1a1a;
    --color-dark-gray: #2a2a2a;
    --color-gold: #d4af37;
    --color-gold-light: #f4d03f;
    --color-gold-dark: #b8941e;
    --color-red: #e63946;
    --color-red-glow: #ff4757;
    --color-smoke: rgba(255, 255, 255, 0.05);
    --color-smoke-heavy: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #b8941e 100%);
    --gradient-red: linear-gradient(135deg, #ff4757 0%, #e63946 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-family: 'Heebo', sans-serif;
}

body {
    font-family: var(--font-family);
    background: var(--color-black);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== X-RAY SCANNER ==================== */
.xray-scanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.3) 45%,
            rgba(212, 175, 55, 0.8) 50%,
            rgba(212, 175, 55, 0.3) 55%,
            transparent 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.4);
    z-index: 9999;
    animation: xrayScan 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes xrayScan {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateY(100vh);
        opacity: 1;
    }

    90% {
        opacity: 1;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%),
        url('images/30ac7675-6d42-482f-929d-f94bbff870b0.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.door-light {
    position: absolute;
    top: 0;
    right: 10%;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 200, 87, 0.15) 40%,
            rgba(255, 200, 87, 0.3) 50%,
            rgba(255, 200, 87, 0.15) 60%,
            transparent 100%);
    filter: blur(40px);
    animation: doorPulse 4s ease-in-out infinite;
    transform-origin: right center;
}

@keyframes doorPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

.smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    animation: smokeFloat 20s ease-in-out infinite;
}

@keyframes smokeFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--spacing-md);
    max-width: 1200px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: fadeInUp 1s ease-out;
}

.gold-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    position: relative;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button.glow-red {
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.6),
        0 10px 40px rgba(230, 57, 70, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(230, 57, 70, 0.8),
        0 15px 60px rgba(230, 57, 70, 0.5);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 3px solid var(--color-gold);
    border-bottom: 3px solid var(--color-gold);
    transform: rotate(-45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==================== STONE TABLETS SECTION ==================== */
.tablets-section {
    position: relative;
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.tablets-container {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.tablet {
    position: relative;
    width: 360px;
    flex: 0 0 360px;
    perspective: 1000px;
    animation: floatTablet 6s ease-in-out infinite;
}

.tablet:nth-child(1) {
    animation-delay: 0s;
}

.tablet:nth-child(2) {
    animation-delay: 0.5s;
}

.tablet:nth-child(3) {
    animation-delay: 1s;
}

@keyframes floatTablet {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.tablet-content {
    position: relative;
    height: 100%;
    min-height: 180px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Realistic stone base */
    background:
        linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 30%, #4f4f4f 50%, #5a5a5a 70%, #4a4a4a 100%);

    border-radius: 8px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.7),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        inset 2px 0 4px rgba(0, 0, 0, 0.2),
        inset -2px 0 4px rgba(0, 0, 0, 0.2);

    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;

    /* Enhanced stone texture with noise */
    background-image:
        /* Noise texture */
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0, 0, 0, 0.03) 1px, rgba(0, 0, 0, 0.03) 2px),
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(0, 0, 0, 0.03) 1px, rgba(0, 0, 0, 0.03) 2px),
        /* Diagonal grain */
        repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(0, 0, 0, 0.02) 3px, rgba(0, 0, 0, 0.02) 6px),
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255, 255, 255, 0.01) 3px, rgba(255, 255, 255, 0.01) 6px),
        /* Base gradient */
        linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 30%, #4f4f4f 50%, #5a5a5a 70%, #4a4a4a 100%);
}

/* Realistic stone texture overlay with spots and variations */
.tablet-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Random stone spots */
        radial-gradient(circle at 15% 20%, rgba(0, 0, 0, 0.08) 0%, transparent 3%),
        radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.04) 0%, transparent 4%),
        radial-gradient(circle at 30% 60%, rgba(0, 0, 0, 0.06) 0%, transparent 2%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 3%),
        radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.04) 0%, transparent 5%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 4%),
        radial-gradient(circle at 90% 85%, rgba(0, 0, 0, 0.05) 0%, transparent 3%),
        /* Light variations */
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 0, 0, 0.06) 0%, transparent 40%);
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Additional depth layer */
.tablet-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.tablet:hover .tablet-content {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4),
        inset 2px 0 4px rgba(0, 0, 0, 0.25),
        inset -2px 0 4px rgba(0, 0, 0, 0.25);
}

.tablet-icon {
    display: none;
}

.tablet-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ffffff;
    text-align: center;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ==================== WALL-PIERCING MODEL SECTION ==================== */
.x-ray-section {
    position: relative;
    min-height: 100vh;
    padding: var(--spacing-xl) var(--spacing-md);
    background: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.x-ray-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    background-image: url('images/e151cb21-abfc-4e0d-99c6-ac695710548a.jfif');
}

.x-ray-bg-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.x-ray-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.x-ray-visual-container {
    position: relative;
    margin: var(--spacing-lg) auto;
    width: 100%;
    max-width: 900px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tablet Mockup Styles */
.tablet-mockup {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding: 20px;
    background: #222;
    border-radius: 40px;
    box-shadow:
        0 0 0 4px #444,
        0 30px 60px rgba(0, 0, 0, 0.9),
        0 0 100px rgba(0, 150, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    animation: floatingTablet 6s ease-in-out infinite;
}

@keyframes floatingTablet {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.tablet-bezel {
    background: #000;
    border-radius: 25px;
    padding: 15px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.tablet-screen {
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0c 100%);
    border-radius: 10px;
    height: 450px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tablet-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tablet-title {
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.tablet-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
    align-items: center;
}

.tablet-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tablet-icon-box:hover {
    transform: scale(1.1);
}

.icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.red-glow {
    border-color: rgba(230, 57, 70, 0.4);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.2);
}

.blue-glow {
    border-color: rgba(0, 150, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.2);
}

.gold-glow {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.tablet-icon-box:hover .icon-circle {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 25px currentColor;
}

.icon-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

.tablet-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tablet-scan-btn {
    background: linear-gradient(135deg, #0066cc 0%, #003366 100%);
    border: none;
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
}

.tablet-scan-btn:hover {
    box-shadow: 0 0 30px rgba(0, 102, 204, 0.7);
    transform: scale(1.05);
}

/* Red Animated Reticles */
.reticle {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 10;
    pointer-events: none;
}

.reticle-1 {
    top: 15%;
    left: 20%;
    animation: reticleMove1 10s ease-in-out infinite;
}

.reticle-2 {
    bottom: 20%;
    right: 15%;
    animation: reticleMove2 12s ease-in-out infinite;
}

@keyframes reticleMove1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 30px);
    }
}

@keyframes reticleMove2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, -60px);
    }
}

.reticle-circle {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(230, 57, 70, 0.6);
    border-radius: 50%;
    position: relative;
    animation: reticlePulse 2s ease-in-out infinite;
}

.reticle-cross {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
}

.reticle-cross::before,
.reticle-cross::after {
    content: '';
    position: absolute;
    background: rgba(230, 57, 70, 0.8);
}

.reticle-cross::before {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}

.reticle-cross::after {
    width: 2px;
    height: 100%;
    left: 9px;
    top: 0;
}

@keyframes reticlePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.floating-hand {
    position: absolute;
    font-size: 3rem;
    z-index: 15;
    pointer-events: none;
    animation: handHint 4s ease-in-out infinite;
    top: 25%;
    right: 20%;
}

@keyframes handHint {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translate(-20px, 40px) scale(1.1);
        opacity: 0.8;
    }
}

.x-ray-bottom-text {
    margin-top: var(--spacing-lg);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== SOLUTION SECTION ==================== */
.solution-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: radial-gradient(ellipse at center, #0f0f0f 0%, #000000 100%);
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
}

.workshop-description {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.section-bottom-line {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card {
    position: relative;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(212, 175, 55, 0.05) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-gold);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ==================== URGENCY SECTION ==================== */
.urgency-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.urgency-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hourglass-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hourglass {
    position: relative;
    width: 300px;
    height: 400px;
    background-image: url('images/d3a59db7-10fc-452e-b541-8aa76f8c91d0.jfif');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 40px rgba(230, 57, 70, 0.6));
}

.hourglass-top,
.hourglass-bottom {
    display: none;
    /* Hidden - using real image instead */
}

.sand {
    display: none;
    /* Hidden - using real image instead */
}

.flame-effect {
    display: none;
    /* Hidden - using real image instead */
}

.urgency-content {
    text-align: right;
}

.urgency-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-red);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.urgency-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: white;
}

.number-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3em;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.urgency-subtitle {
    font-size: 1.5rem;
    color: var(--color-red-glow);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.testimonial {
    position: relative;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    margin-top: var(--spacing-lg);
}

.quote-mark {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: var(--spacing-md);
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 600;
}

/* ==================== QUIZ SECTION ==================== */
.quiz-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: radial-gradient(ellipse at center, #1a0000 0%, #000000 100%);
    position: relative;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(230, 57, 70, 0.3);
}

.quiz-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.fire-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.fire-icon {
    font-size: 2rem;
    animation: fireFlicker 1s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    100% {
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

.urgency-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-red-glow);
}

.quiz-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
}

.quiz-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.event-detail {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-gold);
    font-size: 1.1rem;
}

.event-detail .icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1rem 1.5rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    min-width: 100px;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--spacing-xs);
}

.countdown-separator {
    font-size: 3rem;
    color: var(--color-gold);
    font-weight: 700;
}

.spots-remaining {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.spots-number {
    color: var(--color-red-glow);
    font-size: 1.5em;
    font-weight: 900;
}

.fire-emoji {
    display: inline-block;
    animation: fireFlicker 1s ease-in-out infinite alternate;
}

.quiz-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-input {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: white;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-button {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.6),
        0 10px 40px rgba(230, 57, 70, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(230, 57, 70, 0.8),
        0 15px 60px rgba(230, 57, 70, 0.5);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .urgency-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .urgency-content {
        text-align: center;
    }

    .hourglass {
        transform: scale(0.8);
    }

    .tablets-container {
        flex-direction: column;
    }

    .countdown-value {
        font-size: 2.5rem;
        min-width: 80px;
        padding: 0.8rem 1rem;
    }

    .event-details {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .tablet {
        width: 100%;
    }

    .countdown {
        gap: 0.3rem;
    }

    .countdown-value {
        font-size: 2rem;
        min-width: 60px;
        padding: 0.5rem 0.8rem;
    }

    .countdown-separator {
        font-size: 2rem;
    }
}

/* ==================== QUIZ SCANNING ANIMATION ==================== */
.scan-visual {
    position: relative;
    width: 100%;
    height: 200px;
    background: rgba(0, 10, 30, 0.8);
    border: 2px solid #00f0ff;
    /* Blue Glow */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.scan-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #00f0ff;
    box-shadow: 0 0 15px #00f0ff;
    animation: scanMove 1.5s linear infinite;
    z-index: 2;
}

@keyframes scanMove {
    0% {
        top: 0;
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0.5;
    }
}

.scan-text {
    color: #00f0ff;
    font-family: monospace;
    font-size: 1.2rem;
    z-index: 3;
    animation: textPulse 1s ease-in-out infinite alternate;
}

@keyframes textPulse {
    from {
        opacity: 0.7;
        text-shadow: 0 0 5px #00f0ff;
    }

    to {
        opacity: 1;
        text-shadow: 0 0 15px #00f0ff;
    }
}

/* ==================== QUIZ MAGNET OFFER ==================== */
.magnet-offer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.magnet-offer ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* ==================== QUIZ STEPS VISIBILITY ==================== */
.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.quiz-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== MODAL STYLES ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(10, 10, 20, 0.95);
    margin: auto;
    padding: 2rem;
    border: 1px solid var(--color-gold);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: var(--color-gold);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--color-red-glow);
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.8);
}

.quiz-modal-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.quiz-modal-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.question-header {
    color: var(--color-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.question-body {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.answer-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.answer-option {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.answer-option:hover {
    background: var(--color-gold);
    color: black;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.result-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.result-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: center;
}

.final-cta-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: bold;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(230, 57, 70, 0.6);
}