 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary: #9cc833;
    --secondary: #b6e053;
    --accent: #b6e053;
    --success: #00E676;
    --bg: #070B14;
    --surface: #0F172A;
    --card: #111827;
    --card2: #0D1424;
    --text: #FFFFFF;
    --muted: #94A3B8;
    --border: rgba(91,92,240,0.18);
    --border2: rgba(255,255,255,0.06);
    --glow-p: rgba(91,92,240,0.35);
    --glow-a: rgba(0,212,255,0.25);
    --mono: 'JetBrains Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── GRID BG ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(91,92,240,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(91,92,240,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
  }

  /* ── NOISE OVERLAY ── */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    background: rgba(7,11,20,0.6);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--border2);
    transition: background 0.3s;
  }
  nav.scrolled { background: rgba(7,11,20,0.92); }

  .nav-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .nav-logo-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 16px var(--glow-p);
  }
  .nav-logo-icon svg { width: 18px; height: 18px; }
  .nav-logo-text { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }

  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a {
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

  .nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .btn-ghost {
    padding: 7px 16px;
    font-size: 14px; font-weight: 500;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--border2);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }
  .btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); }

  .btn-primary {
    padding: 7px 18px;
    font-size: 14px; font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(91,92,240,0.4);
    transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .btn-primary:hover { opacity: 0.9; box-shadow: 0 0 30px rgba(91,92,240,0.6); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-orb1 {
    position: absolute;
    top: -200px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(91,92,240,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-orb2 {
    position: absolute;
    bottom: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 6px;
    background: rgba(91,92,240,0.12);
    border: 1px solid rgba(91,92,240,0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #a5b4fc;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
    width: fit-content;
  }
  .badge-dot {
    width: 20px; height: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .badge-dot::after { content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%; }

  .hero-h1 {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 40%, #a5b4fc 80%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 480px;
  }

  .hero-ctas { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }

  .btn-secondary {
    padding: 11px 22px;
    font-size: 15px; font-weight: 600;
    color: var(--text);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { 
    background: rgba(255,255,255,0.09); 
    border-color: rgba(255,255,255,0.2); 
    transform: translateY(-1px); 
    color: var(--text);
}

  .btn-hero-primary {
    padding: 11px 26px;
    font-size: 15px; font-weight: 700;
    color: var(--surface);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 24px rgba(91,92,240,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: transform 0.15s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-hero-primary:hover { 
    transform: translateY(-2px); box-shadow: 0 4px 32px rgba(91,92,240,0.7); 
    color: #000;
}

  .hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
  .hero-trust-item svg { color: var(--success); flex-shrink: 0; }

  /* ── DASHBOARD MOCK ── */
  .dashboard-wrap {
    position: relative;
    perspective: 1200px;
  }

  .dashboard-main {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(91,92,240,0.1), 0 40px 80px rgba(0,0,0,0.6), 0 0 80px rgba(91,92,240,0.12);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s ease;
  }
  .dashboard-main:hover { transform: perspective(1200px) rotateY(-1deg) rotateX(0deg); }

  .dash-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.02);
  }
  .dash-dots { display: flex; gap: 6px; }
  .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
  .dash-dot.red { background: #FF5F57; }
  .dash-dot.yellow { background: #FEBC2E; }
  .dash-dot.green { background: #28C840; }
  .dash-title { font-size: 12px; color: var(--muted); font-family: var(--mono); }
  .dash-status { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--success); }
  .dash-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 6px var(--success); animation: blink 1.5s infinite; }

  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

  .dash-body { padding: 16px; }

  .dash-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
  .dash-metric {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 12px 14px;
  }
  .dash-metric-label { font-size: 10px; color: var(--muted); font-family: var(--mono); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
  .dash-metric-value { font-size: 22px; font-weight: 800; font-family: var(--mono); }
  .dash-metric-value.green { color: var(--success); }
  .dash-metric-value.blue { color: var(--accent); }
  .dash-metric-value.purple { color: #a5b4fc; }
  .dash-metric-value.orange { color: #fb923c; }

  .dash-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; margin-bottom: 14px; }

  .dash-panel {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 12px;
  }
  .dash-panel-title { font-size: 10px; font-family: var(--mono); color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }

  /* Sparkline chart */
  .sparkline { height: 50px; display: flex; align-items: flex-end; gap: 3px; }
  .spark-bar { flex: 1; border-radius: 3px 3px 0 0; min-width: 0; transition: opacity 0.2s; }
  .spark-bar:hover { opacity: 0.8; }

  /* Test list */
  .test-list { display: flex; flex-direction: column; gap: 6px; }
  .test-item { display: flex; align-items: center; gap: 8px; font-size: 10px; }
  .test-badge { padding: 2px 7px; border-radius: 4px; font-family: var(--mono); font-weight: 600; font-size: 9px; flex-shrink: 0; }
  .test-badge.pass { background: rgba(0,230,118,0.15); color: var(--success); }
  .test-badge.fail { background: rgba(255,82,82,0.15); color: #ff5252; }
  .test-badge.run { background: rgba(91,92,240,0.2); color: #a5b4fc; }
  .test-name { color: var(--muted); font-family: var(--mono); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .test-time { color: #475569; font-family: var(--mono); }

  /* Progress bars */
  .progress-list { display: flex; flex-direction: column; gap: 8px; }
  .progress-item { }
  .progress-label { display: flex; justify-content: space-between; font-size: 9px; color: var(--muted); font-family: var(--mono); margin-bottom: 4px; }
  .progress-track { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
  .progress-fill { height: 100%; border-radius: 2px; }

  .dash-pipeline { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; overflow: hidden; }
  .pipe-step {
    flex: 1;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 8px 6px;
    font-size: 9px;
    font-family: var(--mono);
    position: relative;
  }
  .pipe-step.done { border-color: rgba(0,230,118,0.3); }
  .pipe-step.active { border-color: rgba(91,92,240,0.5); }
  .pipe-step.pending { opacity: 0.4; }
  .pipe-icon { font-size: 14px; margin-bottom: 3px; }
  .pipe-label { color: var(--muted); }
  .pipe-arrow { color: #475569; font-size: 10px; flex-shrink: 0; }

  /* Floating cards */
  .float-card {
    position: absolute;
    background: rgba(15,23,42,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(91,92,240,0.15);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
  }
  .float-card:nth-child(2) { animation-delay: -1.5s; }
  .float-card:nth-child(3) { animation-delay: -3s; }

  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

  .float-card.top-right { top: -28px; right: -32px; }
  .float-card.bottom-left { bottom: 60px; left: -32px; }
  .float-card.bottom-right { bottom: -20px; right: -20px; }

  .fc-title { font-size: 10px; color: var(--muted); font-family: var(--mono); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
  .fc-value { font-size: 24px; font-weight: 800; font-family: var(--mono); }
  .fc-value.success { color: var(--success); }
  .fc-value.accent { color: var(--accent); }
  .fc-sub { font-size: 10px; color: var(--muted); margin-top: 2px; }
  .fc-trend { font-size: 11px; color: var(--success); font-weight: 600; }

  /* ── SECTION COMMONS ── */
  section { padding: 100px 0; position: relative; z-index: 1; }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
  }
  .section-label::before, .section-label::after {
    content: '';
    width: 20px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary));
  }
  .section-label::after { background: linear-gradient(90deg, var(--primary), transparent); }

  .section-h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text);
  }
  .gradient-text {
    background: linear-gradient(135deg, #fff 30%, #a5b4fc 70%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 64px;
  }
  .section-center { text-align: center; }
  .section-center .section-sub { margin-left: auto; margin-right: auto; }
  .section-center .section-label { margin-left: auto; margin-right: auto; }

  /* ── ABOUT ── */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-content { }
  .about-body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 40px;
  }

  .feature-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  }
  .feature-card:hover {
    border-color: rgba(91,92,240,0.4);
    box-shadow: 0 0 20px rgba(91,92,240,0.08);
    transform: translateY(-2px);
  }
  .fc-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
  }
  .fc-icon.purple { background: rgba(91,92,240,0.15); }
  .fc-icon.blue { background: rgba(0,212,255,0.12); }
  .fc-icon.green { background: rgba(0,230,118,0.12); }
  .fc-icon.orange { background: rgba(251,146,60,0.12); }
  .fc-text h4 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
  .fc-text p { font-size: 12px; color: var(--muted); line-height: 1.5; }

  /* About visual */
  .about-visual {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 0 60px rgba(91,92,240,0.08);
    position: relative;
  }
  .about-visual-title { font-size: 11px; font-family: var(--mono); color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px; }
  .test-run-list { display: flex; flex-direction: column; gap: 10px; }
  .test-run {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .run-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
  .run-info { flex: 1; }
  .run-name { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
  .run-meta { font-size: 11px; color: var(--muted); font-family: var(--mono); }
  .run-status { font-size: 11px; font-weight: 600; font-family: var(--mono); padding: 3px 10px; border-radius: 5px; }
  .run-status.pass { background: rgba(0,230,118,0.12); color: var(--success); }
  .run-status.fail { background: rgba(255,82,82,0.12); color: #ff5252; }
  .run-status.run { background: rgba(91,92,240,0.15); color: #a5b4fc; }
  .run-time { font-size: 11px; color: var(--muted); font-family: var(--mono); text-align: right; }

  .about-visual-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border2);
  }
  .avf-stat { text-align: center; }
  .avf-val { font-size: 24px; font-weight: 800; font-family: var(--mono); }
  .avf-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }

  /* ── SERVICES ── */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .service-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
    cursor: pointer;
    group: true;
  }
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(91,92,240,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover { border-color: rgba(91,92,240,0.5); transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(91,92,240,0.2), 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(91,92,240,0.1); }
  .service-card:hover::before { opacity: 1; }

  .service-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .sc-p { background: rgba(91,92,240,0.15); box-shadow: 0 0 20px rgba(91,92,240,0.15); }
  .sc-a { background: rgba(0,212,255,0.12); box-shadow: 0 0 20px rgba(0,212,255,0.1); }
  .sc-g { background: rgba(0,230,118,0.12); box-shadow: 0 0 20px rgba(0,230,118,0.1); }
  .sc-r { background: rgba(255,82,82,0.12); box-shadow: 0 0 20px rgba(255,82,82,0.08); }
  .sc-o { background: rgba(251,146,60,0.12); box-shadow: 0 0 20px rgba(251,146,60,0.1); }
  .sc-v { background: rgba(167,139,250,0.15); box-shadow: 0 0 20px rgba(167,139,250,0.1); }

  .service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
  .service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; position: relative; z-index: 1; }
  .service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: gap 0.2s;
  }
  .service-card:hover .service-arrow { gap: 10px; }
  .service-tag {
    position: absolute;
    top: 18px; right: 18px;
    font-size: 10px;
    font-family: var(--mono);
    padding: 3px 8px;
    border-radius: 5px;
    background: rgba(91,92,240,0.12);
    color: #a5b4fc;
    border: 1px solid rgba(91,92,240,0.2);
    z-index: 1;
  }

  /* ── WHY ── */
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .why-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s, transform 0.2s;
    position: relative;
    z-index: 2;
  }

   .why-card::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    border-radius: 5px;
    transition: all 500ms ease;
    background: -webkit-linear-gradient(0deg, #9cc833, #9cc833 100%);
    z-index: -1;
   }

  .why-card:hover { border-color: rgba(91,92,240,0.35); transform: translateY(-3px);}

  
   .why-card:hover:before {
      height: 100%;
      top: 0px;
  }

  .why-num {
    font-size: 21px;
    font-family: var(--mono);
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
  }
  .why-icon { font-size: 28px; margin-bottom: 16px; }
  .why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
  .why-card p { font-size: 14px; color: var(--text); line-height: 1.6; }

  .why-card:hover .why-num{
      color: var(--text);
  }

  .pattern-layer{
    background-image: url(../images/shape-3.png);
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 137px;
    background-repeat: no-repeat;
    opacity: .05;
    transition: all 500ms ease;
  }

  /* ── DASHBOARD SECTION ── */
  .dashboard-section {
    background: linear-gradient(180deg, transparent 0%, rgba(91,92,240,0.04) 50%, transparent 100%);
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
  }

  .db-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }
  .db-hl {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .db-hl:hover { border-color: rgba(91,92,240,0.3); transform: translateY(-2px); }
  .db-hl-icon { font-size: 22px; }
  .db-hl-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
  .db-hl-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

  .dashboard-big {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(91,92,240,0.08), 0 40px 80px rgba(0,0,0,0.4);
  }
  .db-top-bar {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border2);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .db-tabs { display: flex; gap: 4px; }
  .db-tab {
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    color: var(--muted);
    transition: background 0.2s, color 0.2s;
  }
  .db-tab.active { background: rgba(91,92,240,0.2); color: #a5b4fc; }
  .db-tab:hover:not(.active) { background: rgba(255,255,255,0.04); color: var(--text); }

  .db-content { padding: 24px; }
  .db-kpi-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-bottom: 24px; }
  .db-kpi {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 16px;
  }
  .db-kpi-label { font-size: 10px; color: var(--muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
  .db-kpi-val { font-size: 28px; font-weight: 800; font-family: var(--mono); margin-bottom: 4px; }
  .db-kpi-change { font-size: 11px; font-family: var(--mono); }
  .db-kpi-change.up { color: var(--success); }
  .db-kpi-change.down { color: #ff5252; }

  .db-charts { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px; }
  .db-chart-panel {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 16px;
  }
  .db-chart-title { font-size: 11px; font-family: var(--mono); color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }

  /* Pass Rate Chart (area-like) */
  .area-chart { height: 80px; position: relative; }
  .area-chart svg { width: 100%; height: 100%; }

  /* Donut */
  .donut-wrap { display: flex; align-items: center; gap: 16px; }
  .donut-svg { width: 70px; height: 70px; flex-shrink: 0; }
  .donut-legend { display: flex; flex-direction: column; gap: 6px; }
  .legend-item { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--muted); font-family: var(--mono); }
  .legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

  /* Bars */
  .bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 70px; }
  .bar { flex: 1; border-radius: 3px 3px 0 0; }

  /* ── PRICING ── */
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
  .price-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.3s, border-color 0.3s;
  }
  .price-card:hover { transform: translateY(-6px); }
  .price-card.popular {
    border-color: rgba(91,92,240,0.5);
    box-shadow: 0 0 0 1px rgba(91,92,240,0.15), 0 0 50px rgba(91,92,240,0.15);
  }
  .price-card.popular:hover { box-shadow: 0 0 0 1px rgba(91,92,240,0.3), 0 20px 60px rgba(91,92,240,0.25); }

  .popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(91,92,240,0.4);
    letter-spacing: 0.5px;
  }

  .price-plan-name { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-family: var(--mono); }
  .price-amount { font-size: 52px; font-weight: 900; letter-spacing: -2px; margin-bottom: 4px; line-height: 1; }
  .price-amount sup { font-size: 22px; font-weight: 700; vertical-align: top; margin-top: 10px; display: inline-block; }
  .price-period { font-size: 13px; color: var(--muted); margin-bottom: 24px; font-family: var(--mono); }
  .price-divider { height: 1px; background: var(--border2); margin-bottom: 24px; }
  .price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .price-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
  .price-feature svg { color: var(--success); flex-shrink: 0; }
  .price-feature.highlight { color: var(--text); font-weight: 500; }

  .btn-price {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.2s;
    text-align: center;
    text-decoration: none;
    display: block;
  }
  .btn-price.outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text);
  }
  .btn-price.outline:hover { background: rgba(255,255,255,0.05); }
  .btn-price.filled {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 0 20px rgba(91,92,240,0.4);
  }
  .btn-price.filled:hover { transform: translateY(-2px); box-shadow: 0 4px 30px rgba(91,92,240,0.6); }

  .pricing-footer { text-align: center; }
  .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 11px 24px;
    border: 1px solid rgba(91,92,240,0.3);
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-view-all:hover { background: rgba(91,92,240,0.08); border-color: rgba(91,92,240,0.5); }

  /* ── FAQ ── */
  .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .faq-item.open { border-color: rgba(91,92,240,0.35); }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Inter', sans-serif;
  }
  .faq-question:hover { color: #a5b4fc; }
  .faq-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(91,92,240,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
    font-size: 14px;
    color: var(--primary);
  }
  .faq-item.open .faq-icon { background: rgba(91,92,240,0.2); transform: rotate(45deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .faq-item.open .faq-answer { max-height: 200px; }
  .faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    border-top: 1px solid var(--border2);
    padding-top: 16px;
  }

  /* ── FINAL CTA ── */
  .final-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, rgba(91,92,240,0.15) 0%, transparent 70%);
    padding: 140px 0;
  }
  .cta-orb1 {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(91,92,240,0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-shape1 {
    position: absolute;
    top: 20%; left: 10%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
  }
  .cta-shape2 {
    position: absolute;
    bottom: 15%; right: 8%;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(124,77,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
  }
  .final-cta .section-h2 { font-size: clamp(40px, 5vw, 64px); position: relative; z-index: 1; }
  .final-cta .section-sub { font-size: 18px; max-width: 500px; margin: 0 auto 40px; position: relative; z-index: 1; }
  .final-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

  /* ── STATS BAR ── */
  .stats-bar {
    padding: 48px 0;
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
    background: rgba(255,255,255,0.01);
  }
  .stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
  .stat-item { text-align: center; }
  .stat-value { font-size: 40px; font-weight: 900; font-family: var(--mono); letter-spacing: -1px; }
  .stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

  /* ── FOOTER ── */
  footer {
    background: var(--surface);
    border-top: 1px solid var(--border2);
    padding: 64px 0 0;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-brand { }
  .footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
  .footer-desc { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 300px; }

  .footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: 0.3px; }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text); }

  .contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
  .contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
  .contact-item span { font-size: 13px; color: var(--muted); line-height: 1.5; }
  .contact-item a { color: var(--muted); text-decoration: none; }
  .contact-item a:hover { color: var(--accent); }

  .footer-bottom {
    border-top: 1px solid var(--border2);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-copy { font-size: 13px; color: var(--muted); }
  .footer-pay { display: flex; align-items: center; gap: 8px; }
  .visa-badge {
    background: #1a1f71;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 5px;
    letter-spacing: 1px;
    font-style: italic;
  }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-d1 { transition-delay: 0.1s; }
  .fade-up-d2 { transition-delay: 0.2s; }
  .fade-up-d3 { transition-delay: 0.3s; }
  .fade-up-d4 { transition-delay: 0.4s; }
  .fade-up-d5 { transition-delay: 0.5s; }
  .fade-up-d6 { transition-delay: 0.6s; }

  /* ── COUNTER ── */
  .count-val { font-variant-numeric: tabular-nums; }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .hero-grid, .about-grid { grid-template-columns: 1fr; }
    .dashboard-wrap { display: none; }
    .services-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .db-kpi-row { grid-template-columns: repeat(3,1fr); }
    .db-charts { grid-template-columns: 1fr; }
    .db-highlights { grid-template-columns: repeat(2,1fr); }
    .stats-inner { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .services-grid, .why-grid { grid-template-columns: 1fr; }
    .feature-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2,1fr); }
    .db-highlights { grid-template-columns: 1fr; }
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: rgba(91,92,240,0.4); border-radius: 3px; }

  /* ── GLOW LINE ── */
  .glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    margin: 0;
    opacity: 0.5;
  }

  .text-accent { color: var(--accent); }
  .text-success { color: var(--success); }
  .text-primary { color: #a5b4fc; }

  /* Code snippet decoration */
  .code-snippet {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 16px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    margin-top: 20px;
    line-height: 1.7;
  }
  .code-kw { color: #c084fc; }
  .code-fn { color: var(--accent); }
  .code-str { color: var(--success); }
  .code-cm { color: #475569; }

  /* Progress pulse */
  @keyframes progress-pulse {
    0% { width: 0%; }
    100% { width: var(--w); }
  }
  .progress-fill { animation: progress-pulse 1.5s ease forwards; }

  /* Gradient border helper */
  .grad-border {
    position: relative;
  }
  .grad-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .grad-border:hover::after { opacity: 1; }