:root {

    /* =========================
       BRAND COLORS
    ========================== */

    --color-primary: #1F2344;
    /* Coach blazer navy */
    --color-primary-dark: #171B34;
    --color-primary-light: #2C315C;

    --color-accent: #D94A2A;
    /* Coach top coral */
    --color-accent-dark: #C03D20;
    --color-accent-light: #F26A4B;

    --color-gold: #C9A063;
    /* Premium highlight */
    --color-gold-light: #E5C992;

    /* =========================
       BACKGROUNDS
    ========================== */

    --bg-main: #FFF8F4;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;

    --bg-card: #FFFFFF;
    --bg-card-hover: #FFFDFB;

    --bg-dark: #1F2344;

    /* =========================
       TEXT COLORS
    ========================== */

    --text-primary: #333333;
    --text-secondary: #333333;
    --text-light: #777777;
    --text-white: #FFFFFF;

    /* =========================
       BORDERS
    ========================== */

    --border-light: #EAEAEA;
    --border-medium: #DADADA;

    /* =========================
       SHADOWS
    ========================== */

    --shadow-sm:
        0 4px 12px rgba(0, 0, 0, 0.06);

    --shadow-md:
        0 8px 24px rgba(0, 0, 0, 0.08);

    --shadow-lg:
        0 15px 40px rgba(0, 0, 0, 0.12);

    /* Premium shadow */

    --shadow-premium:
        0 20px 60px rgba(31, 35, 68, 0.15);

    /* =========================
       GRADIENTS
    ========================== */

    --gradient-primary:
        linear-gradient(135deg,
            #1F2344 0%,
            #2C315C 100%);

    --gradient-accent:
        linear-gradient(135deg,
            #D94A2A 0%,
            #F26A4B 100%);

    --gradient-hero:
        linear-gradient(135deg,
            #FFF8F4 0%,
            #FFF3EE 50%,
            #FFFDFB 100%);

    --gradient-gold:
        linear-gradient(135deg,
            #C9A063 0%,
            #E5C992 100%);

    /* =========================
       BUTTONS
    ========================== */

    --btn-primary-bg: #D94A2A;
    --btn-primary-hover: #C03D20;
    --btn-primary-text: #FFFFFF;

    --btn-secondary-bg: #1F2344;
    --btn-secondary-hover: #171B34;
    --btn-secondary-text: #FFFFFF;

    /* =========================
       RADIUS
    ========================== */

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    /* =========================
   SPACING SYSTEM
========================== */

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
    --space-2xl: 80px;
    --space-3xl: 120px;



    /* =========================
       CONTAINER
    ========================== */

    --container-width: 1280px;
    --section-spacing: 10px;

    /* =========================
       TRANSITIONS
    ========================== */

    --transition:
        all 0.3s ease;

    /* =========================
       TYPOGRAPHY
    ========================== */

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Inter', sans-serif;

    /* =========================
    LAYERS
    ========================== */

    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-modal: 1000;

}


.luxury-heading {
    font-family: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-main);
    overflow-x: hidden;
    line-height: 1.6;
}



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

.text-left {
    text-align: left;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.w-100 {
    width: 100%;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.bg-light {
    background: var(--bg-light);
}

.bg-white {
    background: var(--bg-white);
}

.bg-primary {
    background: var(--gradient-primary);
    color: white;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: auto;
    padding: 0 20px;
}

section {
    padding: var(--section-spacing) 0 !important;
    background: radial-gradient(circle at top right, rgba(139, 94, 131, .08), transparent 40%), var(--gradient-hero) !important;
}

/* section {
    padding: 20px 0px !important;
} */


h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);

    padding: 18px 36px;

    border: none;
    border-radius: var(--radius-md);

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;
    cursor: pointer;

    transition: var(--transition);

    box-shadow: var(--shadow-md);
}

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

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow {
    /* color: var(--color-accent); */
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 48px !important;
    font-weight: 800 !important;
    margin-bottom: 18px !important;

}


.section-heading {
    text-align: center !important;
    margin: 0px auto 20px !important;

}

.section-heading p {
    font-size: 19px !important;
    line-height: 1.8 !important;
    max-width: 750px !important;
    margin: auto !important;
    color: var(--text-secondary) !important;

}

@media(max-width:768px) {
    .section-heading h2 {
        font-size: 32px !important;
    }

    .section-heading {
        margin-bottom: 40px !important;
    }
}


/* ===================================
   HERO SECTION
=================================== */

.hero {
    /* background: var(--gradient-hero); */
    background:
        radial-gradient(circle at top right,
            rgba(139, 94, 131, .08),
            transparent 40%),
        var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;

    width: 500px;
    height: 500px;

    background: rgba(201, 160, 99, 0.08);

    border-radius: 50%;

    filter: blur(80px);
}

.hero-container {
    max-width: var(--container-width);
    margin: auto;
    padding: 5px 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    position: relative;
    z-index: 2;
}

/* =========================
   LEFT CONTENT
========================= */

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 22px;

    border-radius: var(--radius-pill);

    background: rgba(31, 35, 68, 0.08);

    color: var(--color-primary);

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 24px;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;

    color: var(--color-primary);

    margin-bottom: 20px;
}

.hero-title-span {
    color: var(--color-accent);
    font-style: italic;
}

.revive-block {
    margin-bottom: 8px;
}

.discover-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.revive-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 1;

    color: var(--color-primary);

    letter-spacing: 4px;

    margin: 8px 0;
}

.revive-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;

    max-width: 650px;

    margin-bottom: 20px;

    color: var(--text-secondary);
}

