/* =============================================
   CLASSENT BUNDLE — styles.css (pixel-perfect)
   References: classnew/avoline.co/sp/bundle/
   ============================================= */

:root {
    --red: #E34443;
    --blue: #1968FB;
    --yellow: #EDFF00;
    --green: #A2DC16;
    --green-bright: #00FF16;
    --black: #000000;
    --dark: #171717;
    --off-white: #F5F5F5;
    --border: #C9D5BB;
    --body-text: #1E1E1E;
    --white: #FFFFFF;
    --font-head: 'Fjalla One', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ===================================================
   GLOBAL GOLDEN SPARKLE BACKGROUND
   =================================================== */
body {
    background-color: var(--black);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 10% 20%, rgba(212, 160, 23, 0.4) 100%, transparent),
        radial-gradient(2px 2px at 30% 40%, rgba(212, 160, 23, 0.6) 100%, transparent),
        radial-gradient(1px 1px at 50% 60%, rgba(255, 223, 115, 0.5) 100%, transparent),
        radial-gradient(2.5px 2.5px at 70% 80%, rgba(212, 160, 23, 0.3) 100%, transparent),
        radial-gradient(1.5px 1.5px at 90% 10%, rgba(255, 223, 115, 0.7) 100%, transparent),
        radial-gradient(1px 1px at 15% 85%, rgba(255, 223, 115, 0.4) 100%, transparent),
        radial-gradient(2px 2px at 85% 35%, rgba(212, 160, 23, 0.8) 100%, transparent);
    background-size: 200px 200px;
    animation: goldSparkleDrift 40s linear infinite;
    opacity: 0.6;
}

@keyframes goldSparkleDrift {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-200px) scale(1.1);
        opacity: 0.3;
    }
}

/* Ensure subsequent sections sit above the fixed background */
section,
header,
footer,
nav {
    position: relative;
    z-index: 1;
}

/* ===================================================
   LIQUID GLASS NAVIGATION BAR
   =================================================== */
.liquid-glass-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: min(1400px, calc(100% - 60px));

    /* Glass pill shape */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 -1px 0 rgba(0, 0, 0, 0.2) inset;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 28px;
    gap: 20px;

    /* Subtle animated shimmer on top edge */
    overflow: hidden;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Top glare reflection line */
.liquid-glass-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.55) 40%,
            rgba(255, 255, 255, 0.55) 60%,
            transparent);
    pointer-events: none;
}

/* Bottom inner shadow for depth */
.liquid-glass-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    border-radius: 0 0 100px 100px;
    pointer-events: none;
}

/* Logo */
.liquid-glass-nav .logo {
    font-family: var(--font-head);
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.liquid-glass-nav .logo span {
    color: #0087FF;
}

/* Nav links list */
.liquid-glass-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Individual nav link */
.liquid-glass-nav .nav-links a {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    letter-spacing: 0.4px;
    white-space: nowrap;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

/* Hover pill glow */
.liquid-glass-nav .nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

/* Active page highlight */
.liquid-glass-nav .nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 4px 20px rgba(212, 160, 23, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

/* CTA Get Access button inside nav */
.liquid-glass-nav .nav-cta {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #F0C040 0%, #D4A017 100%);
    box-shadow: 0 4px 18px rgba(212, 160, 23, 0.45);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.liquid-glass-nav .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 160, 23, 0.6);
}

/* Dynamic Pricing Button Extensions */
.btn-starter-glow {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
}

.btn-pro-glow {
    background: linear-gradient(135deg, #F0C040 0%, #D4A017 100%) !important;
    color: #000 !important;
    box-shadow: 0 4px 18px rgba(212, 160, 23, 0.45) !important;
}

/* Mobile hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu open state */
.liquid-glass-nav.nav-open .nav-links {
    display: flex;
}

.liquid-glass-nav.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.liquid-glass-nav.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
}

.liquid-glass-nav.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive: collapse nav on tablets & phones */
@media (max-width: 768px) {
    .liquid-glass-nav {
        border-radius: 16px;
        top: 10px;
        padding: 10px 16px;
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
    }

    /* Show hamburger */
    .nav-hamburger {
        display: flex;
        margin-left: auto;
    }

    /* Hide CTA on very small screens to save space */
    .liquid-glass-nav .nav-cta {
        display: none;
    }

    /* Collapsed nav links — full width dropdown */
    .liquid-glass-nav .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 4px;
        padding: 10px 0 6px;
        order: 10;
    }

    .liquid-glass-nav .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        border-radius: 10px;
    }

    /* When open: show nav-links and CTA */
    .liquid-glass-nav.nav-open .nav-cta {
        display: block;
        width: 100%;
        text-align: center;
        order: 11;
        margin-top: 6px;
        margin-bottom: 4px;
        border-radius: 10px;
    }
}

/* Body needs top padding so content isn't hidden behind fixed nav */
body {
    padding-top: 0;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: var(--font-head);
    text-transform: uppercase;
    border-radius: 4px;
    padding: 22px 60px;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
    text-align: center;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Wide variant — fills most of banner/container */
.btn-wide {
    display: block;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-blue {
    background-color: var(--blue);
    color: var(--white);
}

.btn-blue:hover {
    background-color: #0c52cc;
}

.btn-yellow {
    background-color: var(--yellow);
    color: var(--black);
}

.btn-yellow:hover {
    background-color: #13DE04;
    color: var(--white);
}

.btn-red {
    background-color: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background-color: #c93534;
}

/* Hero Custom Buttons */
.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 50px;
}

.btn-starter,
.btn-pro-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    min-height: 64px;
    min-width: 280px;
    max-width: 100%;
    /* Prevent overflow on very small screens */
}

.btn-starter {
    background: #111;
    color: #fff;
    border: 2px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-starter:hover {
    background: #222;
    border-color: #555;
    transform: translateY(-3px);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 4px 15px rgba(253, 185, 49, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.4);
    }

    100% {
        box-shadow: 0 4px 15px rgba(253, 185, 49, 0.4);
    }
}

.btn-pro-glow {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    color: #000;
    font-weight: 800;
    border: 2px solid #FFD700;
    box-shadow: 0 10px 40px rgba(253, 185, 49, 0.4);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: pulseGlow 2.5s infinite;
}

.btn-pro-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(253, 185, 49, 0.6);
    animation: none;
}

/* ===================================================
   HERO
   =================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('./assets/uploads/2021/12/joshua-reddekopp-SyYmXSDnJ54-unsplash-2-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 20px 40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    margin: 0 auto;
    max-width: 172px;
    height: auto;
}

.hero-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.star-rating {
    color: #FAC632;
    font-size: 18px;
    display: flex;
    gap: 4px;
}

.rating-text {
    font-size: 18px;
    color: var(--white);
}

.hero-subhead {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

/* HEADLINE — matches classnew: massive, fills width */
.hero-headline {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2em;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Golden shimmer text effect for headline */
.gold-shimmer-text {
    background: linear-gradient(90deg, #D4A017 0%, #FFF2B2 30%, #FFD700 50%, #FFF2B2 70%, #D4A017 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
    display: inline-block;
}

@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Pricing Pill */
.pricing-pill-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: -10px;
    /* Reduced negative margin to prevent overlap */
    position: relative;
    z-index: 2;
    padding: 0 15px;
    /* Add padding to prevent edge touching on small mobile */
}

.pricing-pill {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    overflow: hidden;
    /* Ensure contents don't break pill shape on tiny devices */
}

.pill-starter {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 20px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pill-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
    flex-shrink: 0;
}

.pill-pro {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15) 0%, rgba(240, 192, 64, 0.25) 100%);
    color: #FFD700;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 40px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero-inventory {
    margin-top: 10px;
}

.hero-inventory img {
    margin: 0 auto 10px;
    max-width: 614px;
    width: 100%;
}

.inventory-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================================
   BLACK LOGO BAR
   =================================================== */
.logo-bar {
    background: var(--black);
    padding: 35px 0;
    text-align: center;
}

.logo-strip-img {
    max-width: 100%;
    margin: 0 auto;
}

