﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0A1628;
    --navy-mid: #0D2040;
    --navy-lt: #162847;
    --cyan: #00C9B1;
    --cyan-dk: #00A896;
    --cyan-glow: rgba(0,201,177,.18);
    --white: #FFFFFF;
    --off-white: #F4F8F8;
    --text-lt: #CBD5E1;
    --text-mid: #94A3B8;
    --gold: #F0B429;
    --gold-dk: #d49a1a;
    --gold-glow: rgba(240,180,41,.18);
    --radius: 16px;
    --blue: #00b6cf;
    --blue-dk: #0097b5;
    --blue-glow: rgba(0,182,207,.18);
    --blue-tertiary: #006688;
    --blue-dark-accent: #2d383f;
    --blue-bright-accent: #f2fdfe;
}

html {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    /*color: var(--navy);*/
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background:var(--white); /*rgba(10,22,40,.92);*/
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,201,177,.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    width: 220px;
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

    .nav-links li {
        list-style: none !important;
        list-style-type: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

        .nav-links li::before,
        .nav-links li::marker {
            display: none !important;
            content: none !important;
        }

    .nav-links a {
        color: var(--navy);
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        transition: color .2s;
        white-space: nowrap;
    }

        .nav-links a:hover {
            color: var(--blue);
        }

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    width: 220px !important;
}

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    font-weight: 700;
    font-size: .88rem;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

    .nav-cta:hover {
        background: var(--blue-dk);
        transform: translateY(-1px);
    }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: transform .2s, opacity .2s;
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ── MOBILE MENU ── */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(10, 22, 40, 0.98);
    border-bottom: 1px solid rgba(0,201,177,.12);
    padding: 8px 6vw 20px;
}

    .nav-mobile-menu ul {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
    }

        .nav-mobile-menu ul li {
            list-style: none !important;
            margin: 0 !important;
            padding: 0 !important;
        }

            .nav-mobile-menu ul li a {
                display: block;
                padding: 12px 0;
                color: var(--text-lt);
                font-size: .95rem;
                font-weight: 500;
                text-decoration: none;
                border-bottom: 1px solid rgba(255,255,255,.06);
                transition: color .2s;
            }

                .nav-mobile-menu ul li a:hover {
                    color: var(--blue);
                }

    .nav-mobile-menu .nav-cta-mobile {
        display: inline-block;
        margin-top: 16px;
        background: var(--blue);
        color: var(--navy) !important;
        font-weight: 700;
        font-size: .88rem;
        padding: 10px 22px;
        border-radius: 8px;
        text-decoration: none !important;
        border-bottom: none !important;
    }

    .nav-mobile-menu.open {
        display: block;
    }

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-logo {
        width: auto;
    }

    .nav-right {
        width: auto !important;
    }
}

/* ── HERO ── */
.hero {

    min-height: 100vh;
    background: var(--off-white);
    background-image: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,201,177,.12) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,90,180,.15) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 6vw 80px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,201,177,.12);
    border: 1px solid rgba(0,201,177,.3);
    border-radius: 99px;
    padding: 6px 18px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 28px;
}

    .hero-badge::before {
        content: '●';
        font-size: .5rem;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    max-width: 1000px;
    margin-bottom: 0px;
}

    .hero h1 em {
        font-style: italic;
        color: var(--blue);
    }

.hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 2.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--blue-tertiary);
    max-width: 1200px;
    margin-bottom: 24px;
}

   

.hero p {
    max-width: 580px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .02em;
    padding: 15px 34px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 0 30px rgba(0,182,207,.35);
}

    .btn-primary:hover {
        background: var(--blue-tertiary);
        /*color: var(--blue);*/
        transform: translateY(-2px);
        box-shadow: 0 4px 40px rgba(0,182,207,.5);
    }

.btn-outline {
    background: transparent;
    color: var(--blue-dark-accent);
    border: 2px solid #0097b5;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 34px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
}

    .btn-outline:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    border-top: 1px solid rgba(0, 182, 207, 0.18);
    padding-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.stat-label {
    font-size: .78rem;
    color: var(--text-mid);
    margin-top: 5px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--navy-mid);
    border-top: 1px solid rgba(0,201,177,.1);
    border-bottom: 1px solid rgba(0,201,177,.1);
    padding: 20px 6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-lt);
}