/* =========================
   DATE TIME
========================= */

.event-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;

    margin-bottom: 20px;
}

.event-card {
    background: var(--bg-white);

    border: 1px solid rgba(31, 35, 68, 0.08);

    padding: 14px 22px;

    border-radius: var(--radius-pill);

    font-size: 15px;
    font-weight: 700;

    box-shadow: var(--shadow-sm);
}

/* =========================
   PRICING
========================= */

.pricing-section {
    margin-bottom: 2px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;
}

.old-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 54px;
    font-weight: 900;
    color: var(--color-accent);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 60px;

    padding: 18px 36px;

    background: var(--gradient-accent);

    color: #fff;

    font-size: 18px;
    font-weight: 800;

    text-decoration: none;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-lg);

    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.secure-payment {
    margin-top: 15px;

    font-size: 14px;
    color: var(--text-light);
}

/* =========================
   TRUST GRID
========================= */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;

    max-width: 700px;
}

.trust-item {
    background: var(--bg-white);

    padding: 16px 18px;

    border-radius: var(--radius-md);

    font-size: 15px;
    font-weight: 600;

    box-shadow: var(--shadow-sm);

    border: 1px solid rgba(31, 35, 68, 0.05);
}

/* =========================
   IMAGE
========================= */

.hero-image {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 650px;

    height: auto;

    object-fit: contain;
}

/* Optional Badge */

.coach-badge {
    position: absolute;

    bottom: 50px;
    left: 0;

    background: var(--bg-white);

    padding: 16px 22px;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-lg);

    font-weight: 700;
}

/* ===================================
   TABLET
=================================== */

@media(max-width:992px) {

    .hero-title {
        font-size: 48px;
    }

    .revive-title {
        font-size: 48px;
    }

}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px) {

    .hero-container {
        flex-direction: column-reverse;
        gap: 40px;

        padding: 40px 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .revive-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

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

    .hero-description {
        font-size: 17px;
    }

    .event-details {
        justify-content: center;
    }

    .price-row {
        justify-content: center;
    }

    .cta-button {
        width: 100%;
    }

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

    .hero-image img {
        max-width: 340px;
    }

    .coach-badge {
        position: static;
        margin-top: 20px;
    }
}

.offer-tag {
    background: #27AE60;
    color: #fff;

    padding: 6px 12px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
}


.hero-right {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: flex-start;
}

.hero-photo-wrap {
    position: relative;
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
    animation: heroFloat 2.5s ease-in-out infinite;
}

@keyframes heroFloat {

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

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

.hero-photo-wrap::before {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(227, 207, 160, 0.28), rgba(201, 140, 97, 0.20), rgba(20, 39, 78, 0.12));
    filter: blur(12px);
    z-index: 0;
}

.hero-photo {
    position: relative;
    z-index: 2;
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 30px 80px rgba(20, 39, 78, 0.18);
    padding: 14px;
}

.hero-photo img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 28px;
    /* background: linear-gradient(180deg, #FFF6D5, #efe6dc); */
    background: radial-gradient(circle at top right, rgba(139, 94, 131, .08), transparent 40%), var(--gradient-hero);
}

.fill-\[\#00b67a\] {
    fill: #00b67a;
}

.bg-\[\#00b67a\] {
    --tw-bg-opacity: 1;
    background-color: rgb(0 182 122 / var(--tw-bg-opacity, 1));
}

.fill-white {
    fill: #fff;
}

.rounded-\[2px\] {
    border-radius: 2px;
}

.floating-mini-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-card);
    border-radius: 22px;
    padding: 16px 18px;
    z-index: 3;
    animation: miniCardFloat 2.6s ease-in-out infinite;
}

.floating-mini-card strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.floating-mini-card span {
    /* color: var(--text-soft); */
    font-size: 0.88rem;
    font-weight: 700;
}

.mini-card-1 {
    top: 38px;
    left: -30px;
}

.mini-card-2 {
    bottom: 40px;
    right: -28px;
    /* animation-delay: 1.2s; */
}

.mini-card-3 {
    bottom: -18px;
    left: 30px;
    /* animation-delay: 2s; */
}

@keyframes miniCardFloat {

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

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

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.76));
    border: 1px solid rgba(227, 207, 160, 0.34);
    backdrop-filter: blur(18px);
    border-radius: var(--radius-xl);
    padding: 34px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 140, 97, 0.10), transparent 30%);
    pointer-events: none;
}

.offer-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-soft), #FFF7E7);
    color: #6A4A1E;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(185, 122, 86, 0.12);
    flex-wrap: wrap;
}

.strike-price {
    text-decoration: line-through;
    opacity: 0.75;
    font-weight: 700;
    color: var(--text-soft);
}

.free-price {
    font-weight: 900;
    color: #0E7A38;
    animation: freeBlink 1.6s infinite;
    font-size: 1rem;
}

.you {
    color: #0E7A38;
    font-style: italic;
}


.hero-card h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--navy);
}

.hero-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
    list-style: none;
}

