        :root {
            --primary: #8f6f5a;
            --primary-dark: #654b3b;
            --primary-soft: #f3ebe6;
            --secondary: #d8c2b4;
            --background: #fbf8f6;
            --surface: #ffffff;
            --text: #211a16;
            --muted: #776b64;
            --border: #eadfd8;
            --success: #2f9e72;
            --warning: #d39c33;
            --danger: #d45a5a;
            --shadow: 0 24px 70px rgba(69, 48, 35, .10);
            --shadow-sm: 0 14px 34px rgba(69, 48, 35, .07);
            --radius-xl: 32px;
            --radius-lg: 24px;
            --radius-md: 16px;
            --container: 1200px;
        }
        
        
        
        
/*:root {*/
/*    --primary: #6d5dfc;*/
/*    --primary-color: #6d5dfc;*/

/*    --primary-dark: #5749d8;*/

/*    --secondary: #9a7cff;*/
/*    --secondary-color: #9a7cff;*/

/*    --accent: #f4b8d7;*/
/*    --accent-color: #f4b8d7;*/

/*    --background: #f8f7ff;*/
/*    --background-color: #f8f7ff;*/

/*    --surface: #ffffff;*/
/*    --surface-color: #ffffff;*/

/*    --heading-color: #201b3c;*/

/*    --text: #201b3c;*/
/*    --text-color: #645f78;*/

/*    --muted: #645f78;*/

/*    --border: #e8e4f5;*/
/*    --border-color: #e8e4f5;*/

/*    --success: #21a179;*/
/*    --success-color: #21a179;*/

/*    --warning: #f0b14a;*/
/*    --warning-color: #f0b14a;*/

/*    --danger: #dc5a6f;*/
/*    --danger-color: #dc5a6f;*/

/*    --shadow-color: rgba(52, 43, 105, 0.12);*/
/*    --shadow: 0 24px 70px rgba(52, 43, 105, 0.12);*/
/*    --shadow-sm: 0 14px 34px rgba(52, 43, 105, 0.08);*/

/*    --radius-xl: 32px;*/
/*    --radius-lg: 24px;*/
/*    --radius-md: 16px;*/

