/* ============================================================
   DESIGN SYSTEM
   ============================================================ */
:root {
    --color-accent: #ed1c24;
    --color-accent-hover: #c41920;
    --color-accent-light: rgba(237, 28, 36, 0.08);
    --color-accent-mid: rgba(237, 28, 36, 0.15);
    --color-accent-glow: rgba(237, 28, 36, 0.25);
    --color-bg-warm: #f8f3ee;
    --color-bg-white: #ffffff;
    --color-bg-dark: #1a1a1a;
    --color-bg-dark-card: #242424;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #555555;
    --color-text-muted: #888888;
    --color-text-on-dark: #f8f3ee;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-accent: rgba(237, 28, 36, 0.2);
    --color-success: var(--color-vip-gold);
    --color-success-bg: rgba(212, 168, 83, 0.15);
    --color-vip-gold: #d4a853;
    --color-vip-gold-light: rgba(212, 168, 83, 0.15);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-padding: 120px 0;
    --section-padding-mobile: 80px 0;
    --container-max: 1200px;
    --container-narrow: 800px;
    --container-padding: 0 24px;
    --card-radius: 0px;
    --card-radius-sm: 0px;
    --button-radius: 14px;
    --card-padding: 40px;
    --card-padding-mobile: 28px;
    --gap: 24px;
    --gap-large: 40px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.12);
    --shadow-accent: 0 8px 32px rgba(237, 28, 36, 0.3);
    --shadow-accent-hover: 0 12px 40px rgba(237, 28, 36, 0.4);
}

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

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-text-primary);
    background: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ---- HEADINGS ---- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
}

h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.018em;
}

h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.26;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.36;
}

/* ---- LAYOUT ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ---- SECTION BACKGROUNDS ---- */
.sec-white {
    background: var(--color-bg-white);
}

.sec-warm {
    background: var(--color-bg-warm);
}

.sec-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
}

.dark-pattern {
    background-color: var(--color-bg-dark);
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ---- CAPTION / OVERLINE ---- */
.caption {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.caption::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.caption-light {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.caption-light::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-header.center .caption,
.section-header.center .caption-light {
    justify-content: center;
}

.section-subtitle {
    font-size: 19px;
    color: var(--color-text-secondary);
    line-height: 1.72;
    max-width: 680px;
}

.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin: 14px auto 0;
}

/* ---- BADGES ---- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-accent {
    background: var(--color-accent-light);
    color: var(--color-accent);
}

.badge-dark {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.badge-gold {
    background: var(--color-vip-gold-light);
    color: var(--color-vip-gold);
}

.badge-gold-pulse {
    background: var(--color-vip-gold-light);
    color: var(--color-vip-gold);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.2);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 0 0 6px rgba(212, 168, 83, 0);
    }
}

/* ---- CTA BUTTONS ---- */
.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-accent);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    padding: 20px 48px;
    border-radius: var(--button-radius);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-accent);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(237, 28, 36, 0.3);
    }

    50% {
        box-shadow: 0 10px 44px rgba(237, 28, 36, 0.52);
    }
}

.cta-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-accent-hover);
}

.cta-primary:active {
    transform: scale(0.97);
    transition-duration: 0.08s;
}

.cta-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    animation: shimmer 3.2s infinite;
}

@keyframes shimmer {
    0% {
        left: -120%;
    }

    100% {
        left: 220%;
    }
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    padding: 20px 48px;
    border-radius: var(--button-radius);
    border: 2px solid var(--color-accent);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.cta-secondary:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

.cta-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-vip-gold), #c49535);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    padding: 20px 48px;
    border-radius: var(--button-radius);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 168, 83, 0.4);
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.cta-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 168, 83, 0.52);
}

.cta-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    animation: shimmer 3.2s infinite;
}