.hero-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-soft);
    font-size: 0.98rem;
}

.hero-list li span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--gold);
    font-size: 0.92rem;
    flex-shrink: 0;
    font-weight: 800;
}

.urgency-box {
    margin-top: 22px;
    background: linear-gradient(135deg, rgba(255, 245, 240, 0.95), rgba(255, 255, 255, 0.85));
    border: 1px solid rgba(201, 140, 97, 0.35);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow-card);
    animation: flashUrgency 2s infinite;
}

.urgency-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.urgency-label {
    font-size: 0.92rem;
    font-weight: 800;
    color: #A4472F;
    letter-spacing: 0.02em;
}

.seat-count {
    font-size: 1.3rem;
    font-weight: 900;
    color: #C53B2C;
}

.urgency-sub {
    margin-top: 8px;
    font-size: 0.94rem;
    color: var(--text-soft);
    font-weight: 700;
}

.countdown-wrap {
    margin-top: 18px;
    background: linear-gradient(135deg, rgba(20, 39, 78, 0.96), rgba(29, 52, 97, 0.96));
    border-radius: 24px;
    padding: 22px;
    color: white;
    box-shadow: 0 20px 40px rgba(20, 39, 78, 0.18);
}

.countdown-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 0.02em;
}

.countdown-grid {
    /* display: grid; */
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    text-align: center;
}

.count-box {
    /* background: rgba(255,255,255,0.08); */
    /* background: linear-gradient(135deg, var(--bronze1), var(--copper));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 6px 5px;
      backdrop-filter: blur(8px); */
    display: inline-block;
    color: var(--gold);
    /* padding: 12px 20px; */
    /* border: 2px solid #333; */
    border-radius: 8px;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: monospace;
}

.count-box strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 6px;
    color: white;
}

.count-box span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.80));
    border: 1px solid rgba(227, 207, 160, 0.28);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(201, 140, 97, 0.06);
    top: -50px;
    right: -40px;
    filter: blur(20px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(20, 39, 78, 0.10);
}

/* ===================================
   SECRETS SECTION
=================================== */
/* ===================================
   SECRETS SECTION
=================================== */

.secrets-section {
    position: relative;
    overflow: hidden;

    padding: 20px 0;

    /* background:
    linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-light) 100%
    ); */
}

/* Luxury Glow */

/* .secrets-section::before {

    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(201, 160, 99, 0.12);

    filter: blur(120px);

    z-index: 1;
} */

.secrets-section::after {

    content: "";

    position: absolute;

    bottom: -150px;
    left: -150px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(217, 74, 42, 0.08);

    filter: blur(120px);

    z-index: 1;
}

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

/* ===================================
   SECTION HEADING
=================================== */

.secrets-section .section-heading {
    text-align: center;
    /* max-width: 850px; */
    margin: 0 auto 20px;
}

.eyebrow {

    display: inline-block;

    padding: 10px 20px;

    background:
        rgba(231, 15, 15, 0.08);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 999px;
    color: var(--color-accent);
    /* 
    color:
    var(--color-gold); */

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;
}

.secrets-section h2 {

    font-size: 48px;
    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 18px;
}

/*.secrets-section .section-heading p {

     color:
    rgba(255,255,255,0.80); 

    font-size: 19px;

    line-height: 1.8;

    max-width: 750px;

    margin: auto;
}*/

/* ===================================
   GRID
=================================== */

.secrets-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}

/* ===================================
   CARD
=================================== */

.secret-card {

    position: relative;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 255, 255, 0.92));

    border:
        1px solid rgba(255, 255, 255, 0.6);

    backdrop-filter:
        blur(12px);

    border-radius:
        var(--radius-lg);

    padding: 40px 32px;

    box-shadow:
        var(--shadow-premium);

    transition:
        var(--transition);

    overflow: hidden;

    height: 100%;
}

/* .secret-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        rgba(201, 160, 99, 0.10);

    top: -60px;
    right: -60px;

    filter: blur(20px);
} */

.secret-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18);
}

/* ===================================
   ICON
=================================== */

.secret-icon {

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    border-radius: 20px;

    background:
        rgba(217, 74, 42, 0.10);

    margin-bottom: 22px;
}

/* ===================================
   SECRET LABEL
=================================== */

