  :root {
    --bg: #0B0F1A;
    --bg2: #0F1422;
    --bg3: #131826;
    --blue: #3B82F6;
    --blue-light: #60A5FA;
    --blue-dim: #1D4ED8;
    --cyan: #22D3EE;
    --white: #F0F4FF;
    --muted: #8892A4;
    --border: rgba(59,130,246,0.18);
    --glow: 0 0 32px rgba(59,130,246,0.18);
    --glow-strong: 0 0 48px rgba(59,130,246,0.32);
    --radius: 18px;
    --radius-sm: 10px;
    --max: 1160px;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ---- NOISE OVERLAY ---- */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' 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.5;
  }

  /* ================================
     UTILS
  ================================ */
  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
  }

  .tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.3);
    color: var(--blue-light);
    font-family: var(--font-head);
    font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 999px;
    margin-bottom: 24px;
  }
  .tag::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.4; transform:scale(0.7); }
  }

  .gradient-text {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--cyan) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }

  /* ================================
     BUTTONS
  ================================ */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 999px;
    font-family: var(--font-head); font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all 0.3s ease;
    position: relative; overflow: hidden; border: none;
    white-space: nowrap;
  }
  .btn::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0; transition: opacity 0.2s;
  }
  .btn:hover::after { opacity: 1; }

  .btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dim) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(59,130,246,0.4), 0 0 0 1px rgba(59,130,246,0.3);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59,130,246,0.55), 0 0 0 1px rgba(59,130,246,0.4);
  }

  .btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.25);
  }

  .btn-outline {
    background: transparent;
    color: var(--blue-light);
    border: 1px solid rgba(59,130,246,0.4);
  }
  .btn-outline:hover {
    background: rgba(59,130,246,0.12);
    transform: translateY(-2px);
  }

  /* ================================
     GRID BACKGROUND
  ================================ */
  .grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
  }

  /* ================================
     GLOW ORBS
  ================================ */
  .orb {
    position: absolute; border-radius: 50%;
    filter: blur(120px); pointer-events: none; z-index: 0;
  }
  .orb-1 { width:600px; height:600px; background:rgba(59,130,246,0.12); top:-200px; right:-100px; }
  .orb-2 { width:400px; height:400px; background:rgba(34,211,238,0.07); bottom:0; left:-100px; }
  .orb-3 { width:500px; height:500px; background:rgba(59,130,246,0.08); top:50%; left:50%; transform:translate(-50%,-50%); }

  /* ================================
     NAVBAR — narrow, logo overflows
  ================================ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 32px;
    height: 70px;
    display: flex; align-items: center;
    overflow: visible;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(11,15,26,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59,130,246,0.12);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  }
  .nav-inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 0;
  }
  .nav-logo {
    font-family: var(--font-head); font-size: 22px; font-weight: 800;
    color: var(--white); text-decoration: none; letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo span { color: var(--blue-light); }
  .logo-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 16px rgba(59,130,246,0.4);
  }
  .logo-icon svg { width:18px; height:18px; fill:none; stroke:white; stroke-width:2; }
  .nav-links {
    display: flex; align-items: center; gap: 8px;
  }
  .nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 14px; font-weight: 500;
    padding: 8px 16px; border-radius: 8px;
    transition: all 0.2s;
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

  .logo-img {
    height: 240px !important;
    width: auto !important;
    display: block;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
  }

  /* ================================
     HERO — fixed columns, no overflow
  ================================ */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 580px) 480px;
    gap: 64px;
    align-items: center;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
  }
  .hero-left {
    position: relative;
    z-index: 2;
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }
  .hero-headline {
    font-family: "Playfair Display", var(--font-head);
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-headline .accent {
    background: linear-gradient(135deg, var(--blue-light), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .hero-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

  .hero-right {
    position: relative;
    z-index: 2;
    width: 480px;
    min-width: 480px;
    max-width: 480px;
    flex-shrink: 0;
    align-self: center;
  }

  /* ================================
     CALL FLOW CARD
  ================================ */
  .callflow-card {
    background: linear-gradient(135deg, rgba(19,24,38,0.95), rgba(15,20,34,0.95));
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--glow), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    position: relative; overflow: hidden;
  }
  .callflow-card::before {
    content: ''; position: absolute; top:0; left:0; right:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
  }
  .callflow-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
  }
  .cf-dots { display: flex; gap: 6px; }
  .cf-dot { width:10px; height:10px; border-radius:50%; }
  .cf-dot:nth-child(1) { background:#FF5F57; }
  .cf-dot:nth-child(2) { background:#FFBD2E; }
  .cf-dot:nth-child(3) { background:#28C840; }
  .callflow-title {
    font-family: var(--font-head); font-size:13px; font-weight:600;
    color: var(--muted); letter-spacing:0.08em; text-transform:uppercase;
  }
  .cf-steps { display: flex; flex-direction: column; gap: 0; }
  .cf-step {
    display: flex; align-items: center; gap: 16px;
    padding: 16px; border-radius: 14px;
    transition: all 0.3s ease; position: relative;
  }
  .cf-step:hover { background: rgba(59,130,246,0.07); }
  .cf-step-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .cf-step-icon svg { width:22px; height:22px; }
  .cf-step-info { flex: 1; }
  .cf-step-label {
    font-family: var(--font-head); font-size:15px; font-weight:700;
    color: var(--white); margin-bottom:2px;
  }
  .cf-step-desc { font-size:12px; color:var(--muted); }
  .cf-step-status {
    font-size:11px; font-weight:600; padding:4px 10px; border-radius:999px;
    font-family: var(--font-head);
  }
  .status-active { background:rgba(34,197,94,0.15); color:#4ADE80; border:1px solid rgba(34,197,94,0.3); }
  .status-processing { background:rgba(59,130,246,0.15); color:var(--blue-light); border:1px solid rgba(59,130,246,0.3); }
  .status-done { background:rgba(34,211,238,0.1); color:var(--cyan); border:1px solid rgba(34,211,238,0.25); }
  .cf-arrow {
    display: flex; justify-content: center; padding: 4px 0;
    color: rgba(59,130,246,0.4);
  }
  .cf-arrow svg { width:20px; height:20px; }
  .cf-footer {
    margin-top: 24px; padding: 16px; border-radius: 12px;
    background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.15);
    display: flex; align-items: center; gap: 12px;
  }
  .cf-pulse {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    background: rgba(59,130,246,0.2); display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .cf-pulse::before {
    content: ''; position: absolute; inset: -6px; border-radius: 50%;
    border: 2px solid rgba(59,130,246,0.3);
    animation: pulse-ring 2s ease-out infinite;
  }
  .cf-pulse::after {
    content: ''; position: absolute; inset: -12px; border-radius: 50%;
    border: 1px solid rgba(59,130,246,0.15);
    animation: pulse-ring 2s ease-out 0.4s infinite;
  }
  @keyframes pulse-ring {
    0% { opacity:1; transform:scale(0.85); }
    100% { opacity:0; transform:scale(1.5); }
  }
  .cf-pulse-inner { width:10px; height:10px; background:var(--blue); border-radius:50%; }
  .cf-footer-text { font-size:13px; color:var(--white); font-weight:500; }
  .cf-footer-text span { color:var(--muted); font-size:12px; display:block; }

  /* ================================
     SECTIONS — SHARED
  ================================ */
  section { padding: 100px 0; position: relative; overflow: hidden; }
  .section-head { text-align: center; margin-bottom: 64px; }
  .section-title {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px;
    line-height: 1.1;
  }
  .section-sub { font-size:17px; color:var(--muted); max-width:540px; margin:0 auto; }

  /* ================================
     PROBLEM SECTION
  ================================ */
  #problem { background: var(--bg2); }
  .problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .problem-card {
    background: linear-gradient(135deg, rgba(20,26,44,0.9), rgba(15,20,34,0.9));
    border: 1px solid rgba(239,68,68,0.15);
    border-radius: var(--radius); padding: 36px 32px;
    position: relative; overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  }
  .problem-card::before {
    content: ''; position: absolute; top:0; left:0; right:0; height:2px;
    background: linear-gradient(90deg, transparent, rgba(239,68,68,0.5), transparent);
  }
  .problem-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(239,68,68,0.15), 0 0 0 1px rgba(239,68,68,0.2); }
  .p-icon {
    width:52px; height:52px; border-radius:14px; margin-bottom:20px;
    background: rgba(239,68,68,0.12); display:flex; align-items:center; justify-content:center;
    border: 1px solid rgba(239,68,68,0.2);
  }
  .p-icon svg { width:26px; height:26px; }
  .p-card-title { font-family:var(--font-head); font-size:20px; font-weight:700; margin-bottom:10px; color:var(--white); }
  .p-card-desc { font-size:14px; color:var(--muted); line-height:1.6; }

  /* ================================
     SOLUTION SECTION
  ================================ */
  #solution { background: var(--bg); }
  .badge-24 {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(34,211,238,0.15), rgba(59,130,246,0.15));
    border: 1px solid rgba(34,211,238,0.3);
    color: var(--cyan); font-family:var(--font-head); font-size:13px; font-weight:700;
    padding: 8px 20px; border-radius: 999px; margin-bottom: 48px;
    box-shadow: 0 0 24px rgba(34,211,238,0.15);
    animation: badge-glow 3s ease-in-out infinite;
  }
  @keyframes badge-glow {
    0%,100% { box-shadow: 0 0 24px rgba(34,211,238,0.15); }
    50% { box-shadow: 0 0 40px rgba(34,211,238,0.3); }
  }
  .badge-24::before { content:''; width:8px; height:8px; background:var(--cyan); border-radius:50%; animation: pulse-dot 1.5s ease-in-out infinite; }
  .solution-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
  .sol-card {
    background: linear-gradient(135deg, rgba(19,24,38,0.9), rgba(15,20,34,0.9));
    border: 1px solid var(--border); border-radius: var(--radius); padding: 36px;
    transition: all 0.4s ease; position: relative; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  }
  .sol-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.35); box-shadow: var(--glow-strong); }
  .sol-card::before {
    content: ''; position: absolute; top:0; left:0; right:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .sol-card:hover::before { opacity: 1; }
  .s-icon {
    width:52px; height:52px; border-radius:14px; margin-bottom:20px;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05));
    display: flex; align-items:center; justify-content:center;
    border: 1px solid rgba(59,130,246,0.2);
  }
  .s-icon svg { width:26px; height:26px; }
  .s-card-title { font-family:var(--font-head); font-size:20px; font-weight:700; margin-bottom:10px; }
  .s-card-desc { font-size:14px; color:var(--muted); line-height:1.6; }

  /* ================================
     CAPABILITIES
  ================================ */
  #capabilities { background: var(--bg2); }
  .cap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .cap-card {
    background: rgba(19,24,38,0.7); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 24px;
    transition: all 0.3s ease; cursor: default;
    display: flex; align-items: flex-start; gap: 16px;
    backdrop-filter: blur(12px);
  }
  .cap-card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.3); background: rgba(59,130,246,0.06); box-shadow: var(--glow); }
  .cap-icon-wrap {
    width:44px; height:44px; flex-shrink:0; border-radius:12px;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05));
    border: 1px solid rgba(59,130,246,0.2);
    display: flex; align-items:center; justify-content:center;
  }
  .cap-icon-wrap svg { width:22px; height:22px; }
  .cap-info { flex:1; }
  .cap-name { font-family:var(--font-head); font-size:16px; font-weight:700; margin-bottom:6px; }
  .cap-desc { font-size:13px; color:var(--muted); line-height:1.5; }

  /* ================================
     HOW IT WORKS
  ================================ */
  #how { background: var(--bg); }
  .steps-wrap {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 0; position: relative;
  }
  .steps-wrap::before {
    content: ''; position: absolute; top:36px;
    left: calc(16.67% + 24px); width: calc(66.66% - 48px); height: 1px;
    background: linear-gradient(90deg, rgba(59,130,246,0.3), rgba(34,211,238,0.3), rgba(59,130,246,0.3));
  }
  .step-item { text-align:center; padding:0 32px; position:relative; }
  .step-num {
    width:72px; height:72px; border-radius:50%; margin:0 auto 28px;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05));
    border: 2px solid rgba(59,130,246,0.3);
    display: flex; align-items:center; justify-content:center;
    font-family:var(--font-head); font-size:24px; font-weight:800; color:var(--blue-light);
    box-shadow: 0 0 24px rgba(59,130,246,0.2);
    position: relative; z-index:1; transition: all 0.3s ease;
  }
  .step-item:hover .step-num { transform:scale(1.08); box-shadow:0 0 40px rgba(59,130,246,0.4); border-color:var(--blue); }
  .step-title { font-family:var(--font-head); font-size:20px; font-weight:700; margin-bottom:12px; }
  .step-desc { font-size:14px; color:var(--muted); line-height:1.6; }