.trust-icon {
    font-size: 1.2rem;
    color: var(--blue);
}

/* ── SECTIONS COMMON ── */
section {
    padding: 75px 6vw;
}

.section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    max-width: 600px;
}

    .section-title.white {
        color: var(--white);
    }

.section-sub {
    font-size: .97rem;
    line-height: 1.7;
    color: #64748B;
    max-width: 540px;
    margin-top: 14px;
}

    .section-sub.light {
        color: var(--text-lt);
    }

.text-center {
    text-align: center;
}

    .text-center .section-title, .text-center .section-sub {
        margin-left: auto;
        margin-right: auto;
    }

/* ── HOW IT WORKS ── */
.how-bg {
    background: var(--blue);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid #E2ECF0;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,.1);
    }

    .step-card::before {
        content: attr(data-step);
        position: absolute;
        top: -10px;
        right: 20px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 6rem;
        font-weight: 700;
        color: rgba(0,201,177,.06);
        line-height: 1;
    }

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--blue-glow);
    border: 1px solid rgba(0,201,177,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: var(--cyan);
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.step-card p {
    font-size: .9rem;
    line-height: 1.65;
    color: #64748B;
}

/* ── PERKS ── */
.perks-row {
    display: flex;
    gap: 0;
    border: 1px solid #E2ECF0;
    /*border-radius: var(--radius);*/
    overflow: hidden;
    /*margin-top: 60px;*/
}

.perk {
    flex: 1;
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid #E2ECF0;
}

    .perk:last-child {
        border-right: none;
    }

.perk-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.perk-label {
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
}

/* ── PRODUCTS ── */
.products-bg {
    background: var(--navy);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 60px;
}

.product-card {
    background: var(--navy-lt);
    border: 1px solid rgba(0,201,177,.15);
    border-radius: var(--radius);
    padding: 40px 36px;
    position: relative;
    transition: border-color .2s, transform .2s;
    text-align:center;
}

    .product-card:hover {
        border-color: var(--blue);
        transform: translateY(-3px);
    }

.product-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--blue);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 99px;
}

.product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.product-intro {
    font-size: .8rem;
    color: var(--text-mid);
    margin-bottom: 6px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.product-price-note {
    font-size: .82rem;
    color: var(--text-mid);
    margin-bottom: 24px;
    margin-top: 14px;
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .product-features li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        font-size: .88rem;
        color: var(--text-lt);
        line-height: 1.5;
    }

        .product-features li::before {
            content: '✓';
            color: var(--blue);
            font-weight: 700;
            flex-shrink: 0;
        }

.product-disclaimer {
    font-size: .75rem;
    color: var(--text-mid);
    line-height: 1.5;
    margin-top: 16px;
}

.btn-product {
    display: block;
    width: 100%;
    background: var(--blue);
    color: var(--navy);
    text-align: center;
    font-weight: 700;
    font-size: .95rem;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 0 20px rgba(0,182,207,.2);
}

    .btn-product:hover {
        background: var(--blue);
        box-shadow: 0 4px 30px rgba(0,182,207,.4);
    }

    .btn-product.outline {
        background: transparent;
        color: var(--blue);
        border: 2px solid rgba(0,182,207,.4);
        box-shadow: none;
    }

        .btn-product.outline:hover {
            background: var(--blue-glow);
        }

.savings-banner {
    margin-top: 28px;
    background: rgba(0,182,207,.08);
    border: 1px solid rgba(0,182,207,.2);
    border-radius: 10px;
    padding: 16px 24px;
    text-align: center;
    font-size: .88rem;
    color: var(--text-lt);
}

    .savings-banner strong {
        color: var(--blue);
    }


.product-card img {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
    object-fit: contain;
}

/* ── WHY US ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-card {
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid #E2ECF0;
    background: var(--white);
    transition: box-shadow .2s, transform .2s;
}

    .why-card:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,.08);
        transform: translateY(-2px);
    }

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-glow);
    border: 1px solid rgba(0,201,177,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.why-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.why-card p {
    font-size: .88rem;
    line-height: 1.65;
    color: #64748B;
}

/* ── STATS ── */
.stats-bg {
    background: var(--navy);
    background-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,201,177,.08) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: rgba(0,201,177,.1);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat-block {
    background: var(--navy-mid);
    padding: 40px 24px;
    text-align: center;
}

.stat-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.stat-desc {
    font-size: .85rem;
    color: var(--text-lt);
    margin-top: 8px;
    line-height: 1.5;
}

/* ── FAQ ── */
.faq-list {
    max-width: 720px;
    margin: 52px auto 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    border: 1px solid #E2ECF0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
}

    .faq-item.open {
        border-color: var(--blue);
    }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: .97rem;
    color: var(--navy);
    background: var(--white);
    user-select: none;
}

    .faq-q:hover {
        color: var(--blue-dk);
    }