.secret-number {

    display: inline-flex;
    align-items: center;

    padding: 8px 14px;

    border-radius: 999px;

    background:
        rgba(31, 35, 68, 0.08);

    color:
        var(--color-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 20px;
}

/* ===================================
   TITLE
=================================== */

.secret-card h3 {

    font-size: 28px;
    font-weight: 800;

    /* color: var(--color-primary); */
    color: var(--color-accent);

    line-height: 1.25;

    /* margin-bottom:18px; */
}

/* ===================================
   DESCRIPTION
=================================== */

.secret-card p {

    font-size: 17px;

    line-height: 1.8;

    color:
        var(--text-secondary);
}

/* ===================================
   FOOTER CTA
=================================== */

.secret-footer {

    text-align: center;

    margin-top: 10px;

    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    padding: 10px;

}

.cta-proof {
    text-align: center;
    color: var(--color-accent);
}


.secrets-footer {

    text-align: center;

    margin-top: 20px;

    /* max-width: 850px; */

    margin-left: auto;
    margin-right: auto;
    /* background-color: var(--bg-dark); */
    background: var(--gradient-primary);
    border-radius: 50px;
    padding: 20px;

}

.space {
    margin-bottom: 100px;
}

/* .secrets-footer::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

    /* top: -120px;
    right: -80px;
} */

.secrets-footer h3 {
    color: rgba(255, 255, 255, 0.85);
}

.secrets-footer p {

    color:
        rgba(255, 255, 255, 0.85);

    font-size: 20px;

    line-height: 1.8;

    margin-bottom: 10px;
}

.secrets-footer .btn-primary {

    min-width: 320px;

    font-size: 18px;

    font-weight: 800;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:992px) {

    .secrets-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .secrets-section h2 {
        font-size: 40px;
    }
}

@media(max-width:768px) {

    .secrets-section {
        padding: 70px 0;
    }

    .secrets-section .section-heading {
        margin-bottom: 40px;
    }

    .secrets-section h2 {
        font-size: 32px;
    }

    .secrets-section .section-heading p {
        font-size: 16px;
    }

    .secret-card {
        padding: 28px 24px;
    }

    .secret-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .secret-card h3 {
        font-size: 24px;
    }

    .secret-card p {
        font-size: 16px;
    }

    .secrets-footer p {
        font-size: 17px;
    }

    .secrets-footer .btn-primary {
        width: 100%;
        min-width: auto;
    }
}




/* ===================================
   SUCCESS STORIES
=================================== */

.success-stories {

    padding: 20px 0;

    background:
        var(--bg-main);
}

/* ===================================
   VIDEO GRID
=================================== */

.video-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

    /* margin-top: 60px; */
}

/* ===================================
   VIDEO CARD
=================================== */

.video-card {

    text-decoration: none;

    display: block;
}

.video-thumbnail {

    position: relative;

    overflow: hidden;

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-premium);

    transition:
        var(--transition);
}

.video-thumbnail:hover {

    transform:
        translateY(-6px);
}

.video-thumbnail img {

    width: 100%;

    display: block;

    aspect-ratio: 16/9;

    object-fit: cover;
}

/* ===================================
   PLAY BUTTON
=================================== */

.play-button {

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background:
        rgba(217, 74, 42, 0.95);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .2);
}

/* ===================================
   FOOTER
=================================== */

.stories-footer {

    text-align: center;

    margin-top: 20px;
}

.stories-footer p {

    margin-bottom: 25px;

    font-size: 18px;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px) {

    .success-stories {

        padding: 70px 0;
    }

    .video-grid {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .play-button {

        width: 65px;
        height: 65px;

        font-size: 26px;
    }
}


.youtube-lite {

    position: relative;

    cursor: pointer;

    overflow: hidden;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-premium);
}

.youtube-lite img {

    width: 100%;

    display: block;

    aspect-ratio: 16/9;

    object-fit: cover;
}

.youtube-lite iframe {

    width: 100%;
    height: 100%;

    aspect-ratio: 16/9;

    border: none;
}

.play-button {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 80px;
    height: 80px;

    border: none;

    border-radius: 50%;

    background: var(--color-accent);

    color: white;

    font-size: 32px;

    cursor: pointer;

    box-shadow: var(--shadow-lg);
}

/* ===================================
   PAIN POINTS SECTION
=================================== */

.pain-points {

    background: #fff;

    padding: 20px 0;

    position: relative;
}

.pain-points .section-heading h2 span {

    color: var(--color-accent);
}

.pain-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    /* margin-top: 60px; */
}

/* ===================================
   CARD
=================================== */

.pain-card {

    background: var(--bg-card);

    padding: 35px;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);

    transition: var(--transition);

    border: 1px solid rgba(31, 35, 68, 0.05);
}

.pain-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);
}

.pain-icon {

    font-size: 34px;

    margin-bottom: 15px;
}

.pain-card h3 {

    font-size: 24px;

    margin-bottom: 15px;

    color: var(--color-primary);
}

.pain-card p {

    line-height: 1.8;
}

/* ===================================
   CTA BOX
=================================== */

.pain-cta-box {

    margin-top: 70px;

    background: var(--gradient-primary);

    border-radius: 40px;

    padding: 60px;

    text-align: center;

    color: #fff;
}

.pain-cta-box h3 {

    color: #fff;

    font-size: 36px;

    margin-bottom: 20px;
}

.pain-cta-box p {

    color: rgba(255, 255, 255, .9);

    max-width: 800px;

    margin: auto auto 30px;
}

.pain-cta-box .cta-button {

    background: var(--gradient-accent);
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px) {

    .pain-grid {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .pain-card {

        padding: 25px;
    }

    .pain-card h3 {

        font-size: 22px;
    }

    .pain-cta-box {

        padding: 40px 25px;

        border-radius: 30px;
    }

    .pain-cta-box h3 {

        font-size: 28px;
    }
}

/* ===================================
   TRANSFORMATION SECTION
=================================== */

.transformation-section {

    position: relative;
    overflow: hidden;

    padding: 20px 0;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #fff8f4 100%);
}

/* .transformation-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -200px;
    left: -150px;

    border-radius: 50%;

    background:
        rgba(201, 160, 99, .08);

    filter: blur(80px);
} */

.transformation-section h2 span {

    color: var(--color-accent);
}

/* ===================================
   WRAPPER
=================================== */

.transformation-wrapper {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;

    align-items: center;

    /* margin-top: 70px; */
}

/* ===================================
   CARDS
=================================== */

.transformation-card {

    position: relative;

    background:
        rgba(255, 255, 255, .85);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .6);

    border-radius: 32px;

    padding: 20px;

    transition: .4s ease;

    box-shadow:
        0 20px 50px rgba(31, 35, 68, .08);

    overflow: hidden;
}