/* ===================================================
   PREMIUM DATABASE SECTION
   =================================================== */
.db-section {
    background: #0a0602;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(180, 120, 0, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(180, 120, 0, 0.08) 0%, transparent 50%);
    padding: 60px 0;
    overflow: hidden;
}

.db-badge-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.db-badge {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid #c9920a;
    border-radius: 100px;
    color: #D4A017;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(212, 160, 23, 0.07);
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.15);
}

.db-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left image col */
.db-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.db-img {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(200, 140, 0, 0.25));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.db-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 25px 60px rgba(200, 140, 0, 0.4));
}

/* Right content col */
.db-content-col {
    color: #fff;
}

.db-heading {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #D4A017;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(212, 160, 23, 0.25);
}

.db-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 28px;
}

.db-checklist {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.db-checklist li {
    font-size: 1rem;
    color: #f0f0f0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.db-check {
    color: #D4A017;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.db-cta {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #D4A017 0%, #F0C040 50%, #C48A00 100%);
    color: #000;
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
    transition: all 0.3s ease;
}

.db-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(212, 160, 23, 0.6);
    background: linear-gradient(135deg, #F0C040 0%, #FFD700 50%, #D4A017 100%);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .db-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .db-img {
        max-width: 100%;
    }

    .db-heading {
        font-size: 28px;
    }

    .db-section {
        padding: 60px 0;
    }
}

/* ===================================================
   AI REELS SECTION
   =================================================== */
.ar-section {
    background: #080808;
    background-image:
        radial-gradient(ellipse at 80% 50%, rgba(180, 120, 0, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 30%, rgba(180, 120, 0, 0.07) 0%, transparent 50%);
    padding: 60px 0;
    overflow: hidden;
}

.ar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left content col */
.ar-content-col {
    color: #fff;
}

.ar-heading {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #D4A017;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(212, 160, 23, 0.25);
}

.ar-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin-bottom: 28px;
}

.ar-checklist {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ar-checklist li {
    font-size: 1rem;
    color: #f0f0f0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ar-check {
    color: #D4A017;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ar-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #D4A017 0%, #F0C040 50%, #C48A00 100%);
    color: #000;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
    transition: all 0.3s ease;
}

.ar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(212, 160, 23, 0.6);
    background: linear-gradient(135deg, #F0C040 0%, #FFD700 50%, #D4A017 100%);
}

/* Right image col */
.ar-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar-img {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(200, 140, 0, 0.25));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.ar-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 25px 60px rgba(200, 140, 0, 0.4));
}

/* Mobile */
@media (max-width: 768px) {
    .ar-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* On mobile: image moves to top, text below */
    .ar-image-col {
        order: -1;
    }

    .ar-img {
        max-width: 100%;
    }

    .ar-heading {
        font-size: 28px;
    }

    .ar-section {
        padding: 60px 0;
    }
}

/* ===================================================
   UNIFIED MODULE IMAGE WRAPPER (Modules 1–4)
   =================================================== */
.module-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 480px;
    transition: transform 0.45s ease;
    border-radius: 18px;
}

.module-img-wrapper:hover {
    transform: translateY(-10px);
}

/* Gold glow backdrop */
.module-img-glow {
    position: absolute;
    inset: -8px;
    background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.45) 0%, transparent 70%);
    filter: blur(28px);
    border-radius: 22px;
    z-index: 0;
    pointer-events: none;
}

/* The actual image */
.ar-img.module-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(212, 160, 23, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 160, 23, 0.12);
    display: block;
}

/* Module number pill (replaces inline style) */
.module-pill {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(212, 160, 23, 0.5);
    border-radius: 50px;
    color: #D4A017;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    background: rgba(212, 160, 23, 0.05);
}

/* CTA wrapper – aligns button left on desktop, center on mobile */
.module-cta-wrap {
    margin-top: 8px;
}

/* Popular badge above the CTA button */
.module-popular-badge {
    display: inline-block;
    background: #EAB308;
    color: #000;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 9999px;
    margin-bottom: 14px;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

/* Starter plan note below CTA */
.module-starter-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 12px;
}

/* ar-cta consistent border-radius (remove any overriding inline style) */
.ar-cta {
    border-radius: 12px !important;
}

/* Mobile: center the CTA button */
@media (max-width: 768px) {
    .module-cta-wrap {
        text-align: center;
    }

    .ar-img.module-img {
        height: 220px;
        max-width: 100%;
    }

    .module-img-wrapper {
        max-width: 100%;
    }
}

/* ===================================================
   BLUE OFFER SECTION
   =================================================== */
.offer-section {
    position: relative;
    background: var(--blue);
    overflow: hidden;
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: var(--blue);
    z-index: 0;
}

.offer-inner {
    position: relative;
    z-index: 1;
    padding: 54px 20px 36px;
}

.offer-label {
    font-size: 14px;
    font-family: var(--font-head);
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.offer-headline {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1em;
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.offer-intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.5;
}

.offer-mockup {
    width: 100%;
    border-radius: 6px;
}

.offer-checklist {
    list-style: none;
}

.offer-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.4;
}

.offer-checklist li i {
    color: var(--green-bright);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-cta-wrap {
    text-align: center;
    padding: 40px 0 10px;
}

/* Price strip that shows normal vs offer price */
.offer-price-strip {
    margin: 0 auto 25px;
    line-height: 1.2;
}

.offer-normal-price {
    font-family: var(--font-head);
    font-size: 28px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}

.offer-sale-price {
    font-family: var(--font-head);
    font-size: 36px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.price-strikethru {
    text-decoration: line-through;
    opacity: 0.75;
}

.price-highlight {
    color: var(--yellow);
}

.offer-cta-headline {
    font-family: var(--font-head);
    font-size: 36px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1em;
}

/* Countdown */
.countdown-wrap {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 25px 0 15px;
}

.countdown-item {
    text-align: center;
}

.countdown-digits {
    font-family: var(--font-head);
    font-size: 50px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.countdown-label {
    font-family: var(--font-head);
    font-size: 22px;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 1px;
    margin-top: 4px;
}

.offer-urgency {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 1.5px;
    margin-top: 15px;
}

/* ===================================================
   FEATURES SECTION (White background, alternating blocks)
   Classnew measurements: image 375x500ish, title ~30px red Fjalla
   =================================================== */
.features-section {
    background: var(--white);
    color: var(--body-text);
    padding: 60px 0 20px;
}

.features-heading {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    line-height: 1.1em;
    margin-bottom: 15px;
    padding: 0 20px;
}

.features-subtext {
    font-size: 17px;
    color: var(--body-text);
    text-align: center;
    max-width: 880px;
    margin: 0 auto 30px;
    line-height: 1.5;
    padding: 0 20px;
}

.feature-block {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    margin-bottom: 36px;
    box-shadow: none;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.feature-block:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.10);
}

.feature-block--reverse {
    flex-direction: row-reverse;
}

/* Image column — fixed width, fills height */
.feature-img-col {
    flex: 0 0 38%;
    max-width: 38%;
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.feature-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.feature-block:hover .feature-img-col img {
    transform: scale(1.03);
}

/* Content column */
.feature-content-col {
    flex: 1;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

/* Heading: bold red uppercase Fjalla — matches screenshot exactly */
.feature-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #E34443;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.feature-content-col p {
    font-size: 15.5px;
    color: #333;
    line-height: 1.65;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.feature-content-col p:last-of-type {
    margin-bottom: 0;
}

/* VALUE line — separated by a top rule, bold black, matches screenshot */
.feature-value {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #ddd;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* ===================================================
   BUNDLE CARDS — 3 col grid
   Classnew: square images 500x500, title red Fjalla, left-aligned
/* ===================================================
   AI INCOME OS ENGINES (Replaces Bundle Details)
   =================================================== */
.os-engines-section {
    padding: 80px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.os-engines-heading {
    text-align: center;
    font-family: var(--font-head);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.os-engines-subtext {
    text-align: center;
    color: #FFDF73;
    /* Subtle gold accent */
    font-size: 1.15rem;
    margin-bottom: 60px;
    font-weight: 500;
}

.os-engines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Engine Card Styling */
.os-engine-card {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle glow effect behind cards */
.os-engine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 160, 23, 0.05), transparent 70%);
    pointer-events: none;
}

.os-engine-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.08);
    /* Gold soft glow */
}

.engine-title {
    font-family: var(--font-head);
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    text-transform: uppercase;
}

.engine-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
    /* Pushes outcome to the bottom evenly */
}

.engine-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #cdcdcd;
    font-size: 1.05rem;
    line-height: 1.5;
}

.engine-list i {
    color: #D4A017;
    /* Gold checkmarks */
    font-size: 1rem;
    margin-top: 4px;
}

.engine-outcome {
    background: rgba(212, 160, 23, 0.08);
    border-left: 3px solid #D4A017;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

/* Mid CTA */
.mid-cta-wrap {
    text-align: center;
    padding: 40px 20px;
    background: #000;
}

/* ===================================================
   BONUSES SECTION
   Classnew: black bg, "THAT'S NOT ALL! GET FREE BONUSES!" heading
   =================================================== */
.bonuses-section {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 70px;
    text-align: center;
}

.bonuses-heading {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 45px;
    line-height: 1.1em;
    color: var(--white);
}

.accent-text {
    color: var(--red);
}

.bonuses-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.bonus-card {
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 4px;
    padding: 35px 30px;
    text-align: left;
}

.bonus-card--featured {
    border-color: var(--blue);
    box-shadow: 0 0 20px rgba(25, 104, 251, 0.2);
}

.bonus-card-plan-name {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.bonus-card-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.1em;
}

.bonus-card-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.bonus-checklist {
    list-style: none;
    margin-bottom: 20px;
}

.bonus-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.bonus-checklist li i {
    color: var(--green);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.bonus-card-value {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--yellow);
    text-transform: uppercase;
}

/* ===================================================
   PRICING — stacked layout matching original
   =================================================== */
/* ===================================================
   PRICING SECTION - CINEMATIC PREMIUM UPGRADE
   =================================================== */
.cinematic-bg {
    background: radial-gradient(circle at center, #0a0802 0%, #030303 100%);
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

.pricing-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(rgba(212, 160, 23, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: 0;
}

.pricing-container-z {
    position: relative;
    z-index: 2;
}

.pricing-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* LEFT SIDE: PRODUCT MOCKUP */
.pricing-product-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-badge-floating {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 160, 23, 0.1);
    animation: floatyBadge 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fire-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 100, 0, 0.8));
}

@keyframes floatyBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pricing-mockup-stage {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.mockup-backglow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, transparent 60%);
    z-index: 1;
    filter: blur(30px);
}

.pricing-mockup-hero {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8));
    transition: transform 0.5s ease;
}