.faq-arrow {
    font-size: .9rem;
    color: var(--blue);
    transition: transform .25s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s;
    background: var(--off-white);
    font-size: .9rem;
    line-height: 1.7;
    color: #64748B;
    padding: 0 24px;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 18px 24px 20px;
}

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--blue);
    padding: 70px 6vw;
    text-align: center;
}

    .cta-strip h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 12px;
    }

    .cta-strip p {
        font-size: 1rem;
        color: rgba(10,22,40,.7);
        margin-bottom: 32px;
    }

.btn-dark {
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-block;
}

    .btn-dark:hover {
        background: #162847;
        transform: translateY(-2px);
    }

.cta-strip .btn-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .cta-strip .btn-wrap {
        flex-direction: column;
        align-items: center;
    }
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(0,201,177,.1);
    padding: 60px 6vw 32px;
    color: var(--text-mid);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: .85rem;
    line-height: 1.65;
    color: var(--text-mid);
    max-width: 280px;
    margin-bottom:30px;
}

.footer-col h5 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-lt);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

    .footer-col ul li h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--blue);
        line-height: 1.3;
    }

.footer-col a {
    color: var(--text-mid);
    font-size: .88rem;
    text-decoration: none;
    transition: color .2s;
}

    .footer-col a:hover {
        color: var(--blue);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
}

    .footer-bottom a {
        color: var(--text-mid);
        text-decoration: none;
        margin-right: 20px;
    }

        .footer-bottom a:hover {
            color: var(--blue);
        }


.footer-social a{
    margin-right: 20px;
    margin-bottom:30px;
}


.custom-footer-disclaimer {
    width: 100%;
    background-color: var(--off-white);
    border-top: 1px solid #ddd;
    color: var(--navy);
    padding: 20px 6vw;
    background: var(--blue);
    text-align: left;
}

    .custom-footer-disclaimer h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 12px;
    }

    .custom-footer-disclaimer p {
        font-size: 12px;
        color: rgba(10,22,40,.7);
        /*margin-bottom: 32px;*/
    }




/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 28px;
    }

    .perks-row {
        flex-wrap: wrap;
    }

    .perk {
        min-width: 50%;
        border-right: none;
        border-bottom: 1px solid #E2ECF0;
    }

    /* Why section — collapse side-by-side layout */
    .why-section-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    /* Nav */
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-logo {
        width: auto;
    }

    .nav-right {
        width: auto !important;
    }

    /* Global spacing */
    section {
        padding: 60px 20px;
    }

    .hero {
        padding: 90px 20px 60px;
    }

    .trust-bar {
        padding: 20px;
        gap: 16px;
    }

    /* Why Us — collapse the outer 2-col grid */
    .why-section-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    footer {
        padding: 48px 20px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 48px 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-btns a {
            text-align: center;
        }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* ── VIDEO SECTION ── */
.video-desktop,
.video-mobile {
    display: none;
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 100% !important;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

    .video-frame iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* Show desktop video on wide screens */
@media(min-width: 561px) {
    .video-desktop {
        display: block;
    }
}

/* Show mobile video on small screens */
@media(max-width: 560px) {
    .video-mobile {
        display: block;
    }

    .video-frame {
        border-radius: 10px;
    }
}

/* ── VIDEO FACADE (click-to-play, prevents permissions error) ── */
.video-facade {
    cursor: pointer;
    background: #000;
}

    .video-facade img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .85;
        transition: opacity .2s;
    }

    .video-facade:hover img {
        opacity: .7;
    }

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #c00;
    padding-left: 5px;
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
    transition: transform .2s, box-shadow .2s;
    pointer-events: none;
}

.video-facade:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
}