.transformation-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -50px;
    right: -50px;

    border-radius: 50%;

    background:
        rgba(201, 160, 99, .08);

    filter: blur(10px);
}

.transformation-card:hover {

    transform:
        translateY(-10px) scale(1.02);

    box-shadow:
        0 30px 70px rgba(31, 35, 68, .15);
}

/* ===================================
   BEFORE CARD
=================================== */

.before-card {

    background:
        linear-gradient(180deg,
            #fff7f7,
            #ffffff);

    border-top:
        6px solid #e35d5d;
}

/* ===================================
   AFTER CARD
=================================== */

.after-card {

    background:
        linear-gradient(180deg,
            #fffdf8,
            #ffffff);

    border-top:
        6px solid #0E7A38;
}

/* ===================================
   HEADER
=================================== */

.card-header {

    margin-bottom: 20px;
}

.card-badge {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 999px;

    background: #ffe7e7;

    color: #d9534f;

    font-size: 13px;
    font-weight: 800;

    margin-bottom: 15px;
}

.card-badge.success {

    background: rgba(14, 122, 56, 0.2);

    color: rgba(14, 122, 56, 1);
}

.card-header h3 {

    font-size: 30px;
    line-height: 1.3;
}

/* ===================================
   LISTS
=================================== */

.transformation-card ul {

    list-style: none;
}

.transformation-card li {

    position: relative;

    padding-left: 38px;

    /* margin-bottom: 22px; */

    line-height: 1.8;

    color: var(--text-secondary);

    transition: .3s ease;
}

.transformation-card li:hover {

    transform: translateX(6px);
}

.before-card li::before {

    content: "✕";

    position: absolute;

    left: 0;

    color: #d9534f;

    font-weight: 900;

    font-size: 18px;
}

.after-card li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: #27AE60;

    font-weight: 900;

    font-size: 18px;
}

/* ===================================
   REVIVE CONNECTOR
=================================== */

.revive-connector {

    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse-circle {

    width: 140px;
    height: 140px;

    border-radius: 50%;

    background: var(--gradient-accent);

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #fff;

    font-weight: 900;

    letter-spacing: 2px;

    box-shadow:
        0 20px 40px rgba(217, 74, 42, .25);

    animation:
        pulseGlow 2.5s infinite;
}

.pulse-circle span {

    font-size: 18px;
}

@keyframes pulseGlow {

    0% {

        box-shadow:
            0 0 0 0 rgba(217, 74, 42, .35);
    }

    70% {

        box-shadow:
            0 0 0 25px rgba(217, 74, 42, 0);
    }

    100% {

        box-shadow:
            0 0 0 0 rgba(217, 74, 42, 0);
    }
}

/* ===================================
   FOOTER CTA
=================================== */

.transformation-footer {

    margin-top: 80px;

    text-align: center;

    background:
        var(--gradient-primary);

    padding: 60px;

    border-radius: 40px;

    box-shadow:
        var(--shadow-premium);
}

.transformation-footer h3 {

    color: white;

    font-size: 36px;

    margin-bottom: 15px;
}

.transformation-footer p {

    color:
        rgba(255, 255, 255, .85);

    max-width: 700px;

    margin:
        0 auto 30px;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px) {

    .transformation-section {

        padding: 70px 0;
    }

    .transformation-wrapper {

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .revive-connector {

        order: 2;
    }

    .after-card {

        order: 3;
    }

    .pulse-circle {

        width: 110px;
        height: 110px;
    }

    .pulse-circle span {

        font-size: 15px;
    }

    .transformation-card {

        /* padding: 30px; */
    }

    .card-header h3 {

        font-size: 24px;
    }

    .transformation-footer {

        padding: 40px 25px;
        border-radius: 30px;
    }

    .transformation-footer h3 {

        font-size: 28px;
    }
}

/* ===================================
   COACH SECTION
=================================== */

.coach-section {
    padding: 20px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.coach-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 70px;
    align-items: center;
    /* margin-top: 60px; */
}

/* IMAGE */

.coach-image-card {
    position: relative;
}

.coach-image-card img {
    width: 100%;
    display: block;

    border-radius: 30px;

    background: var(--bg-white);

    box-shadow: var(--shadow-premium);

    transition: .4s ease;
}

.coach-image-card:hover img {
    transform: translateY(-8px);
}

.coach-floating-badge {
    position: absolute;

    background: white;

    padding: 12px 18px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    box-shadow: var(--shadow-md);
}

.badge-1 {
    bottom: 140px;
    left: -25px;
}

.badge-2 {
    bottom: 40px;
    right: -20px;
}

.badge-3 {
    top: 20px;
    right: -10px;
}


/* CONTENT */

.coach-role {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 22px;

    margin-bottom: 18px;
}

.coach-text {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 10px;
}

/* ACHIEVEMENTS */

.coach-achievements {
    margin-top: 10px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.achievement-card {
    background: white;

    padding: 28px;

    border-radius: 20px;

    text-align: center;

    box-shadow: var(--shadow-sm);

    border: 1px solid rgba(31, 35, 68, .05);

    transition: .3s ease;

    font-size: 18px;
}

.achievement-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

    border-color: rgba(217, 74, 42, .25);
}

.achievement-card span {
    display: block;
    margin-top: 12px;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.6;
}

.achievement-card h2 {
    color: var(--color-accent);
}

/* MISSION */

.mission-card {

    margin-top: 80px;

    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;

    padding: 60px;

    border-radius: 32px;

    background: var(--gradient-primary);

    color: white;

    position: relative;

    overflow: hidden;
}

.mission-card::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

    top: -120px;
    right: -80px;
}

.mission-icon {

    font-size: 42px;

    margin-bottom: 15px;
}

.mission-card h3 {

    color: white;

    font-size: 38px;

    margin-bottom: 20px;
}

.mission-card p {

    color: rgba(255, 255, 255, .9);

    font-size: 20px;

    line-height: 1.8;

    max-width: 700px;

    margin: auto auto 30px;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px) {

    .coach-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .coach-content {
        text-align: center;
    }

    .coach-achievements {
        grid-template-columns: 1fr;
    }

    /* .badge-1 {
        left: 10px;
        bottom: 1400px;
    } */

    .badge-2 {
        right: 10px;
        bottom: 20px;
    }

    .mission-card {
        padding: 40px 25px;
    }

    .mission-card h3 {
        font-size: 30px;
    }

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

.mission-proof {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 24px;

    padding: 12px 22px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 999px;

    color: var(--color-gold-light);

    font-size: 15px;
    font-weight: 700;

    backdrop-filter: blur(12px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ===================================
   REVIEWS SECTION
=================================== */

.reviews-section {
    padding: 20px 0;
    background: #fff;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background:
        radial-gradient(circle at top right,
            rgba(201, 160, 99, .08),
            transparent 30%);

    pointer-events: none;
}


.reviews-grid {

    column-count: 3;
    column-gap: 24px;

    /* margin-top: 60px; */
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 20px;
    background: linear-gradient(135deg,
            #1f2344,
            #B22222,
            #D4AF37);


    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;

}


.review-card {

    /* display: inline-block;
    width: 100%;

    margin-bottom: 24px;

    break-inside: avoid;

    background: #fff;
    border-radius: 24px;
    overflow: hidden;

    box-shadow: var(--shadow-md);
    transition: all .35s ease;
     border:5px solid var(--color-accent-dark); */

    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 8px;
    transition: all .4s ease;
    position: relative;
    margin-bottom: 24px;

}

.review-card img {

    width: 100%;
    height: auto;

    display: block;
}

.review-card:hover {

    /* transform: translateY(-6px);
    box-shadow: var(--shadow-lg); */

    /* transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); */


    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 0 15px #D4AF37,
        0 0 35px rgba(212, 175, 55, 0.6);
}

.review-card:hover img {

    transform: scale(1.03);
}

/* .reviews-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 30px;

    margin-top: 60px;
} */

/* Review Card */

/* .review-card {
    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: var(--shadow-md);

    transition: all .35s ease;

    cursor: pointer;

    position: relative;
} */

/* .review-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow-lg);
}

.review-card img {
    width: 100%;

    aspect-ratio: 9/16;

    object-fit: cover;

    display: block;

    transition: all .4s ease;
}

.review-card:hover img {
    transform: scale(1.03);
} */

/* Placeholder Style */

.review-card.placeholder {
    border: 2px dashed rgba(31, 35, 68, .15);

    background:
        linear-gradient(135deg,
            #fafafa,
            #f4f4f4);

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card.placeholder span {
    color: #999;
    font-weight: 700;
    text-align: center;
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
}


/* ===================================
   BONUS SECTION
=================================== */

.bonus-section {
    padding: 20px 0;
    background:
        linear-gradient(180deg,
            #fff8f4 0%,
            #ffffff 100%);
}

.bonus-section h2 span {
    color: var(--color-accent);
}

/* GRID */

.bonus-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

    /* margin-top: 60px; */
}

/* CARD */

.bonus-card {

    background: white;

    padding: 30px;

    border-radius: 24px;

    border: 1px solid rgba(31, 35, 68, .05);

    box-shadow: var(--shadow-sm);

    transition: all .3s ease;

    position: relative;

    overflow: hidden;
}

.bonus-card::before {

    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    top: -50px;
    right: -50px;

    border-radius: 50%;

    background:
        rgba(201, 160, 99, .08);
}

.bonus-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow-lg);
}

.bonus-icon {

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    border-radius: 20px;

    background:
        rgba(217, 74, 42, .08);

    margin-bottom: 20px;
}

.bonus-card h3 {

    font-size: 24px;

    margin-bottom: 12px;
}

.bonus-card p {

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 18px;
}

.bonus-price {

    color: var(--color-accent);

    font-size: 20px;

    font-weight: 800;
}

/* VALUE STACK */

.bonus-highlight {

    margin-top: 70px;

    background:
        var(--gradient-primary);

    padding: 60px;

    border-radius: 32px;

    text-align: center;

    color: white;

    box-shadow:
        var(--shadow-premium);
}

.value-stack {

    max-width: 500px;

    margin: 0 auto 35px;

    background:
        rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .10);

    border-radius: 20px;

    overflow: hidden;
}

.stack-row {

    display: flex;

    justify-content: space-between;

    padding: 18px 25px;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);
}

.stack-row:last-child {
    border-bottom: none;
}

.stack-row span {

    color:
        rgba(255, 255, 255, .85);
}

.stack-row strong {

    color: white;

    font-size: 22px;
}

.price-green {

    color: #7DFFA1 !important;
}

.bonus-highlight h3 {

    color: white;

    font-size: 42px;

    margin-bottom: 15px;
}

.bonus-highlight p {

    max-width: 700px;

    margin: 0 auto 20px;

    color:
        rgba(255, 255, 255, .85);
}

.live-warning {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .10);

    border:
        1px solid rgba(255, 255, 255, .10);

    color: var(--color-accent);

    font-weight: 700;
}

/* MOBILE */

@media(max-width:768px) {

    .reviews-grid {

        column-count: 1;
    }

    .bonus-grid {

        grid-template-columns: 1fr;
    }

    .bonus-card {

        padding: 24px;
    }

    .bonus-highlight {

        padding: 40px 25px;
    }

    .bonus-highlight h3 {

        font-size: 30px;
    }

    .stack-row {

        padding: 15px 18px;
    }

    .live-warning {

        font-size: 14px;

        line-height: 1.5;
    }

    .bonus-highlight .cta-button {

        width: 100%;
    }
}

/* ===================================
   FAQ SECTION
=================================== */

.faq-section {

    padding: 120px 0;

    background:
        linear-gradient(180deg,
            #FFFDFB 0%,
            #FFF6F1 100%);

    position: relative;
    overflow: hidden;
}

.faq-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    top: -250px;
    right: -150px;

    background:
        rgba(201, 160, 99, .08);

    filter: blur(80px);
}

/* =========================
   FAQ WRAPPER
========================= */

.faq-wrap {

    /* max-width: 900px; */

    margin: 20px auto 0;

    display: flex;
    flex-direction: column;

    gap: 18px;

    position: relative;
    z-index: 2;
}

/* =========================
   FAQ ITEM
========================= */

.faq-item {

    background: white;

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid rgba(31, 35, 68, .06);

    box-shadow: var(--shadow-sm);

    transition: all .3s ease;
}

.faq-item:hover {

    transform: translateY(-3px);

    box-shadow: var(--shadow-md);
}

/* =========================
   QUESTION
========================= */

.faq-question {

    width: 100%;

    background: none;

    border: none;

    padding: 24px 28px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-align: left;

    cursor: pointer;

    font-size: 18px;

    font-weight: 700;

    color: var(--color-primary);

    font-family: var(--font-primary);
}

.faq-question span:last-child {

    font-size: 26px;

    color: var(--color-accent);

    transition: .3s ease;
}

.faq-item.active .faq-question span:last-child {

    transform: rotate(45deg);
}

/* =========================
   ANSWER
========================= */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;
}

.faq-answer p {

    padding: 0 28px 24px;

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-secondary);
}

/* =========================
   CTA BOX
========================= */

.faq-bottom-cta {

    margin-top: 70px;

    text-align: center;

    background: white;

    padding: 50px;

    border-radius: 32px;

    box-shadow: var(--shadow-lg);

    border: 1px solid rgba(31, 35, 68, .05);

    position: relative;

    overflow: hidden;
}

.faq-bottom-cta::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    top: -100px;
    right: -100px;

    background:
        rgba(217, 74, 42, .05);
}

