﻿/* ═══════════════════════════════════════════════════
   RESET & ROOT
═══════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cyan: #00C8D7;
    --cyan2: #00A8B8;
    --blue: #0078A8;
    --navy: #005080;
    --grad: linear-gradient(135deg, #00C8D7 0%, #0078A8 100%);
    --grad-soft: linear-gradient(135deg, rgba(0,200,215,.10) 0%, rgba(0,120,168,.08) 100%);
    --sale: linear-gradient(90deg, #6C63FF 0%, #857BFF 45%, #6C63FF 100%);
    --white: #ffffff;
    --off: #F5FAFB;
    --g50: #EFF6F8;
    --g100: #D9EEF2;
    --g200: #B0D8E0;
    --g400: #7AAFC0;
    --g700: #2D5A6A;
    --g900: #0D2A35;
    --muted: #5A8090;
    --shadow: 0 4px 18px rgba(0,120,168,.10);
    --shadow-lg: 0 12px 48px rgba(0,120,168,.14);
    --r: 14px;
    --r-sm: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    background: var(--white);
    color: var(--g900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* Flag links — reset anchor styling so .lp looks identical to before */
a.lp {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

.pkg-toggle {
    display: flex;
    gap: 8px;
    padding: 0 22px;
    margin-bottom: 16px;
}

.pkg-btn {
    flex: 1;
    padding: 12px 8px;
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid var(--g200);
    border-radius: 11px;
    background: white;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    line-height: 1.3;
}

    .pkg-btn.active {
        border-color: var(--blue);
        background: rgba(0,120,168,.05);
        color: var(--blue);
    }

    .pkg-btn span {
        display: block;
        font-size: 11px;
        font-weight: 500;
        margin-top: 2px;
    }
/* ═══════════════════════════════════════════════════
   SALE BANNER
═══════════════════════════════════════════════════ */
.sale-banner {
    background: var(--sale);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
    color: white;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    position: sticky;
    top: 0;
    z-index: 500;
    user-select: none;
    flex-wrap: wrap;
    text-align: center;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%
    }

    100% {
        background-position: 200% 50%
    }
}

.banner-timer {
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 100px;
    padding: 3px 12px;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
    white-space: nowrap;
}

    .banner-timer::before {
        content: '⏱';
        font-size: 11px;
    }

.nav-brand .nav-logo {
    height: 28px;          /* matches typical nav text height */
    width: auto;
    display: block;
    object-fit: contain;
}

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
nav {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--g100);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    position: sticky;
    top: 40px;
    z-index: 400;
}

.nav-brand {
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -.4px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-center {
    display: flex;
    gap: 28px;
    list-style: none;
}

    .nav-center a {
        font-size: 14px;
        font-weight: 500;
        color: var(--muted);
        transition: color .2s;
    }

        .nav-center a:hover {
            color: var(--blue);
        }

.nav-cta {
    background: var(--sale);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
    color: white;
    font-size: 14px;
    font-weight: 800;
    padding: 9px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 18px rgba(108,99,255,.35);
    transition: transform .15s, box-shadow .15s;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

    .nav-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 28px rgba(108,99,255,.45);
    }

.nav-cta-badge {
    background: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 100px;
    padding: 1px 7px;
    font-size: 10px;
    font-weight: 900;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--g900);
        border-radius: 2px;
        transition: transform .25s, opacity .25s;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
/* mobile menu drawer */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 399;
    padding: 32px 24px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 18px;
        font-weight: 700;
        color: var(--g900);
        padding: 14px 0;
        border-bottom: 1px solid var(--g100);
        display: block;
        transition: color .2s;
    }

        .mobile-menu a:hover {
            color: var(--cyan2);
        }

    .mobile-menu .m-cta {
        margin-top: 16px;
        background: var(--sale);
        background-size: 200% 100%;
        animation: shimmer 4s linear infinite;
        color: white;
        font-size: 16px;
        font-weight: 800;
        padding: 16px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 18px rgba(108,99,255,.35);
    }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero-wrap {
    background: linear-gradient(160deg, #F0FAFB 0%, var(--white) 65%);
    overflow: hidden;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,200,215,.10);
    color: var(--cyan2);
    border: 1px solid rgba(0,200,215,.28);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -1.5px;
    color: var(--g900);
}

    .hero h1 .gr {
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: 16px;
    color: var(--muted);
    margin-top: 16px;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn-sale {
    background: var(--sale);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
    color: white;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 100px;
    box-shadow: 0 6px 24px rgba(108,99,255,.38);
    transition: transform .18s, box-shadow .18s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-sale:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(108,99,255,.45);
    }

.btn-sale-badge {
    background: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 100px;
    padding: 1px 9px;
    font-size: 11px;
    font-weight: 900;
}

.btn-ghost {
    font-size: 15px;
    font-weight: 600;
    color: var(--g700);
    padding: 14px 20px;
    border-radius: 100px;
    border: 1.5px solid var(--g200);
    transition: border-color .2s, color .2s;
}

    .btn-ghost:hover {
        border-color: var(--cyan2);
        color: var(--blue);
    }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.avatars {
    display: flex;
}

.av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    color: white;
    margin-inline-start: -6px;
}

    .av:first-child {
        margin-inline-start: 0;
    }

