:root {
    --bg: #0a0a0a;
    --surface: #121214;
    --surface-2: #1a1a1e;
    --border: #232328;
    --blue: #2563eb;
    --blue-bright: #3b82f6;
    --white: #ffffff;
    --muted: #8a8a93;
    --muted-2: #5c5c64;
}

html {
    scroll-behavior: smooth;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
.syne {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 90px 0;
    position: relative;
}

.hero+section {
    padding-top: 56px;
}

.label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 20px;
}

.section-heading {
    font-size: clamp(28px, 5vw, 46px);
    margin-bottom: 24px;
}

.center {
    text-align: center;
}

.center .label {
    display: inline-block;
}


/* ===== Buttons ===== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease;
}

.btn:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.4), 0 8px 30px rgba(37, 99, 235, 0.55), 0 0 60px rgba(37, 99, 235, 0.35);
}

.btn-lg {
    font-size: 18px;
    padding: 18px 38px;
    border-radius: 14px;
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--surface-2);
    box-shadow: none;
}


/* ===== Nav ===== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    font-size: 15px;
    padding: 11px 22px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}


/* ===== Hero ===== */

.hero {
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
    background: radial-gradient( circle, rgba(37, 99, 235, 0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

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

.hero h1 {
    font-size: clamp(34px, 6.5vw, 68px);
    max-width: 900px;
    margin: 0 auto 28px;
    font-weight: 600;
}

.hero-subline {
    color: var(--muted);
    max-width: 900px;
    margin: 0 auto;
}

.hero-subline span {
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    color: var(--white);
    font-size: clamp(15px, 2.4vw, 26px);
    font-weight: 500;
    line-height: 1.15;
    background-image: linear-gradient(90deg, var(--blue), transparent);
    padding: 2px 6px;
    border-radius: 65px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #d8d8de;
}

.badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-bright);
    box-shadow: 0 0 8px var(--blue-bright);
}


/* ===== Marquee ===== */

.marquee {
    margin-top: 80px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    white-space: nowrap;
    padding: 18px 0;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-marquee 28s linear infinite;
}

.marquee-track span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--muted);
    padding: 0 4px;
}

.marquee-track span b {
    color: var(--blue-bright);
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* ===== Video ===== */

.video-wrap {
    max-width: 860px;
    margin: 0 auto 36px;
    aspect-ratio: 16 / 9;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    text-align: center;
    color: var(--muted-2);
}

.video-placeholder .play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.5);
}

.video-placeholder .play::after {
    content: "";
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}


/* ===== Pain ===== */

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

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    transform: translateY(-4px);
}

.pain-card {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pain-card .x {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}


/* ===== Solution ===== */

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

.sol-card .sol-label {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.08em;
    color: var(--blue-bright);
    margin-bottom: 12px;
}

.sol-card p {
    color: #c4c4cc;
    font-size: 16px;
}

.sol-num {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: var(--muted-2);
    margin-bottom: 18px;
    font-weight: 700;
}


/* ===== Metrics ===== */

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.metric {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 18px;
}

.metric .num {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: clamp(30px, 3.4vw, 46px);
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #fff, var(--blue-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric .num .pre,
.metric .num .suf {
    font-size: 0.6em;
    font-weight: 600;
}

.metric .cap {
    color: var(--muted);
    font-size: 14px;
    margin-top: 12px;
}


/* ===== YouTube click-to-play facade ===== */

.yt-lite {
    cursor: pointer;
}

.yt-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.yt-lite:hover .yt-thumb {
    transform: scale(1.03);
}

.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 44px rgba(37, 99, 235, 0.6);
    transition: transform 0.25s ease, background 0.25s ease;
}

.yt-lite:hover .yt-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--blue-bright);
}

.yt-play::after {
    content: "";
    border-style: solid;
    border-width: 13px 0 13px 22px;
    border-color: transparent transparent transparent #fff;
    margin-left: 6px;
}


/* ===== Before / After screenshots ===== */

.ba-grid {
    max-width: 720px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ba {
    position: relative;
    margin: 0;
}

.ba img {
    width: 100%;
    display: block;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
}

.ba figcaption {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
}

.ba-before {
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.ba-after {
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.5);
    color: var(--blue-bright);
}


/* ===== Program timeline ===== */

.timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.week-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.week-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    transform: translateY(-4px);
}

.week-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue);
}

.week-num {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 10px;
}

.week-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.week-card p {
    color: var(--muted);
    font-size: 15px;
}


/* ===== Testimonials ===== */

.quote-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
}

.quote-card .stars {
    color: #facc15;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.quote-card p {
    color: #d4d4dc;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #7c3aed);
}

.quote-author .name {
    font-weight: 600;
    font-size: 15px;
}

.quote-author .role {
    color: var(--muted-2);
    font-size: 13px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 14px 26px;
    margin-top: 40px;
}

.rating-badge .big {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 28px;
}

.rating-badge .stars {
    color: #facc15;
    letter-spacing: 2px;
}


/* ===== For who ===== */

.forwho-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 17px;
}

.checklist .ico {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.check .ico {
    background: rgba(37, 99, 235, 0.15);
    color: var(--blue-bright);
}

.nope {
    opacity: 0.65;
}

.nope li {
    color: var(--muted);
}

.nope .ico {
    background: rgba(140, 140, 150, 0.12);
    color: var(--muted);
}

.forwho-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px;
}

.forwho-box h3 {
    font-size: 22px;
    margin-bottom: 24px;
}


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

.cta-section {
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.22), transparent 55%), var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-section h2 {
    font-size: clamp(30px, 5.5vw, 52px);
    max-width: 720px;
    margin: 0 auto 32px;
}

.cta-section .fade-in {
    transition-duration: 0.9s;
}

.cta-section h2.fade-in {
    transition-delay: 0.12s;
}

.cta-section .fade-in:last-child {
    transition-delay: 0.24s;
}

.cta-sub {
    font-size: 20px;
    color: #d4d4dc;
    margin-bottom: 16px;
}

.cta-sub b {
    color: var(--blue-bright);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #f87171;
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
}

.live-dot {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ef4444;
}

.live-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #ef4444;
    animation: live-pulse 1.6s ease-out infinite;
}

@keyframes live-pulse {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.cta-tg {
    margin-top: 22px;
    color: var(--muted);
    font-size: 15px;
}

.cta-tg a {
    color: var(--blue-bright);
    font-weight: 600;
}


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

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    overflow: hidden;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.faq-item.open {
    border-color: rgba(37, 99, 235, 0.5);
    background: var(--surface-2);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 600;
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-q .plus {
    flex-shrink: 0;
    font-size: 26px;
    color: var(--blue-bright);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.faq-item.open .faq-q .plus {
    transform: rotate(135deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a p {
    padding: 0 26px 24px;
    color: var(--muted);
    font-size: 16px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.faq-item.open .faq-a p {
    opacity: 1;
    transform: translateY(0);
}


/* ===== Footer ===== */

footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: var(--muted);
}

footer .logo {
    justify-content: center;
    margin-bottom: 16px;
}

footer a {
    color: var(--blue-bright);
    font-weight: 600;
}

footer .copy {
    font-size: 14px;
}


/* ===== Fade-in animation ===== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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


/* ===== Responsive ===== */

@media (max-width: 860px) {
    section {
        padding: 72px 0;
    }
    .grid-3,
    .grid-2,
    .timeline,
    .forwho-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }
    .metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .logo img {
        height: 44px;
    }
    nav.open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        margin: 0 24px;
    }
    nav.open .nav-links a {
        font-size: 17px;
    }
    nav.open .nav-cta {
        display: inline-flex;
        position: absolute;
        top: 168px;
        left: 0;
        right: 0;
        margin: 0 24px;
        justify-content: center;
    }
    nav.open {
        padding-bottom: 230px;
    }
    .hero {
        padding-top: 130px;
    }
    .marquee-track span {
        font-size: 16px;
    }
}

.modal {
    display: flex;
    flex-direction: column;
}

.request-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    overflow-y: auto;
    z-index: 9999;
}

.request-modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(180deg, #11131a 0%, #090b10 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
}

.request-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.request-modal__close:hover {
    color: #fff;
}

.request-modal__title {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
}

.request-modal__subtitle {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.request-modal__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.request-modal__group {
    display: flex;
    flex-direction: column;
}

.request-modal__label {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    text-align: left;
}

.request-modal__input,
.request-modal__textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.request-modal__input::placeholder,
.request-modal__textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.request-modal__input:focus,
.request-modal__textarea:focus {
    border-color: #2f63ff;
}

.request-modal__textarea {
    min-height: 140px;
    resize: vertical;
}

.request-modal__submit {
    width: 100%;
    height: 50px;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: #2f63ff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.request-modal__submit:hover {
    background: #4271ff;
}

.request-modal__privacy {
    margin-top: 24px;
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 480px) {
    .request-modal {
        max-width: 100%;
        padding: 24px;
    }
    .request-modal__title {
        font-size: 24px;
    }
    .request-modal__subtitle {
        font-size: 14px;
    }
}

.request-modal-overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.request-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.request-modal {
    transform: translateY(10px) scale(0.98);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.request-modal-overlay.active .request-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}