.cta-micro {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

/* ---- BLOBS ---- */
.blob {
    position: absolute;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}

.blob-a {
    width: 520px;
    height: 520px;
    border-radius: 42% 58% 63% 37% / 38% 47% 53% 62%;
    animation: morphA 22s infinite alternate ease-in-out;
}

.blob-b {
    width: 380px;
    height: 380px;
    border-radius: 62% 38% 28% 72% / 52% 58% 42% 48%;
    animation: morphB 18s infinite alternate ease-in-out;
}

.blob-c {
    width: 460px;
    height: 460px;
    border-radius: 48% 52% 38% 62% / 44% 56% 44% 56%;
    animation: morphC 26s infinite alternate ease-in-out;
}

.blob-d {
    width: 300px;
    height: 300px;
    border-radius: 55% 45% 60% 40% / 42% 58% 42% 58%;
    animation: morphA 16s infinite alternate-reverse ease-in-out;
}

.blob-e {
    width: 240px;
    height: 240px;
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    animation: morphB 20s infinite alternate ease-in-out;
}

@keyframes morphA {
    0% {
        border-radius: 42% 58% 63% 37% / 38% 47% 53% 62%;
        transform: scale(1) rotate(0deg);
    }

    50% {
        border-radius: 52% 48% 38% 62% / 60% 40% 60% 40%;
        transform: scale(1.08) rotate(18deg);
    }

    100% {
        border-radius: 62% 38% 55% 45% / 45% 55% 48% 52%;
        transform: scale(0.94) rotate(-12deg);
    }
}

@keyframes morphB {
    0% {
        border-radius: 62% 38% 28% 72% / 52% 58% 42% 48%;
        transform: scale(1) rotate(0deg);
    }

    50% {
        border-radius: 42% 58% 52% 48% / 62% 38% 55% 45%;
        transform: scale(1.06) rotate(-16deg);
    }

    100% {
        border-radius: 55% 45% 62% 38% / 44% 56% 40% 60%;
        transform: scale(1.1) rotate(10deg);
    }
}

@keyframes morphC {
    0% {
        border-radius: 48% 52% 38% 62% / 44% 56% 44% 56%;
        transform: scale(1) rotate(0deg);
    }

    50% {
        border-radius: 60% 40% 55% 45% / 56% 44% 58% 42%;
        transform: scale(1.05) rotate(14deg);
    }

    100% {
        border-radius: 40% 60% 48% 52% / 42% 58% 40% 60%;
        transform: scale(0.96) rotate(-8deg);
    }
}

/* ---- CARDS ---- */
.card {
    background: white;
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-accent-top::before {
    display: none;
}

.card-accent-top {
    box-shadow: var(--shadow-md), 0 -3px 0 0 var(--color-accent) inset;
}

.card-dark {
    background: var(--color-bg-dark-card);
    border-color: rgba(255, 255, 255, 0.07);
    color: var(--color-text-on-dark);
}

.card-dark:hover {
    border-color: rgba(255, 255, 255, 0.14);
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.65s ease-out;
}

.slide-left {
    opacity: 0;
    transform: translateX(-56px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right {
    opacity: 0;
    transform: translateX(56px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.visible {
    opacity: 1;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ---- HEADER ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.93);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    color: var(--color-text-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.25s;
}

.header-logo:hover {
    opacity: 0.75;
}

.header-cta {
    background: var(--color-accent);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.header-cta:hover {
    background: var(--color-accent-hover);
    transform: scale(1.04);
}

/* ---- WAVE SEPARATORS ---- */
.wave-separator {
    width: 100%;
    display: block;
    line-height: 0;
    position: relative;
    z-index: 2;
    margin-top: -2px;
    margin-bottom: -2px;
}

.wave-separator svg {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

/* ---- COUNTDOWN TIMER ---- */
.countdown-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.countdown-block {
    background: var(--color-bg-dark);
    border-radius: 14px;
    padding: 18px 22px;
    min-width: 84px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.countdown-block .num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    color: white;
    display: block;
    line-height: 1.1;
}

.countdown-block .label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.12em;
    display: block;
    margin-top: 5px;
}

.countdown-sep {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 34px;
    color: var(--color-accent);
    animation: sepPulse 1s ease-in-out infinite;
}

@keyframes sepPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

/* ---- FAQ ACCORDION ---- */
.faq-item {
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--color-text-primary);
    text-align: left;
    transition: color 0.25s;
    line-height: 1.45;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--color-accent-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: transform 0.4s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--color-accent);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 2px 0 22px;
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.75;
}

/* ---- PLATFORM ICONS ROW ---- */
.platform-icons {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 20px 0;
}

.platform-icons svg {
    flex-shrink: 0;
}

/* ---- PHONE MOCKUP (iPhone style) ---- */
.phone-mockup {
    width: 180px;
    aspect-ratio: 9/19.5;
    border-radius: 38px;
    border: 6px solid #1c1c1e;
    background: white;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 36px 6px 14px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.12) inset,
        0 12px 32px rgba(0, 0, 0, 0.28),
        2px 0 0 0 #3a3a3c,
        -2px 0 0 0 #3a3a3c;
}

/* Dynamic Island */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 20px;
    background: #1c1c1e;
    border-radius: 20px;
    z-index: 10;
}

/* Home indicator */
.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 4px;
    background: #1c1c1e;
    border-radius: 4px;
    opacity: 0.35;
}

.phones-fan {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 390px;
}

.phones-fan .phone-mockup {
    position: absolute;
}

.phones-fan .phone-mockup:nth-child(1) {
    transform: rotate(-10deg) translateX(-115px);
    z-index: 1;
    opacity: 0.85;
}

.phones-fan .phone-mockup:nth-child(2) {
    transform: rotate(0deg);
    z-index: 3;
}

.phones-fan .phone-mockup:nth-child(3) {
    transform: rotate(10deg) translateX(115px);
    z-index: 1;
    opacity: 0.85;
}

/* ---- CHECK / CROSS LIST ---- */
.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 7px 0;
    font-size: 15.5px;
    line-height: 1.6;
}

.icon-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: var(--color-success-bg);
    color: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.icon-cross {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: rgba(237, 28, 36, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ---- REVIEWS SLIDER ---- */
.reviews-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 28px;
    scrollbar-width: thin;
}

.reviews-slider::-webkit-scrollbar {
    height: 5px;
}

.reviews-slider::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 3px;
}

.reviews-slider::-webkit-scrollbar-thumb {
    background: var(--color-text-muted);
    border-radius: 3px;
}

.review-card {
    min-width: 340px;
    max-width: 340px;
    scroll-snap-align: start;
    flex-shrink: 0;
    background: white;
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), rgba(237, 28, 36, 0.2));
}