.trust-stars {
    color: #FFC107;
    font-size: 12px;
    letter-spacing: 1px;
}

.trust-txt {
    font-size: 13px;
    color: var(--muted);
}

    .trust-txt strong {
        color: var(--g900);
    }

.phone-col {
    position: relative;
    display: flex;
    justify-content: center;
}

    .phone-col::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,200,215,.09) 0%, transparent 65%);
        pointer-events: none;
    }

.phone-frame {
    width: 380px;
/*    background: #111;*/
    border-radius: 40px;
    padding: 9px;
    box-shadow: 0 28px 72px rgba(0,0,0,.36), 0 0 0 1px rgba(255,255,255,.07) inset;
    position: relative;
    z-index: 1;
    transform: scale(0.6125);
}

.phone-notch {
    width: 80px;
    height: 20px;
    background: #111;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
}

.phone-screen {
    border-radius: 30px;
    overflow: hidden;
    background: #C4D9E8;
}

.c-cover {
    height: 96px;
    background: linear-gradient(165deg, #BF7A3A 0%, #8B4513 35%, #3D2B1F 70%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5px;
}

    .c-cover::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 25% 35%, rgba(255,190,80,.3) 0%, transparent 50%), radial-gradient(circle at 75% 60%, rgba(60,20,5,.5) 0%, transparent 50%);
    }