/*    --container: 1200px;*/
/*}*/
        
        

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: 'Tajawal', sans-serif;
            background:
                radial-gradient(circle at 88% 5%, rgba(216, 194, 180, .24), transparent 23%),
                linear-gradient(180deg, #fff 0%, var(--background) 46%, #fff 100%);
            color: var(--text);
            overflow-x: hidden;
        }

        body.menu-open {
            overflow: hidden;
        }

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

        button,
        input {
            font: inherit;
        }

        img {
            max-width: 100%;
        }

        .container {
            width: min(calc(100% - 40px), var(--container));
            margin-inline: auto;
        }

        .section {
            padding: 100px 0;
        }

        .section-soft {
            background: rgba(243, 235, 230, .55);
            border-block: 1px solid rgba(234, 223, 216, .8);
        }

        .section-head {
            max-width: 760px;
            margin: 0 auto 52px;
            text-align: center;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 13px;
            border-radius: 999px;
            background: var(--primary-soft);
            color: var(--primary-dark);
            font-size: .76rem;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            line-height: 1.2;
            font-weight: 900;
            margin: 0 0 16px;
            letter-spacing: -.025em;
        }

        .section-description {
            margin: 0;
            color: var(--muted);
            font-size: 1.05rem;
            line-height: 1.9;
        }

        .btn {
            min-height: 50px;
            padding: 0 22px;
            border-radius: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            border: 1px solid transparent;
            font-weight: 800;
            cursor: pointer;
            transition: .22s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            box-shadow: 0 14px 30px rgba(101, 75, 59, .24);
        }

        .btn-primary:hover {
            box-shadow: 0 18px 38px rgba(101, 75, 59, .30);
        }

        .btn-secondary {
            color: var(--text);
            background: rgba(255,255,255,.86);
            border-color: var(--border);
            backdrop-filter: blur(10px);
        }

        .btn-small {
            min-height: 42px;
            padding-inline: 17px;
            border-radius: 13px;
            font-size: .86rem;
        }

        /* Navbar */
        .navbar-wrap {
            position: fixed;
            inset: 16px 0 auto;
            z-index: 1000;
            pointer-events: none;
        }

        .navbar {
            pointer-events: auto;
            width: min(calc(100% - 32px), 1180px);
            margin-inline: auto;
            min-height: 70px;
            padding: 10px 14px;
            border: 1px solid rgba(234, 223, 216, .88);
            border-radius: 22px;
            background: rgba(255,255,255,.80);
            backdrop-filter: blur(18px);
            box-shadow: 0 10px 35px rgba(54, 38, 28, .07);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
            transition: .25s ease;
        }

        .navbar.scrolled {
            background: rgba(255,255,255,.94);
            box-shadow: 0 14px 42px rgba(54, 38, 28, .10);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 11px;
            flex: 0 0 auto;
        }

        .brand-mark {
            width: 44px;
            height: 44px;
            display: grid;
            place-items: center;
            border-radius: 15px;
            color: #fff;
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            box-shadow: 0 10px 24px rgba(101,75,59,.24);
        }

        .brand-name {
            font-weight: 900;
            font-size: 1.3rem;
            line-height: 1;
        }

        .brand-desc {
            color: var(--muted);
            font-size: .68rem;
            margin-top: 4px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link {
            padding: 10px 12px;
            border-radius: 12px;
            color: #5f544e;
            font-size: .88rem;
            font-weight: 700;
            transition: .2s ease;
        }

        .nav-link:hover {
            color: var(--primary-dark);
            background: var(--primary-soft);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .mobile-menu-btn {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid var(--border);
            border-radius: 13px;
            background: #fff;
            color: var(--text);
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            padding: 150px 0 80px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before,
        .hero::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            filter: blur(1px);
            pointer-events: none;
        }

        .hero::before {
            width: 440px;
            height: 440px;
            right: -170px;
            top: 120px;
            background: rgba(216,194,180,.18);
        }

        .hero::after {
            width: 300px;
            height: 300px;
            left: -120px;
            bottom: 40px;
            background: rgba(143,111,90,.09);
        }

        .hero-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(500px, .95fr);
            gap: 66px;
            align-items: center;
        }

        .hero-copy {
            max-width: 670px;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 9px 14px;
            border: 1px solid var(--border);
            border-radius: 999px;
            background: rgba(255,255,255,.76);
            color: var(--primary-dark);
            font-size: .78rem;
            font-weight: 800;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
        }

        .hero-kicker-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--success);
            box-shadow: 0 0 0 6px rgba(47,158,114,.12);
        }

        .hero-title {
            font-size: clamp(2.75rem, 6vw, 3.7rem);
            line-height: 1.06;
            letter-spacing: -.045em;
            font-weight: 900;
            margin: 0 0 22px;
        }

        .hero-title .accent {
            color: var(--primary);
            position: relative;
            white-space: nowrap;
        }

        .hero-title .accent::after {
            content: "";
            position: absolute;
            right: 0;
            left: 0;
            height: 12px;
            bottom: 2px;
            border-radius: 999px;
            background: rgba(216,194,180,.55);
            z-index: -1;
        }

        .hero-description {
            color: var(--muted);
            font-size: 1.12rem;
            line-height: 1.95;
            margin: 0 0 28px;
            max-width: 590px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 26px;
        }

        .hero-points {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            color: #685d57;
            font-size: .82rem;
            font-weight: 700;
        }

        .hero-point {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .hero-point i {
            color: var(--success);
        }

        /* Hero product simulation */
        .product-stage {
            position: relative;
            min-height: 610px;
        }

        .stage-glow {
            position: absolute;
            inset: 80px 40px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(216,194,180,.34), transparent 66%);
            filter: blur(14px);
        }

        .browser-card {
            position: absolute;
            width: min(100%, 550px);
            right: 0;
            top: 38px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 28px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transform: rotate(-1.7deg);
            animation: floatBrowser 6s ease-in-out infinite;
        }

        .browser-top {
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            border-bottom: 1px solid var(--border);
            background: #fcfaf9;
        }

        .browser-dots {
            display: flex;
            gap: 6px;
        }

        .browser-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d9cec7;
        }

        .browser-address {
            width: 180px;
            height: 23px;
            border-radius: 999px;
            background: #f0ebe7;
        }

        .dashboard-preview {
            padding: 20px;
            background: linear-gradient(180deg, #fff, #fbf8f6);
        }

        .preview-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .preview-brand {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: .8rem;
            font-weight: 900;
        }

        .preview-brand span {
            width: 30px;
            height: 30px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            color: #fff;
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
        }

        .preview-mini-btn {
            height: 30px;
            padding: 0 10px;
            border-radius: 9px;
            color: #fff;
            background: var(--primary-dark);
            display: inline-flex;
            align-items: center;
            font-size: .66rem;
            font-weight: 800;
        }

        .preview-hero {
            border-radius: 17px;
            padding: 17px;
            background: linear-gradient(135deg, var(--primary-soft), #fff);
            border: 1px solid var(--border);
            margin-bottom: 13px;
        }

        .preview-hero-title {
            font-weight: 900;
            font-size: .9rem;
            margin-bottom: 5px;
        }

        .preview-hero-text {
            color: var(--muted);
            font-size: .62rem;
        }

        .preview-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 9px;
            margin-bottom: 13px;
        }

        .preview-stat {
            border: 1px solid var(--border);
            background: #fff;
            border-radius: 14px;
            padding: 12px;
        }

        .preview-stat span {
            display: block;
            color: var(--muted);
            font-size: .55rem;
            margin-bottom: 6px;
        }

        .preview-stat strong {
            font-size: 1.05rem;
        }

        .preview-table {
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            background: #fff;
        }

        .preview-row {
            display: grid;
            grid-template-columns: 1.2fr .7fr .55fr;
            gap: 10px;
            align-items: center;
            padding: 10px 12px;
            border-bottom: 1px solid #f0eae6;
            font-size: .58rem;
        }

        .preview-row:last-child {
            border-bottom: 0;
        }

        .preview-guest {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .preview-avatar {
            width: 24px;
            height: 24px;
            border-radius: 8px;
            background: var(--primary-soft);
        }

        .preview-badge {
            justify-self: start;
            padding: 5px 7px;
            border-radius: 999px;
            font-size: .5rem;
            font-weight: 800;
        }

        .preview-badge.success {
            background: #e8f7f1;
            color: var(--success);
        }

        .preview-badge.pending {
            background: #fff4dc;
            color: #9c721b;
        }

        .phone-card {
            position: absolute;
            width: 215px;
            left: 2px;
            bottom: 38px;
            padding: 10px;
            border-radius: 35px;
            background: #1e1a18;
            box-shadow: 0 26px 55px rgba(36,25,19,.28);
            transform: rotate(4deg);
            animation: floatPhone 5.4s ease-in-out infinite;
            z-index: 4;
        }

        .phone-screen {
            min-height: 420px;
            border-radius: 28px;
            overflow: hidden;
            background: #efeae2;
            position: relative;
        }

        .phone-status {
            height: 27px;
            background: #fff;
        }

        .wa-head {
            height: 54px;
            background: #075e54;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 11px;
            font-size: .64rem;
            font-weight: 800;
        }

        .wa-avatar {
            width: 29px;
            height: 29px;
            border-radius: 50%;
            background: #d8c2b4;
        }

        .wa-body {
            padding: 16px 12px;
            display: grid;
            gap: 11px;
        }

        .wa-message {
            width: 92%;
            margin-right: auto;
            background: #fff;
            border-radius: 10px 10px 3px 10px;
            padding: 11px;
            font-size: .6rem;
            line-height: 1.7;
            box-shadow: 0 3px 8px rgba(0,0,0,.05);
        }

        .wa-actions {
            display: grid;
            gap: 6px;
            margin-top: 8px;
        }

        .wa-action {
            text-align: center;
            border-top: 1px solid #e6e0dc;
            padding-top: 7px;
            color: #0878c8;
            font-weight: 800;
        }

        .wa-reply {
            width: 72%;
            background: #d9fdd3;
            border-radius: 10px 10px 10px 3px;
            padding: 9px;
            font-size: .6rem;
            line-height: 1.5;
        }

        .floating-notification {
            position: absolute;
            z-index: 8;
            min-width: 210px;
            padding: 13px;
            border-radius: 16px;
            border: 1px solid rgba(234,223,216,.9);
            background: rgba(255,255,255,.92);
            backdrop-filter: blur(12px);
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: popNotice 7s ease-in-out infinite;
        }

        .floating-notification.one {
            left: 15px;
            top: 45px;
        }

        .floating-notification.two {
            right: 5px;
            bottom: 22px;
            animation-delay: 2.2s;
        }

        .notice-icon {
            width: 37px;
            height: 37px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: #e8f7f1;
            color: var(--success);
        }

        .notice-title {
            font-size: .72rem;
            font-weight: 900;
            margin-bottom: 2px;
        }

        .notice-text {
            color: var(--muted);
            font-size: .58rem;
        }

        /* Trust strip */
        .trust-strip {
            padding: 22px 0;
            border-block: 1px solid var(--border);
            background: rgba(255,255,255,.7);
        }

        .trust-items {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 34px;
            flex-wrap: wrap;
            color: #6c615b;
            font-size: .82rem;
            font-weight: 800;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .trust-item i {
            color: var(--primary);
        }

        /* Journey */
        .journey-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
            position: relative;
        }

        .journey-grid::before {
            content: "";
            position: absolute;
            top: 38px;
            right: 9%;
            left: 9%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--secondary), transparent);
            z-index: 0;
        }

        .journey-card {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .journey-number {
            width: 76px;
            height: 76px;
            margin: 0 auto 18px;
            border-radius: 24px;
            display: grid;
            place-items: center;
            color: #fff;
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            box-shadow: 0 16px 32px rgba(101,75,59,.22);
            font-size: 1.25rem;
        }

        .journey-card h3 {
            font-size: 1rem;
            margin: 0 0 8px;
            font-weight: 900;
        }

        .journey-card p {
            margin: 0;
            color: var(--muted);
            font-size: .82rem;
            line-height: 1.7;
        }

        /* Product Showcase */
        .showcase-wrap {
            position: relative;
            padding: 34px;
            border-radius: 34px;
            border: 1px solid var(--border);
            background:
                radial-gradient(circle at 20% 10%, rgba(216,194,180,.24), transparent 32%),
                linear-gradient(135deg, #fff, #f9f4f1);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
            gap: 34px;
            align-items: center;
        }

        .showcase-copy h3 {
            font-size: clamp(1.8rem, 3vw, 3rem);
            line-height: 1.3;
            font-weight: 900;
            margin: 0 0 16px;
        }

        .showcase-copy p {
            color: var(--muted);
            line-height: 1.9;
            margin: 0 0 24px;
        }

        .showcase-list {
            display: grid;
            gap: 13px;
        }

        .showcase-list-item {
            display: flex;
            align-items: flex-start;
            gap: 11px;
        }

        .showcase-list-icon {
            width: 34px;
            height: 34px;
            flex: 0 0 34px;
            border-radius: 11px;
            display: grid;
            place-items: center;
            background: var(--primary-soft);
            color: var(--primary-dark);
        }

        .showcase-list-item strong {
            display: block;
            font-size: .88rem;
            margin-bottom: 3px;
        }

        .showcase-list-item span {
            color: var(--muted);
            font-size: .78rem;
            line-height: 1.6;
        }

        .showcase-window {
            position: relative;
            min-height: 420px;
        }

        .showcase-panel {
            position: absolute;
            inset: 24px 10px 10px 0;
            border-radius: 24px;
            border: 1px solid var(--border);
            background: #fff;
            box-shadow: var(--shadow-sm);
            padding: 20px;
        }

        .showcase-event {
            padding: 16px;
            border-radius: 17px;
            background: linear-gradient(135deg, var(--primary-soft), #fff);
            border: 1px solid var(--border);
            margin-bottom: 14px;
        }

        .showcase-event-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .showcase-event h4 {
            margin: 0;
            font-size: .92rem;
        }

        .showcase-live {
            font-size: .6rem;
            padding: 5px 8px;
            border-radius: 999px;
            background: #e8f7f1;
            color: var(--success);
            font-weight: 800;
        }

        .showcase-progress {
            height: 8px;
            border-radius: 999px;
            background: #efe9e5;
            overflow: hidden;
            margin-bottom: 7px;
        }

        .showcase-progress span {
            display: block;
            height: 100%;
            width: 72%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            animation: progressMove 5s ease-in-out infinite;
        }

        .showcase-progress-caption {
            display: flex;
            justify-content: space-between;
            font-size: .6rem;
            color: var(--muted);
        }

        .showcase-kpis {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .showcase-kpi {
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 13px;
            background: #fff;
        }

        .showcase-kpi small {
            display: block;
            color: var(--muted);
            font-size: .58rem;
            margin-bottom: 6px;
        }

        .showcase-kpi strong {
            font-size: 1.1rem;
        }

        .showcase-phone {
            position: absolute;
            width: 150px;
            left: -10px;
            bottom: -10px;
            padding: 8px;
            border-radius: 28px;
            background: #211c19;
            box-shadow: 0 20px 45px rgba(36,25,19,.24);
            transform: rotate(-5deg);
        }

        .showcase-phone-screen {
            min-height: 285px;
            border-radius: 22px;
            background: #f7f1ec;
            padding: 13px 10px;
        }

        .mini-qr {
            width: 84px;
            height: 84px;
            margin: 22px auto 12px;
            border-radius: 10px;
            background:
                linear-gradient(90deg, #211c19 10px, transparent 10px) 0 0 / 20px 20px,
                linear-gradient(#211c19 10px, transparent 10px) 0 0 / 20px 20px,
                #fff;
            border: 8px solid #fff;
            box-shadow: 0 8px 18px rgba(0,0,0,.08);
        }

        .showcase-phone-screen h5 {
            text-align: center;
            font-size: .7rem;
            margin: 0 0 4px;
        }

        .showcase-phone-screen p {
            text-align: center;
            color: var(--muted);
            font-size: .55rem;
            margin: 0;
        }

        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .feature-card {
            position: relative;
            overflow: hidden;
            min-height: 260px;
            padding: 26px;
            border-radius: 24px;
            border: 1px solid var(--border);
            background: #fff;
            box-shadow: var(--shadow-sm);
            transition: .25s ease;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
        }

        .feature-icon {
            width: 54px;
            height: 54px;
            border-radius: 17px;
            display: grid;
            place-items: center;
            background: var(--primary-soft);
            color: var(--primary-dark);
            font-size: 1.2rem;
            margin-bottom: 24px;
        }

        .feature-card h3 {
            margin: 0 0 10px;
            font-size: 1.12rem;
            font-weight: 900;
        }

        .feature-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.8;
            font-size: .88rem;
        }

        .feature-card::after {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            left: -40px;
            bottom: -40px;
            border-radius: 50%;
            background: rgba(216,194,180,.12);
        }

        /* Use cases */
        .use-cases {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .use-card {
            min-height: 240px;
            padding: 24px;
            border-radius: 24px;
            border: 1px solid var(--border);
            background:
                linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,243,239,.92));
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: .25s ease;
        }

        .use-card:hover {
            transform: translateY(-5px);
        }

        .use-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            display: grid;
            place-items: center;
            color: #fff;
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            font-size: 1.25rem;
        }

        .use-card h3 {
            margin: 0 0 8px;
            font-size: 1.05rem;
            font-weight: 900;
        }

        .use-card p {
            color: var(--muted);
            margin: 0;
            font-size: .82rem;
            line-height: 1.7;
        }

        /* Stats */
        .stats-panel {
            border-radius: 32px;
            padding: 42px;
            background: linear-gradient(135deg, var(--primary-dark), #3d2d24);
            color: #fff;
            box-shadow: 0 28px 70px rgba(61,45,36,.25);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 18px;
        }

        .stat-value {
            font-size: clamp(2rem, 4vw, 3.3rem);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-label {
            color: rgba(255,255,255,.72);
            font-size: .86rem;
        }

        /* Comparison */
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .compare-card {
            border-radius: 28px;
            padding: 30px;
            border: 1px solid var(--border);
            background: #fff;
            box-shadow: var(--shadow-sm);
        }

        .compare-card.after {
            background: linear-gradient(135deg, var(--primary-soft), #fff);
            border-color: #ddcbbf;
        }

        .compare-head {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .compare-head-icon {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            background: #f8e9e9;
            color: var(--danger);
        }

        .compare-card.after .compare-head-icon {
            background: #e8f7f1;
            color: var(--success);
        }

        .compare-head h3 {
            margin: 0;
            font-size: 1.12rem;
            font-weight: 900;
        }

        .compare-list {
            display: grid;
            gap: 13px;
        }

        .compare-list-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #655a54;
            font-size: .88rem;
        }

        .compare-list-item i {
            color: var(--danger);
        }

        .compare-card.after .compare-list-item i {
            color: var(--success);
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            align-items: stretch;
        }

        .price-card {
            position: relative;
            border-radius: 26px;
            border: 1px solid var(--border);
            background: #fff;
            padding: 28px;
            box-shadow: var(--shadow-sm);
        }

        .price-card.featured {
            border: 2px solid var(--primary);
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }

        .price-popular {
            position: absolute;
            top: -14px;
            right: 24px;
            padding: 7px 12px;
            border-radius: 999px;
            color: #fff;
            background: var(--primary-dark);
            font-size: .68rem;
            font-weight: 900;
        }

        .price-name {
            font-weight: 900;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .price-desc {
            color: var(--muted);
            font-size: .8rem;
            line-height: 1.6;
            min-height: 48px;
        }

        .price-value {
            display: flex;
            align-items: end;
            gap: 6px;
            margin: 24px 0;
        }

        .price-value strong {
            font-size: 2.5rem;
            line-height: 1;
        }

        .price-value span {
            color: var(--muted);
            font-size: .8rem;
            margin-bottom: 4px;
        }

        .price-features {
            display: grid;
            gap: 12px;
            margin-bottom: 26px;
        }

        .price-feature {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: .82rem;
            color: #5f554f;
        }

        .price-feature i {
            color: var(--success);
        }

        /* FAQ */
        .faq-wrap {
            max-width: 860px;
            margin-inline: auto;
            display: grid;
            gap: 12px;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 18px;
            background: #fff;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(69,48,35,.04);
        }

        .faq-question {
            width: 100%;
            padding: 20px 22px;
            background: transparent;
            border: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            text-align: right;
            color: var(--text);
            font-weight: 900;
            cursor: pointer;
        }

        .faq-question i {
            transition: .22s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease;
        }

        .faq-answer-inner {
            padding: 0 22px 20px;
            color: var(--muted);
            line-height: 1.85;
            font-size: .88rem;
        }

        /* CTA */
        .cta-panel {
            position: relative;
            overflow: hidden;
            border-radius: 34px;
            padding: 70px 40px;
            text-align: center;
            color: #fff;
            background: linear-gradient(135deg, var(--primary-dark), #3c2d24);
            box-shadow: 0 28px 70px rgba(61,45,36,.25);
        }

        .cta-panel::before,
        .cta-panel::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,.06);
        }

        .cta-panel::before {
            width: 280px;
            height: 280px;
            top: -120px;
            right: -80px;
        }

        .cta-panel::after {
            width: 220px;
            height: 220px;
            left: -70px;
            bottom: -110px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 760px;
            margin-inline: auto;
        }

        .cta-title {
            font-size: clamp(2.1rem, 4.5vw, 4rem);
            line-height: 1.2;
            margin: 0 0 16px;
            font-weight: 900;
        }

        .cta-text {
            color: rgba(255,255,255,.75);
            line-height: 1.8;
            margin: 0 auto 28px;
            max-width: 620px;
        }

        .cta-panel .btn-primary {
            color: var(--primary-dark);
            background: #fff;
            box-shadow: 0 14px 30px rgba(0,0,0,.18);
        }

        /* Footer */
        .footer {
            padding: 50px 0 26px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr repeat(3, .7fr);
            gap: 40px;
            padding-bottom: 36px;
            border-bottom: 1px solid var(--border);
        }

        .footer-brand-text {
            color: var(--muted);
            line-height: 1.8;
            max-width: 360px;
            font-size: .86rem;
            margin-top: 14px;
        }

        .footer-title {
            font-size: .84rem;
            font-weight: 900;
            margin-bottom: 14px;
        }

        .footer-links {
            display: grid;
            gap: 10px;
        }

        .footer-link {
            color: var(--muted);
            font-size: .8rem;
        }

        .footer-link:hover {
            color: var(--primary-dark);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding-top: 22px;
            color: var(--muted);
            font-size: .76rem;
        }

        /* Reveal animation */
        [data-reveal] {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .7s ease, transform .7s ease;
        }

        [data-reveal].visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes floatBrowser {
            0%,100% { transform: rotate(-1.7deg) translateY(0); }
            50% { transform: rotate(-1deg) translateY(-12px); }
        }

        @keyframes floatPhone {
            0%,100% { transform: rotate(4deg) translateY(0); }
            50% { transform: rotate(3deg) translateY(-9px); }
        }

        @keyframes popNotice {
            0%, 18%, 100% { opacity: 0; transform: translateY(10px) scale(.96); }
            26%, 76% { opacity: 1; transform: translateY(0) scale(1); }
            84% { opacity: 0; transform: translateY(-8px) scale(.98); }
        }

        @keyframes progressMove {
            0%,100% { width: 62%; }
            50% { width: 82%; }
        }

        @media (max-width: 1100px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hero-copy {
                max-width: 790px;
                text-align: center;
                margin-inline: auto;
            }

            .hero-description {
                margin-inline: auto;
            }

            .hero-actions,
            .hero-points {
                justify-content: center;
            }

            .product-stage {
                width: min(100%, 720px);
                margin-inline: auto;
            }

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

            .journey-grid::before {
                display: none;
            }

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

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

            .footer-grid {
                grid-template-columns: 1.3fr repeat(2, .7fr);
            }
        }

        @media (max-width: 900px) {
            .nav-links {
                position: fixed;
                top: 100px;
                right: 16px;
                left: 16px;
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: 16px;
                border: 1px solid var(--border);
                border-radius: 20px;
                background: #fff;
                box-shadow: var(--shadow);
            }

            .nav-links.open {
                display: flex;
            }

            .nav-actions .btn-secondary {
                display: none;
            }

            .mobile-menu-btn {
                display: inline-grid;
                place-items: center;
            }

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

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

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

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

        @media (max-width: 700px) {
            .container {
                width: min(calc(100% - 28px), var(--container));
            }

            .section {
                padding: 72px 0;
            }

            .hero {
                padding-top: 128px;
            }

            .hero-title {
                font-size: clamp(2.45rem, 13vw, 3rem);
            }

            .product-stage {
                min-height: 520px;
            }

            .browser-card {
                width: 95%;
                top: 20px;
            }

            .phone-card {
                width: 175px;
                bottom: 10px;
            }

            .phone-screen {
                min-height: 350px;
            }

            .floating-notification {
                min-width: 175px;
                padding: 10px;
            }

            .journey-grid,
            .features-grid,
            .pricing-grid,
            .use-cases {
                grid-template-columns: 1fr;
            }

            .price-card.featured {
                transform: none;
            }

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

            .showcase-wrap,
            .stats-panel,
            .cta-panel {
                padding: 28px 20px;
            }

            .showcase-window {
                min-height: 390px;
            }

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

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 480px) {
            .brand-desc {
                display: none;
            }

            .navbar {
                min-height: 62px;
            }

            .nav-actions .btn-primary {
                display: none;
            }

            .hero-actions {
                display: grid;
                grid-template-columns: 1fr;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .hero-points {
                gap: 10px;
                font-size: .74rem;
            }

            .browser-card {
                transform: none;
            }

            .phone-card {
                width: 150px;
                transform: rotate(2deg);
            }

            .floating-notification.one {
                top: 0;
                left: 0;
            }

            .floating-notification.two {
                right: 0;
                bottom: 0;
            }
        }