.section-sub {
  text-align: center;
  width: 100%;
  display: block;
}

  /* ================================
     PRICING
  ================================ */
#pricing { background: var(--bg2); }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
.pricing-card {
  border-radius: 22px; padding: 40px 32px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(19,24,38,0.95), rgba(13,18,30,0.95));
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card .btn { margin-top: auto; }
.pricing-card:hover { transform:translateY(-6px); box-shadow:var(--glow); }
.pricing-card.featured {
  border: 1px solid rgba(59,130,246,0.4);
  background: linear-gradient(145deg, rgba(29,78,216,0.15), rgba(59,130,246,0.05));
  box-shadow: var(--glow-strong);
  padding: 52px 32px;
}
.pricing-card.featured::before {
  content: ''; position:absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--blue));
}
.pricing-badge {
  display: inline-flex; font-family:var(--font-head); font-size:11px; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase;
  padding: 4px 12px; border-radius:999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dim)); color:white;
  margin-bottom:20px;
}
.pricing-name { font-family:var(--font-head); font-size:24px; font-weight:800; margin-bottom:8px; }
.pricing-price {
  font-family:var(--font-head); font-size:42px; font-weight:800;
  letter-spacing:-0.03em; margin-bottom:28px;
  background: linear-gradient(135deg, var(--white), var(--muted));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.pricing-price span { font-size:16px; font-weight:400; color:var(--muted); }
.pricing-divider { border:none; border-top:1px solid rgba(255,255,255,0.06); margin:0 0 24px; }
.pricing-features { list-style:none; margin-bottom:32px; display:flex; flex-direction:column; gap:12px; }
.pricing-features li { display:flex; align-items:flex-start; gap:12px; font-size:14px; color:var(--muted); }
.pricing-features li::before {
  content: '';
  width:18px; height:18px; flex-shrink:0; border-radius:50%; margin-top:2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='rgba(59,130,246,0.15)' stroke='rgba(59,130,246,0.4)' stroke-width='1'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%2360A5FA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
.featured .pricing-features li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='rgba(59,130,246,0.25)' stroke='rgba(59,130,246,0.6)' stroke-width='1'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%2393C5FD' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
.featured .pricing-features li { color: rgba(224,231,255,0.85); }
.pricing-setup {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 12px;
}
.pricing-card:not(.featured) {
  min-height: 860px;
}
  /* ================================
     RESULTS / STATS
  ================================ */
  #results { background: var(--bg); }
  .stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
  .stat-card {
    background: linear-gradient(145deg, rgba(19,24,38,0.9), rgba(15,20,34,0.9));
    border: 1px solid var(--border); border-radius:var(--radius); padding:36px 28px;
    text-align:center; transition:all 0.4s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15); position:relative; overflow:hidden;
  }
  .stat-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:2px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
    opacity:0; transition:opacity 0.3s;
  }
  .stat-card:hover { transform:translateY(-6px); box-shadow:var(--glow-strong); border-color:rgba(59,130,246,0.3); }
  .stat-card:hover::before { opacity:1; }
  .stat-number {
    font-family:var(--font-head); font-size:48px; font-weight:800;
    letter-spacing:-0.03em; margin-bottom:8px;
    background: linear-gradient(135deg, var(--blue-light), var(--cyan));
    -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  }
  .stat-label { font-family:var(--font-head); font-size:15px; font-weight:600; color:var(--white); margin-bottom:6px; }
  .stat-desc { font-size:12px; color:var(--muted); }

  /* ================================
     FINAL CTA
  ================================ */
  #cta { background:var(--bg2); position:relative; overflow:hidden; }
  .cta-inner { text-align:center; position:relative; z-index:2; padding:80px 0; }
  .cta-title {
    font-family:var(--font-head); font-size:clamp(36px, 5vw, 64px);
    font-weight:800; letter-spacing:-0.03em; margin-bottom:24px; line-height:1.05;
  }
  .cta-title .accent {
    background: linear-gradient(135deg, var(--blue-light), var(--cyan));
    -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  }
  .cta-sub { font-size:18px; color:var(--muted); margin-bottom:40px; font-weight:300; }
  .cta-glow {
    position:absolute; width:600px; height:600px; border-radius:50%;
    background: radial-gradient(ellipse, rgba(59,130,246,0.12) 0%, transparent 70%);
    top:50%; left:50%; transform:translate(-50%,-50%);
    pointer-events:none;
  }

.cta-small {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -28px;
  margin-bottom: 20px;
}

  /* ================================
     FOOTER
  ================================ */
  footer {
    background:var(--bg); border-top:1px solid rgba(255,255,255,0.05);
    padding:48px 0;
  }
  .footer-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; }
  .footer-logo { font-family:"Montserrat", var(--font-head); font-size:20px; font-weight:800; color:var(--white); text-decoration:none; letter-spacing:-0.02em; }
  .footer-logo span { color:var(--white); }
  .footer-links { display:flex; gap:8px; flex-wrap:wrap; }
  .footer-links a {
    color:var(--muted); text-decoration:none; font-size:14px;
    padding:8px 14px; border-radius:8px; transition:all 0.2s;
  }
  .footer-links a:hover { color:var(--white); background:rgba(255,255,255,0.05); }
  .footer-copy { font-size:13px; color:rgba(136,146,164,0.6); }

  /* ================================
     ANIMATIONS
  ================================ */
  @keyframes fadeUp { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @keyframes slideRight { from { opacity:0; transform:translateX(-24px); } to { opacity:1; transform:translateX(0); } }
  @keyframes slideLeft { from { opacity:0; transform:translateX(24px); } to { opacity:1; transform:translateX(0); } }
  @keyframes scaleIn { from { opacity:0; transform:scale(0.9); } to { opacity:1; transform:scale(1); } }
  @keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

  .anim-fadeup { opacity:0; animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards; }
  .anim-fadein { opacity:0; animation: fadeIn 0.8s ease forwards; }
  .anim-slideright { opacity:0; animation: slideRight 0.8s cubic-bezier(0.16,1,0.3,1) forwards; }
  .anim-slideleft { opacity:0; animation: slideLeft 0.8s cubic-bezier(0.16,1,0.3,1) forwards; }
  .anim-scalein { opacity:0; animation: scaleIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards; }
  .floating { animation: float 4s ease-in-out infinite; }

  .delay-100  { animation-delay: 0.1s; }
  .delay-200  { animation-delay: 0.2s; }
  .delay-300  { animation-delay: 0.3s; }
  .delay-400  { animation-delay: 0.4s; }
  .delay-500  { animation-delay: 0.5s; }
  .delay-600  { animation-delay: 0.6s; }
  .delay-700  { animation-delay: 0.7s; }
  .delay-800  { animation-delay: 0.8s; }
  .delay-900  { animation-delay: 0.9s; }
  .delay-1000 { animation-delay: 1s; }
  .delay-1100 { animation-delay: 1.1s; }
  .delay-1200 { animation-delay: 1.2s; }

  .reveal {
    opacity:0; transform:translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible { opacity:1; transform:translateY(0); }
  .reveal-scale {
    opacity:0; transform:scale(0.93);
    transition: opacity 0.6s, transform 0.6s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal-scale.visible { opacity:1; transform:scale(1); }

  .cursor {
    display:inline-block; width:3px; height:0.9em;
    background:var(--cyan); margin-left:4px; border-radius:2px;
    animation: blink 1.1s step-end infinite; vertical-align:middle;
  }
  @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

  .waveform { display:flex; align-items:center; gap:3px; height:20px; }
  .wave-bar { width:3px; background:var(--blue); border-radius:99px; flex-shrink:0; }
  .wave-bar:nth-child(1) { height:6px;  animation: wave 1.2s ease-in-out 0s   infinite; }
  .wave-bar:nth-child(2) { height:12px; animation: wave 1.2s ease-in-out 0.1s infinite; }
  .wave-bar:nth-child(3) { height:18px; animation: wave 1.2s ease-in-out 0.2s infinite; }
  .wave-bar:nth-child(4) { height:14px; animation: wave 1.2s ease-in-out 0.3s infinite; }
  .wave-bar:nth-child(5) { height:8px;  animation: wave 1.2s ease-in-out 0.4s infinite; }
  .wave-bar:nth-child(6) { height:16px; animation: wave 1.2s ease-in-out 0.5s infinite; }
  .wave-bar:nth-child(7) { height:10px; animation: wave 1.2s ease-in-out 0.6s infinite; }
  @keyframes wave { 0%,100%{transform:scaleY(1);} 50%{transform:scaleY(0.35);} }

  /* ================================
     RESPONSIVE
  ================================ */
  @media (max-width: 1100px) {
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .hero-left {
      width: 100%;
      min-width: unset;
      max-width: 100%;
    }
    .hero-right {
      width: 100%;
      min-width: unset;
      max-width: 100%;
    }
    .problem-grid, .cap-grid { grid-template-columns: repeat(2,1fr); }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  }

  @media (max-width: 768px) {
    nav { height: 60px; overflow: visible; }
    #hero { padding-top: 60px; }
    .logo-img { height: 90px !important; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-left { width:100%; min-width:unset; max-width:100%; }
    .hero-right { display: none; }
    .problem-grid, .solution-grid, .cap-grid, .steps-wrap { grid-template-columns: 1fr; }
    .steps-wrap::before { display: none; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .footer-inner { flex-direction: column; text-align: center; }
    nav .nav-links .btn { display: none; }
  }