.pricing-mockup-hero:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-lifetime-text {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* RIGHT SIDE: PREMIUM GLASS CARD */
.pricing-glass-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(5, 5, 5, 0.95));
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 25px;
    padding: 50px 45px;
    backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(212, 160, 23, 0.05);
    text-align: center;
    overflow: hidden;
}

.glass-founder-label {
    display: inline-block;
    background: linear-gradient(90deg, #D4A017, #F0C040);
    color: #000;
    font-family: var(--font-head);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
}

.glass-pricing-block {
    margin-bottom: 35px;
}

.glass-old-price {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    margin-bottom: 5px;
}

.glass-old-price .strike {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.3);
}

.glass-new-price {
    font-family: var(--font-head);
    font-size: 72px;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(212, 160, 23, 0.4);
}

.glass-new-price .only-text {
    font-size: 24px;
    color: #D4A017;
    vertical-align: super;
}

.glass-savings {
    color: #4ade80;
    /* Soft success green */
    font-size: 16px;
    font-weight: 600;
    background: rgba(74, 222, 128, 0.1);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 30px;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

/* TIMER UPGRADE */
.glass-timer-block {
    margin-bottom: 35px;
}

.timer-urgency-text {
    color: #D4A017;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.glass-timer-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.timer-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: 12px;
    padding: 15px;
    min-width: 80px;
    box-shadow: inset 0 5px 20px rgba(212, 160, 23, 0.1);
}

.timer-number {
    font-family: var(--font-head);
    font-size: 36px;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
}

.timer-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    letter-spacing: 1px;
}

.timer-colon {
    font-family: var(--font-head);
    font-size: 30px;
    color: rgba(212, 160, 23, 0.5);
    margin-top: -15px;
}

.pulse-slow {
    animation: pulseBorder 2s infinite alternate;
}

@keyframes pulseBorder {
    0% {
        border-color: rgba(212, 160, 23, 0.2);
        box-shadow: inset 0 5px 20px rgba(212, 160, 23, 0.05);
    }

    100% {
        border-color: rgba(212, 160, 23, 0.6);
        box-shadow: inset 0 5px 20px rgba(212, 160, 23, 0.2);
    }
}

/* CTA UPGRADE */
.glass-cta-block {
    position: relative;
    margin-bottom: 30px;
}

.cta-glow-highlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #D4A017;
    filter: blur(40px);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.btn-cinematic-gold {
    position: relative;
    z-index: 1;
    display: flex;
    /* use flex for inline centering */
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    /* so it doesn't stretch infinitely on wide screens */
    margin: 0 auto;
    background: linear-gradient(135deg, #F0C040 0%, #D4A017 50%, #C48A00 100%);
    color: #000;
    padding: 20px 30px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 18px;
    /* Slightly refined */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(212, 160, 23, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    text-align: center;
    white-space: normal;
    /* allow text wrapping if too long on very small screens, though we'll try to fit */
}

.btn-cinematic-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(212, 160, 23, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #F0C040 50%, #D4A017 100%);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shineSweep 4s infinite 2s;
}

@keyframes shineSweep {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 200%;
    }
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.trust-indicators i {
    color: #D4A017;
}

/* BOTTOM PROOF */
.glass-divider-animated {
    height: 1px;
    width: 80%;
    margin: 0 auto 25px;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.5), transparent);
    position: relative;
    overflow: hidden;
}

.glass-divider-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: traceLine 3s infinite linear;
}