.faq-bottom-cta h3 {

    font-size: 42px;

    margin-bottom: 15px;

    color: var(--color-primary);
}

.faq-bottom-cta p {

    max-width: 700px;

    margin: 0 auto 25px;

    font-size: 18px;

    line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-wrap {
        margin-top: 40px;
    }

    .faq-question {

        padding: 20px;

        font-size: 16px;
    }

    .faq-answer p {

        padding:
            0 20px 20px;

        font-size: 15px;
    }

    .faq-bottom-cta {

        padding: 35px 22px;
    }

    .faq-bottom-cta h3 {

        font-size: 28px;
    }

    .faq-bottom-cta p {

        font-size: 16px;
    }

    .faq-bottom-cta .cta-button {

        width: 100%;
    }

}

/* ===================================
   STICKY CTA BAR
=================================== */

.sticky-cta-bar {

    position: fixed;

    bottom: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(16px);

    border-top:
        1px solid rgba(31, 35, 68, .08);

    box-shadow:
        0 -8px 30px rgba(0, 0, 0, .08);
}

.sticky-content {

    max-width: 1280px;

    margin: auto;

    padding: 12px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

/* LEFT */

.sticky-left {

    display: flex;

    align-items: center;

    gap: 20px;
}

.sticky-title {

    font-size: 18px;

    font-weight: 800;

    color: var(--color-primary);
}

.sticky-price {

    display: flex;

    align-items: center;

    gap: 10px;
}

.sticky-price .old-price {

    font-size: 18px;

    text-decoration: line-through;

    color: #999;
}

.sticky-price .new-price {

    font-size: 30px;

    font-weight: 900;

    color: var(--color-accent);
}

/* CENTER */

.sticky-middle {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--text-secondary);

    font-weight: 600;

    font-size: 15px;
}

