        /* ============================================================
           RESET & BASE
        ============================================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --blue: #0066FF;
            --blue-dark: #0052cc;
            --blue-light: #eef2ff;
            --blue-mid: #e0e7ff;
            --text: #1a1a2e;
            --text-muted: #4b5563;
            --white: #ffffff;
            --border: #eef2ff;
            --bg-light: linear-gradient(135deg, #f8f9ff 0%, #f0f2fe 100%);
            --nav-h: 72px;
            /* Fluid spacing */
            --px: clamp(1rem, 4vw, 3rem);
            --section-py: clamp(3rem, 7vw, 6rem);
            --gap: clamp(1.25rem, 3vw, 2.5rem);
            --max-w: 88rem; /* 1408px — gives room on ultrawide */
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: var(--text);
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }

        /* ============================================================
           LAYOUT HELPERS
        ============================================================ */
        .container {
            width: 100%;
            max-width: var(--max-w);
            margin-inline: auto;
            padding-inline: var(--px);
        }

        /* ============================================================
           BUTTONS
        ============================================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .75rem 1.75rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: clamp(.875rem, 1.5vw, 1rem);
            cursor: pointer;
            border: none;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
            white-space: nowrap;
            text-decoration: none;
        }
        .btn:hover { transform: translateY(-2px); }

        .btn-primary {
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            color: var(--white);
        }
        .btn-primary:hover { box-shadow: 0 8px 20px rgba(0,102,255,.28); }

        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--blue);
            color: var(--blue);
        }
        .btn-outline:hover { background: rgba(0,102,255,.05); }

        .btn-lg {
            padding: 1rem 2.25rem;
            font-size: clamp(1rem, 1.8vw, 1.125rem);
        }

        /* ============================================================
           NAVIGATION
        ============================================================ */
        .nav {
            position: sticky;
            top: 0;
            z-index: 100;
            height: var(--nav-h);
            background: rgba(255,255,255,.96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,102,255,.08);
        }

        .nav__inner {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .nav__logo {
            display: flex;
            align-items: center;
            gap: .6rem;
            flex-shrink: 0;
        }

        .nav__logo-icon {
            width: 2.4rem;
            height: 2.4rem;
            background: linear-gradient(135deg, var(--blue) 0%, #3b82f6 100%);
            border-radius: .7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
        }

        .nav__brand {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: var(--text);
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: clamp(.75rem, 2vw, 2rem);
            list-style: none;
        }

        .nav__links a {
            color: #374151;
            font-weight: 500;
            font-size: .95rem;
            transition: color .2s;
        }
        .nav__links a:hover { color: var(--blue); }

        .nav__actions {
            display: flex;
            align-items: center;
            gap: .75rem;
            flex-shrink: 0;
        }

        /* Hamburger — hidden on desktop */
        .nav__hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text);
            padding: .25rem;
        }

        /* ============================================================
           MOBILE DRAWER
        ============================================================ */
        .drawer {
            position: fixed;
            inset: 0 0 0 auto;
            width: min(80vw, 320px);
            background: var(--white);
            z-index: 200;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            transform: translateX(100%);
            transition: transform .3s ease;
            box-shadow: -6px 0 30px rgba(0,0,0,.08);
            overflow-y: auto;
        }
        .drawer.open { transform: translateX(0); }

        .drawer__close {
            align-self: flex-end;
            background: none;
            border: none;
            font-size: 1.75rem;
            cursor: pointer;
            color: #6b7280;
            line-height: 1;
        }

        .drawer__nav {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .drawer__nav a {
            font-size: 1.05rem;
            font-weight: 500;
            color: #1f2937;
            padding: .5rem 0;
            border-bottom: 1px solid #f3f4f6;
            transition: color .2s;
        }
        .drawer__nav a:hover { color: var(--blue); }

        .drawer__actions {
            display: flex;
            flex-direction: column;
            gap: .75rem;
            margin-top: .5rem;
        }
        .drawer__actions .btn { justify-content: center; }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.35);
            backdrop-filter: blur(3px);
            z-index: 199;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s;
        }
        .overlay.open { opacity: 1; pointer-events: all; }

        /* ============================================================
           HERO
        ============================================================ */
        .hero {
            background: var(--bg-light);
            padding-block: clamp(3.5rem, 8vw, 6rem);
            overflow: hidden;
        }

        .hero__inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--gap);
            align-items: center;
        }

        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: #eff6ff;
            padding: .4rem 1rem;
            border-radius: 999px;
            font-size: .85rem;
            font-weight: 500;
            color: #1d4ed8;
            margin-bottom: 1.25rem;
        }

        .hero__title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 5vw, 3.75rem);
            font-weight: 800;
            line-height: 1.18;
            margin-bottom: 1.25rem;
        }
        .hero__title span { color: var(--blue); }

        .hero__desc {
            color: var(--text-muted);
            font-size: clamp(.95rem, 1.5vw, 1.1rem);
            line-height: 1.7;
            max-width: 38rem;
            margin-bottom: 2rem;
        }

        .hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }

        .hero__trust {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem;
        }
        .hero__trust-item {
            display: flex;
            align-items: center;
            gap: .4rem;
            font-size: .9rem;
            color: var(--text-muted);
        }

        /* Hero image / visual */
        .hero__visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero__card-wrap {
            position: relative;
            display: inline-block;
        }

        .hero__img-card {
            background: rgba(255,255,255,.75);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(0,102,255,.15);
            border-radius: 24px;
            padding: 1rem;
            transform: rotate(3deg);
            box-shadow: 0 24px 48px rgba(0,102,255,.12);
        }

        .hero__img-card img {
            border-radius: 16px;
            width: clamp(200px, 30vw, 320px);
        }

        .hero__badge-float {
            position: absolute;
            background: rgba(255,255,255,.8);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(0,102,255,.15);
            border-radius: 16px;
            padding: .75rem;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--blue);
        }
        .hero__badge-float--bl { bottom: -1rem; left: -1rem; transform: rotate(-5deg); }
        .hero__badge-float--tr { top: -1rem; right: -1rem; transform: rotate(5deg); }

        /* ============================================================
           SECTION HEADER (reusable)
        ============================================================ */
        .section-header {
            text-align: center;
            margin-bottom: clamp(2rem, 5vw, 4rem);
        }
        .section-label {
            display: inline-block;
            color: var(--blue);
            font-weight: 600;
            font-size: .8rem;
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-bottom: .5rem;
        }
        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.6rem, 3.5vw, 2.5rem);
            font-weight: 800;
            margin-bottom: .75rem;
        }
        .section-desc {
            color: var(--text-muted);
            font-size: clamp(.9rem, 1.5vw, 1rem);
            max-width: 42rem;
            margin-inline: auto;
            line-height: 1.7;
        }

        /* ============================================================
           FEATURES GRID
        ============================================================ */
        .features { padding-block: var(--section-py); }

        .features__grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
            gap: var(--gap);
        }

        .feature-card {
            background: var(--white);
            border-radius: 20px;
            padding: clamp(1.5rem, 3vw, 2.25rem);
            text-align: center;
            border: 1px solid var(--border);
            box-shadow: 0 4px 12px rgba(0,0,0,.02);
            transition: border-color .3s, box-shadow .3s, transform .3s;
        }
        .feature-card:hover {
            border-color: var(--blue);
            box-shadow: 0 20px 40px rgba(0,102,255,.1);
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
            border-radius: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            font-size: 1.65rem;
            color: var(--blue);
        }

        .feature-card h3 {
            font-size: clamp(1rem, 1.6vw, 1.15rem);
            font-weight: 700;
            margin-bottom: .6rem;
        }
        .feature-card p {
            color: var(--text-muted);
            font-size: clamp(.85rem, 1.3vw, .95rem);
            line-height: 1.65;
        }

        /* ============================================================
           ADVANTAGES
        ============================================================ */
        .advantages {
            padding-block: var(--section-py);
            background: var(--bg-light);
        }

        .advantages__inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(2.5rem, 6vw, 5rem);
            align-items: center;
        }

        .advantages__list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-block: 1.75rem;
        }

        .advantage-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .advantage-icon {
            flex-shrink: 0;
            width: 3rem;
            height: 3rem;
            background: #dbeafe;
            border-radius: .875rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue);
            font-size: 1.1rem;
        }

        .advantage-item h3 {
            font-weight: 700;
            font-size: clamp(.95rem, 1.5vw, 1.05rem);
            margin-bottom: .3rem;
        }
        .advantage-item p {
            color: var(--text-muted);
            font-size: clamp(.85rem, 1.3vw, .93rem);
            line-height: 1.6;
        }

        .use-case-card {
            background: rgba(255,255,255,.75);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(0,102,255,.15);
            border-radius: 24px;
            padding: clamp(1.5rem, 3vw, 2.25rem);
        }

        .use-case-card h3 {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: .5rem;
        }

        .use-case-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: .875rem;
            margin-bottom: .875rem;
            border-bottom: 1px solid #e5e7eb;
            font-size: clamp(.85rem, 1.3vw, .95rem);
        }
        .use-case-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .use-case-row span:last-child { color: var(--blue); font-weight: 600; }

        /* ============================================================
           STATS
        ============================================================ */
        .stats { padding-block: var(--section-py); }

        .stats__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
            gap: var(--gap);
        }

        .stat-card {
            text-align: center;
            padding: clamp(1.25rem, 3vw, 2rem);
        }

        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.25rem, 5vw, 3rem);
            font-weight: 800;
            color: var(--blue);
            margin-bottom: .5rem;
            line-height: 1;
        }
        .stat-label {
            color: var(--text-muted);
            font-weight: 500;
            font-size: clamp(.85rem, 1.3vw, 1rem);
        }

        /* ============================================================
           CTA BANNER
        ============================================================ */
        .cta-section {
            padding-block: var(--section-py);
            background: var(--bg-light);
            text-align: center;
        }
        .cta-section h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.6rem, 3.5vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .cta-section p {
            color: var(--text-muted);
            font-size: clamp(.95rem, 1.5vw, 1.05rem);
            max-width: 38rem;
            margin-inline: auto;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        /* ============================================================
           FOOTER
        ============================================================ */
        .footer {
            background: #1a1a2e;
            color: #9ca3af;
            padding: clamp(2.5rem, 6vw, 4rem) var(--px) 2rem;
        }

        .footer__grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
            gap: var(--gap);
            margin-bottom: 2.5rem;
        }

        .footer__logo {
            display: flex;
            align-items: center;
            gap: .6rem;
            margin-bottom: 1rem;
        }
        .footer__logo-icon {
            width: 2.4rem;
            height: 2.4rem;
            background: linear-gradient(135deg,#2563eb,#3b82f6);
            border-radius: .7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        .footer__brand {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: white;
        }
        .footer__desc {
            font-size: .875rem;
            line-height: 1.65;
        }

        .footer__col h3 {
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: .95rem;
        }
        .footer__col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: .6rem;
        }
        .footer__col ul a {
            color: #9ca3af;
            font-size: .875rem;
            transition: color .2s;
        }
        .footer__col ul a:hover { color: white; }

        .footer__bottom {
            border-top: 1px solid #374151;
            padding-top: 1.5rem;
            text-align: center;
            font-size: .8rem;
        }

        /* ============================================================
           ANIMATIONS
        ============================================================ */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(28px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .fade-up {
            opacity: 0;
            animation: fadeInUp .6s ease-out forwards;
        }
        .delay-1 { animation-delay: .1s; }
        .delay-2 { animation-delay: .2s; }
        .delay-3 { animation-delay: .3s; }
        .delay-4 { animation-delay: .4s; }
        .delay-5 { animation-delay: .5s; }

        /* ============================================================
           RESPONSIVE BREAKPOINTS
        ============================================================ */

        /* ── xs: phones ≤ 480px ── */
        @media (max-width: 480px) {
            .btn { padding: .7rem 1.4rem; font-size: .875rem; }
            .hero__cta { flex-direction: column; align-items: stretch; }
            .hero__cta .btn { justify-content: center; }
            .hero__trust { flex-direction: column; gap: .75rem; }
        }

        /* ── sm: 481px–767px ── */
        @media (min-width: 481px) {
            .hero__inner { text-align: center; }
            .hero__cta { justify-content: center; }
            .hero__trust { justify-content: center; }
            .hero__desc { margin-inline: auto; }
        }

        /* ── md: 768px–1023px (tablet) ── */
        @media (min-width: 768px) {
            .features__grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats__grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ── lg: 1024px+ (desktop) ── */
        @media (min-width: 1024px) {
            /* Show desktop nav, hide hamburger */
            .nav__links-wrap { display: flex; align-items: center; gap: 2.5rem; }
            .nav__hamburger { display: none !important; }

            .hero__inner {
                grid-template-columns: 1fr 1fr;
                text-align: left;
            }
            .hero__cta { justify-content: flex-start; }
            .hero__trust { justify-content: flex-start; }
            .hero__desc { margin-inline: 0; }

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

            .features__grid { grid-template-columns: repeat(3, 1fr); }
        }

        /* ── xl: 1280px+ ── */
        @media (min-width: 1280px) {
            .features__grid { grid-template-columns: repeat(3, 1fr); }
        }

        /* ── 2xl: 1536px+ (large desktop / ultrawide) ── */
        @media (min-width: 1536px) {
            :root { --px: 4rem; }
        }

        /* ── Hide desktop nav on mobile/tablet ── */
        @media (max-width: 1023px) {
            .nav__links-wrap { display: none; }
            .nav__hamburger { display: flex !important; align-items: center; }
        }

        /* ── Skip link ── */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            background: var(--blue);
            color: white;
            padding: .5rem 1rem;
            z-index: 9999;
        }
        .skip-link:focus { left: 0; }
        html,
body{
    max-width:100%;
    overflow-x:hidden;
}

.hero__card-wrap{
    overflow:visible;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

section{
    overflow-x:clip;
}
@media (max-width:1023px){

    .nav__links-wrap{
        display:none !important;
    }

    .nav__hamburger{
        display:flex !important;
        align-items:center;
    }

}