/* ── SUPPORT SECTION ── */
.support {
    background: #f2fdfe !important;
}
.support-grid {
    max-width: 1100px;
    margin: 0 auto;
}

    .support-grid .section-title {
        color: var(--navy) !important;
    }

    .support-grid .section-sub {
        color: #64748B !important;
        margin-top: 14px;
        margin-bottom: 20px;
    }

    .support-grid ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

        .support-grid ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: .93rem;
            color: var(--navy);
            line-height: 1.6;
        }

            .support-grid ul li::before {
                content: '✓';
                color: var(--cyan);
                font-weight: 700;
                flex-shrink: 0;
                margin-top: 1px;
            }

    .support-grid img {
        display: block;
        width: 100%;
        border-radius: var(--radius);
        object-fit: cover;
        box-shadow: 0 8px 32px rgba(0,0,0,.08);
    }

@media(max-width: 900px) {
    .support-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}



 
/* ── TESTIMONIALS ── */
.testimonials-bg {
    background: var(--navy);
    background-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,182,207,.08) 0%, transparent 70%);
    padding: 100px 6vw;
}

.testimonials-wrap {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 1100px;
    min-width: 1000px;
    margin: 0 auto;
}
 
/* Score block */
.t-score {
    flex-shrink: 0;
    width: 180px;
    text-align: center;
}
.t-score-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .06em;
    margin-bottom: 6px;
}
.t-score-stars {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.t-score-count {
    font-size: .82rem;
    color: var(--text-mid);
    margin-bottom: 14px;
}
.t-score-count strong { color: var(--white); }
.t-google-logo {
    width: 90px;
    opacity: .85;
}
 
/* Slider */
.t-slider-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
 
.t-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.t-slider::-webkit-scrollbar { display: none; }
 
/* Cards */
.t-card {
    background: var(--navy-lt);
    border: 1px solid rgba(0,182,207,.15);
    border-radius: var(--radius);
    padding: 22px 20px;
    min-width: 260px;
    max-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: border-color .2s, transform .2s;
}
.t-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
 
.t-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.t-avatar-img {
    width: 38px; height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.t-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--navy);
    font-weight: 700; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.t-card-meta { flex: 1; min-width: 0; }
.t-card-meta h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.t-card-meta small { font-size: .72rem; color: var(--text-mid); }
.t-gicon { width: 18px; height: 18px; flex-shrink: 0; }
 
.t-card-stars { color: var(--gold); font-size: .9rem; margin-bottom: 10px; letter-spacing: 1px; }
 
.t-card-text {
    font-size: .82rem;
    color: var(--text-lt);
    line-height: 1.6;
}
 
/* Arrows */
.t-arrow {
    background: rgba(0,182,207,.12);
    border: 1px solid rgba(0,182,207,.25);
    color: var(--cyan);
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
    line-height: 1;
}
.t-arrow:hover { background: var(--cyan); color: var(--navy); }
 
@media(max-width: 768px) {
    .testimonials-wrap { flex-direction: column; gap: 28px; }
    .t-score { width: 100%; }
    .t-card { min-width: 220px; max-width: 220px; }
}




/* ── TESTIMONIALS ── */
.testimonials-bg {
    background: #f2fdfe !important;
    padding: 100px 6vw;
}
.testimonials-bg .section-label { color: var(--cyan-dk); }
.testimonials-bg .section-title { color: var(--navy) !important; }
.t-score-count { color: var(--navy) !important; }
 
.testimonials-wrap {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}
 
/* Score block */
.t-score {
    flex-shrink: 0;
    width: 180px;
    text-align: center;
}
.t-score-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: .06em;
    margin-bottom: 6px;
}
.t-score-stars {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.t-score-count {
    font-size: .82rem;
    color: var(--text-mid);
    margin-bottom: 14px;
}
.t-score-count strong { color: var(--navy); }
.t-google-logo {
    width: 90px;
    opacity: .85;
}
 
/* Slider */
.t-slider-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
 
.t-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.t-slider::-webkit-scrollbar { display: none; }
 
/* Cards */
.t-card {
    background: var(--white);
    border: 1px solid rgba(0,182,207,.2);
    border-radius: var(--radius);
    padding: 22px 20px;
    min-width: 260px;
    max-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: border-color .2s, transform .2s;
}
.t-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
 
.t-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.t-avatar-img {
    width: 38px; height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.t-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--navy);
    font-weight: 700; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.t-card-meta { flex: 1; min-width: 0; }
.t-card-meta h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.t-card-meta small { font-size: .72rem; color: var(--text-mid); }
.t-gicon { width: 18px; height: 18px; flex-shrink: 0; }
 
.t-card-stars { color: var(--gold); font-size: .9rem; margin-bottom: 10px; letter-spacing: 1px; }
 
.t-card-text {
    font-size: .82rem;
    color: #64748B;
    line-height: 1.6;
}
 
/* Arrows */
.t-arrow {
    background: rgba(0,182,207,.15);
    border: 1px solid rgba(0,182,207,.35);
    color: var(--navy);
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
    line-height: 1;
}
.t-arrow:hover { background: var(--cyan); color: var(--navy); }
 
@media(max-width: 768px) {
    .testimonials-wrap { flex-direction: column; gap: 28px; }
    .t-score { width: 100%; }
    .t-card { min-width: 220px; max-width: 220px; }
}




/* ── TESTIMONIALS ── */
.testimonials-bg {
    background: #f2fdfe !important;
    padding: 100px 6vw;
}

    .testimonials-bg .section-label {
        color: var(--cyan-dk);
    }

    .testimonials-bg .section-title {
        color: var(--navy) !important;
    }

.t-score-count {
    color: var(--navy) !important;
}

.testimonials-wrap {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Score block */
.t-score {
    flex-shrink: 0;
    width: 180px;
    text-align: center;
}

.t-score-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.t-score-stars {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.t-score-count {
    font-size: .82rem;
    color: var(--text-mid);
    margin-bottom: 14px;
}

    .t-score-count strong {
        color: var(--navy);
    }

.t-google-logo {
    width: 90px;
    opacity: .85;
}

/* Slider */
.t-slider-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.t-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    padding-top: 4px;
}

    .t-slider::-webkit-scrollbar {
        display: none;
    }

/* Cards */
.t-card {
    background: var(--white);
    border: 1px solid rgba(0,182,207,.2);
    border-radius: var(--radius);
    padding: 22px 20px;
    min-width: 260px;
    max-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: border-color .2s, transform .2s;
}

    .t-card:hover {
        border-color: var(--cyan);
        box-shadow: 0 4px 20px rgba(0,182,207,.15);
    }

.t-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.t-avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.t-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t-card-meta {
    flex: 1;
    min-width: 0;
}

    .t-card-meta h4 {
        font-size: .88rem;
        font-weight: 700;
        color: var(--navy);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .t-card-meta small {
        font-size: .72rem;
        color: var(--text-mid);
    }

.t-gicon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.t-card-stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.t-card-text {
    font-size: .82rem;
    color: #64748B;
    line-height: 1.6;
}

/* Arrows */
.t-arrow {
    background: rgba(0,182,207,.15);
    border: 1px solid rgba(0,182,207,.35);
    color: var(--navy);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
    line-height: 1;
}

    .t-arrow:hover {
        background: var(--cyan);
        color: var(--navy);
    }

@media(max-width: 768px) {
    .testimonials-wrap {
        flex-direction: column;
        gap: 28px;
    }

    .t-score {
        width: 100%;
    }

    .t-card {
        min-width: 220px;
        max-width: 220px;
    }
}
 



/* WE MAKE IT EASY BOTTOM */

.make-easy{
    background:var(--white);
}




/* ── HOW IT WORKS ── */
.how-bg {
    background: #f2fdfe !important;
}

.how-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.how-connector {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,182,207,.01),var(--blue));
    margin-top: 28px;
    flex-shrink: 0;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.how-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue-glow);
    color: var(--navy);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,182,207,.2);
}