.c-cover-brand {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.c-cover-sun {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFE55A, #FF9800);
    box-shadow: 0 0 14px rgba(255,220,60,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.c-cover-name {
    font-size: 7.5px;
    font-weight: 900;
    letter-spacing: .18em;
    color: rgba(255,255,255,.92);
    text-transform: uppercase;
}

.c-profile {
    background: #C4D9E8;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px 6px;
}

.c-avatar {
    margin-top: -22px;
    z-index: 2;
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    background: linear-gradient(160deg, #E8C9A8, #C49070);
    box-shadow: 0 4px 12px rgba(0,0,0,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.c-name {
    font-size: 12px;
    font-weight: 800;
    color: #1A2A35;
    margin-top: 5px;
}

.c-title, .c-company {
    font-size: 9px;
    color: #4A6070;
}

.c-icons {
    background: #C4D9E8;
    padding: 7px 8px 2px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 5px;
}

.c-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.c-ic {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1A2535;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,.22);
}

.c-lbl {
    font-size: 6px;
    color: #2D3E4A;
    font-weight: 700;
    letter-spacing: .02em;
}

.c-save-wrap {
    background: #C4D9E8;
    padding: 6px 10px 2px;
}

.c-save-btn {
    width: 100%;
    border: none;
    border-radius: 20px;
    background: linear-gradient(90deg, #FF9A3A, #FF5722);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 9px;
    font-family: 'Heebo', sans-serif;
    box-shadow: 0 4px 12px rgba(255,87,34,.32);
}

.c-bar {
    background: linear-gradient(90deg, #FF9A3A, #FF5722);
    padding: 5px 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c-powered {
    font-size: 6.5px;
    color: rgba(255,255,255,.88);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
}

.c-share {
    font-size: 7.5px;
    color: white;
    font-weight: 800;
}

/* floating badges */
.fbadge {
    position: absolute;
    z-index: 3;
    background: white;
    border-radius: 11px;
    padding: 8px 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

    .fbadge.L {
        inset-inline-start: 0;
        top: 25%;
        animation-delay: 0s;
    }

    .fbadge.R {
        inset-inline-end: 0;
        top: 57%;
        animation-delay: 1.7s;
    }

.fb-num {
    font-size: 15px;
    font-weight: 900;
    color: var(--g900);
    line-height: 1;
}

.fb-lbl {
    font-size: 9px;
    color: var(--muted);
    font-weight: 500;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

/* ═══════════════════════════════════════════════════
   STAT BAND
═══════════════════════════════════════════════════ */
.band {
    background: var(--g50);
    border-top: 1px solid var(--g100);
    border-bottom: 1px solid var(--g100);
    padding: 24px 24px;
}

.band-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.band-lbl {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.bstats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.bst {
    display: flex;
    align-items: center;
    gap: 9px;
}

.bst-icon {
    font-size: 18px;
}

.bst-num {
    font-size: 19px;
    font-weight: 900;
    color: var(--g900);
    line-height: 1;
}

.bst-lbl {
    font-size: 11px, 14px;
    color: var(--muted);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════ */
.sec {
    padding: 72px 24px;
}

.sec-in {
    max-width: 1200px;
    margin: 0 auto;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--cyan2);
    margin-bottom: 10px;
}

h2.sh {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--g900);
}

    h2.sh .gr {
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.sec-sub {
    font-size: 16px;
    color: var(--muted);
    margin-top: 12px;
    max-width: 520px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   STEPS
═══════════════════════════════════════════════════ */
.steps-bg {
    background: var(--g50);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 40px;
    background: var(--g100);
    border-radius: var(--r);
    overflow: hidden;
}

.step {
    background: white;
    padding: 32px 26px;
    transition: background .2s;
}

    .step:hover {
        background: #F5FEFF;
    }

.step-n {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--g900);
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan2);
    transition: gap .2s;
    background: none;
    padding: 0;
}

    .step-link:hover {
        gap: 8px;
    }

/* ═══════════════════════════════════════════════════
   FEATURE SPLITS
═══════════════════════════════════════════════════ */
.fsplit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 48px;
}

    .fsplit + .fsplit {
        margin-top: 64px;
        padding-top: 64px;
        border-top: 1px solid var(--g100);
    }

    .fsplit.rev {
        direction: rtl;
    }

        .fsplit.rev > * {
            direction: ltr;
        }

[dir="rtl"] .fsplit.rev {
    direction: ltr;
}

    [dir="rtl"] .fsplit.rev > * {
        direction: rtl;
    }

.ftag {
    display: inline-block;
    background: var(--grad-soft);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.fsplit h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 900;
    color: var(--g900);
    letter-spacing: -.5px;
}

.fsplit p {
    font-size: 15px;
    color: var(--muted);
    margin-top: 11px;
    line-height: 1.8;
}

.checks {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ci {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--g700);
}

    .ci::before {
        content: '✓';
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        background: rgba(0,200,215,.12);
        color: var(--cyan2);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 800;
        margin-top: 1px;
    }

/* visual boxes */
.vbox {
    background: var(--g50);
    border: 1px solid var(--g100);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,120,168,.05);
}

.vbox-hdr {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 12px;
}

.lrow {
    background: white;
    border: 1px solid var(--g100);
    border-radius: 9px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.lav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: white;
}

.li {
    flex: 1;
    min-width: 0;
}

.lname {
    font-size: 12px;
    font-weight: 700;
    color: var(--g900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lmeta {
    font-size: 10px;
    color: var(--muted);
    margin-top: 1px;
}

.lpill {
    font-size: 9px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 100px;
    white-space: nowrap;
}

    .lpill.n {
        background: rgba(0,200,215,.12);
        color: var(--cyan2);
    }

    .lpill.h {
        background: rgba(239,68,68,.10);
        color: #ef4444;
    }

    .lpill.w {
        background: rgba(245,158,11,.10);
        color: #f59e0b;
    }

.langs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lp {
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    border: 1px solid var(--g200);
    border-radius: 7px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
}

    .lp.on {
        background: var(--grad);
        color: white;
        border-color: transparent;
        font-weight: 700;
    }

    .lp .language-flag {
        width: 18px;
        height: 13px;
        object-fit: cover;
        border-radius: 2px;
        display: inline-block;
        flex-shrink: 0;
    }

.bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blbl {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 3px;
    display: flex;
    justify-content: space-between;
}

.btrack {
    height: 6px;
    background: var(--g100);
    border-radius: 100px;
    overflow: hidden;
}

.bfill {
    height: 100%;
    border-radius: 100px;
    background: var(--grad);
}

.stat-tiles {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.stile {
    flex: 1;
    border-radius: 9px;
    padding: 11px;
    text-align: center;
}

.stile-n {
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.stile-l {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 3px;
}

/* ═══════════════════════════════════════════════════
   COMPARISON
═══════════════════════════════════════════════════ */
.comp-bg {
    background: var(--g50);
}

.ctable {
    margin-top: 40px;
    background: white;
    border: 1px solid var(--g100);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    overflow-x: auto;
}

.ch {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: var(--g50);
    border-bottom: 1px solid var(--g100);
    min-width: 600px;
}

.chc {
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-align: center;
}

    .chc:first-child {
        text-align: left;
    }

    .chc.ours {
        background: white;
        color: var(--blue);
        font-size: 13px;
        border-left: 1px solid var(--g100);
        border-right: 1px solid var(--g100);
    }

.ours-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.ours-badge {
    font-size: 8px;
    background: var(--grad);
    color: white;
    padding: 2px 7px;
    border-radius: 100px;
    font-weight: 800;
}

.cr {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--g100);
    min-width: 600px;
}

    .cr:last-child {
        border-bottom: none;
    }

    .cr:hover {
        background: var(--g50);
    }

.cc {
    padding: 12px 16px;
    font-size: 13px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

    .cc:first-child {
        text-align: left;
        justify-content: flex-start;
        color: var(--g700);
        font-weight: 500;
        font-size: 13px;
    }

    .cc.ours {
        background: rgba(0,200,215,.03);
        border-left: 1px solid var(--g100);
        border-right: 1px solid var(--g100);
    }

.ck {
    color: var(--cyan2);
    font-weight: 800;
    font-size: 15px;
}

.cx {
    color: var(--g200);
    font-size: 16px;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.tgrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 40px;
}

.tc {
    background: white;
    border: 1px solid var(--g100);
    border-radius: var(--r);
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: box-shadow .2s, transform .2s;
}

    .tc:hover {
        box-shadow: var(--shadow);
        transform: translateY(-3px);
    }

.tstars {
    color: #FFC107;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.tq {
    font-size: 14px;
    color: var(--g700);
    line-height: 1.75;
    margin-bottom: 16px;
}

.tauth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: white;
}

.tname {
    font-size: 13px;
    font-weight: 800;
    color: var(--g900);
}

.trole {
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
}

/* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
.faq-bg {
    background: var(--g50);
}

.flist {
    margin-top: 36px;
    max-width: 760px;
}

.fi {
    background: white;
    border: 1px solid var(--g100);
    border-radius: 9px;
    margin-bottom: 7px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.fq {
    padding: 17px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--g900);
    user-select: none;
    transition: color .2s;
    gap: 12px;
}

    .fq:hover {
        color: var(--cyan2);
    }

.fa-arr {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--g50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform .25s, background .2s;
    color: var(--g400);
}

.fi.open .fa-arr {
    transform: rotate(45deg);
    background: rgba(0,200,215,.10);
    color: var(--cyan2);
}

.fanswer {
    display: none;
    padding: 0 20px 17px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid var(--g100);
    padding-top: 14px;
}

.fi.open .fanswer {
    display: block;
}

/* ═══════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════ */
.cta-sec {
    padding: 0 24px 72px;
}

.cta-box {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--grad);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-box::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        pointer-events: none;
    }

    .cta-box::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -50px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        pointer-events: none;
    }

    .cta-box h2 {
        font-size: clamp(26px,4vw,46px);
        font-weight: 900;
        color: white;
        letter-spacing: -1px;
        position: relative;
        z-index: 1;
    }

    .cta-box p {
        font-size: 16px;
        color: rgba(255,255,255,.78);
        margin: 14px auto 28px;
        max-width: 400px;
        position: relative;
        z-index: 1;
    }

.cta-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0,0,0,.14);
    transition: transform .18s, box-shadow .18s;
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0,0,0,.2);
    }

.btn-outline-w {
    background: transparent;
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 100px;
    border: 2px solid rgba(255,255,255,.38);
    transition: border-color .18s, background .18s;
}

    .btn-outline-w:hover {
        border-color: rgba(255,255,255,.75);
        background: rgba(255,255,255,.09);
    }

.cta-fine {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

/* sticky mobile CTA bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 350;
    padding: 12px 16px 16px;
    background: white;
    border-top: 1px solid var(--g100);
    box-shadow: 0 -4px 20px rgba(0,0,0,.10);
}

    .mobile-cta-bar button {
        width: 100%;
        background: var(--sale);
        background-size: 200% 100%;
        animation: shimmer 4s linear infinite;
        color: white;
        font-size: 16px;
        font-weight: 800;
        padding: 16px;
        border-radius: 100px;
        box-shadow: 0 6px 24px rgba(108,99,255,.38);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .mobile-cta-bar .cta-sub {
        text-align: center;
        font-size: 12px;
        color: var(--muted);
        margin-top: 6px;
    }

/* ═══════════════════════════════════════════════════
   PRICING SHEET
═══════════════════════════════════════════════════ */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,40,55,.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

    .overlay.show {
        opacity: 1;
        pointer-events: all;
    }

.sheet {
    background: white;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 0 0 env(safe-area-inset-bottom, 24px);
    transform: translateY(100%);
    transition: transform .38s cubic-bezier(.32,.72,0,1);
    position: relative;
}

.overlay.show .sheet {
    transform: translateY(0);
}

.s-handle {
    width: 40px;
    height: 4px;
    background: var(--g200);
    border-radius: 100px;
    margin: 12px auto 0;
}

.s-close {
    position: absolute;
    top: 12px;
    inset-inline-end: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--g50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    transition: background .2s;
}

    .s-close:hover {
        background: var(--g100);
    }

.s-head {
    padding: 18px 22px 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.s-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.s-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.s-brand {
    font-size: 17px;
    font-weight: 900;
    color: var(--g900);
}

.s-from {
    font-size: 12px;
    color: var(--muted);
}

.s-timer-box {
    text-align: end;
    flex-shrink: 0;
}

.s-timer-lbl {
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 2px;
}

.s-timer-val {
    font-size: 17px;
    font-weight: 900;
    color: var(--g900);
    font-variant-numeric: tabular-nums;
}

.s-feats {
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.sf {
    display: flex;
    gap: 11px;
    align-items: flex-start;
}

.sf-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--g50);
    border: 1px solid var(--g100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.sf-t {
    font-size: 13px;
    font-weight: 700;
    color: var(--g900);
}

.sf-d {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.5;
}

.s-div {
    height: 1px;
    background: var(--g100);
    margin: 14px 22px;
}

.s-ptitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    padding: 0 22px;
    margin-bottom: 9px;
}

.s-opts {
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sopt {
    border: 1.5px solid var(--g200);
    border-radius: 11px;
    padding: 13px 14px;
    cursor: pointer;
    position: relative;
    transition: border-color .2s, background .2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-tap-highlight-color: transparent;
}

    .sopt:hover, .sopt.sel {
        border-color: var(--cyan2);
        background: rgba(0,200,215,.04);
    }

    .sopt.best {
        border-color: var(--blue);
    }

.best-lbl {
    position: absolute;
    top: -9px;
    inset-inline-start: 13px;
    background: white;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    padding: 1px 9px;
    border-radius: 100px;
}

.sopt-prices {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.sopt-old {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
}

.sopt-new {
    font-size: 21px;
    font-weight: 900;
    color: var(--g900);
}

.sopt-period {
    font-size: 12px;
    color: var(--muted);
}

.sopt-lbl {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.sopt-tag {
    background: #ef4444;
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 100px;
    display: none;
}

.sopt.sel .sopt-tag {
    display: inline-block;
}

.s-buy-wrap {
    padding: 13px 22px 0;
}

.s-buy {
    width: 100%;
    border-radius: 100px;
    background: var(--sale);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
    color: white;
    font-size: 15px;
    font-weight: 800;
    padding: 16px;
    box-shadow: 0 8px 28px rgba(108,99,255,.38);
    transition: transform .18s, box-shadow .18s;
}

    .s-buy:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 36px rgba(108,99,255,.45);
    }

.s-guarantee {
    text-align: center;
    margin-top: 9px;
    padding-bottom: 4px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
@@keyframes up {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.rev {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

    .rev.vis {
        opacity: 1;
        transform: translateY(0);
    }

/* ═══════════════════════════════════════════════════
   ── TABLET  768px–1023px ──
═══════════════════════════════════════════════════ */
@media (max-width: 1023px) {
    nav {
        padding: 0 20px;
        top: 40px;
    }

    .nav-center {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 52px 24px 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

        .steps-grid .step:last-child {
            grid-column: span 2;
        }

    .fsplit {
        gap: 36px;
    }

        .fsplit.rev {
            direction: rtl;
        }

            .fsplit.rev > * {
                direction: ltr;
            }

    [dir="rtl"] .fsplit.rev {
        direction: ltr;
    }

        [dir="rtl"] .fsplit.rev > * {
            direction: rtl;
    }

    .tgrid {
        grid-template-columns: 1fr 1fr;
    }

        .tgrid .tc:last-child {
            grid-column: span 2;
        }

    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

/* ═══════════════════════════════════════════════════
   ── MOBILE  max 767px ──
═══════════════════════════════════════════════════ */
@media (max-width: 767px) {
    /* banner */
    .sale-banner {
        font-size: 12px;
        gap: 8px;
        padding: 9px 12px;
    }

    .banner-timer {
        font-size: 12px;
        padding: 3px 10px;
    }
    /* nav */
    nav {
        top: 38px;
        height: 56px;
        padding: 0 16px;
    }

    .nav-cta {
        display: none;
    }

    .mobile-cta-bar {
        display: block;
    }
    /* hero — single column */
    .hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        padding: 44px 20px 36px;
        text-align: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .phone-col {
        display: none;
    }
    /* hide mockup on mobile — too cramped */
    /* hero show card preview as flat card instead */
    .hero-card-preview {
        display: flex !important;
        justify-content: center;
        width: 100%;
        overflow: hidden;
        max-height: 540px;
        margin-top: 16px;
        border-radius: 16px;
        /* no outer transform — avoids double-scale visual misalignment */
    }

        .hero-card-preview .phone-frame {
            transform: scale(0.7);
            transform-origin: top center;
            flex-shrink: 0;
            margin-bottom: -228px; /* 758px layout × 0.3 dead space */
        }

    .hcp-avatar {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--grad);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: white;
        font-weight: 900;
    }

    .hcp-name {
        font-size: 15px;
        font-weight: 800;
        color: var(--g900);
    }

    .hcp-role {
        font-size: 12px;
        color: var(--muted);
    }

    .hcp-icons {
        display: flex;
        gap: 8px;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .hcp-icon {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #1A2535;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }
    /* band */
    .band {
        padding: 20px 16px;
    }

    .band-in {
        gap: 20px;
    }

    .bstats {
        gap: 18px;
    }

    .bst-num {
        font-size: 17px;
    }
    /* sections */
    .sec {
        padding: 52px 20px;
    }
    /* steps — single col */
    .steps-grid {
        grid-template-columns: 1fr;
    }

        .steps-grid .step:last-child {
            grid-column: auto;
        }
    /* features — stack */
    .fsplit {
        grid-template-columns: 1fr;
        gap: 24px;
    }

        .fsplit.rev {
            direction: ltr;
        }
            /* reset desktop value – safe, 1 col */
            .fsplit.rev > * {
                direction: inherit;
            }
    /* let content inherit page direction */
    [dir="rtl"] .fsplit.rev {
        direction: rtl;
    }

        [dir="rtl"] .fsplit.rev > * {
            direction: rtl;
        }

    .fsplit + .fsplit {
        margin-top: 48px;
        padding-top: 48px;
    }
    /* comparison — scroll horizontally */
    .ctable {
        border-radius: 12px;
    }
    /* testimonials — single col */
    .tgrid {
        grid-template-columns: 1fr;
    }

        .tgrid .tc:last-child {
            grid-column: auto;
        }
    /* cta */
    .cta-sec {
        padding: 0 16px 96px;
    }
    /* extra bottom padding for sticky bar */
    .cta-box {
        padding: 44px 24px;
        border-radius: 16px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-white, .btn-outline-w {
        text-align: center;
    }
    /* footer */
    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .foot-bot {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot-legal {
        flex-wrap: wrap;
        gap: 12px;
    }
    /* faq */
    .fq {
        font-size: 14px;
    }
}

/* ═══════════════════════════════════════════════════
   ── SMALL MOBILE  max 400px ──
═══════════════════════════════════════════════════ */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .btn-sale {
        font-size: 14px;
        padding: 13px 22px;
    }

    .btn-ghost {
        font-size: 14px;
        padding: 13px 16px;
    }

    .foot-top {
        grid-template-columns: 1fr;
    }

    .stat-tiles {
        flex-wrap: wrap;
    }

    .stile {
        flex: 0 0 calc(50% - 4px);
    }

    .bstats {
        gap: 14px;
    }
}

/* safe area for iPhones with home indicator */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-cta-bar {
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
}

/* ═══════════════════════════════════════════════════
   ICON CYCLER
═══════════════════════════════════════════════════ */
.icon-cycle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.icon-cycle-grid.icon-fade-out {
    opacity: 0;
}

.icon-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 12px;
}

.icon-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--g200);
    transition: background 0.3s ease, transform 0.3s ease;
}

.icon-dot.active {
    background: var(--cyan2);
    transform: scale(1.3);
}
