
  :root {
    --primary: #0A1F6B;
    --secondary: #13B5D1;
    --bg: #FFFFFF;
    --section-bg: #F8FAFC;
    --text: #111827;
    --muted: #64748B;
    --border: #E2E8F0;
    --card-shadow: 0 4px 24px rgba(10,31,107,0.08);
    --card-shadow-hover: 0 16px 48px rgba(10,31,107,0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --gradient: linear-gradient(135deg, #0A1F6B 0%, #13B5D1 100%);
    --gradient-soft: linear-gradient(135deg, rgba(10,31,107,0.06) 0%, rgba(19,181,209,0.06) 100%);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }




  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }

/* कर्सर और ब्लर एलिमेंट्स को GPU पर डालो */
#cursor, #cursor-ring, #navbar, .mobile-menu {
    will-change: transform;
    backface-visibility: hidden;
}

/* अगर लैपटॉप पर स्क्रॉल स्लो है, तो ब्लर को कम या बंद करो */
@media (max-width: 1024px) {
    #navbar, .mobile-menu {
        backdrop-filter: none !important; /* टेस्ट करने के लिए इसे बंद करो */
        background: rgba(255, 255, 255, 0.95);
    }
}

  /* ─── CUSTOM CURSOR ─── */
  #cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: normal;
  }
  #cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(10,31,107,0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s cubic-bezier(.23,1,.32,1), height 0.35s cubic-bezier(.23,1,.32,1), border-color 0.2s;
  }
  body.cursor-hover #cursor { width: 20px; height: 20px; background: var(--secondary); }
  body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(19,181,209,0.4); }

  /* ─── PRELOADER ─── */
  #preloader {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 99990;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .preloader-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
  }
  .preloader-logo img { height: 60px; }
  .preloader-bar-wrap {
    width: 240px;
    height: 3px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
    opacity: 0;
  }
  .preloader-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 99px;
  }
  .preloader-pct {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 2px;
    opacity: 0;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--section-bg); }
  ::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 99px; }

  /* ─── TYPOGRAPHY ─── */
  h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.15; }
  h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 800; letter-spacing: -0.03em; }
  h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; letter-spacing: -0.025em; }
  h3 { font-size: 1.3rem; font-weight: 700; }
  p { line-height: 1.7; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(19,181,209,0.1);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
  }
  .eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .section-title { color: var(--text); margin-bottom: 16px; }
  .section-sub { color: var(--muted); font-size: 1.1rem; max-width: 560px; }
  .section-header { text-align: center; margin-bottom: 64px; }
  .section-header .section-sub { margin: 0 auto; }

  /* ─── BUTTONS ─── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px; font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.22s cubic-bezier(.23,1,.32,1), box-shadow 0.22s;
    position: relative; overflow: hidden;
  }
  .btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,255,255,0.25) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .btn:hover::after { opacity: 1; }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(10,31,107,0.28);
  }
  .btn-primary:hover { box-shadow: 0 8px 32px rgba(10,31,107,0.38); }
  .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border);
    box-shadow: none;
  }
  .btn-outline:hover { border-color: var(--primary); background: rgba(10,31,107,0.04); }
  .btn svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* ─── NAVBAR ─── */
  #navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 9000;
    padding: 0 5%;
    height: 70px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  #navbar.scrolled {
    border-color: var(--border);
    box-shadow: 0 2px 20px rgba(10,31,107,0.06);
  }
  .nav-logo { display: flex; align-items: center; }
  .nav-logo img { height: 75px; }
  .nav-links {
    display: flex; align-items: center; gap: 2px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px; font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    position: relative;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(10,31,107,0.06); }
  .nav-cta { display: flex; align-items: center; gap: 10px; }
  .nav-cta .btn { padding: 10px 22px; font-size: 14px; }
  .nav-hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--primary); border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-menu {
    display: none;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 20px 5%;
    border-bottom: 1px solid var(--border);
    z-index: 8999;
    flex-direction: column; gap: 4px;
  }
  .mobile-menu a {
    padding: 12px 16px; border-radius: 8px;
    font-weight: 500; color: var(--text);
    text-decoration: none;
    transition: background 0.2s;
  }
  .mobile-menu a:hover { background: var(--section-bg); color: var(--primary); }
  .mobile-menu .mobile-cta {
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 8px;
  }
  .mobile-menu .btn { width: 100%; justify-content: center; }

  @media(max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
  }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    padding: 130px 5% 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
  }
  .hero-bg-mesh {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% -10%, rgba(19,181,209,0.09) 0%, transparent 70%),
      radial-gradient(ellipse 50% 50% at 20% 80%, rgba(10,31,107,0.05) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 80% 80%, rgba(19,181,209,0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(10,31,107,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10,31,107,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; max-width: 860px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(19,181,209,0.08);
    border: 1px solid rgba(19,181,209,0.25);
    border-radius: 99px;
    padding: 8px 18px;
    font-size: 13px; font-weight: 600;
    color: var(--secondary);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
  }
  .hero-badge-dot {
    width: 7px; height: 7px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(19,181,209,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(19,181,209,0); }
  }
  .hero-title {
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--text);
    opacity: 0;
  }
  .hero-title .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.75;
    opacity: 0;
  }
  .hero-btns {
    display: flex; gap: 14px; justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    margin-bottom: 60px;
  }
  .hero-btns .btn { padding: 16px 32px; font-size: 16px; }
  .hero-social-proof {
    display: flex; align-items: center; gap: 20px;
    justify-content: center;
    opacity: 0;
    margin-bottom: 64px;
  }
  .hero-avatars { display: flex; }
  .hero-avatars span {
    width: 34px; height: 34px; border-radius: 50%;
    border: 2px solid #fff;
    background: var(--gradient);
    margin-left: -10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff;
  }
  .hero-avatars span:first-child { margin-left: 0; }
  .hero-proof-text { font-size: 14px; color: var(--muted); font-weight: 500; }
  .hero-proof-text strong { color: var(--text); }

  /* Dashboard Widgets */
  .hero-dashboard {
    position: relative;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    opacity: 0;
  }
  .dashboard-main {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 80px rgba(10,31,107,0.12), 0 4px 20px rgba(10,31,107,0.06);
    overflow: hidden;
  }
  .dash-topbar {
    background: var(--primary);
    padding: 14px 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .dash-dots { display: flex; gap: 6px; }
  .dash-dots span {
    width: 10px; height: 10px; border-radius: 50%;
  }
  .dash-dots span:nth-child(1) { background: #FF5F57; }
  .dash-dots span:nth-child(2) { background: #FFBD2E; }
  .dash-dots span:nth-child(3) { background: #28CA41; }
  .dash-title {
    flex: 1; text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 13px; font-weight: 500;
  }
  .dash-body {
    padding: 20px;
    background: #F8FAFC;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .dash-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(10,31,107,0.05);
  }
  .dash-stat-label {
    font-size: 11px; font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
  }
  .dash-stat-value {
    font-size: 1.4rem; font-weight: 800;
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .dash-stat-change {
    font-size: 11px; font-weight: 600;
    color: #22C55E;
    margin-top: 4px;
  }
  .dash-chart-area {
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
  }
  .dash-chart-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
  }
  .dash-chart-title {
    font-size: 13px; font-weight: 700;
    color: var(--text); margin-bottom: 12px;
  }
  .dash-bars {
    display: flex; align-items: flex-end;
    gap: 8px; height: 80px;
  }
  .dash-bar {
    flex: 1; border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
    min-width: 0;
    transform-origin: bottom;
    transform: scaleY(0);
  }
  .dash-orders { display: flex; flex-direction: column; gap: 6px; }
  .dash-order-row {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; color: var(--text);
    padding: 6px 8px; border-radius: 6px;
    background: var(--section-bg);
  }
  .dash-order-dot {
    width: 7px; height: 7px; border-radius: 50%;
    flex-shrink: 0;
  }
  .dot-green { background: #22C55E; }
  .dot-yellow { background: #F59E0B; }
  .dot-blue { background: var(--secondary); }
  .dash-order-name { flex: 1; font-weight: 500; }
  .dash-order-status {
    font-size: 10px; font-weight: 600; padding: 2px 6px;
    border-radius: 4px;
  }
  .status-ready { background: rgba(34,197,94,0.12); color: #16A34A; }
  .status-prep { background: rgba(245,158,11,0.12); color: #D97706; }
  .status-new { background: rgba(19,181,209,0.12); color: #0891B2; }

  /* Floating widgets */
  .float-widget {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(10,31,107,0.12);
    display: flex; align-items: center; gap: 12px;
    white-space: nowrap;
    backdrop-filter: blur(8px);
  }
  .fw-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
  }
  .fw-label { font-size: 11px; color: var(--muted); font-weight: 500; }
  .fw-val { font-size: 1.1rem; font-weight: 800; color: var(--text); }
  .fw-left { left: -100px; top: 30%; }
  .fw-right { right: -100px; top: 40%; }
  .fw-bottom { left: 50%; transform: translateX(-50%); bottom: -28px; }

  .scroll-indicator {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    font-size: 12px; color: var(--muted); font-weight: 500;
    opacity: 0;
    cursor: pointer;
  }
  .scroll-mouse {
    width: 22px; height: 34px;
    border: 2px solid var(--border);
    border-radius: 11px;
    display: flex; justify-content: center;
    padding-top: 6px;
  }
  .scroll-mouse-dot {
    width: 4px; height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
  }
  @keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.4; }
  }

  /* ─── TRUST / COUNTERS ─── */
  #trust {
    padding: 64px 5%;
    background: var(--primary);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .trust-item {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 32px 20px;
    position: relative;
  }
  .trust-item::after {
    content: '';
    position: absolute; right: 0; top: 20%; bottom: 20%;
    width: 1px; background: rgba(255,255,255,0.12);
  }
  .trust-item:last-child::after { display: none; }
  .trust-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
  }
  .trust-num .accent { color: var(--secondary); }
  .trust-label {
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-align: center;
    line-height: 1.4;
  }

  /* ─── FEATURES ─── */
  #features {
    padding: 100px 5%;
    background: var(--section-bg);
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
  }
  .feat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s cubic-bezier(.23,1,.32,1), box-shadow 0.3s;
    position: relative; overflow: hidden;
    cursor: default;
  }
  .feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-soft);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .feat-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
  .feat-card:hover::before { opacity: 1; }
  .feat-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
    position: relative; z-index: 1;
  }
  .feat-card h3 { margin-bottom: 10px; font-size: 1.15rem; position: relative; z-index: 1; }
  .feat-card p { font-size: 14px; color: var(--muted); line-height: 1.6; position: relative; z-index: 1; }
  .feat-tag {
    position: absolute; top: 20px; right: 20px;
    font-size: 10px; font-weight: 700;
    padding: 3px 8px; border-radius: 99px;
    background: rgba(19,181,209,0.1);
    color: var(--secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ─── DEMO SECTION ─── */
  #demo {
    padding: 100px 5%;
    background: var(--bg);
    overflow: hidden;
  }
  .demo-wrap {
    max-width: 1140px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  .demo-dashboard {
    background: #0A1528;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(10,31,107,0.2);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .demo-topbar {
    background: rgba(255,255,255,0.04);
    padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .demo-dots { display: flex; gap: 5px; }
  .demo-dots span { width: 9px; height: 9px; border-radius: 50%; }
  .demo-dots span:nth-child(1) { background: rgba(255,95,87,0.7); }
  .demo-dots span:nth-child(2) { background: rgba(255,189,46,0.7); }
  .demo-dots span:nth-child(3) { background: rgba(40,202,65,0.7); }
  .demo-title { flex: 1; text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); }
  .demo-inner { padding: 20px; }
  .demo-row1 {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 10px; margin-bottom: 14px;
  }
  .demo-mini-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 14px 12px;
  }
  .dmc-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
  .dmc-val { font-size: 1.15rem; font-weight: 800; color: #fff; }
  .dmc-sub { font-size: 10px; color: #22C55E; margin-top: 3px; }
  .demo-chart-area {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 14px;
  }
  .demo-chart-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
  .demo-line-chart {
    height: 70px;
    display: flex; align-items: flex-end;
    gap: 4px;
  }
  .dlc-bar {
    flex: 1; border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, rgba(19,181,209,0.9) 0%, rgba(10,31,107,0.7) 100%);
    transform-origin: bottom;
    transform: scaleY(0);
  }
  .demo-orders-list { display: flex; flex-direction: column; gap: 7px; }
  .demo-order-item {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 12px; color: rgba(255,255,255,0.8);
  }
  .doi-num {
    width: 20px; height: 20px; border-radius: 5px;
    background: rgba(19,181,209,0.2);
    color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700;
    flex-shrink: 0;
  }
  .doi-name { flex: 1; }
  .doi-price { color: rgba(255,255,255,0.5); font-weight: 600; }
  .doi-badge {
    font-size: 9px; font-weight: 700;
    padding: 2px 7px; border-radius: 99px;
  }
  .badge-done { background: rgba(34,197,94,0.15); color: #4ADE80; }
  .badge-prep { background: rgba(245,158,11,0.15); color: #FCD34D; }
  .badge-new { background: rgba(19,181,209,0.15); color: #67E8F9; }

  .demo-text h2 { margin-bottom: 20px; }
  .demo-text p { color: var(--muted); margin-bottom: 32px; }
  .demo-bullets { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
  .demo-bullet {
    display: flex; align-items: flex-start; gap: 14px;
  }
  .db-icon {
    width: 36px; height: 36px; border-radius: 9px;
    background: var(--gradient-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
    margin-top: 2px;
  }
  .db-title { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
  .db-desc { font-size: 13px; color: var(--muted); }

  /* ─── HOW IT WORKS ─── */
  #howitworks {
    padding: 100px 5%;
    background: var(--section-bg);
    overflow: hidden;
  }
  .hiw-steps {
    display: flex; gap: 0;
    align-items: flex-start;
    max-width: 1000px; margin: 0 auto;
    position: relative;
  }
  .hiw-steps::before {
    content: '';
    position: absolute;
    top: 32px; left: 80px; right: 80px; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 0;
  }
  .hiw-step {
    flex: 1; text-align: center;
    padding: 0 16px;
    position: relative; z-index: 1;
  }
  .hiw-num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(10,31,107,0.1);
    transition: all 0.3s;
    position: relative;
  }
  .hiw-step:hover .hiw-num {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(10,31,107,0.25);
  }
  .hiw-step-title { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
  .hiw-step-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

  /* ─── WHY CAFEXPERT ─── */
  #why {
    padding: 100px 5%;
    background: var(--bg);
    overflow: hidden;
  }
  .why-wrap {
    max-width: 1000px; margin: 64px auto 0;
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 24px; align-items: stretch;
  }
  .why-col {
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex; flex-direction: column; gap: 16px;
  }
  .why-col.traditional {
    background: #FFF8F8;
    border: 1.5px solid rgba(239,68,68,0.15);
  }
  .why-col.cafexpert-col {
    background: linear-gradient(145deg, rgba(10,31,107,0.04) 0%, rgba(19,181,209,0.06) 100%);
    border: 1.5px solid rgba(19,181,209,0.25);
  }
  .why-col-title {
    font-size: 1.1rem; font-weight: 800;
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 10px;
  }
  .why-col.traditional .why-col-title { color: #DC2626; }
  .why-col.cafexpert-col .why-col-title { color: var(--primary); }
  .why-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: 10px;
    font-size: 14px; font-weight: 500;
  }
  .why-col.traditional .why-item {
    background: rgba(239,68,68,0.05);
    color: #7F1D1D;
  }
  .why-col.cafexpert-col .why-item {
    background: rgba(19,181,209,0.06);
    color: var(--primary);
  }
  .why-vs {
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
    min-width: 60px;
  }
  .why-vs-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem; font-weight: 800;
    color: var(--muted);
    background: var(--section-bg);
    padding: 14px 16px;
    border-radius: 50%;
    border: 2px solid var(--border);
  }

  /* ─── TESTIMONIALS ─── */
  #testimonials {
    padding: 100px 5%;
    background: var(--section-bg);
    overflow: hidden;
  }
  .testi-track-wrap { overflow: hidden; margin: 0 -5%; position: relative; }
  .testi-track-wrap::before,
  .testi-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; width: 120px;
    z-index: 2; pointer-events: none;
  }
  .testi-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--section-bg), transparent); }
  .testi-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--section-bg), transparent); }
  .testi-track {
    display: flex; gap: 20px;
    width: max-content;
    padding: 16px 5%;
    animation: scroll-track 40s linear infinite;
  }
  .testi-track:hover { animation-play-state: paused; }
  @keyframes scroll-track {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .testi-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 28px;
    width: 320px; flex-shrink: 0;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
  .testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
  .testi-stars span { color: #F59E0B; font-size: 16px; }
  .testi-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #fff; font-size: 14px;
    flex-shrink: 0;
  }
  .testi-name { font-weight: 700; font-size: 14px; }
  .testi-role { font-size: 12px; color: var(--muted); }

  /* ─── PRICING ─── */
  #pricing {
    padding: 100px 5%;
    background: var(--bg);
  }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1000px; margin: 0 auto;
    align-items: start;
  }
  .price-card {
    border-radius: 20px;
    padding: 36px 32px;
    border: 1.5px solid var(--border);
    background: #fff;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .price-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
  .price-card.popular {
    border-color: var(--secondary);
    background: linear-gradient(145deg, rgba(10,31,107,0.03), rgba(19,181,209,0.05));
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(19,181,209,0.18), var(--card-shadow);
  }
  .price-card.popular:hover { transform: scale(1.04) translateY(-6px); }
  .popular-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--gradient);
    color: #fff; font-size: 11px; font-weight: 700;
    padding: 5px 16px; border-radius: 99px;
    white-space: nowrap; letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .price-plan-name {
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--secondary); margin-bottom: 12px;
  }
  .price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem; font-weight: 800;
    color: var(--primary); line-height: 1;
    margin-bottom: 4px;
  }
  .price-amount span { font-size: 1.2rem; vertical-align: super; }
  .price-period { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
  .price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
  .price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .price-feat {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--text);
  }
  .price-feat-check {
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(34,197,94,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 10px; color: #16A34A;
  }
  .price-note {
    text-align: center; margin-top: 28px;
    font-size: 13px; color: var(--muted);
    max-width: 600px; margin-left: auto; margin-right: auto;
    background: rgba(10,31,107,0.03);
    padding: 14px 20px; border-radius: 10px;
    border: 1px solid var(--border);
  }

  /* ─── FAQ ─── */
  #faq {
    padding: 100px 5%;
    background: var(--section-bg);
  }
  .faq-list {
    max-width: 720px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
  }
  .faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .faq-item.open { border-color: var(--secondary); box-shadow: 0 4px 20px rgba(19,181,209,0.1); }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600; font-size: 15px;
    gap: 16px;
    transition: color 0.2s;
  }
  .faq-item.open .faq-q { color: var(--primary); }
  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--section-bg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px;
    color: var(--muted); transition: all 0.3s;
  }
  .faq-item.open .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.23,1,.32,1), padding 0.3s;
    padding: 0 24px;
    font-size: 14px; color: var(--muted); line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

  /* ─── CONTACT ─── */
  #contact {
    padding: 100px 5%;
    background: var(--bg);
  }
  .contact-wrap {
    max-width: 960px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 64px; align-items: start;
  }
  .contact-info h2 { margin-bottom: 16px; }
  .contact-info p { color: var(--muted); margin-bottom: 36px; }
  .contact-details { display: flex; flex-direction: column; gap: 20px; }
  .contact-detail {
    display: flex; align-items: center; gap: 16px;
  }
  .cd-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--gradient-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .cd-label { font-size: 12px; color: var(--muted); font-weight: 500; }
  .cd-val { font-weight: 600; font-size: 15px; color: var(--text); }
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 7px; }
  .form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--section-bg);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(19,181,209,0.12);
    background: #fff;
  }
  .form-group textarea { min-height: 120px; }
  .form-error { font-size: 12px; color: #DC2626; display: none; }
  .form-group.error input,
  .form-group.error textarea { border-color: #DC2626; }
  .form-group.error .form-error { display: block; }
  .form-submit { margin-top: 8px; }
  .form-submit .btn { width: 100%; justify-content: center; padding: 16px; }
  .form-success {
    display: none;
    background: rgba(34,197,94,0.08);
    border: 1.5px solid rgba(34,197,94,0.25);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #166534;
    font-weight: 600;
    font-size: 15px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--primary);
    color: rgba(255,255,255,0.75);
    padding: 64px 5% 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px; margin-bottom: 48px;
  }
  .footer-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 16px; }
  .footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
  .footer-col h4 {
    font-size: 14px; font-weight: 700;
    color: #fff; margin-bottom: 18px;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    text-decoration: none; font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--secondary); }
  .footer-social { display: flex; gap: 10px; margin-top: 20px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .social-btn:hover { background: var(--secondary); transform: translateY(-2px); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
    font-size: 13px;
  }
  .footer-bottom a { color: var(--secondary); text-decoration: none; }

  /* ─── BACK TO TOP ─── */
  #btt {
    position: fixed; bottom: 32px; right: 32px;
    width: 46px; height: 46px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 1000;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 4px 16px rgba(10,31,107,0.28);
  }
  #btt.visible { opacity: 1; transform: translateY(0); }
  #btt:hover { transform: translateY(-3px); }
  #btt svg { color: #fff; width: 20px; height: 20px; }

  /* ─── SECTION REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(40px); }

  /* ─── UTILITIES ─── */
  .container { max-width: 1140px; margin: 0 auto; }
  .text-center { text-align: center; }
  .mt-8 { margin-top: 32px; }

  /* ─── RESPONSIVE ─── */
  @media(max-width: 1100px) {
    .fw-left, .fw-right { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
    .price-card.popular { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    #trust { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2)::after { display: none; }
    .trust-item:nth-child(2) {
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
  }
  @media(max-width: 860px) {
    .demo-wrap { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .hiw-steps { flex-direction: column; gap: 24px; }
    .hiw-steps::before { display: none; }
    .why-wrap { grid-template-columns: 1fr; }
    .why-vs { display: none; }
    .dash-body { grid-template-columns: repeat(2, 1fr); }
    .dash-chart-area { grid-template-columns: 1fr; }
    .demo-row1 { grid-template-columns: repeat(3, 1fr); }
  }
  @media(max-width: 640px) {
    h2 { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    #trust { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .dash-body { grid-template-columns: 1fr 1fr; }
    .demo-row1 { grid-template-columns: 1fr 1fr 1fr; }
    .dash-stat-value { font-size: 1.1rem; }
    .hero-btns .btn { padding: 14px 22px; font-size: 15px; }
    #btt { bottom: 20px; right: 20px; }
  }
  @media(max-width: 400px) {
    .demo-row1 { grid-template-columns: 1fr 1fr; }
  }

  @media(prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }