:root {
    --brand-1: #5B6CFF;
    --brand-2: #8B5CF6;
    --ink: #15151F;
    --ink-soft: #3D3D55;
    --muted: #7A7A92;
    --line: #E8E2D5;
    --bg: #FAF7F2;
    --bg-soft: #F3EEE5;
    --bg-soft-2: #EEF0FF;
    --warm: #FFB74D;
    --mint: #2FBE8F;
    --radius: 16px;
    --shadow-sm: 0 1px 2px rgba(20, 20, 40, .04), 0 2px 8px rgba(20, 20, 40, .04);
    --shadow-md: 0 2px 6px rgba(20, 20, 40, .05), 0 12px 32px rgba(20, 20, 40, .06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; color: var(--ink); }
.container, .wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
    background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.gradient-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.gradient-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border: 2px solid var(--brand-1);
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand-1);
    background: #fff;
    cursor: pointer;
    transition: all .2s ease;
}
.ghost-btn:hover { background: var(--brand-1); color: #fff; }
.glass {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
/* NAV */
:root {
    --bg: #FAF7F2;
    --bg-tint: #F3EEE5;
    --ink: #15151F;
    --ink-2: #3D3D55;
    --muted: #7A7A92;
    --line: #E8E2D5;
    --card: #FFFFFF;
    --chip: #EEF0FF;
    --chip-ink: #4A5BFF;

    --accent-a: #5B6CFF;
    --accent-b: #8B5CF6;
    --accent-grad: linear-gradient(120deg, var(--accent-a) 0%, var(--accent-b) 100%);

    --warm: #FFB74D;
    /* map pin yellow */
    --mint: #2FBE8F;
    --coral: #FF6B5B;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(20, 20, 40, .04), 0 2px 8px rgba(20, 20, 40, .04);
    --shadow-md: 0 2px 6px rgba(20, 20, 40, .05), 0 12px 32px rgba(20, 20, 40, .06);
    --shadow-lg: 0 10px 40px rgba(91, 108, 255, .12), 0 30px 80px rgba(20, 20, 40, .08);

    --maxw: 1240px;
    --pad: clamp(20px, 4vw, 48px);
}
.nav-menu-toggle svg {
    color: #000
}
.logo-new {max-width: 50%;    margin-top: 0;
    left: 12px;top:auto;display: block;}
    .footer-logo-new {max-width: 35%;    filter: brightness(0) invert(1);}
.wrap {
max-width: 1240px;
margin: 0 auto;
padding: 0 clamp(20px, 4vw, 48px);
width: 100%;
}
.nav {
position: sticky;
top: 0;
z-index: 50;
backdrop-filter: blur(20px);
background: rgba(250, 247, 242, .82);
border-bottom: 1px solid rgba(232, 226, 213, .6);
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 0;
}

.brand {
display: flex;
align-items: center;
gap: 2px;
font-family: 'Instrument Serif', serif;
font-size: 30px;
font-weight: 400;
letter-spacing: -0.02em;
}

.brand .pin {
position: relative;
display: inline-block;
width: 16px;
height: 16px;
background: var(--warm);
border-radius: 50% 50% 50% 0;
transform: rotate(-45deg);
margin: 0 5px 8px 3px;
box-shadow: 0 2px 6px rgba(255, 183, 77, .35);
}

.brand .pin::after {
content: '';
position: absolute;
left: 5px;
top: 5px;
width: 6px;
height: 6px;
background: #fff;
border-radius: 50%;
}

.brand sup {
font-size: 14px;
vertical-align: super;
margin-left: 2px;
font-style: italic;
}

.nav-links {
display: flex;
gap: 4px;
align-items: center;
}

.nav-link {
padding: 8px 14px;
border-radius: 999px;
font-size: 14px;
font-weight: 500;
color: var(--ink-2) !important;
transition: background .15s, color .15s;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.nav-link:hover {
background: var(--bg-tint);
color: var(--ink);
}

.nav-cta {
display: flex;
gap: 10px;
align-items: center;
}

.cart-btn {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--bg-tint);
display: grid;
place-items: center;
position: relative;
border: none;
}

.cart-btn:hover {
background: white;
}

.cart-btn .count {
position: absolute;
top: -4px;
right: -4px;
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--coral);
color: white;
font-size: 10px;
font-weight: 700;
display: grid;
place-items: center;
}


/* Mobile header: logo, cart, Activate, (spacer), hamburger — links in overlay */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-mobile-spacer {
    display: none;
}

.nav-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
}