.review-stars {
    color: var(--color-vip-gold);
    font-size: 13px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-quote-icon {
    position: absolute;
    top: 20px;
    right: 22px;
    color: var(--color-accent-light);
    font-size: 32px;
}

.review-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.72;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d8d8d8, #c0c0c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #888;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.review-name {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
}

.review-niche {
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-top: 1px;
}

/* ---- PRICING ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    max-width: 860px;
    margin: 0 auto;
}

.price-old {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 21px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.price-current {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 52px;
    color: var(--color-accent);
    line-height: 1.05;
}

.price-gold {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 52px;
    color: var(--color-vip-gold);
    line-height: 1.05;
}

/* ---- VIP CARD ---- */
.vip-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #212121 60%, #1c1a14 100%);
    border: 2px solid var(--color-vip-gold);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: 0 0 80px rgba(212, 168, 83, 0.12), var(--shadow-xl);
    color: var(--color-text-on-dark);
    position: relative;
    overflow: hidden;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.12), transparent 70%);
    pointer-events: none;
}

.vip-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.07), transparent 70%);
    pointer-events: none;
}

/* ---- TIMELINE ---- */
.timeline {
    position: relative;
    padding-left: 64px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), rgba(237, 28, 36, 0.1));
}

.timeline-item {
    position: relative;
    padding-bottom: 36px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-num {
    position: absolute;
    left: -64px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--color-bg-warm), 0 4px 12px rgba(237, 28, 36, 0.3);
}

.timeline-content {
    background: white;
    border-radius: var(--card-radius);
    padding: 28px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content h4 {
    margin-bottom: 10px;
    font-size: 19px;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin: 4px 4px 4px 0;
    letter-spacing: 0.02em;
}

.timeline-badge-tip {
    background: rgba(237, 28, 36, 0.08);
    color: var(--color-accent);
}

.timeline-badge-result {
    background: var(--color-success-bg);
    color: var(--color-success);
}

.timeline-content ul {
    list-style: none;
    margin-top: 14px;
}

.timeline-content ul li {
    padding: 5px 0 5px 18px;
    position: relative;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.timeline-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.6;
}

/* ---- STAT COUNTERS ---- */
.stat-num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 52px;
    color: var(--color-accent);
    line-height: 1;
}