.sticky-middle .divider {

    opacity: .3;
}

/* BUTTON */

.sticky-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 240px;

    height: 56px;

    padding: 0 32px;

    background:
        var(--gradient-accent);

    color: white;

    font-size: 17px;

    font-weight: 800;

    text-decoration: none;

    border-radius: 16px;

    transition: .3s;

    box-shadow:
        var(--shadow-md);
}

.sticky-btn:hover {

    transform:
        translateY(-2px);
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px) {

    body {
        padding-bottom: 90px;
    }

    .sticky-content {

        padding: 10px 15px;

        flex-direction: column;

        gap: 10px;
    }

    .sticky-middle {
        display: none;
    }

    .sticky-left {

        width: 100%;

        justify-content: space-between;
    }

    .sticky-title {

        font-size: 14px;
    }

    .sticky-price .old-price {

        font-size: 14px;
    }

    .sticky-price .new-price {

        font-size: 24px;
    }

    .sticky-right {

        width: 100%;
    }

    .sticky-btn {

        width: 100%;

        min-width: auto;

        height: 58px;

        font-size: 18px;
    }
}



.popup-overlay {
    position: fixed;
    inset: 0;

    background: rgba(31, 35, 68, .75);

    backdrop-filter: blur(10px);

    display: none;
    justify-content: center;
    align-items: center;

    z-index: 9999;

    padding: 20px;
}