.nav-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-menu-toggle .nav-icon-close {
    display: none;
}

.nav.is-open .nav-menu-toggle .nav-icon-menu {
    display: none;
}

.nav.is-open .nav-menu-toggle .nav-icon-close {
    display: block;
}

.nav-backdrop {
    display: none;
}

@media (min-width: 901px) {
    .nav-inner {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    }

    .nav .nav-links {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(8px, 1.5vw, 24px);
    }
}

@media (max-width: 900px) {
    .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    }

    body {
    padding-top: var(--nav-offset, 64px);
    }

    .nav-menu-toggle {
    display: inline-flex;
    order: 4;
    }

    .nav-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    padding: 10px 10px;
    }

    .nav .brand {
    flex-shrink: 0;
    order: 1;
    font-size: 24px;
    }

    .nav .brand .logo-new {
    max-width: 171px;
    /* width: auto;
    height: 39px; */
    object-fit: contain;
    }

    .nav-mobile-spacer {
    display: block;
    flex: 1 1 auto;
    min-width: 8px;
    order: 2;
    }

    .nav-cta {
    flex-shrink: 0;
    gap: 18px;
    order: 3;
    }

    .nav-cta .btn-sm {
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
    }

    .nav-cta .cart-btn {
    width: 36px;
    height: 36px;
    }

    .nav-cta .cart-btn svg {
    width: 16px;
    height: 16px;
    }

    .nav .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-offset, 64px);
    top: 64px;
    /* bottom: 0; */
    z-index: 200;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 12px 20px 24px;
    margin: 0;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    }

    .nav.is-open .nav-links {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    text-align: left;
    }

    .nav .nav-links .nav-link {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 16px;
    border-radius: 0;
    }

    .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--nav-offset, 64px);
    z-index: 199;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
    pointer-events: none;
    }

    .nav.is-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    }

    body.nav-menu-open {
    overflow: hidden;
    }
}

@media (max-width: 380px) {
    .nav-inner {
    gap: 4px;
    }

    .nav .brand .logo-new {
    max-width: 110px;
    height: 28px;
    }

    .nav-cta {
    gap: 4px;
    }

    .nav-cta .btn-sm {
    padding: 7px 10px;
    font-size: 12px;
    }
}
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 22px;
border-radius: var(--r-pill);
font-weight: 600;
font-size: 15px;
transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
white-space: nowrap;
}

.nav .btn-primary {
background: var(--accent-grad);
color: white;
box-shadow: 0 8px 24px rgba(91, 108, 255, .3);
padding: 10px 16px;
    font-size: 13px;
    border-radius: 999px;
}

.nav .btn-primary:hover {
background: var(--accent-grad);
transform: translateY(-2px);
box-shadow: 0 12px 32px rgba(91, 108, 255, .4);
}
.btn-primary {
background: var(--accent-grad);
color: white;
box-shadow: 0 8px 24px rgba(91, 108, 255, .3);
}
.btn-primary:hover {
background: var(--accent-grad);
transform: translateY(-2px);
box-shadow: 0 12px 32px rgba(91, 108, 255, .4);
}
.btn-ghost {
background: transparent;
color: var(--ink);
border: 1px solid var(--line);
}

.btn-ghost:hover {
background: white;
border-color: var(--ink);
}

.btn-dark {
background: var(--ink);
color: white;
}

.btn-dark:hover {
background: #000;
transform: translateY(-2px);
}

.btn-sm {
padding: 10px 16px;
font-size: 13px;
}

/* header on 04/05/2026 */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    background: transparent;
    border: 0;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s, color .15s;
    line-height: 1;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open > .nav-dropdown-toggle {
    background: var(--bg-tint);
    color: var(--ink);
}
.nav-dropdown-toggle .chev { transition: transform .2s ease; }
.nav-dropdown.is-open > .nav-dropdown-toggle .chev { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 190px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(20,20,40,.12);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .15s, transform .15s, visibility .15s;
    z-index: 60;
}
.nav-dropdown.is-open > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--bg-tint); color: var(--ink); }