/* ---- PROBLEM CARDS ---- */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.problem-card {
    padding: 28px 32px;
    background: white;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md), 4px 0 0 0 var(--color-accent) inset;
}

.problem-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, var(--color-accent-light), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.problem-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
}

.problem-card:hover::after {
    opacity: 1;
}

.problem-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.problem-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.problem-card h4 {
    font-size: 19px;
    line-height: 1.3;
}

.problem-card p {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.72;
}

/* ---- EXPERT CARDS ---- */
.expert-points {
    list-style: none;
    margin: 16px 0;
}

.expert-points li {
    padding: 9px 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    transition: background 0.2s;
}

.expert-points li:hover {
    background: rgba(255, 255, 255, 0.05);
}

.expert-point-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.expert-stats {
    display: flex;
    gap: 0;
    margin: 18px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.expert-stat {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.expert-stat:last-child {
    border-right: none;
}

.expert-stat .val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: white;
    line-height: 1.2;
}

.expert-stat .lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

.expert-quote {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--card-radius-sm);
    padding: 18px 20px;
    margin-top: 16px;
    font-style: italic;
    font-size: 14.5px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.62);
    border-left: 2px solid var(--color-accent);
}

/* ---- AUDIENCE CARDS ---- */
.audience-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 30px 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.38s ease;
    position: relative;
    overflow: hidden;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.audience-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-accent-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.audience-card h4 {
    margin-bottom: 6px;
    font-size: 19px;
}

.audience-professions {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 14px;
    line-height: 1.55;
}

.audience-pain {
    font-style: italic;
    color: var(--color-text-secondary);
    font-size: 14.5px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.audience-pain strong {
    color: var(--color-accent);
    font-style: normal;
    font-weight: 700;
}

.audience-get strong {
    color: var(--color-text-primary);
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

/* ---- PRIZE CARDS ---- */
.prize-main {
    background: var(--color-bg-dark-card);
    border: 2px solid var(--color-vip-gold);
    border-radius: var(--card-radius);
    padding: 48px;
    box-shadow: 0 0 60px rgba(212, 168, 83, 0.14), var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.prize-main::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1), transparent 70%);
    pointer-events: none;
}

.prize-small {
    background: var(--color-bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 32px;
    text-align: center;
    color: var(--color-text-on-dark);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.prize-small:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.prize-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 16px;
}

/* ---- DUO BLOCK ---- */
.duo-block {
    background: var(--color-bg-dark);
    border-radius: var(--card-radius);
    padding: 0;
    color: white;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.duo-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-vip-gold), var(--color-accent));
    pointer-events: none;
    z-index: 1;
}

.duo-block-head {
    background: linear-gradient(135deg, #c41920 0%, #ed1c24 100%);
    padding: 40px 48px 36px;
    position: relative;
    overflow: hidden;
}

.duo-block-head::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.duo-block-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.duo-block-col {
    padding: 36px 40px;
    position: relative;
}

.duo-block-col:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.duo-block-col-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

/* ---- BONUS CARD ---- */
.bonus-card {
    border-radius: var(--card-radius);
    padding: 36px 40px;
    background: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(237, 28, 36, 0.12), 0 -4px 0 0 var(--color-accent) inset;
}

.bonus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent-light), transparent 60%);
    pointer-events: none;
}

.bonus-card>* {
    position: relative;
    z-index: 1;
}

/* ---- STEPS (post-purchase) ---- */
.step-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 14px 0;
}

.step-item+.step-item {
    border-top: 1px solid var(--color-border);
}

.step-num {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

/* ---- METHODOLOGY CARD ---- */
.method-card {
    border-radius: var(--card-radius);
    padding: 40px;
    margin-bottom: 52px;
    background: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(237, 28, 36, 0.1);
}

.method-card>* {
    position: relative;
    z-index: 1;
}

.method-icon-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
}

.method-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* ---- EXPERTS GRID ---- */
.experts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 28px;
    align-items: start;
}

