/* ============================================================
       DESIGN TOKENS — Eduvontra Design System
    ============================================================ */
        :root {
            --brand: #8327D2;
            --brand-dark: #6A1FB0;
            --brand-deep: #510F92;
            --brand-light: #9F45E8;
            --brand-pale: #F3EAFD;
            --brand-soft: #EAD8FA;
            --brand-mid: #C598F0;
            --surface: #FFFFFF;
            --canvas: #F9F7FD;
            --canvas-alt: #F2EEF9;
            --border: #E6DFF5;
            --border-soft: #EDE8F6;
            --ink-900: #0F0B1A;
            --ink-700: #2D2240;
            --ink-500: #5E4D78;
            --ink-400: #8474A0;
            --ink-300: #B0A2C8;
            --ink-200: #D7CEED;
            --ink-100: #EDE8F6;
            --success: #12B76A;
            --warning: #F79009;
            --danger: #F04438;
            --shadow-xs: 0 1px 2px rgba(131, 39, 210, 0.06);
            --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
            --ff-heading: 'Sora', sans-serif;
            --ff-body: 'DM Sans', sans-serif;
            --r-sm: 8px;
            --r-md: 12px;
            --r-lg: 16px;
            --r-xl: 24px;
            --r-full: 999px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--ff-body);
            background: var(--canvas);
            color: var(--ink-700);
            line-height: 1.7;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

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

        ul {
            list-style: none;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--canvas);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--ink-200);
            border-radius: 99px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--brand-mid);
        }

        /* ============================================================
       LAYOUT
    ============================================================ */
        .container {
            /* max-width: 1200px;
                margin-inline: auto;
                padding-inline: clamp(1.25rem, 4vw, 5rem); */
            max-width: 1600px;
            margin-inline: auto;
            padding: 0 100px 0 100px;
        }

        @media (max-width: 560px) {
            .container {
                /* max-width: 1200px; */
                margin-inline: auto;
                /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
                padding: 0 20px 0 20px;
            }
        }

        .section {
            padding: 6rem 0;
        }

        .section-sm {
            padding: 4rem 0;
        }

        .section-header {
            margin-bottom: 3.5rem;
            max-width: 560px;
        }

        .section-header.centered {
            max-width: 680px;
            margin-inline: auto;
            text-align: center;
        }

        /* ============================================================
       TYPOGRAPHY
    ============================================================ */
        h1 {
            font-family: var(--ff-heading);
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.025em;
            line-height: 1.15;
            color: var(--ink-900);
        }

        h2 {
            font-family: var(--ff-heading);
            font-size: clamp(1.8rem, 3.5vw, 2.75rem);
            font-weight: 700;
            letter-spacing: -0.025em;
            line-height: 1.2;
            color: var(--ink-900);
        }

        h3 {
            font-family: var(--ff-heading);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--ink-900);
        }

        h4 {
            font-family: var(--ff-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--ink-900);
        }

        p {
            color: var(--ink-500);
            font-size: 1rem;
            line-height: 1.7;
        }

        .label {
            display: inline-block;
            font-family: var(--ff-heading);
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--brand);
            margin-bottom: 0.75rem;
        }

        em {
            font-style: normal;
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ============================================================
       BUTTONS
    ============================================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.625rem;
            border-radius: var(--r-md);
            font-family: var(--ff-heading);
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
        }

        .btn-primary:hover {
            background: var(--brand-dark);
            transform: translateY(-1px);
            box-shadow: 0 8px 28px rgba(131, 39, 210, 0.45);
        }

        .btn-outline {
            background: transparent;
            color: var(--ink-700);
            border: 1.5px solid var(--border);
        }

        .btn-outline:hover {
            border-color: var(--brand-mid);
            color: var(--brand);
            background: var(--brand-pale);
        }

        .btn-sm {
            padding: 0.5rem 1.125rem;
            font-size: 0.875rem;
            border-radius: var(--r-sm);
        }

        .btn-lg {
            padding: 0.9375rem 2rem;
            font-size: 1rem;
        }

        /* ============================================================
       CHIP
    ============================================================ */
        .chip {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.3125rem 0.875rem;
            border-radius: var(--r-full);
            background: var(--brand-pale);
            border: 1px solid var(--brand-soft);
            font-size: 0.75rem;
            font-weight: 600;
            font-family: var(--ff-heading);
            color: var(--brand-dark);
        }

        /* ============================================================
       ANIMATIONS
    ============================================================ */
        @keyframes floatA {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-8px)
            }
        }

        @keyframes floatB {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(6px)
            }
        }

        @keyframes floatC {

            0%,
            100% {
                transform: translateY(0) rotate(0deg)
            }

            50% {
                transform: translateY(-10px) rotate(3deg)
            }
        }

        @keyframes pulseGlow {

            0%,
            100% {
                opacity: .6;
                transform: scale(1)
            }

            50% {
                opacity: 1;
                transform: scale(1.04)
            }
        }

        @keyframes marquee {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes spinSlow {
            from {
                transform: rotate(0deg)
            }

            to {
                transform: rotate(360deg)
            }
        }

        /* ============================================================
       HERO
    ============================================================ */
        .hero {
            position: relative;
            padding: 7rem 0 0;
            overflow: hidden;
            background: var(--canvas);
        }

        /* background layer */
        .hero-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .hero-orb-1 {
            position: absolute;
            top: -220px;
            right: -180px;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(131, 39, 210, 0.13) 0%, transparent 65%);
        }

        .hero-orb-2 {
            position: absolute;
            bottom: -80px;
            left: -100px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(131, 39, 210, 0.07) 0%, transparent 65%);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(131, 39, 210, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(131, 39, 210, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, black 0%, transparent 80%);
        }

        /* layout */
        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* text side */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.375rem 1rem 0.375rem 0.375rem;
            background: var(--brand-pale);
            border: 1px solid var(--brand-soft);
            border-radius: var(--r-full);
            font-family: var(--ff-heading);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--brand-dark);
            margin-bottom: 1.75rem;
        }

        .hero-badge-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .hero h1 {
            margin-bottom: 1.25rem;
        }

        .hero-desc {
            font-size: 1.0625rem;
            line-height: 1.75;
            color: var(--ink-500);
            margin-bottom: 2.25rem;
            max-width: 500px;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-soft);
        }

        .hero-stat-num {
            font-family: var(--ff-heading);
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--ink-900);
            line-height: 1;
        }

        .hero-stat-lbl {
            font-size: 0.8125rem;
            color: var(--ink-400);
            margin-top: 0.25rem;
        }

        /* visual side */
        .hero-visual {
            position: relative;
            padding-bottom: 3rem;
        }

        /* central dashboard card */
        .hero-dash {
            background: var(--surface);
            border-radius: 24px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            position: relative;
            z-index: 2;
        }

        .hero-dash-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--border-soft);
            background: var(--canvas);
        }

        .dash-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .hero-dash-body {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .dash-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }

        .dash-mini {
            background: var(--canvas);
            border-radius: 12px;
            padding: 0.875rem;
            border: 1px solid var(--border-soft);
        }

        .dash-mini-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: var(--brand-pale);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
        }

        .dash-mini-val {
            font-family: var(--ff-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--ink-900);
        }

        .dash-mini-lbl {
            font-size: 0.7rem;
            color: var(--ink-400);
        }

        .dash-chart {
            background: var(--canvas);
            border-radius: 12px;
            padding: 1rem;
            border: 1px solid var(--border-soft);
            display: flex;
            align-items: flex-end;
            gap: 0.375rem;
            height: 80px;
        }

        .dash-bar-item {
            flex: 1;
            border-radius: 4px 4px 0 0;
            background: var(--brand-pale);
            transition: background 0.2s;
        }

        .dash-bar-item:hover {
            background: var(--brand);
        }

        .dash-bar-item.hi {
            background: var(--brand);
        }

        /* floating cards */
        .hero-float {
            position: absolute;
            background: var(--surface);
            border-radius: 16px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-md);
            padding: 0.875rem 1.125rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            white-space: nowrap;
            z-index: 3;
        }

        .hero-float-1 {
            bottom: 20px;
            left: -30px;
            animation: floatB 5s ease-in-out infinite;
        }

        .hero-float-2 {
            top: 10px;
            right: -20px;
            animation: floatA 6s ease-in-out infinite;
        }

        .hero-float-3 {
            top: 45%;
            left: -40px;
            animation: floatC 7s ease-in-out infinite;
        }

        .fi {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .fi-purple {
            background: var(--brand-pale);
            color: var(--brand);
        }

        .fi-green {
            background: #D1FAE5;
            color: #059669;
        }

        .fi-blue {
            background: #DBEAFE;
            color: #2563EB;
        }

        .fi-orange {
            background: #FEF3C7;
            color: #D97706;
        }

        .ft-main {
            font-family: var(--ff-heading);
            font-size: 0.8125rem;
            font-weight: 700;
            color: var(--ink-900);
        }

        .ft-sub {
            font-size: 0.7rem;
            color: var(--ink-400);
        }

        /* decorative ring */
        .hero-ring {
            position: absolute;
            top: -30px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 1.5px dashed var(--brand-soft);
            animation: spinSlow 30s linear infinite;
            pointer-events: none;
            z-index: 1;
        }

        .hero-ring::after {
            content: '';
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--brand);
        }

        /* ============================================================
       MARQUEE
    ============================================================ */
        .marquee-section {
            padding: 2.5rem 0;
            background: var(--surface);
            border-top: 1px solid var(--border-soft);
            border-bottom: 1px solid var(--border-soft);
            overflow: hidden;
        }

        .marquee-lbl {
            text-align: center;
            font-family: var(--ff-heading);
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--ink-400);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1.5rem;
        }

        .marquee-wrap {
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
        }

        .marquee-track {
            display: flex;
            gap: 3rem;
            align-items: center;
            width: max-content;
            animation: marquee 32s linear infinite;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-family: var(--ff-heading);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--ink-300);
            white-space: nowrap;
            transition: color 0.2s;
        }

        .marquee-item:hover {
            color: var(--brand);
        }

        .mi-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--ink-200);
            flex-shrink: 0;
        }

        /* ============================================================
       TRUST BADGES ROW
    ============================================================ */
        .trust-row {
            background: var(--canvas-alt);
            border-bottom: 1px solid var(--border-soft);
            padding: 3rem 0;
        }

        .trust-inner {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 0;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.875rem;
            padding: 1.5rem 3rem;
            border-right: 1px solid var(--border-soft);
            flex: 1;
            min-width: 160px;
            max-width: 240px;
            transition: background 0.2s;
        }

        .trust-item:last-child {
            border-right: none;
        }

        .trust-item:hover {
            background: var(--brand-pale);
            border-radius: var(--r-lg);
        }

        .trust-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--brand-pale);
            border: 1px solid var(--brand-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
            transition: all 0.25s;
        }

        .trust-item:hover .trust-icon {
            background: var(--brand);
            color: #fff;
            transform: scale(1.05);
        }

        .trust-item span {
            font-family: var(--ff-heading);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--ink-700);
            text-align: center;
        }

        /* ============================================================
       HIGHLIGHTS (4-col)
    ============================================================ */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        .hl-card {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: 20px;
            padding: 2rem 1.75rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
        }

        .hl-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            opacity: 0;
            transition: opacity 0.25s;
            border-radius: 20px 20px 0 0;
        }

        .hl-card:nth-child(1)::before {
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
        }

        .hl-card:nth-child(2)::before {
            background: linear-gradient(90deg, #3B82F6, #60A5FA);
        }

        .hl-card:nth-child(3)::before {
            background: linear-gradient(90deg, #8B5CF6, #A78BFA);
        }

        .hl-card:nth-child(4)::before {
            background: linear-gradient(90deg, #10B981, #34D399);
        }

        .hl-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--brand-soft);
        }

        .hl-card:hover::before {
            opacity: 1;
        }

        .hl-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--brand-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
            margin-bottom: 1.25rem;
            transition: all 0.25s;
        }

        .hl-card:hover .hl-icon {
            background: var(--brand);
            color: #fff;
            transform: scale(1.05) rotate(-3deg);
        }

        .hl-card h4 {
            margin-bottom: 0.5rem;
        }

        .hl-card p {
            font-size: 0.875rem;
        }

        .hl-num {
            font-family: var(--ff-heading);
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--brand);
            margin-top: 1rem;
        }

        /* ============================================================
       TABBED FEATURES — 9 tabs
    ============================================================ */
        .tabs-section {
            background: var(--canvas);
        }

        .tabs-nav {
            display: flex;
            gap: 0.375rem;
            flex-wrap: wrap;
            background: var(--surface);
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            padding: 0.5rem;
            margin-bottom: 3rem;
        }

        .tnav-btn {
            flex: 1;
            min-width: 110px;
            padding: 0.625rem 0.875rem;
            border-radius: 10px;
            border: none;
            background: transparent;
            font-family: var(--ff-heading);
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--ink-400);
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
            text-align: center;
        }

        .tnav-btn:hover {
            color: var(--brand);
            background: var(--brand-pale);
        }

        .tnav-btn.active {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 4px 12px rgba(131, 39, 210, 0.3);
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            animation: fadeInUp 0.35s ease both;
        }

        .tp-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .tp-text p {
            font-size: 1.0625rem;
            margin-bottom: 1.75rem;
        }

        .tp-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .tp-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .tp-check {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--brand-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .tp-item span {
            font-size: 0.9375rem;
            color: var(--ink-500);
            line-height: 1.5;
        }

        .tp-visual {
            position: relative;
        }

        .tp-frame {
            background: var(--surface);
            border-radius: 20px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tp-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--brand-pale) 0%, var(--canvas-alt) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .tp-big-icon {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.7);
            border: 2px solid var(--brand-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
        }

        .tp-frame-lbl {
            font-family: var(--ff-heading);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--ink-400);
        }

        .tp-visual::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background-image: radial-gradient(var(--brand-soft) 1.5px, transparent 1.5px);
            background-size: 12px 12px;
            pointer-events: none;
            z-index: -1;
        }

        /* ============================================================
       DARK FEATURE GRID
    ============================================================ */
        .dark-section {
            background: var(--ink-900);
            position: relative;
            overflow: hidden;
        }

        .dark-glow {
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(131, 39, 210, 0.2) 0%, transparent 65%);
            pointer-events: none;
        }

        .dark-dots {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 48px 48px;
        }

        .dark-section .label {
            color: var(--brand-mid);
        }

        .dark-section h2 {
            color: #fff;
        }

        .dark-section .section-header p {
            color: rgba(255, 255, 255, 0.5);
        }

        .dark-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            position: relative;
            z-index: 1;
        }

        .dk-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            padding: 2rem 1.75rem;
            transition: all 0.25s;
        }

        .dk-card:hover {
            background: rgba(131, 39, 210, 0.18);
            border-color: rgba(197, 152, 240, 0.35);
            transform: translateY(-4px);
        }

        .dk-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(131, 39, 210, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-mid);
            margin-bottom: 1.25rem;
            transition: all 0.25s;
        }

        .dk-card:hover .dk-icon {
            background: var(--brand);
            color: #fff;
        }

        .dk-card h4 {
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .dk-card p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* ============================================================
       PRICING TEASER
    ============================================================ */
        .pricing-section {
            background: var(--canvas-alt);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .price-card {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: transform 0.25s, box-shadow 0.25s;
            position: relative;
        }

        .price-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .price-card.featured {
            background: var(--ink-900);
            border-color: var(--brand);
            box-shadow: 0 0 0 1px var(--brand), var(--shadow-lg);
        }

        .price-card.featured h4,
        .price-card.featured .price-num {
            color: #fff;
        }

        .price-card.featured p {
            color: rgba(255, 255, 255, 0.5);
        }

        .price-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand);
            color: #fff;
            font-family: var(--ff-heading);
            font-size: 0.6875rem;
            font-weight: 700;
            padding: 0.25rem 0.875rem;
            border-radius: var(--r-full);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .price-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--brand-pale);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
        }

        .price-card.featured .price-icon {
            background: rgba(131, 39, 210, 0.3);
            color: var(--brand-mid);
        }

        .price-card h4 {
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
        }

        .price-num {
            font-family: var(--ff-heading);
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--ink-900);
            line-height: 1;
            margin: 1rem 0 0.25rem;
        }

        .price-period {
            font-size: 0.8125rem;
            color: var(--ink-400);
            margin-bottom: 1.5rem;
        }

        .price-divider {
            height: 1px;
            background: var(--border-soft);
            margin-bottom: 1.5rem;
        }

        .price-card.featured .price-divider {
            background: rgba(255, 255, 255, 0.08);
        }

        .price-features {
            display: flex;
            flex-direction: column;
            gap: 0.625rem;
            margin-bottom: 2rem;
            text-align: left;
        }

        .pf-item {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 0.875rem;
            color: var(--ink-500);
        }

        .price-card.featured .pf-item {
            color: rgba(255, 255, 255, 0.65);
        }

        .pf-check {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--brand-pale);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .price-card.featured .pf-check {
            background: rgba(131, 39, 210, 0.3);
            color: var(--brand-mid);
        }

        .btn-price-featured {
            background: var(--brand);
            color: #fff;
            width: 100%;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
        }

        .btn-price-featured:hover {
            background: var(--brand-dark);
            transform: translateY(-1px);
        }

        .btn-price-outline {
            background: transparent;
            color: var(--ink-700);
            border: 1.5px solid var(--border);
            width: 100%;
            justify-content: center;
        }

        .btn-price-outline:hover {
            border-color: var(--brand-mid);
            color: var(--brand);
            background: var(--brand-pale);
        }

        /* ============================================================
       APP SLIDER
    ============================================================ */
        .app-section {
            background: var(--surface);
        }

        .slider-outer {
            overflow: hidden;
            border-radius: 20px;
            margin-top: 3rem;
        }

        .slider-track {
            display: flex;
            gap: 1.25rem;
            transition: transform 0.4s ease;
            padding: 0.5rem 0;
        }

        .slide {
            min-width: calc(33.333% - 0.85rem);
            flex-shrink: 0;
            background: var(--canvas);
            border-radius: 20px;
            border: 1.5px solid var(--border-soft);
            aspect-ratio: 3/2;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s;
        }

        .slide:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--brand-soft);
        }

        .slide-inner {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--brand-pale) 0%, var(--canvas-alt) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.5rem;
            border-radius: 20px;
        }

        .slide-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.7);
            border: 2px solid var(--brand-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
        }

        .slide-lbl {
            font-family: var(--ff-heading);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--ink-700);
            text-align: center;
        }

        .slider-ctrl {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .s-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--surface);
            border: 1.5px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--ink-500);
            transition: all 0.2s;
        }

        .s-btn:hover {
            border-color: var(--brand);
            color: var(--brand);
            background: var(--brand-pale);
        }

        .s-dots {
            display: flex;
            gap: 0.5rem;
        }

        .s-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--ink-200);
            cursor: pointer;
            transition: all 0.2s;
        }

        .s-dot.active {
            background: var(--brand);
            width: 24px;
            border-radius: 99px;
        }

        .store-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: var(--ink-900);
            border-radius: var(--r-md);
            color: #fff;
            transition: all 0.2s;
        }

        .store-btn:hover {
            background: var(--brand);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(131, 39, 210, 0.35);
        }

        .store-sub {
            font-size: 0.6875rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .store-name {
            font-family: var(--ff-heading);
            font-size: 0.9375rem;
            font-weight: 600;
        }

        /* ============================================================
       FAQ
    ============================================================ */
        .faq-section {
            padding: 7rem 0;
            background: var(--canvas-alt);
        }

        .faq-inner {
            display: grid;
            grid-template-columns: 340px 1fr;
            gap: 4.5rem;
            align-items: start;
        }

        .faq-left {
            position: sticky;
            top: 6.5rem;
        }

        .faq-left .chip {
            margin-bottom: 1rem;
        }

        .faq-left h2 {
            margin-bottom: 1rem;
            font-size: clamp(1.5rem, 2.5vw, 2.1rem);
        }

        .faq-left>p {
            margin-bottom: 2rem;
        }

        .faq-contact-card {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: 20px;
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: var(--shadow-sm);
        }

        .faq-contact-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--r-md);
            background: var(--brand-pale);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-contact-title {
            font-family: var(--ff-heading);
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--ink-900);
        }

        .faq-contact-link {
            font-family: var(--ff-heading);
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--brand);
            margin-top: 2px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            max-width: none;
            margin-inline: 0;
        }

        .faq-item {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: var(--r-lg);
            overflow: hidden;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            margin-bottom: 0;
        }

        .faq-item.open {
            border-color: var(--brand-soft);
            box-shadow: var(--shadow-sm);
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            user-select: none;
        }

        .faq-num {
            font-family: var(--ff-heading);
            font-size: 0.6875rem;
            font-weight: 800;
            color: var(--brand);
            background: var(--brand-pale);
            width: 28px;
            height: 28px;
            border-radius: var(--r-sm);
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }

        .faq-q-txt {
            font-family: var(--ff-heading);
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--ink-900);
            flex: 1;
            transition: color 0.2s;
        }

        .faq-item.open .faq-q-txt {
            color: var(--brand-dark);
        }

        .faq-ico {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--canvas) !important;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            color: var(--ink-400) !important;
            transition: background 0.2s, color 0.2s, transform 0.35s ease;
        }

        .faq-item.open .faq-ico {
            background: var(--brand) !important;
            color: #fff !important;
            transform: rotate(180deg);
        }

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

        .faq-item.open .faq-body {
            max-height: 500px;
            padding: 0;
        }

        .faq-body-inner {
            padding: 0 1.5rem 1.5rem 1.5rem;
            font-size: 0.9375rem;
            line-height: 1.7;
            color: var(--ink-500);
        }

        .faq-body-inner p {
            font-size: 0.9375rem;
            line-height: 1.7;
        }

        .faq-body-inner ul {
            margin-top: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .faq-body-inner ul li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--ink-500);
        }

        .faq-body-inner ul li::before {
            content: '→';
            color: var(--brand);
            flex-shrink: 0;
        }

        /* ============================================================
       CTA BAND
    ============================================================ */
        .cta-band {
            background: var(--ink-900);
            position: relative;
            overflow: hidden;
            padding: 5rem 0;
        }

        .cta-glow {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(131, 39, 210, 0.22) 0%, transparent 65%);
            pointer-events: none;
        }

        .cta-inner {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .cta-inner h2 {
            color: #fff;
            margin-bottom: 1rem;
        }

        .cta-inner p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 1.0625rem;
            max-width: 520px;
            margin: 0 auto 2.5rem;
        }

        .cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: #fff;
            color: var(--brand);
            font-family: var(--ff-heading);
            font-weight: 600;
            padding: 0.9375rem 2rem;
            border-radius: var(--r-md);
            font-size: 1rem;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(255, 255, 255, 0.2);
        }

        .btn-ghost-white {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            padding: 0.9375rem 2rem;
            border-radius: var(--r-md);
            font-family: var(--ff-heading);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
        }

        .btn-ghost-white:hover {
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.07);
        }

        /* ============================================================
       RESPONSIVE
    ============================================================ */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-visual {
                display: none;
            }

            .highlights-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tab-panel.active {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .tp-visual {
                display: none;
            }

            .dark-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin-inline: auto;
            }

            .slide {
                min-width: calc(50% - 0.625rem);
            }

            .trust-item {
                padding: 1.25rem 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .highlights-grid {
                grid-template-columns: 1fr;
            }

            .tabs-nav {
                flex-direction: column;
            }

            .tnav-btn {
                flex: none;
            }

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

            .slide {
                min-width: 100%;
            }

            .trust-inner {
                flex-direction: column;
                align-items: center;
            }

            .trust-item {
                border-right: none;
                border-bottom: 1px solid var(--border-soft);
                width: 100%;
                max-width: 100%;
            }

            .trust-item:last-child {
                border-bottom: none;
            }

            .hero-stats {
                flex-direction: row;
                justify-content: space-between;
                gap: 0.5rem;
                padding-bottom: 96px;
            }
        }