@media (max-width: 900px) {
    .nav-dropdown { width: 100%; display: block; }
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 16px 12px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        font-size: 16px;
        border-radius: 0;
    }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        padding: 0 0 0 14px;
        background: transparent;
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease, visibility .25s;
        min-width: 0;
    }
    .nav-dropdown.is-open > .nav-dropdown-menu {
        transform: none;
        max-height: 260px;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-dropdown-menu a {
        padding: 14px 12px;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        border-radius: 0;
        font-size: 15px;
    }
}

/* ---------- Keep nav on a single line ---------- */
@media (min-width: 901px) {
    .nav-links {
        flex-wrap: nowrap;
        white-space: nowrap;
        gap: 2px;
    }
    .nav-links .nav-link {
        white-space: nowrap;
        padding-left: 10px;
        padding-right: 10px;
    }
    .nav-cta { flex-wrap: nowrap; }
}

/* Logo: stop it from eating half the header */
.nav .brand { flex: 0 0 auto; }
.nav .logo-new {
    max-width: none;
    width: auto;
    height: 36px;
    display: block;
}
@media (max-width: 900px) {
    .nav .logo-new { height: 32px; }
}

/* ---------- Header right-side additions ---------- */
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-2, #333);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: var(--r-pill, 999px);
    transition: color .15s ease, background .15s ease;
    line-height: 1;
}
.nav-phone:hover {
    color: var(--ink, #000);
    background: var(--bg-tint, rgba(0,0,0,.04));
}
.nav-phone svg { flex-shrink: 0; }

.nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-2, #333);
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: var(--r-pill, 999px);
    line-height: 1;
    transition: color .15s ease, background .15s ease;
}
.nav-login:hover {
    color: var(--ink, #000);
    background: var(--bg-tint, rgba(0,0,0,.04));
}

.nav-activate {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    margin-left: 4px;
    padding: 2px 0;
}
.nav-activate-hint {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    white-space: nowrap;
    letter-spacing: .01em;
}
.nav-activate-link {
    color: var(--ink-2, #555);
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    transition: color .15s ease;
}
.nav-activate-link:hover { color: var(--ink, #000); }

/* Empty cart badge: hide the "0" so it doesn't read as a notification */
.cart-btn .count.is-empty { display: none; }

/* Anchor scrolling: account for sticky nav height (set by JS via --nav-offset) */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: calc(var(--nav-offset, 72px) + 12px); }

@media (max-width: 1180px) {
    .nav-phone-text { display: none; }
    .nav-phone { padding: 6px 8px; }
}
@media (max-width: 900px) {
    .nav-phone { display: none; }
    .nav-login {
        font-size: 13px;
        padding: 6px 10px;
    }
    .nav-activate {
        margin-left: 2px;
        padding: 0;
    }
    .nav-activate-hint { display: none; }
    .nav-activate-link { font-size: 12px; }
}
/* ===== HERO ===== */
.hero {
    padding: 64px 0 48px;
    background: linear-gradient(135deg, var(--bg-soft-2) 0%, #fff 60%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.hero-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(91, 108, 255, .1);
    color: var(--brand-1);
    border-radius: 999px;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.stars-gold { color: var(--warm); font-size: 1.1rem; letter-spacing: 1px; }
.rating-text { color: var(--ink-soft); font-size: .9rem; }
.hero-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin: 14px 0 6px;
}
.hero-price-free {
    font-size: 2.4rem;
    font-weight: 900;
}
.hero-price-sub {
    font-weight: 600;
    color: var(--ink-soft);
    font-size: 1rem;
}
.tagline {
    color: var(--brand-1);
    font-weight: 700;
    font-size: 1rem;
    margin: 4px 0 18px;
}
.hero-subtitle {
    color: var(--ink-soft);
    font-size: 1.02rem;
    margin-bottom: 22px;
}
.product-info__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
}
.product-info__features li {
    position: relative;
    padding-left: 26px;
    font-weight: 500;
    color: var(--ink);
}
.product-info__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.hero-disclaimer {
    color: var(--ink-soft);
    font-size: .9rem;
}
.hero-best-for {
    margin-top: 16px;
    font-size: .92rem;
    color: var(--ink-soft);
}
.hero-best-for strong { color: var(--ink); }
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img-wrap {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-img-stage {
    position: relative;
    width: 100%;
    max-width: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img-main {
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 22px 50px rgba(15, 15, 30, .12);
    animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-thumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
    background: rgb(97 91 91 / 48%);
    padding: 8px 14px;
    border-radius: 9999px;
}
.hero-thumb {
    width: 52px;
    height: 52px;
    border-radius: 9999px;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.6;
    cursor: pointer;
    transition: width 0.4s cubic-bezier(.16, 1, .3, 1), opacity 0.3s, border-color 0.3s;
    flex-shrink: 0;
    padding: 0;
    background: none;
}
.hero-thumb.is-active {
    opacity: 1;
    width: 100px;
    border-color: #fff;
    border-radius: 9999px;
}
.hero-thumb:hover { opacity: 0.85; }
.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9999px;
}
@media (max-width: 540px) {
    .hero-thumb { width: 44px; height: 44px; }
    .hero-thumb.is-active { width: 84px; }
}
.hero-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

/* ===== LIFESTYLE GALLERY ===== */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 700px) { .lifestyle-grid { grid-template-columns: 1fr; } }
.lifestyle-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
}
.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.lifestyle-card:hover img { transform: scale(1.04); }
.lifestyle-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 22px;
    color: #fff;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 30, .75) 100%);
    font-weight: 600;
    font-size: 1rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 36px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.benefits-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 800px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
.benefit-card {
    display: flex;
    gap: 14px;
    align-items: center;
}
.benefit-card__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 108, 255, .12);
    color: var(--brand-1);
    border-radius: 12px;
    flex: none;
}
.benefit-card__icon svg { width: 22px; height: 22px; }
.benefit-card__title { font-weight: 700; margin: 0; font-size: .98rem; }
.benefit-card__sub { color: var(--ink-soft); font-size: .85rem; margin: 0; }