.how-step-box {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #E2ECF0;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    transition: box-shadow .2s, transform .2s;
}

    .how-step-box:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,.1);
        transform: translateY(-3px);
    }

    .how-step-box h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .how-step-box p {
        font-size: .85rem;
        line-height: 1.65;
        color: #64748B;
    }

@media(max-width: 900px) {
    .how-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .how-connector {
        width: 2px;
        height: 32px;
        margin: 0 auto;
        background: linear-gradient(90deg, rgba(0,182,207,.01),var(--blue));
    }

    .how-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .how-step-box {
        flex: 1;
    }
}




/* ── WHY MEDICAL WEIGHT MANAGEMENT ── */
.why-medical-bg {
    background: var(--navy);
    padding: 100px 6vw;
}

.why-medical-blocks {
    max-width: 1100px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-medical-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
    overflow: hidden;
}
/*
    .why-medical-row:first-child {
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .why-medical-row:last-child {
        border-radius: 0 0 var(--radius) var(--radius);
    }*/

    .why-medical-row.reverse {
        direction: rtl;
    }

        .why-medical-row.reverse > * {
            direction: ltr;
        }

.why-medical-img {
    background-size: cover;
    background-position: center;
    min-height: 320px;
}

.why-medical-content {
    background: var(--navy-lt);
    border: 1px solid rgba(0,182,207,.1);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

    .why-medical-content h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--blue);
        line-height: 1.3;
    }

    .why-medical-content p {
        font-size: .92rem;
        line-height: 1.75;
        color: var(--text-mid);
    }