@keyframes traceLine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.social-proof-bottom {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 900px) {
    .pricing-split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pricing-glass-card {
        padding: 40px 25px;
    }

    .glass-new-price {
        font-size: 56px;
    }

    .glass-timer-boxes {
        gap: 5px;
    }

    .timer-box {
        min-width: 70px;
        padding: 10px;
    }

    .timer-number {
        font-size: 28px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===================================================
   ULTIMATE SECTION
   =================================================== */
.ultimate-section {
    background: var(--off-white);
    color: var(--body-text);
    padding: 60px 0 60px;
}

.ultimate-heading {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1em;
}

.ultimate-desc {
    font-size: 17px;
    text-align: center;
    max-width: 880px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.ultimate-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.ultimate-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.4;
}

.ultimate-check-item i {
    color: var(--green);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ultimate-cta {
    text-align: center;
}

/* ===================================================
   FAQ — Premium Glassmorphism Design
   =================================================== */
.faq-section {
    background: radial-gradient(ellipse at top, #0d0d1a 0%, #000000 60%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

/* Subtle glow in background */
.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.faq-content-col {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Top badge label */
.faq-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.faq-main-heading {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1em;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 1px;
}

/* Each FAQ Card */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.25);
    background: rgba(255, 215, 0, 0.03);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--white);
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.4;
    transition: color 0.25s ease;
    gap: 12px;
}

.faq-question:hover {
    color: #FFD700;
}

.faq-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    line-height: 1;
    font-style: normal;
}

.faq-question.open .faq-icon {
    transform: rotate(45deg);
    color: #000;
    background: #FFD700;
    border-color: #FFD700;
}

.faq-answer {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    padding: 0 24px 22px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer strong {
    color: #FFD700;
    font-weight: 600;
}

.faq-answer em {
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

/* hide skeptical block — merged into single FAQ section */
.skeptical-block {
    display: none;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 16px;
        /* Small horizontal padding, full width content */
    }

    .faq-main-heading {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 16px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 0 16px 18px 16px;
    }

    .faq-badge {
        font-size: 11px;
    }
}

/* ===================================================
   FINAL CTA BAR
   =================================================== */
.final-cta-bar {
    background: var(--black);
    padding: 60px 20px;
    text-align: center;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
    background: #111111;
    color: rgba(255, 255, 255, 0.5);
    padding: 35px 20px 45px;
    text-align: center;
}

.footer-inner {
    max-width: 950px;
    margin: 0 auto;
}

.footer-logo {
    max-width: 148px;
    margin: 0 auto 20px;
}

.footer-red-notice {
    color: #E90000;
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-white-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.35);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1199px) {
    .hero-headline {
        font-size: 60px;
    }

    .offer-headline {
        font-size: 40px;
    }

    .features-heading {
        font-size: 32px;
    }

    .os-engines-grid {
        grid-template-columns: 1fr;
    }

    .ultimate-heading {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-block,
    .feature-block--reverse {
        flex-direction: column;
    }

    .feature-img-col,
    .feature-content-col {
        max-width: 100%;
        flex: none;
        width: 100%;
    }

    .feature-content-col {
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .feature-block--reverse .feature-content-col {
        border-right: none;
        border-top: 1px solid var(--border);
    }

    .bonuses-two-col {
        grid-template-columns: 1fr;
    }

    .pricing-row {
        grid-template-columns: 1fr;
    }

    .pricing-col--left,
    .pricing-col--mid {
        border-right: none;
        border-bottom: 1px solid #BABABA;
    }

    .ultimate-checklist-grid {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .hero-headline {
        font-size: 38px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .btn {
        font-size: 18px;
        padding: 16px 20px;
        width: 100%;
    }

    .hero-cta-row {
        gap: 15px;
        margin-top: 30px;
    }

    .btn-starter,
    .btn-pro-glow {
        width: 100%;
        /* Force full width on mobile */
        font-size: 16px;
        padding: 16px 20px;
        /* Reduced padding to fit properly */
        white-space: normal;
        /* allow wrap if really tight */
    }

    .btn-cinematic-gold {
        font-size: 15px;
        /* smaller for mobile */
        padding: 18px 20px;
    }

    .offer-headline {
        font-size: 28px;
    }

    .features-heading {
        font-size: 26px;
    }

    .os-engines-section {
        padding: 60px 0;
    }

    .os-engines-heading {
        font-size: 2.2rem;
    }

    .os-engines-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px 16px 40px;
    }

    .os-engine-card {
        padding: 25px;
    }

    .engine-title {
        font-size: 1.4rem;
    }

    .engine-list li {
        font-size: 0.95rem;
    }

    .bonuses-heading {
        font-size: 28px;
    }

    .price-amount {
        font-size: 44px;
    }

    .ultimate-heading {
        font-size: 30px;
    }

    .faq-main-heading {
        font-size: 26px;
    }

    .countdown-digits {
        font-size: 36px;
    }

    .countdown-label {
        font-size: 16px;
    }
}

/* ===================================================
   BRAND LOGO (Winners Club)
   =================================================== */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transform: scale(0.9);
    transform-origin: left center;
}

.brand-icon {
    position: relative;
    font-size: 42px;
    background: linear-gradient(135deg, #F9D423 0%, #FF4E50 100%);
    background: linear-gradient(to bottom, #FFDF73 0%, #D49A36 50%, #FFDF73 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.brand-icon .star-overlay {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    background: linear-gradient(to right, #FFDF73 0%, #D49A36 50%, #FFDF73 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.brand-subtitle {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.5px;
    background: linear-gradient(to right, #FFDF73 0%, #D49A36 50%, #FFDF73 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 2px;
}

.brand-lines span {
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #D49A36, #FFDF73);
    display: block;
}

.brand-lines span:nth-child(1) {
    width: 30px;
}

.brand-lines span:nth-child(2) {
    width: 22px;
    margin-left: 0px;
}

.brand-lines span:nth-child(3) {
    width: 14px;
    margin-left: 0px;
}

/* In different context, scale it */
.liquid-glass-nav .brand-logo,
.nav-logo {
    transform: scale(0.65);
    margin-left: -5px;
}

.hero-logo .brand-logo {
    transform: scale(1.2);
    transform-origin: center center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo .brand-logo {
    transform: scale(1);
    transform-origin: center center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-inner .footer-logo svg,
.hero-inner .hero-logo svg {
    display: none !important;
}

/* ===== AI INCOME OPERATING SYSTEM ===== */
.ai-income-section {
    padding: 100px 8%;
    text-align: center;
    background: #000;
    color: white;
    overflow-x: hidden;
    position: relative;
    z-index: 10;
}

.ai-income-heading {
    font-family: var(--font-head);
    font-size: 46px;
    background: linear-gradient(90deg, #D49A36, #FFDF73);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.ai-income-sub {
    color: #bbb;
    margin-top: 10px;
    margin-bottom: 70px;
    font-size: 19px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* CUBE AREA */
.ai-cube-container {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    perspective: 1200px;
}

/* CUBE */
.ai-cube-wrapper {
    text-align: center;
    width: 280px;
}

.ai-cube {
    width: 140px;
    height: 140px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 15s infinite linear;
    margin: 0 auto 40px auto;
}

.ai-cube div {
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(212, 154, 54, 0.08);
    border: 1.5px solid rgba(212, 154, 54, 0.5);
    box-shadow: inset 0 0 30px rgba(212, 154, 54, 0.2);
    backdrop-filter: blur(2px);
}

.ai-cube .front {
    transform: rotateY(0deg) translateZ(70px);
}

.ai-cube .back {
    transform: rotateY(180deg) translateZ(70px);
}

.ai-cube .right {
    transform: rotateY(90deg) translateZ(70px);
}

.ai-cube .left {
    transform: rotateY(-90deg) translateZ(70px);
}

.ai-cube .top {
    transform: rotateX(90deg) translateZ(70px);
}

.ai-cube .bottom {
    transform: rotateX(-90deg) translateZ(70px);
}

@keyframes rotate {
    0% {
        transform: rotateX(0) rotateY(0);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.ai-cube-title {
    margin-top: 25px;
    color: #FFDF73;
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-cube-desc {
    color: #ccc;
    font-size: 15px;
    margin-top: 12px;
    line-height: 1.6;
}

/* TIMELINE */
.ai-timeline {
    margin-top: 90px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ai-step {
    padding: 20px 30px;
    border: 1px solid rgba(212, 154, 54, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ai-step:hover {
    background: rgba(212, 154, 54, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 154, 54, 0.2);
    border-color: rgba(212, 154, 54, 0.6);
}

/* WHY STRIP */
.ai-why {
    margin-top: 90px;
    padding: 50px;
    background: rgba(212, 154, 54, 0.05);
    border: 1px solid rgba(212, 154, 54, 0.2);
    border-radius: 16px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.ai-why h3 {
    color: #FFDF73;
    margin-bottom: 20px;
    font-family: var(--font-head);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-why p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.ai-cta {
    margin-top: 70px;
}

.ai-cta .btn {
    font-size: 19px;
    padding: 20px 60px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(212, 154, 54, 0.3);
}

.ai-cta .btn:hover {
    box-shadow: 0 8px 30px rgba(212, 154, 54, 0.6);
    transform: translateY(-3px);
}

/* Sticky Mobile CTA */
.ai-sticky-cta {
    display: none;
}

@media(max-width: 768px) {
    .ai-income-section {
        padding: 70px 5%;
    }

    .ai-income-heading {
        font-size: 34px;
    }

    .ai-cube {
        margin-bottom: 50px;
    }

    .ai-cube-container {
        gap: 50px;
    }

    .ai-cube-wrapper {
        width: 100%;
    }

    .ai-timeline {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .ai-step {
        width: 100%;
        max-width: 300px;
    }

    .ai-why p {
        font-size: 16px;
    }

    .ai-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, #D49A36, #FFDF73);
        text-align: center;
        padding: 16px;
        z-index: 1000;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    }

    .ai-sticky-cta-link {
        font-weight: 800;
        color: black;
        text-decoration: none;
        font-size: 18px;
        text-transform: uppercase;
        display: block;
        width: 100%;
        height: 100%;
    }

    /* Add padding to bottom so CTA doesn't overlap footer */
    body {
        padding-bottom: 60px;
    }
}

/* ===================================================
   DIGITAL ASSET ENGINE
   =================================================== */
.da-section {
    background: #000;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.da-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.da-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Image Col */
.da-image-col {
    display: flex;
    justify-content: center;
}

.da-img-wrapper {
    position: relative;
    display: inline-block;
}

/* Glow Effect */
.da-img-glow {
    position: absolute;
    inset: 0;
    background: #F59E0B;
    /* tailwind yellow-500 */
    filter: blur(40px);
    opacity: 0.2;
    border-radius: 24px;
    transition: opacity 0.5s ease;
}

.da-img-wrapper:hover .da-img-glow {
    opacity: 0.4;
}

.da-img {
    position: relative;
    border-radius: 24px;
    border: 1px solid #F59E0B;
    /* tailwind yellow-500 */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 420px;
    display: block;
    transition: transform 0.5s ease;
    z-index: 1;
}

.da-img-wrapper:hover .da-img {
    transform: translateY(-12px);
}

/* Right Content Col */
.da-content-col {
    color: #fff;
}

.da-badge {
    color: #F59E0B;
    /* tailwind yellow-500 */
    border: 1px solid #F59E0B;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
}

.da-heading {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(to right, #F59E0B, #FCD34D);
    /* yellow-500 to yellow-300 */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.1;
}

.da-sub {
    color: #9CA3AF;
    /* gray-400 */
    font-size: 18px;
    margin-bottom: 32px;
}

.da-checklist {
    margin-bottom: 32px;
}

.da-checklist li {
    color: #D1D5DB;
    /* gray-300 */
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.da-check {
    color: #F59E0B;
    /* yellow-500 */
    font-size: 18px;
}

.da-outcome {
    color: #FBBF24;
    /* yellow-400 */
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 40px;
}

.da-cta {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 16px;
    background: linear-gradient(to right, #F59E0B, #FCD34D);
    /* yellow-500 to yellow-300 */
    color: #000;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.da-cta:hover {
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
    /* shadow-yellow-500/50 */
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .da-section {
        padding: 60px 20px;
    }

    .da-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .da-img {
        max-width: 350px;
    }

    .da-badge {
        margin: 0 auto 24px;
    }

    .da-checklist li {
        justify-content: center;
    }
}

/* ===================================================
   AI INCOME SYSTEM V2 ANIMATIONS
   =================================================== */
@keyframes pulse {

    0%,
    100% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .ai-income-system-v2 .ar-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px !important;
    }

    .ai-income-system-v2 .ar-image-col {
        order: -1;
    }

    .ai-income-system-v2 h2 {
        font-size: 2.5rem !important;
    }

    .ai-income-system-v2 ul li {
        text-align: left;
        justify-content: flex-start;
    }
}

/* ===================================================
   GLASS CUBE MODIFICATIONS (PREMIUM SAAS)
   =================================================== */
.ai-particles-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 223, 115, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 223, 115, 0.8), 0 0 20px rgba(255, 223, 115, 0.4);
    animation: floatParticle 10s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-120px) translateX(60px) scale(0.5);
        opacity: 0;
    }
}

.p1 {
    bottom: 10%;
    left: 10%;
    animation-duration: 12s;
}

.p2 {
    bottom: 20%;
    left: 30%;
    animation-duration: 9s;
    animation-delay: 1s;
}

.p3 {
    bottom: 30%;
    left: 50%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.p4 {
    bottom: 15%;
    left: 70%;
    animation-duration: 11s;
    animation-delay: 0.5s;
}

.p5 {
    bottom: 5%;
    left: 85%;
    animation-duration: 13s;
    animation-delay: 3s;
}

.p6 {
    top: 40%;
    left: 15%;
    animation-duration: 8s;
    animation-delay: 1.5s;
}

.p7 {
    top: 30%;
    left: 40%;
    animation-duration: 14s;
    animation-delay: 2.5s;
}

.p8 {
    top: 50%;
    left: 65%;
    animation-duration: 10s;
    animation-delay: 0.8s;
}

.p9 {
    top: 20%;
    left: 80%;
    animation-duration: 12s;
    animation-delay: 4s;
}

.p10 {
    top: 10%;
    left: 45%;
    animation-duration: 16s;
    animation-delay: 1.2s;
}

.ai-glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(212, 154, 54, 0.05);
    filter: blur(100px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.glass-cube-wrapper {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-cube-wrapper:hover {
    transform: scale(1.05);
}

.ai-cube .glass-face {
    background: rgba(212, 154, 54, 0.04) !important;
    border: 1px solid rgba(255, 223, 115, 0.3) !important;
    box-shadow: inset 0 0 30px rgba(255, 223, 115, 0.1) !important;
    backdrop-filter: blur(2px) !important;
    -webkit-backdrop-filter: blur(2px) !important;
    transition: all 0.4s ease !important;
}

.content-cube .bright-glow {
    background: rgba(255, 223, 115, 0.08) !important;
    border: 1px solid rgba(255, 223, 115, 0.5) !important;
    box-shadow: inset 0 0 40px rgba(255, 223, 115, 0.2) !important;
}

.glass-cube-wrapper:hover .glass-face {
    background: rgba(212, 154, 54, 0.12) !important;
    border-color: rgba(255, 223, 115, 0.7) !important;
    box-shadow: inset 0 0 50px rgba(255, 223, 115, 0.25), 0 0 20px rgba(255, 223, 115, 0.4) !important;
}

.inner-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass-cube-wrapper:hover .inner-elements {
    transform: scale3d(1.15, 1.15, 1.15) translateZ(10px);
}

.inner-elements i {
    position: absolute;
    color: #FFDF73;
    font-size: 26px;
    filter: drop-shadow(0 0 12px rgba(255, 223, 115, 0.8));
    transform-style: preserve-3d;
}

/* Icons Front positioning */
.icon-db {
    transform: translate3d(-30px, -25px, 20px);
    font-size: 24px;
}

.icon-phone {
    transform: translate3d(30px, -20px, -20px);
    font-size: 22px;
    color: #94a3b8;
    filter: drop-shadow(0 0 10px rgba(148, 163, 184, 0.6));
}

.icon-chat {
    transform: translate3d(-25px, 30px, -25px);
    font-size: 24px;
    color: #60a5fa;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.6));
}

.icon-rupee {
    transform: translate3d(25px, 25px, 25px);
    color: #4ade80;
    font-size: 28px;
    font-weight: 800;
    filter: drop-shadow(0 0 15px rgba(74, 222, 128, 0.8));
}

.icon-ig {
    transform: translate3d(0, -35px, 25px);
    font-size: 34px;
    color: #E1306C;
    filter: drop-shadow(0 0 15px rgba(225, 48, 108, 0.8));
}

.icon-chart {
    transform: translate3d(35px, 10px, -20px);
    color: #60a5fa;
    font-size: 24px;
    filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.8));
}

.icon-fire {
    transform: translate3d(-35px, 20px, 15px);
    color: #fb923c;
    font-size: 30px;
    filter: drop-shadow(0 0 15px rgba(251, 146, 60, 0.8));
}

.icon-deal {
    transform: translate3d(0, -5px, -35px);
    font-size: 24px;
}

.icon-laptop {
    transform: translate3d(0, 0, 0);
    font-size: 32px;
}

.icon-funnel {
    transform: translate3d(-35px, 0, 20px);
    font-size: 22px;
    color: #fb923c;
    filter: drop-shadow(0 0 10px rgba(251, 146, 60, 0.6));
}

.icon-pay {
    transform: translate3d(25px, -25px, 20px);
    font-size: 24px;
    color: #60a5fa;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.6));
}

.icon-box {
    transform: translate3d(25px, 35px, -15px);
    font-size: 26px;
    color: #f472b6;
    filter: drop-shadow(0 0 10px rgba(244, 114, 182, 0.6));
}

.rotating-inner i {
    animation: floatIcon 3s ease-in-out infinite alternate;
}

.icon-funnel {
    animation-delay: 0.5s !important;
}

.icon-pay {
    animation-delay: 1s !important;
}

.icon-box {
    animation-delay: 1.5s !important;
}

@keyframes floatIcon {
    from {
        margin-top: -6px;
    }

    to {
        margin-top: 6px;
    }
}

.data-particles-inner::before,
.data-particles-inner::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #60a5fa;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px #60a5fa);
    animation: dashData 2.5s infinite linear;
    z-index: 5;
}

.data-particles-inner::after {
    background: #FFDF73;
    filter: drop-shadow(0 0 8px #FFDF73);
    animation-delay: 1.25s;
    animation-direction: reverse;
}

@keyframes dashData {
    0% {
        transform: translate3d(-50px, -50px, -50px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translate3d(50px, 50px, 50px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .glass-cubes {
        flex-direction: column !important;
        align-items: center;
        gap: 80px !important;
    }
}

/* ===================================================
   RESULTS & PROOF PAGE STYLES
   =================================================== */

/* HERO SECTION */
.results-hero {
    position: relative;
    padding: 180px 20px 80px;
    background-color: var(--black);
    text-align: center;
    overflow: hidden;
}

.results-hero-inner {
    position: relative;
    z-index: 2;
}

.results-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.glow-top {
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
}

.glow-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
}

.results-headline {
    font-family: var(--font-head);
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFDF73 0%, #D49A36 50%, #B47A16 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 30px rgba(212, 160, 23, 0.2);
    letter-spacing: 1px;
}

.results-subheading {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

@media (max-width: 768px) {
    .results-hero {
        padding: 140px 20px 60px;
    }

    .results-headline {
        font-size: 42px;
    }

    .results-subheading {
        font-size: 18px;
    }
}

/* PROOF STRIP */
.results-proof-strip {
    background: #0a0805;
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
    padding: 24px 0;
}

.proof-strip-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #f0f0f0;
    letter-spacing: 0.5px;
}

.proof-item i {
    color: #D4A017;
    font-size: 18px;
}

@media (max-width: 768px) {
    .proof-strip-grid {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

/* RESULTS GRID */
.results-grid-section {
    padding: 80px 0;
    background: var(--dark);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: 0 10px 40px rgba(212, 160, 23, 0.1);
}

.rc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.rc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #111);
    color: #D4A017;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: var(--font-head);
    border: 1px solid rgba(212, 160, 23, 0.3);
}

.rc-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rc-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.rc-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-block;
    width: fit-content;
}

.rc-tag-client {
    background: rgba(25, 104, 251, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(25, 104, 251, 0.2);
}

.rc-tag-content {
    background: rgba(227, 68, 67, 0.1);
    color: #f87171;
    border: 1px solid rgba(227, 68, 67, 0.2);
}

.rc-tag-digital {
    background: rgba(212, 160, 23, 0.1);
    color: #D4A017;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.rc-milestone {
    font-family: var(--font-head);
    font-size: 24px;
    color: #FFDF73;
    margin-bottom: 12px;
    line-height: 1.2;
}

.rc-testimonial {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.rc-screenshot-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
    aspect-ratio: 4/3;
}

.blur-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #111 25%, #222 50%, #111 75%);
    background-size: 200% 200%;
    animation: placeholderShimmer 3s infinite linear;
}

.blur-placeholder i {
    font-size: 32px;
}

.blur-placeholder span {
    font-size: 14px;
    font-weight: 500;
}

@keyframes placeholderShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@media (max-width: 900px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* LIVE PROOF AREA */
.live-proof-section {
    padding: 80px 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.live-proof-heading {
    text-align: center;
    font-family: var(--font-head);
    font-size: 40px;
    color: #fff;
    margin-bottom: 50px;
}

.live-proof-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 30px;
}

.lp-item {
    flex: 1;
    max-width: 350px;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 160, 23, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lp-item:nth-child(2) {
    transform: translateY(-20px);
}

.live-proof-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .live-proof-grid {
        flex-direction: column;
        align-items: center;
    }

    .lp-item {
        width: 100%;
        max-width: 320px;
    }

    .lp-item:nth-child(2) {
        transform: none;
    }
}

/* SOCIAL TRUST METRICS */
.social-trust-section {
    padding: 60px 0;
    background: #0a0805;
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

.trust-metrics {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-metric {
    text-align: center;
}

.tm-number {
    font-family: var(--font-head);
    font-size: 48px;
    color: #D4A017;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(212, 160, 23, 0.2);
}

.tm-label {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .trust-metrics {
        flex-direction: column;
        gap: 40px;
    }
}

/* CTA SECTION */
.results-cta-section {
    padding: 100px 0;
    background: var(--dark);
    text-align: center;
}

.rcta-heading {
    font-family: var(--font-head);
    font-size: 48px;
    color: #fff;
    margin-bottom: 40px;
}

.rcta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .rcta-heading {
        font-size: 32px;
    }

    .btn-pro-glow,
    .btn-starter {
        width: 100%;
    }
}

/* ===================================================
   SCROLLABLE VIDEO PROOF SECTION (HOME)
   =================================================== */
.scroll-proof-section {
    padding: 100px 0;
    background: #000;
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-proof-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.scroll-proof-title {
    font-family: var(--font-head);
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.scroll-proof-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.video-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 160, 23, 0.5) rgba(255, 255, 255, 0.05);
    -webkit-overflow-scrolling: touch;
}

.video-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.video-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 40px;
}

.video-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(212, 160, 23, 0.5);
    border-radius: 10px;
}

.proof-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.proof-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.15);
}

.proof-vid-wrapper {
    width: 100%;
    aspect-ratio: 9/16;
    background: #111;
    position: relative;
}

.proof-vid-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.proof-quote {
    font-size: 0.95rem;
    color: #e2e8f0;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.proof-author {
    font-weight: 700;
    color: #FFDF73;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.proof-author i {
    color: #4ade80;
    /* Verified check green */
}

/* Scroll Arrow Buttons */
.scroll-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.scroll-arrow-btn:hover {
    background: rgba(212, 160, 23, 0.9);
    border-color: #D4A017;
    color: #000;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.6);
}

.scroll-left {
    left: -24px;
}

.scroll-right {
    right: -24px;
}

@media(max-width: 768px) {
    .video-scroll-container {
        padding: 10px 20px;
        gap: 20px;
    }

    .proof-card {
        flex: 0 0 280px;
    }

    .scroll-proof-title {
        font-size: 2.2rem;
    }
}

/* ===================================================
   LIVE MEMBER + SYSTEM STRIP (REPLACES HURRY UP BAR)
   =================================================== */

.strip-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 30px 0;
    background: linear-gradient(90deg, #0f0f15, #141421, #0f0f15);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.live-counter {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffd700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.counter-number {
    font-weight: bold;
    font-size: 22px;
    color: #fff;
}

.engine-strip {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: scroll 25s linear infinite;
    will-change: transform;
}

.engine-item {
    flex-shrink: 0;
    padding: 12px 25px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 40px;
    font-size: 16px;
    color: #ffd700;
    backdrop-filter: blur(5px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Glow effect */
.strip-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.08), transparent 70%);
    pointer-events: none;
}

@media(max-width:768px) {
    .strip-container {
        padding: 16px 0;
        overflow: hidden;
        border-radius: 0;
    }

    .live-counter {
        font-size: 13px;
        padding: 6px 14px;
        margin-bottom: 12px;
        margin-left: 12px;
        margin-right: 12px;
        line-height: 1.4;
        border-radius: 30px;
        background: rgba(255, 215, 0, 0.06);
        border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .counter-number {
        font-size: 16px;
    }

    .engine-strip {
        /* Restore auto-scroll animation on mobile — it works better than touch-scroll */
        animation: scroll 18s linear infinite;
        gap: 20px;
    }

    .engine-item {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* ===================================================
   TESTIMONIAL SUBMISSION SECTION (RESULTS PAGE)
   =================================================== */
.testimonial-submit-section {
    position: relative;
    padding: 80px 0;
    margin-top: 40px;
    background: #050505;
    overflow: hidden;
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

.ts-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.ts-glow-left {
    top: -100px;
    left: -150px;
}

.ts-glow-right {
    bottom: -150px;
    right: -100px;
}

.ts-container {
    position: relative;
    z-index: 1;
}

.ts-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ts-content-col {
    color: #fff;
}

.ts-heading {
    font-family: var(--font-head);
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.ts-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.ts-perks {
    list-style: none;
    padding: 0;
}

.ts-perks li {
    font-size: 1rem;
    color: #dedede;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ts-perks li i {
    color: var(--c-gold, #D4A017);
}

.ts-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ts-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ts-field label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.ts-field input,
.ts-field textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ts-field input:focus,
.ts-field textarea:focus {
    outline: none;
    border-color: var(--c-gold, #D4A017);
    background: rgba(212, 160, 23, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.ts-field-upload {
    position: relative;
    margin-top: 10px;
}

.ts-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.ts-upload-label:hover {
    border-color: var(--c-gold, #D4A017);
    background: rgba(212, 160, 23, 0.05);
}

.ts-upload-icon {
    font-size: 32px;
    color: var(--c-gold, #D4A017);
    margin-bottom: 12px;
}

.ts-upload-label span strong {
    color: var(--c-gold, #D4A017);
    font-weight: 600;
}

.ts-upload-hint {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
}

.ts-field-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.ts-submit-btn {
    border-radius: 12px;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .ts-panel {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .ts-form-row {
        grid-template-columns: 1fr;
    }

    .ts-heading {
        font-size: 32px;
    }
}

/* ===================================================
   VIRAL AI REELS SHOWCASE SECTION
   =================================================== */
.viral-showcase-section {
    position: relative;
    padding: 80px 20px;
    background: #000;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(212, 160, 23, 0.05);
}

.viral-glow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.viral-glow-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.viral-badge-wrap {
    margin-bottom: 20px;
}

.viral-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 50px;
    color: #D4A017;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(212, 160, 23, 0.15);
}

.viral-heading-wrap {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.viral-main-heading {
    font-family: var(--font-head);
    font-size: 42px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.viral-underline {
    position: relative;
    color: #D4A017;
    display: inline-block;
}

.viral-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: #D4A017;
    transform: scaleX(0);
    transform-origin: left center;
    animation: viralLineAnim 2s forwards 0.5s;
}

@keyframes viralLineAnim {
    to {
        transform: scaleX(1);
    }
}

.viral-subheading {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* Grid Layout */
.viral-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.viral-card {
    position: relative;
    width: 100%;
    /* Maintain 9:16 aspect ratio */
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
}

.viral-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 160, 23, 0.2);
    border-color: rgba(212, 160, 23, 0.4);
}

.viral-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.viral-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.viral-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.viral-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, color 0.3s ease;
}

.viral-card:hover .viral-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    color: #D4A017;
}

.viral-stats {
    position: absolute;
    bottom: 45px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.viral-views {
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.viral-platform {
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    color: #fff;
}

.viral-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 6px;
    border-radius: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Content Below Grid */
.viral-social-proof-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-style: italic;
}

.viral-explanation-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.viral-explanation-title {
    font-family: var(--font-head);
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.viral-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.viral-benefits-list li {
    font-size: 15px;
    color: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.viral-benefits-list i {
    color: #D4A017;
    font-size: 16px;
}

/* CTA Area */
.viral-cta-wrap {
    text-align: center;
}

.viral-cta-urgency {
    font-size: 14px;
    color: #D4A017;
    font-weight: 600;
    margin-bottom: 12px;
    animation: pulse 2s infinite;
}

.viral-cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #D4A017 0%, #F0C040 50%, #C48A00 100%);
    color: #000;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.viral-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.6);
    background: linear-gradient(135deg, #F0C040 0%, #FFD700 50%, #D4A017 100%);
}

.viral-trust-line {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    flex-wrap: wrap;
}

.viral-trust-line span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.viral-trust-line i {
    color: #fff;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 900px) {
    .viral-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .viral-showcase-section {
        padding: 60px 16px;
    }

    .viral-main-heading {
        font-size: 32px;
    }

    .viral-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .viral-benefits-list {
        grid-template-columns: 1fr;
    }

    .viral-explanation-box {
        padding: 20px;
    }

    .viral-cta-btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
    }

    .viral-trust-line {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================================
   BUILT USING OUR SYSTEM SECTION
   =================================================== */
.built-system-section {
    position: relative;
    padding: 100px 20px;
    background: #0b0b0f;
    border-top: 1px solid rgba(212, 160, 23, 0.08);
    overflow: hidden;
}

.built-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.built-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.built-main-heading {
    font-family: var(--font-head);
    font-size: 46px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.built-underline {
    position: relative;
    color: #D4A017;
    display: inline-block;
}

.built-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 3px;
    background: #D4A017;
    transform: scaleX(0);
    transform-origin: left center;
    animation: viralLineAnim 2s forwards 0.5s;
}

.built-subheading {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Grid */
.built-sys-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Mockup Column */
.built-mockup-wrapper {
    position: relative;
    border-radius: 20px;
    border: 2px solid rgba(212, 160, 23, 0.8);
    box-shadow: 0 0 40px rgba(212, 160, 23, 0.4), 0 30px 60px rgba(0, 0, 0, 0.8);
    background: #111;
    overflow: hidden;
    transform: perspective(1000px) rotateY(5deg) scale(1.05);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.built-mockup-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.1);
    box-shadow: 0 0 60px rgba(212, 160, 23, 0.6), 0 40px 80px rgba(0, 0, 0, 0.9);
}

.built-mockup-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.2) 0%, transparent 50%, rgba(212, 160, 23, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
}

.built-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.built-live-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Content Column */
.built-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.built-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 18px;
    color: #E2E8F0;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.built-bullets li:hover {
    background: rgba(212, 160, 23, 0.05);
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateX(10px);
}

.built-bullets i {
    color: #D4A017;
    font-size: 24px;
    margin-top: 2px;
    filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.4));
}

.built-highlight-box {
    display: inline-block;
    padding: 15px 25px;
    background: rgba(212, 160, 23, 0.1);
    border-left: 4px solid #D4A017;
    border-radius: 0 8px 8px 0;
}

.built-highlight-text {
    font-size: 16px;
    color: #D4A017;
    font-weight: 500;
    font-style: italic;
    animation: pulse 3s infinite;
}

/* Authority Strip */
.built-sys-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 80px auto;
    padding: 30px;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.built-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.built-strip-item i {
    color: #10B981;
    /* Success green, feels authoritative */
    font-size: 18px;
}

/* CTA */
.built-cta-wrap {
    text-align: center;
}

.built-cta-btn {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #FFD700 0%, #D4A017 100%);
    color: #000;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(212, 160, 23, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.built-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 160, 23, 0.5);
    background: linear-gradient(135deg, #FFE033 0%, #E6B800 100%);
}

.built-trust-line {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    flex-wrap: wrap;
}

.built-trust-line span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.built-trust-line i {
    color: #fff;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1000px) {
    .built-sys-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .built-mockup-wrapper {
        transform: none;
    }
}

@media (max-width: 768px) {
    .built-system-section {
        padding: 60px 16px;
    }

    .built-main-heading {
        font-size: 36px;
    }

    .built-bullets li {
        font-size: 16px;
        padding: 15px;
    }

    .built-sys-strip {
        gap: 20px;
        flex-direction: column;
        align-items: center;
        margin: 50px auto;
    }

    .built-cta-btn {
        width: 100%;
        padding: 18px 20px;
        font-size: 18px;
    }

    .built-trust-line {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================================
   EXTRA MOBILE OPTIMIZATIONS (ADDED FOR PERFECT FIT)
   =================================================== */
@media (max-width: 768px) {

    /* Make sure all images scale properly without breaking containers */
    img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }

    /* Ensure hero headings fit mobile screens */
    .hero-headline {
        font-size: 38px !important;
        line-height: 1.15 !important;
        margin-bottom: 20px !important;
    }

    .hero-desc {
        font-size: 16px !important;
        margin-bottom: 25px !important;
    }

    /* Make buttons full width on small screens */
    .btn-starter,
    .btn-pro-glow,
    .db-cta,
    .ar-cta,
    .viral-cta-btn,
    .built-cta-btn {
        width: 100% !important;
        padding: 16px 20px !important;
        font-size: 16px !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Ensure grids collapse nicely */
    .db-grid,
    .ar-grid,
    .built-sys-grid,
    .results-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Testimonial slider cards scaling */
    .proof-card {
        min-width: 280px !important;
        width: 85vw !important;
    }

    /* Result card images */
    .rc-screenshot-wrapper {
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    /* Paddings */
    .container {
        padding: 0 20px !important;
    }

    section {
        padding: 40px 0 !important;
    }

    .hero-section {
        padding: 100px 20px 40px !important;
    }
}

@media (max-width: 480px) {

    /* Extreme small screen support */
    .hero-headline {
        font-size: 32px !important;
    }

    .brand-title {
        letter-spacing: 2px !important;
        font-size: 18px !important;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
    }
}


@media(max-width:768px) {
    .results-hero {
        padding-top: 140px !important;
        min-height: 50vh !important;
    }
}

/* ===================================================
   HERO MOBILE — Pixel-Perfect (320px–430px)
   =================================================== */
@media (max-width: 430px) {

    /* 1. Remove excess top padding and constrain the inner container */
    .hero-section {
        padding: 140px 20px 48px !important;
        /* Increased top padding to clear fixed navbar completely */
        background-position: center top !important;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.80) !important;
    }

    .hero-inner {
        max-width: 420px !important;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 2. Logo section */
    .hero-logo {
        margin-bottom: 12px !important;
        padding: 16px 0 !important;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-logo .brand-logo {
        justify-content: center !important;
        transform: scale(0.88);
        transform-origin: center;
    }

    /* 3. Rating section */
    .hero-rating-row {
        justify-content: center !important;
        gap: 8px !important;
        margin-bottom: 16px !important;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .star-rating {
        font-size: 16px !important;
        gap: 3px !important;
    }

    .rating-text {
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    /* 4. Hero Heading */
    .hero-headline {
        font-size: 44px !important;
        /* User explicitly requested 44px on mobile */
        line-height: 1.1 !important;
        font-weight: 900 !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 16px auto 16px !important;
        letter-spacing: 0.5px !important;
        word-wrap: break-word;
        /* Prevents overflow */
    }

    /* 5. Subheading */
    .hero-desc {
        font-size: 16px !important;
        opacity: 0.85;
        max-width: 90% !important;
        text-align: center !important;
        margin: 0 auto 8px !important;
        line-height: 1.55 !important;
    }

    /* 6. Pricing text (second hero-desc bold element) */
    .hero-desc[style*="font-weight: bold"],
    .hero-desc strong {
        font-size: 16px !important;
        font-weight: 700 !important;
        margin-top: 10px !important;
        margin-bottom: 0 !important;
    }

    /* 7. CTA Buttons — stacked vertically */
    .hero-cta-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 16px auto 0 !important;
        padding: 0 !important;
    }

    .btn-starter,
    .btn-pro-glow {
        width: 100% !important;
        font-size: 16px !important;
        padding: 14px 20px !important;
        border-radius: 14px !important;
        white-space: nowrap !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        min-height: 52px !important;
        max-height: 52px !important;
        min-width: unset !important;
        letter-spacing: 0.5px !important;
    }

    .btn-pro-glow {
        box-shadow: 0 6px 24px rgba(253, 185, 49, 0.5) !important;
    }

    /* 9. Social Proof Bar — compact pill on mobile, full bleed */
    .strip-container {
        margin-top: 20px !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        overflow: hidden !important;
        padding: 14px 0 !important;
    }

    .live-counter {
        font-size: 12px !important;
        text-align: center !important;
        background: rgba(255, 215, 0, 0.07) !important;
        border: 1px solid rgba(255, 215, 0, 0.2) !important;
        border-radius: 30px !important;
        padding: 8px 14px !important;
        line-height: 1.4 !important;
        margin: 0 12px 10px !important;
        gap: 4px !important;
    }

    .counter-number {
        font-size: 15px !important;
    }

    /* 10. Engine Tags — CSS auto-scroll (works on all mobile, no touch needed) */
    .engine-strip {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow: visible !important;
        gap: 14px !important;
        padding: 4px 0 !important;
        animation: scroll 16s linear infinite !important;
        width: max-content !important;
        scrollbar-width: none !important;
    }

    .engine-strip::-webkit-scrollbar {
        display: none !important;
    }

    .engine-item {
        flex-shrink: 0 !important;
        border-radius: 30px !important;
        padding: 7px 14px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
        background: rgba(255, 215, 0, 0.06) !important;
        border: 1px solid rgba(255, 215, 0, 0.25) !important;
        color: #ffd700 !important;
    }
}

/* Extra small screens (320px) */
@media (max-width: 360px) {
    .hero-headline {
        font-size: 38px !important;
        /* Keep it as large as possible without extreme breakage */
    }

    .btn-starter,
    .btn-pro-glow {
        font-size: 14px !important;
        padding: 0 10px !important;
    }

    .pill-starter,
    .pill-pro {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* ===================================================
   SOCIAL PROOF POPUP NOTIFICATIONS
   =================================================== */
.sp-popup {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 160, 23, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
    max-width: 320px;
}

.sp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sp-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin: 0;
    line-height: 1.2;
}

#sp-name {
    font-weight: 700;
    color: #fff;
}

.sp-action {
    color: #fff;
    font-size: 14px;
    margin: 0;
    line-height: 1.2;
}

.sp-action strong {
    color: #D4A017;
}

.sp-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    margin: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .sp-popup {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 340px;
        bottom: -100px;
        /* Base hidden state */
    }
}

/* ===================================================
   PREMIUM AI TIMELINE
   =================================================== */
.ai-timeline-premium {
    margin: 60px auto 20px;
    text-align: center;
    max-width: 900px;
}

.ai-timeline-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 223, 115, 0.6);
    margin-bottom: 36px;
}

.ai-timeline-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.ai-tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    max-width: 200px;
}

/* Icon circle */
.ai-tl-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
    border: 2px solid rgba(212, 160, 23, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #D4A017;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-tl-step:hover .ai-tl-icon-wrap {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
}

/* Gold pulse for the last step */
.ai-tl-icon-wrap.gold-pulse {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.25), rgba(255, 215, 0, 0.15));
    border-color: #D4A017;
    color: #FFD700;
    animation: goldPulseAnim 2s ease-in-out infinite;
}

@keyframes goldPulseAnim {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(212, 160, 23, 0);
    }
}

/* Horizontal connector line */
.ai-tl-connector {
    position: absolute;
    top: 30px;
    /* vertically centres with the 60px icon */
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 160, 23, 0.5), rgba(212, 160, 23, 0.1));
    z-index: 1;
}

.ai-tl-step.last .ai-tl-connector {
    display: none;
}

/* Step label area */
.ai-tl-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
    gap: 4px;
}

.ai-tl-week {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(212, 160, 23, 0.6);
}

.ai-tl-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Responsive — stack vertically on mobile */
@media (max-width: 600px) {
    .ai-timeline-track {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .ai-tl-step {
        flex-direction: row;
        gap: 20px;
        max-width: 100%;
        width: 100%;
        text-align: left;
    }

    .ai-tl-connector {
        display: none;
    }

    .ai-tl-step:not(.last)::after {
        content: '';
        position: absolute;
        top: 60px;
        left: 29px;
        width: 2px;
        height: 24px;
        background: linear-gradient(180deg, rgba(212, 160, 23, 0.5), rgba(212, 160, 23, 0.1));
    }

    .ai-tl-info {
        align-items: flex-start;
        margin-top: 0;
    }
}