/* ===== SECTIONS ===== */
section.content-section { padding: 72px 0; }
section.content-section.alt { background: var(--bg-soft); }
.section-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}
.section-sub {
    color: var(--ink-soft);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    counter-reset: step;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
    text-align: center;
    padding: 22px 20px 26px;
}
.step-illustration {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 16px;
    border-radius: 12px;
    /* background: linear-gradient(135deg, #EEF0FF 0%, #F3EEE5 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px; */
    overflow: hidden;
}
.step-illustration img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.step-illustration svg { width: 100%; height: 100%; }
.step-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, var(--brand-1), var(--brand-2));
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px;
}
.step-title { font-weight: 700; margin: 0 0 8px; font-size: 1.02rem; }
.step-text { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ===== DEVICE FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
    padding: 22px 22px 26px;
}
.feature-illustration {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 18px;
    border-radius: 14px;
    /* background: linear-gradient(135deg, #EEF0FF 0%, #F3EEE5 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 14px; */
    overflow: hidden;
}
.feature-illustration img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.feature-illustration svg { width: 100%; height: 100%; }
.feature-card h3 { font-size: 1.15rem; margin: 0 0 8px; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ===== SPECS + BOX ===== */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
@media (max-width: 800px) { .specs-grid { grid-template-columns: 1fr; } }
.spec-card h3 { font-size: 1.3rem; margin-bottom: 18px; }
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: .96rem;
}
.spec-row:last-child { border-bottom: 0; }
.spec-label { color: var(--ink-soft); }
.spec-value { font-weight: 600; }
.box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.box-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    border-bottom: 1px solid var(--line);
    font-size: .96rem;
}
.box-list li:last-child { border-bottom: 0; }
.box-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
    padding: 28px;
}
.testimonial-stars { color: var(--warm); margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-text {
    font-size: .98rem;
    color: var(--ink);
    margin: 0 0 16px;
    line-height: 1.6;
}
.testimonial-author {
    font-weight: 700;
    color: var(--ink);
    font-size: .95rem;
}
.testimonial-author span { color: var(--ink-soft); font-weight: 500; font-size: .85rem; display: block; }

/* ===== FAQ ===== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 14px;
    background: #fff;
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    padding: 18px 22px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    color: var(--brand-1);
    font-weight: 800;
    font-size: 1.4rem;
    transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer {
    padding: 0 22px 20px;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ===== BROCHURE ===== */
.brochure-section {
    padding: 72px 0;
    background: linear-gradient(135deg, #fff 0%, var(--bg-soft-2) 100%);
}
.brochure-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .brochure-grid { grid-template-columns: 1fr; gap: 32px; }
}
.brochure-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 14px;
}
.brochure-info p {
    color: var(--ink-soft);
    font-size: 1.02rem;
    margin-bottom: 22px;
}
.brochure-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.brochure-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--ink);
    font-weight: 500;
}
.brochure-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.brochure-form {
    padding: 36px;
}
.brochure-form h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}
.brochure-form .form-sub {
    color: var(--ink-soft);
    font-size: .92rem;
    margin: 0 0 22px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}