.expert-card {
    background: var(--color-bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--card-radius);
    overflow: hidden;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    transition: border-color 0.3s ease;
}

.expert-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.expert-card__photo {
    overflow: hidden;
}

.expert-card__photo img {
    aspect-ratio: 4/5;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.expert-card__name {
    padding: 24px var(--card-padding) 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.expert-card__points {
    padding: 20px var(--card-padding);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.expert-card__stats {
    padding: 20px var(--card-padding);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.expert-card__quote {
    padding: 20px var(--card-padding) var(--card-padding);
}

@media (max-width: 768px) {
    .experts-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .expert-card {
        grid-row: span 1;
        grid-template-rows: auto;
    }

    .expert-card__name,
    .expert-card__points,
    .expert-card__stats,
    .expert-card__quote {
        padding-left: var(--card-padding-mobile);
        padding-right: var(--card-padding-mobile);
    }
}

/* ---- GRID HELPERS ---- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-large);
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap);
}

/* ---- RESULT CARDS ---- */
.result-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.result-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.result-card:hover::before {
    transform: scaleX(1);
}

.result-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.result-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.result-card p {
    color: var(--color-text-secondary);
    font-size: 15.5px;
    line-height: 1.65;
}

.result-stat-wrap {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px dashed rgba(237, 28, 36, 0.2);
}

/* ---- BURGER MENU ---- */
.burger-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-accent-light);
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background 0.25s;
    flex-shrink: 0;
    padding: 0;
    display: flex;
}

.burger-btn:hover {
    background: var(--color-accent-mid);
}

.burger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s;
    transform-origin: center;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Drawer overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.visible {
    opacity: 1;
}

/* Drawer panel */
.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    z-index: 1000;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
}

.nav-drawer.open {
    transform: translateX(0);
}

.nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 16px;
    border-bottom: 1px solid var(--color-border);
}

.nav-drawer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    color: var(--color-text-primary);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.nav-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent-light);
    color: var(--color-accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.nav-drawer-close:hover {
    background: var(--color-accent);
    color: white;
    transform: rotate(90deg);
}

.nav-drawer-links {
    list-style: none;
    padding: 8px 0;
    flex: 0;
}

.nav-drawer-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-primary);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-drawer-links li a:hover,
.nav-drawer-links li a:focus {
    color: var(--color-accent);
    background: var(--color-accent-light);
    border-left-color: var(--color-accent);
    outline: none;
}

.nav-drawer-links li a .nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: var(--color-accent-light);
    color: var(--color-accent);
    transition: background 0.2s;
}

.nav-drawer-links li a:hover .nav-icon {
    background: var(--color-accent);
    color: white;
}

.nav-drawer-divider {
    height: 1px;
    background: var(--color-border);
    margin: 8px 20px;
}

.nav-drawer-footer {
    padding: 18px 20px 20px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-warm);
}

.nav-drawer-footer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: var(--color-accent);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--button-radius);
    text-decoration: none;
    margin-bottom: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}

.nav-drawer-footer-cta:hover {
    background: var(--color-accent-hover);
    transform: scale(1.02);
}

.nav-drawer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-drawer-contacts a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-drawer-contacts a:hover {
    color: var(--color-accent);
}

.nav-drawer-contacts .contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.72);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 997;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.88);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: var(--color-accent);
    border-color: transparent;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 24px rgba(237, 28, 36, 0.4);
}

.back-to-top:active {
    transform: scale(0.96);
}

/* ---- MOBILE CTA BAR ---- */
.mobile-cta-bar {
    display: none;
}

/* ---- DOT GRID ---- */
.dot-grid {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.12;
    background-image: radial-gradient(circle, var(--color-accent) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
    padding: 64px 0 40px;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.footer-divider {
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    margin: 16px auto;
    border-radius: 2px;
}

.footer-legal {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.9;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.25s;
}

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

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

/* ---- HERO GRID ---- */
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "top   photo"
        "bottom photo";
    gap: 32px 72px;
    align-items: start;
}

.hero-top    { grid-area: top; }
.hero-photo  { grid-area: photo; }
.hero-bottom { grid-area: bottom; }

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "top"
            "photo"
            "bottom";
        gap: 20px;
    }

    .hero-photo {
        margin-left: -16px;
        margin-right: -16px;
    }

    .hero-photo-glow {
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .hero-photo-glow img {
        border-radius: 0 !important;
    }
}