@media(max-width: 768px) {
    .why-medical-row,
    .why-medical-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

        .why-medical-row.reverse .why-medical-img {
            order: -1;
        }

    .why-medical-img {
        min-height: 220px;
    }

    .why-medical-content {
        padding: 32px 24px;
    }

    .why-medical-row:first-child {
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .why-medical-row:last-child {
        border-radius: 0 0 var(--radius) var(--radius);
    }
}



/* ── MICRODOSING ── */
.microdose-bg {
    background: var(--navy-lt);
    background-image: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(0,182,207,.1) 0%, transparent 60%);
}

.microdose-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* LEFT */
.microdose-left {
}

/* RIGHT */
.microdose-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.microdose-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .microdose-item:first-child {
        border-top: 1px solid rgba(255,255,255,.08);
    }

    .microdose-item h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.4;
        margin-bottom: 10px;
    }

.microdose-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--blue);
    border-radius: 99px;
}

@media(max-width: 900px) {
    .microdose-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* ── DOCTOR GUIDED ── */
.doctor-bg {
    background: var(--navy-mid);
    background-image: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(0,182,207,.1) 0%, transparent 60%);
}

.doctor-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.doctor-left {
}

.doctor-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.doctor-img {
    width: 100%;
    max-width: 460px;
    object-fit: contain;
    border-radius: var(--radius);
    filter: drop-shadow(0 20px 60px rgba(0,0,0,.4));
}

@media(max-width: 900px) {
    .doctor-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .doctor-img {
        max-width: 100%;
    }
}
.doctor-bg {
    background: var(--off-white) !important;
    background-image: none !important;
}

    .doctor-bg .section-label {
        color: var(--cyan-dk);
    }

    .doctor-bg .section-title {
        color: var(--navy) !important;
    }

    .doctor-bg .section-sub {
        color: #64748B !important;
    }



.btn-outline-watch {
    background: transparent;
    color: var(--blue-dark-accent);
    border: 2px solid #0097b5;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 34px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
}

    .btn-outline-watch:hover {
        border-color: var(--navy);
        color: var(--blue-dk);
    }





















































/*custom stuff*/

:root {
    --navy: #0A1628; /* #001f3f; /*your navy color */
}

body, html {
    background: var(--navy);
    color: white;
    
}

#app {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}

.loader {
    font-family: 'Cormorant Garamond', serif;
    margin-top: 100px;
    display: flex;
    flex-direction: column; /* stack spinner + text vertically */
    align-items: center; /* center horizontally */
    justify-content: center; /* center vertically inside loader */
    height: 100%; /* fill the parent #app height */
}

    .loader .spinner {
        border: 6px solid rgba(255,255,255,0.2);
        border-top: 6px solid white;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: spin 1s linear infinite;
        margin-bottom: 20px;
    }

    .loader p {
        font-size: 1.2rem;
        font-weight: bold;
        font-size: xx-large !important;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




.info-bar {
    margin-top: 70px;
    /*min-height:30px !important;*/
    background: var(--navy-mid);
    border-top: 1px solid rgba(0,201,177,.1);
    border-bottom: 1px solid rgba(0,201,177,.2);
    padding: 11px 6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color:white !important;
}

.info-bar-icon {
    font-size: .95rem;
    flex-shrink: 0;
}

.info-bar-text {
    font-size: .88rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: .02em;
    line-height: 1.4;
}