.popup-card {

    width: 100%;
    max-width: 500px;

    background: #fff;

    border-radius: 32px;

    padding: 40px;

    position: relative;

    box-shadow:
        0 30px 80px rgba(31, 35, 68, .25);

    animation: popupShow .35s ease;
}

@keyframes popupShow {

    from {
        opacity: 0;
        transform:
            translateY(30px) scale(.95);
    }

    to {
        opacity: 1;
        transform:
            translateY(0) scale(1);
    }
}

.popup-close {

    position: absolute;
    top: 18px;
    right: 18px;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: #f6f6f6;

    cursor: pointer;

    font-size: 22px;
}

.popup-title {

    color: var(--color-primary);

    font-size: 34px;
    font-weight: 800;

    text-align: center;

    margin-bottom: 12px;
}

.popup-subtitle {

    text-align: center;

    color: var(--text-secondary);

    line-height: 1.6;

    margin-bottom: 24px;
}

.popup-benefits {

    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    justify-content: center;

    margin-bottom: 25px;
}

.popup-benefits span {

    background: rgba(217, 74, 42, .08);

    color: var(--color-accent);

    padding: 10px 14px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;
}

.popup-input,
.popup-input1 {

    width: 100%;

    border: 1px solid #e5e5e5;

    border-radius: 16px;

    padding: 16px;

    font-size: 16px;

    margin-top: 8px;

    transition: .3s;
}

.popup-input:focus,
.popup-input1:focus {

    outline: none;

    border-color: var(--color-accent);

    box-shadow:
        0 0 0 4px rgba(217, 74, 42, .10);
}

.popup-btn {

    width: 100%;

    background: var(--gradient-accent);

    color: #fff;

    border: none;

    border-radius: 18px;

    padding: 18px;

    font-size: 18px;
    font-weight: 800;

    cursor: pointer;

    margin-top: 15px;

    transition: .3s;
}

.popup-btn:hover {

    transform: translateY(-2px);
}

.popup-trust {

    text-align: center;

    margin-top: 15px;

    color: #666;

    font-size: 14px;
}

.phone-container {
    width: 100%;
    margin-bottom: 15px;
}

.phone-field {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.country-btn {
    flex: 0 0 90px;

    height: 58px;

    border: 1px solid #e5e5e5;
    border-radius: 16px;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    cursor: pointer;

    font-size: 16px;
    font-weight: 600;
}

.popup-input1 {

    flex: 1;

    height: 58px;

    border: 1px solid #e5e5e5;
    border-radius: 16px;

    padding: 0 18px;

    font-size: 16px;

    outline: none;
}

.popup-input1:focus,
.country-btn:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(217, 74, 42, .08);
}

.error-text1 {
    display: block;
    margin-top: 6px;
    color: #dc2626;
    font-size: 13px;
}

.popup-bonus {
    text-align: center;
    align-items: center;
    display: block;

}

.popup-urgency {
    color: var(--copper);
    font-weight: bold;
    color: var(--color-accent);
    text-align: center;
    align-items: center;
    display: block;
}

.popup-label {

    display: block;
margin-top: 10px;
    margin-bottom: 10px;

    font-size: 14px;

    font-weight: 600;

    color: #1F2556;

    line-height: 1.5;
}

.optional {

    color: #888;

    font-weight: 500;

    font-size: 12px;
}

.popup-textarea {

    width: 100%;

    padding: 16px 18px;

    border: 1px solid #E5E7EB;

    border-radius: 18px;

    font-size: 15px;

    font-family: inherit;

    resize: vertical;

    min-height: 110px;

    transition: all .3s ease;

    background: #fff;
}

.popup-textarea:focus {

    outline: none;

    border-color: #F15A37;

    box-shadow:
        0 0 0 4px rgba(241,90,55,.12);
}