  @font-face {
    font-family: 'Aspekta';
    src: url('./AspektaVF.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
  }

  :root {
    --ink: #080810;
    --violet: #5b2be0;
    --violet-mid: #7c4ef5;
    --violet-light: #a47dff;
    --rose: #e0416a;
    --rose-glow: rgba(224,65,106,0.25);
    --surface: #0f0e1a;
    --surface2: #161427;
    --surface3: #1e1b33;
    --border: rgba(124,78,245,0.16);
    --border-bright: rgba(124,78,245,0.35);
    --text: #e8e4ff;
    --muted: #8880b5;
    --white: #ffffff;
    --grad-primary: linear-gradient(135deg, #5b2be0 0%, #c23b8a 100%);
    --grad-subtle: linear-gradient(135deg, rgba(91,43,224,0.12) 0%, rgba(194,59,138,0.06) 100%);
    --glow-violet: 0 0 40px rgba(91,43,224,0.4);
    --glow-rose: 0 0 40px rgba(224,65,106,0.3);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--ink);
    color: var(--text);
    font-family: 'Aspekta', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* ── GLOBAL NOISE TEXTURE ── */
  body::after {
    content: '';
    position: fixed; inset: 0; z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--ink); }
  ::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 4px; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 80px;
    background: rgba(8,8,16,0.75);
    backdrop-filter: blur(28px) saturate(160%);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s;
  }
  nav::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--violet-mid), transparent);
    opacity: 0.4;
  }

  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  
  .nav-logo-img {
    width: 100px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(91,43,224,0.45));
  }
  .nav-logo-mark {
    width: 34px; height: 34px;
    background: var(--grad-primary);
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%, 20% 50%);
    filter: drop-shadow(0 0 8px rgba(91,43,224,0.7));
    animation: logo-breathe 3s ease-in-out infinite;
  }
  @keyframes logo-breathe {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(91,43,224,0.7)); }
    50% { filter: drop-shadow(0 0 16px rgba(164,125,255,0.9)); }
  }

  .nav-logo-text {
    font-family: 'Aspekta', sans-serif; font-weight: 500; font-size: 18px; color: var(--white);
    letter-spacing: -0.01em;
  }
  .nav-logo-text span { color: var(--violet-light); }

  .nav-cta {
    background: var(--grad-primary);
    color: #fff; font-family: 'Aspekta', sans-serif; font-weight: 500;
    font-size: 16px; padding: 10px 24px; border-radius: 8px;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
    box-shadow: 0 0 20px rgba(91,43,224,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative; overflow: hidden;
  }
  .nav-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(91,43,224,0.6), inset 0 1px 0 rgba(255,255,255,0.2); }
  .nav-cta:hover::before { opacity: 1; }
  .nav-cta:active { transform: translateY(0); }

  /* ── HERO ── */
  .hero {
    min-height: calc(100vh - 96px);
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
    align-items: center; gap: 40px;
    padding: 140px 80px 80px;
    position: relative; overflow: hidden;
  }

  /* Animated orbs */
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 15% 55%, rgba(91,43,224,0.28) 0%, transparent 65%),
      radial-gradient(ellipse 40% 40% at 85% 15%, rgba(224,65,106,0.18) 0%, transparent 55%),
      radial-gradient(ellipse 30% 30% at 70% 80%, rgba(124,78,245,0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: orb-shift 12s ease-in-out infinite alternate;
  }
  @keyframes orb-shift {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.08); }
  }

  .grid-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(124,78,245,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(124,78,245,0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 0%, transparent 75%);
    animation: grid-drift 20s linear infinite;
  }
  @keyframes grid-drift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 64px 64px, 64px 64px; }
  }

  /* Floating particles */
  .hero-particles {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  }
  .particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--violet-light);
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0;
  }
  .particle:nth-child(1)  { left: 10%; animation-duration: 8s; animation-delay: 0s; }
  .particle:nth-child(2)  { left: 25%; animation-duration: 12s; animation-delay: 2s; }
  .particle:nth-child(3)  { left: 40%; animation-duration: 9s; animation-delay: 4s; }
  .particle:nth-child(4)  { left: 55%; animation-duration: 14s; animation-delay: 1s; }
  .particle:nth-child(5)  { left: 70%; animation-duration: 11s; animation-delay: 3s; }
  .particle:nth-child(6)  { left: 85%; animation-duration: 7s; animation-delay: 5s; background: var(--rose); }
  .particle:nth-child(7)  { left: 15%; animation-duration: 10s; animation-delay: 6s; }
  .particle:nth-child(8)  { left: 60%; animation-duration: 13s; animation-delay: 0.5s; background: var(--rose); }
  @keyframes float-particle {
    0%   { bottom: -10px; opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.3; }
    100% { bottom: 100%; opacity: 0; }
  }

  .hero-content { position: relative; z-index: 2; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(91,43,224,0.12);
    border: 1px solid rgba(124,78,245,0.25);
    color: var(--violet-light); font-size: 12px; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(91,43,224,0.1), inset 0 1px 0 rgba(164,125,255,0.1);
    animation: eyebrow-in 0.8s cubic-bezier(.34,1.56,.64,1) both;
  }
  @keyframes eyebrow-in {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--violet-light);
    box-shadow: 0 0 6px var(--violet-light);
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1; transform:scale(1)} 50%{opacity:0.3; transform:scale(0.8)} }

  h1 {
    font-family: 'Aspekta', sans-serif;
    font-weight: 300;
    font-size: clamp(40px, 5vw, 64px); 
    line-height: 1.1;
    color: var(--white); margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: hero-title-in 1s cubic-bezier(.22,1,.36,1) 0.15s both;
  }
  @keyframes hero-title-in {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  h1 em {
    font-family: 'IBM Plex Serif', serif; 
    font-weight: 500;
    font-style: italic;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(164,125,255,0.4));
  }

  .hero-sub {
    font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 40px;
    font-weight: 300; line-height: 1.75;
    animation: hero-sub-in 1s cubic-bezier(.22,1,.36,1) 0.3s both;
  }
  @keyframes hero-sub-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-stats {
    display: flex; gap: 36px; margin-bottom: 48px;
    animation: hero-stats-in 1s cubic-bezier(.22,1,.36,1) 0.45s both;
  }
  @keyframes hero-stats-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .stat {
    border-left: 2px solid transparent;
    border-image: var(--grad-primary) 1;
    padding-left: 16px;
    transition: transform 0.3s;
  }
  .stat:hover { transform: translateY(-3px); }

  .stat-num {
    font-family: 'Aspekta', sans-serif; font-size: 34px; font-weight: 500;
    color: var(--white); letter-spacing: -0.03em; line-height: 1;
  }
  .stat-num span {
    font-size: 22px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

  .hero-badges {
    display: flex; gap: 10px; flex-wrap: wrap;
    animation: hero-badges-in 1s cubic-bezier(.22,1,.36,1) 0.6s both;
  }
  @keyframes hero-badges-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .badge {
    background: rgba(22,20,39,0.8);
    border: 1px solid var(--border);
    color: var(--muted); font-size: 13px; padding: 7px 15px; border-radius: 100px;
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  .badge:hover {
    border-color: var(--violet-mid);
    color: var(--violet-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(91,43,224,0.2);
  }

  /* ── FORM CARD ── */
  .form-card {
    width: 100%;
    position: relative; z-index: 2;
    background: rgba(15,14,26,0.9);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    backdrop-filter: blur(20px);
    box-shadow:
      0 32px 80px rgba(0,0,0,0.6),
      0 0 0 1px rgba(124,78,245,0.08),
      inset 0 1px 0 rgba(164,125,255,0.08);
    animation: form-card-in 1.1s cubic-bezier(.22,1,.36,1) 0.2s both;
  }
  @keyframes form-card-in {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .form-card::before {
    content: ''; position: absolute; top: -1px; left: 20px; right: 20px; height: 2px;
    background: var(--grad-primary);
    border-radius: 100px;
    filter: blur(1px);
  }
  .form-card::after {
    content: ''; position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(91,43,224,0.12) 0%, transparent 70%);
    pointer-events: none; border-radius: 50%;
  }

  .form-title {
    font-family: 'Aspekta', sans-serif; font-weight: 500; font-size: 22px;
    color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em;
  }
  .form-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
  .field { margin-bottom: 16px; }
  .field label {
    display: block; font-size: 11px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 7px;
    font-weight: 500;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    background: rgba(22,20,39,0.8);
    border: 1px solid rgba(124,78,245,0.18);
    color: var(--text); font-family: 'Aspekta', sans-serif; font-size: 15px;
    padding: 13px 16px; border-radius: 10px; outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    appearance: none;
    -webkit-appearance: none;
  }
  .field input::placeholder, .field select::placeholder { color: rgba(136,128,181,0.5); }
  .field input:hover, .field select:hover, .field textarea:hover {
    border-color: rgba(124,78,245,0.3);
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--violet-mid);
    box-shadow: 0 0 0 3px rgba(91,43,224,0.12), 0 0 16px rgba(91,43,224,0.1);
    background: rgba(30,27,51,0.9);
  }
  .field select { cursor: pointer; }
  .field select option { background: var(--surface2); color: var(--text); }
  .field textarea { resize: vertical; min-height: 80px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .submit-btn {
    width: 100%; padding: 16px;
    background: var(--grad-primary);
    border: none; border-radius: 10px; color: #fff;
    font-family: 'Aspekta', sans-serif; font-weight: 500; font-size: 16px;
    cursor: pointer; margin-top: 8px;
    transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
    box-shadow: 0 8px 32px rgba(91,43,224,0.45);
    position: relative; overflow: hidden;
    letter-spacing: 0.01em;
  }
  .submit-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
  }
  .submit-btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s, opacity 0.4s;
    opacity: 0;
  }
  .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(91,43,224,0.6); }
  .submit-btn:hover::before { opacity: 1; }
  .submit-btn:active::after { width: 300px; height: 300px; opacity: 0; }

  .form-note {
    text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px;
    opacity: 0.7;
  }

  /* ── SECTIONS ── */
  .section { padding: 100px 80px; position: relative; }

  .section-label {
    font-size: 11px; color: var(--violet-light); text-transform: uppercase;
    letter-spacing: 0.16em; font-weight: 500; margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: ''; display: inline-block; width: 24px; height: 1px;
    background: var(--violet-light); opacity: 0.6;
  }

  .section-title {
    font-family: 'Aspekta', sans-serif; font-weight: 400;
    font-size: clamp(32px, 3.5vw, 48px); color: var(--white);
    line-height: 1.18; margin-bottom: 20px; letter-spacing: -0.02em;
  }
  .section-title em {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 500;
    font-style: italic;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-body { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.8; }

  /* ── PAIN GRID ── */
  .pain-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px; margin-top: 60px;
  }
  .pain-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 28px 24px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
  }
  .pain-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(224,65,106,0.06) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
  }
  .pain-item::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(224,65,106,0.5), transparent);
    opacity: 0; transition: opacity 0.4s;
  }
  .pain-item:hover {
    border-color: rgba(224,65,106,0.35);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(224,65,106,0.1);
  }
  .pain-item:hover::before, .pain-item:hover::after { opacity: 1; }

  .pain-icon { font-size: 28px; margin-bottom: 14px; display: block; }
  .pain-item h4 {
    font-family: 'Aspekta', sans-serif; font-size: 18px; font-weight: 500;
    color: var(--white); margin-bottom: 8px; 
  }
  .pain-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

  /* ── COMPARISON TABLE ── */
  .compare-section {
    padding: 80px;
    background: var(--surface);
    position: relative; overflow: hidden;
  }
  .compare-section::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--violet-mid), transparent);
    opacity: 0.3;
  }
  .compare-section::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--violet-mid), transparent);
    opacity: 0.3;
  }

  .compare-wrap { max-width: 900px; margin: 60px auto 0; }
  .compare-table { width: 100%; border-collapse: separate; border-spacing: 0; }
  .compare-table th {
    padding: 16px 20px; font-family: 'Aspekta', sans-serif; font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .compare-table th:first-child { color: var(--muted); text-align: left; }
  .compare-table th:nth-child(2) {
    background: rgba(255,255,255,0.03); color: var(--muted);
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(255,255,255,0.06); border-bottom: none;
  }
  .compare-table th:nth-child(3) {
    background: rgba(91,43,224,0.18); color: var(--violet-light);
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(124,78,245,0.25); border-bottom: none;
    position: relative;
  }
  .compare-table th:nth-child(3)::before {
    content: '';
    position: absolute; top: -1px; left: 10px; right: 10px; height: 2px;
    background: var(--grad-primary);
    border-radius: 100px;
  }
  .compare-table td {
    padding: 15px 20px; font-size: 14px;
    border-top: 1px solid var(--border);
    transition: background 0.25s;
  }
  .compare-table tr:hover td { background: rgba(124,78,245,0.03); }
  .compare-table td:first-child { color: var(--muted); font-size: 13px; }
  .compare-table td:nth-child(2) { background: rgba(255,255,255,0.015); color: var(--muted); text-align: center; border-left: 1px solid rgba(255,255,255,0.05); border-right: 1px solid rgba(255,255,255,0.05); }
  .compare-table td:nth-child(3) { background: rgba(91,43,224,0.06); color: var(--text); text-align: center; font-weight: 500; border-left: 1px solid rgba(124,78,245,0.2); border-right: 1px solid rgba(124,78,245,0.2); }
  .compare-table tr:last-child td:nth-child(2) { border-radius: 0 0 12px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .compare-table tr:last-child td:nth-child(3) { border-radius: 0 0 12px 12px; border-bottom: 1px solid rgba(124,78,245,0.25); }
  .highlight-val {
    color: var(--violet-light) !important; font-weight: 500 !important;
    font-family: 'Aspekta', sans-serif; font-style: italic;
  }

  /* ── FEATURES GRID ── */
  .features-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px; margin-top: 64px;
  }
  .feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 32px 28px;
    position: relative; overflow: hidden;
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s, border-color 0.3s;
  }
  .feature-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(91,43,224,0.08) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.4s;
  }
  .feature-card::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--grad-primary);
    opacity: 0; transition: opacity 0.4s;
    border-radius: 16px 16px 0 0;
  }
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(91,43,224,0.2);
    border-color: rgba(124,78,245,0.35);
  }
  .feature-card:hover::before, .feature-card:hover::after { opacity: 1; }

  .feature-num {
    font-family: 'Aspekta', sans-serif; font-size: 10px; font-weight: 500;
    color: var(--violet-mid); text-transform: uppercase; letter-spacing: 0.14em;
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
  }
  .feature-num::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(124,78,245,0.3), transparent);
  }
  .feature-card h3 {
    font-family: 'Aspekta', sans-serif; font-size: 18px; font-weight: 500;
    color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em;
  }
  .feature-card p { font-size: 14px; color: var(--muted); line-height: 1.72; }

  /* ── INDUSTRIES ── */
  .industries {
    padding: 80px;
    background: var(--surface);
    position: relative; overflow: hidden;
  }
  .industries::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--violet-mid), transparent);
    opacity: 0.3;
  }

  .industry-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
  .pill {
    background: rgba(22,20,39,0.8);
    border: 1px solid var(--border);
    color: var(--text); font-size: 15px; padding: 11px 22px; border-radius: 100px;
    transition: background 0.25s, border-color 0.25s, transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s, color 0.25s;
    cursor: default;
    backdrop-filter: blur(8px);
  }
  .pill:hover {
    background: rgba(91,43,224,0.18);
    border-color: var(--violet-mid);
    color: var(--violet-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(91,43,224,0.2);
  }

  /* ── CTA BOTTOM ── */
  .cta-bottom {
    padding: 100px 80px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-bottom::before {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(91,43,224,0.18) 0%, rgba(224,65,106,0.06) 40%, transparent 70%);
    pointer-events: none;
    animation: cta-pulse 5s ease-in-out infinite alternate;
  }
  @keyframes cta-pulse {
    0%  { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100%{ transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
  }
  .cta-bottom::after {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(124,78,245,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(124,78,245,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 75%);
  }

  .cta-bottom h2 {
    font-family: 'Aspekta', sans-serif; font-weight: 500;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--white); margin-bottom: 20px; position: relative; z-index: 1;
    letter-spacing: -0.02em; line-height: 1.18;
  }
  .cta-bottom p { font-size: 18px; color: var(--muted); margin-bottom: 40px; position: relative; z-index: 1; }
  .cta-btn {
    display: inline-block; padding: 18px 52px;
    background: var(--grad-primary);
    color: #fff; font-family: 'Aspekta', sans-serif; font-weight: 500; font-size: 17px;
    border-radius: 12px; text-decoration: none; cursor: pointer;
    box-shadow: 0 12px 40px rgba(91,43,224,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
    position: relative; z-index: 1; overflow: hidden;
    letter-spacing: 0.01em;
  }
  .cta-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.3s;
  }
  .cta-btn:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(91,43,224,0.6), inset 0 1px 0 rgba(255,255,255,0.2); }
  .cta-btn:hover::before { opacity: 1; }

  /* ── FOOTER ── */
  footer {
    padding: 32px 80px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    background: var(--ink); position: relative;
  }
  footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,78,245,0.4), rgba(224,65,106,0.3), transparent);
  }
  footer p { font-size: 13px; color: var(--muted); }
  footer a {
    color: var(--violet-light); text-decoration: none; font-size: 13px;
    transition: color 0.25s;
  }
  footer a:hover { color: var(--white); }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
  .fade-up:nth-child(5) { transition-delay: 0.15s; }
  .fade-up:nth-child(6) { transition-delay: 0.25s; }

  /* ── CUSTOM CURSOR GLOW ── */
  .cursor-glow {
    position: fixed; width: 320px; height: 320px;
    border-radius: 50%; pointer-events: none; z-index: 9998;
    background: radial-gradient(circle, rgba(91,43,224,0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 120px 28px 60px; }
    .form-card { margin-top: 0; }
    .section, .compare-section, .cta-bottom, .industries { padding: 64px 28px; }
    footer { padding: 28px; flex-direction: column; gap: 12px; text-align: center; }
    .hero-stats { gap: 24px; }
    nav { padding: 16px 24px; }
    .field-row { grid-template-columns: 1fr; }
  }