.form-field label {
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
    font-family: inherit;
    font-size: .96rem;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--brand-1);
    box-shadow: 0 0 0 3px rgba(91, 108, 255, .12);
}
.form-field-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}
.form-field-row .form-field { margin-bottom: 0; flex: 1; }
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    font-size: .85rem;
    color: var(--ink-soft);
    line-height: 1.5;
}
.form-checkbox input { margin-top: 3px; }
.brochure-form .gradient-btn { width: 100%; }
.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background: rgba(47, 190, 143, .12);
    color: #1F8B65;
    border-radius: 12px;
    font-weight: 600;
}
.form-success.is-visible { display: block; }
.brochure-form.is-submitted .form-actual { display: none; }
.brochure-form.is-submitted .form-success { display: block; }

/* ===== CTA ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: #fff;
    text-align: center;
}
.cta-section h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 12px;
}
.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    opacity: .95;
}
.cta-section .gradient-btn {
    background: #fff;
    color: var(--brand-1);
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 56px 0 24px;
}
.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 32px;
}
@media (max-width: 800px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .ft-grid { grid-template-columns: 1fr; } }
footer .brand img {
    height: 36px;
    filter: brightness(0) invert(1);
    margin-bottom: 14px;
}
.ft-brand p { font-size: .9rem; line-height: 1.6; }
.ft-col h4 {
    color: #fff;
    font-size: .98rem;
    margin-bottom: 16px;
}
.ft-col a {
    display: block;
    padding: 4px 0;
    font-size: .9rem;
    color: #cbd5e1;
    transition: color .2s;
}
.ft-col a:hover { color: var(--brand-1); }
.ft-apps { display: flex; gap: 10px; margin-top: 14px; }
.ft-apps .app {
    padding: 8px 12px;
    border: 1px solid #334155;
    border-radius: 8px;
    font-size: .82rem;
}
.line { font-size: .9rem; padding: 4px 0; }
.ft-bot {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    color: #94a3b8;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== STICKY BAR ===== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(15, 23, 42, .08);
    transform: translateY(100%);
    transition: transform .25s ease;
    z-index: 40;
    padding: 12px 0;
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.sticky-info { display: flex; flex-direction: column; }
.sticky-name { font-weight: 700; font-size: .95rem; }
.sticky-price { font-weight: 800; font-size: 1.1rem; }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: all .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }


/* ===== Slide cart drawer ===== */
.cart-btn .count.is-empty { display: none; }
.slide-cart-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, .45); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; z-index: 1099; }
.slide-cart-overlay.is-open { opacity: 1; visibility: visible; }
.slide-cart { position: fixed; top: 0; right: 0; width: 420px; max-width: 100%; height: 100vh; background: #fff; color: #0f172a; box-shadow: -8px 0 30px rgba(15, 23, 42, .18); transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; z-index: 1100; font-family: 'Inter', system-ui, -apple-system, sans-serif; }
.slide-cart.is-open { transform: translateX(0); }
.slide-cart__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #e2e8f0; }
.slide-cart__title { font-size: 1.1rem; font-weight: 700; margin: 0; color: #0f172a; }
.slide-cart__close { background: none; border: none; color: #0f172a; padding: 6px; display: grid; place-items: center; border-radius: 8px; cursor: pointer; }
.slide-cart__close:hover { background: #f1f5f9; }
.slide-cart__body { flex: 1 1 auto; overflow-y: auto; padding: 16px 24px; }
.slide-cart__empty { text-align: center; color: #64748b; padding: 0; margin: 0; }
.slide-cart__empty-state { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; padding: 1.5rem 1rem; }
.slide-cart__empty-icon { display: block; flex-shrink: 0; }
.slide-cart__items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.slide-cart__item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid #f1f5f9; }
.slide-cart__item:last-child { border-bottom: 0; }
.slide-cart__item-img img { width: 64px; height: 64px; object-fit: contain; border-radius: 8px; background: #f8fafc; }
.slide-cart__item-name { font-size: .95rem; font-weight: 600; color: #0f172a; margin: 0 0 4px; }
.slide-cart__item-price { font-size: .85rem; color: #475569; margin: 0 0 8px; }
.slide-cart__item-controls { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.slide-cart__qty-btn { width: 26px; height: 26px; border-radius: 6px; background: #f1f5f9; color: #0f172a; font-weight: 700; border: none; cursor: pointer; }
.slide-cart__qty-btn:hover { background: #e2e8f0; }
.slide-cart__qty-val { min-width: 24px; text-align: center; font-weight: 700; color: #0f172a; }
.slide-cart__remove { margin-left: 8px; background: none; border: none; color: #ef4444; font-size: .8rem; cursor: pointer; padding: 4px 6px; }
.slide-cart__remove:hover { text-decoration: underline; }
.slide-cart__item-line { font-weight: 700; color: #0f172a; align-self: start; }
.slide-cart__footer { border-top: 1px solid #e2e8f0; padding: 20px 24px; background: #fff; }
.slide-cart__subtotal { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.slide-cart__shipping-note { font-size: .8rem; color: #64748b; margin: 0 0 14px; }
.slide-cart__checkout { display: block; width: 100%; padding: 14px 20px; text-align: center; font-size: 1rem; text-decoration: none; }
.gradient-btn { background: linear-gradient(135deg, #3b82f6, #06b6d4); color: #fff; border: none; border-radius: 12px; font-weight: 700; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
html.cart-open, body.cart-open { overflow: hidden; }
@media (max-width: 480px) { .slide-cart { width: 100%; } }



           
/* ---- Products dropdown ---- */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 999px;
    transition: background .15s, color .15s;
  }
  /* Highlight the whole pill (text + arrow) as one button on hover/open */
  .nav-dropdown:hover,
  .nav-dropdown.is-open {
    background: var(--bg-tint);
  }
  .nav-dropdown:hover .nav-dropdown-toggle,
  .nav-dropdown:hover .nav-dropdown-caret-btn,
  .nav-dropdown.is-open .nav-dropdown-toggle,
  .nav-dropdown.is-open .nav-dropdown-caret-btn {
    color: var(--ink);
  }
  .nav-dropdown-toggle {
    padding-right: 4px;
  }
  /* Don't let the inner pieces draw their own highlight — the pill does it */
  .nav-dropdown .nav-dropdown-toggle:hover {
    background: transparent;
  }
  .nav-dropdown-caret-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px 6px 2px;
    border: 0;
    background: transparent;
    color: var(--ink-2);
    border-radius: 999px;
    cursor: pointer;
    transition: color .15s;
  }
  .nav-dropdown-caret {
    transition: transform .2s ease;
  }
  .nav-dropdown:hover .nav-dropdown-caret,
  .nav-dropdown.is-open .nav-dropdown-caret {
    transform: rotate(180deg);
  }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 300;
  }
  /* invisible bridge so hover survives the gap between toggle and menu */
  .nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-dropdown-item {
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    white-space: nowrap;
    transition: background .15s, color .15s;
  }
  .nav-dropdown-item:hover {
    background: var(--bg-tint);
    color: var(--ink);
  }
  
  
  
@media (max-width: 900px) {
    .nav-dropdown:hover, .nav-dropdown.is-open {
      background: transparent;
  }
  .nav-dropdown-toggle:hover, .nav-dropdown.is-open > .nav-dropdown-toggle {
    background: transparent;
  }
  }
  
  @media (max-width: 900px) {
   /* Products dropdown — mobile (inline accordion) */
   .nav .nav-links .nav-dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .nav .nav-links .nav-dropdown .nav-dropdown-toggle {
    flex: 1;
    border-bottom: 0;
  }
  .nav-dropdown-caret-btn {
    padding: 16px 12px;
  }
  .nav .nav-links .nav-dropdown-menu {
    position: static;
    flex-basis: 100%;
    min-width: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 12px;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, opacity .18s ease, visibility .18s;
  }
  .nav .nav-links .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
  }
  .nav .nav-links .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 640px;
  }
  .nav .nav-links .nav-dropdown-item {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
    border-radius: 0;
    white-space: normal;
  }
  }