/* ---- HERO PHOTO GLOW ---- */
.hero-photo-glow {
    position: relative;
    z-index: 1;
    border-radius: 0;
    box-shadow:
        0 0 0 1px rgba(212, 168, 83, 0.4),
        0 0 18px 4px rgba(212, 168, 83, 0.5),
        0 0 48px 12px rgba(212, 168, 83, 0.3),
        0 0 100px 30px rgba(212, 168, 83, 0.16);
    transform: translateZ(0);
    will-change: transform;
}

@media (max-width: 768px) {
    .hero-photo-glow {
        box-shadow: var(--shadow-xl);
    }
}

/* ---- DESKTOP FONT SIZE BOOSTS ---- */
@media (min-width: 769px) {

    .caption,
    .caption-light {
        font-size: 13px;
    }

    .faq-answer-inner {
        font-size: 17px;
    }

    .check-list li {
        font-size: 16.5px;
    }

    .audience-professions {
        font-size: 14px;
    }

    .audience-pain {
        font-size: 15.5px;
    }

    .review-text {
        font-size: 16px;
    }

    .review-name {
        font-size: 16px;
    }

    .expert-points li {
        font-size: 16px;
    }

    .timeline-content ul li {
        font-size: 16px;
    }

    .problem-card p {
        font-size: 17px;
    }

    .result-card p {
        font-size: 16.5px;
    }

    .cta-micro {
        font-size: 14px;
    }

    .section-subtitle {
        font-size: 20px;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 26px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding-bottom: 80px;
    }

    h1 {
        font-size: 34px;
        letter-spacing: -0.018em;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 18px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    section {
        padding: var(--section-padding-mobile) !important;
    }

    .container,
    .container-narrow {
        padding: 0 16px;
    }

    .card {
        padding: var(--card-padding-mobile);
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-text {
        order: 2;
    }

    .hero-photo {
        order: 1;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .phones-fan {
        height: 280px;
    }

    .phones-fan .phone-mockup {
        width: 130px;
    }

    .phones-fan .phone-mockup:nth-child(1) {
        transform: rotate(-10deg) translateX(-80px);
    }

    .phones-fan .phone-mockup:nth-child(3) {
        transform: rotate(10deg) translateX(80px);
    }

    .cta-primary,
    .cta-secondary,
    .cta-gold {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
        letter-spacing: 0.02em;
    }

    .countdown-block {
        min-width: 60px;
        padding: 12px 14px;
    }

    .countdown-block .num {
        font-size: 28px;
    }

    .header-cta-desktop {
        display: none;
    }

    .back-to-top {
        bottom: 88px;
        right: 14px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .blob {
        display: none;
    }

    .dot-grid {
        display: none;
    }

    .timeline {
        padding-left: 44px;
    }

    .timeline::before {
        left: 16px;
    }

    .timeline-num {
        left: -44px;
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .timeline-content {
        padding: 20px 22px;
    }

    .prize-main {
        padding: 24px;
    }

    .prize-main-grid {
        grid-template-columns: 1fr !important;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .expert-stats {
        flex-wrap: wrap;
    }

    .check-list {
        column-count: 1 !important;
    }

    .method-card {
        padding: 28px 20px;
    }

    .duo-block-cols {
        grid-template-columns: 1fr;
    }

    .duo-block-col:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .duo-block-head {
        padding: 28px 24px 24px;
    }

    .duo-block-col {
        padding: 24px 24px;
    }

    .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
        background: white;
        border-top: 1px solid var(--color-border);
        padding: 12px 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .mobile-cta-bar .mob-price {
        font-family: var(--font-heading);
        font-weight: 900;
        font-size: 22px;
        color: var(--color-accent);
        white-space: nowrap;
    }

    .mobile-cta-bar .mob-btn {
        background: var(--color-accent);
        color: white;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 14px;
        padding: 13px 22px;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        white-space: nowrap;
        flex-shrink: 0;
    }
}