:root {
    --bg-base: #07070f;
    --bg-elev: #0f0f1f;
    --bg-card: #12122a;
    --border: rgba(140, 140, 200, 0.12);
    --border-bright: rgba(168, 85, 247, 0.35);

    --text: #f4f4fa;
    --text-dim: #a4a4b8;
    --text-muted: #6f6f85;

    --electric-blue: #00e0ff;
    --electric-cyan: #22d3ee;
    --electric-green: #4ade80;
    --electric-lime: #a3e635;
    --electric-yellow: #facc15;
    --electric-orange: #fb923c;
    --electric-magenta: #ec4899;
    --electric-purple: #a855f7;
    --electric-violet: #7c3aed;

    /* Full-spectrum electric fluid gradient */
    --grad-fluid: linear-gradient(
      120deg,
      #00e0ff 0%,
      #22d3ee 14%,
      #4ade80 28%,
      #a3e635 38%,
      #facc15 50%,
      #fb923c 62%,
      #ec4899 76%,
      #a855f7 88%,
      #00e0ff 100%
    );

    --grad-soft: linear-gradient(135deg, #a855f7 0%, #00e0ff 100%);
    --grad-cta: linear-gradient(135deg, #00e0ff 0%, #a3e635 50%, #facc15 100%);
    --grad-warm: linear-gradient(135deg, #facc15 0%, #fb923c 50%, #ec4899 100%);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html {
    scroll-behavior: smooth;
    overflow-x: clip;
  }

  body {
    background: var(--bg-base);
    color: var(--text);
    font-family: 'Manrope', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    position: relative;
    width: 100%;
  }

  /* Atmospheric background blobs */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse 60% 50% at 15% 15%, rgba(168, 85, 247, 0.18), transparent 60%),
      radial-gradient(ellipse 50% 40% at 85% 30%, rgba(0, 224, 255, 0.14), transparent 60%),
      radial-gradient(ellipse 40% 35% at 75% 75%, rgba(250, 204, 21, 0.10), transparent 60%),
      radial-gradient(ellipse 40% 35% at 25% 80%, rgba(74, 222, 128, 0.08), transparent 60%),
      radial-gradient(ellipse 60% 50% at 50% 90%, rgba(236, 72, 153, 0.10), transparent 60%);
    z-index: 0;
  }

  /* subtle grain */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
  }

  /* ===== NAV ===== */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(7, 7, 15, 0.65);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
  }
  .logo {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .logo-mark {
    display: inline-block;
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fluid 8s ease-in-out infinite;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    list-style: none;
  }
  .nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    padding: 10px 22px;
    background: var(--grad-cta);
    background-size: 200% 200%;
    color: #07070f;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background-position 0.6s;
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
  }
  .nav-cta:hover {
    background-position: 100% 0;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px -8px rgba(168, 85, 247, 0.7);
  }

  /* ===== HAMBURGER + MOBILE MENU ===== */
  .hamburger {
    display: none;
    background: transparent;
    border: 1px solid var(--border-bright);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
  }
  .hamburger:hover { background: rgba(168, 85, 247, 0.1); }
  .hamburger-icon {
    width: 20px; height: 14px;
    position: relative;
  }
  .hamburger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, top 0.3s;
  }
  .hamburger-icon span:nth-child(1) { top: 0; }
  .hamburger-icon span:nth-child(2) { top: 6px; }
  .hamburger-icon span:nth-child(3) { top: 12px; }
  .hamburger.active .hamburger-icon span:nth-child(1) { top: 6px; transform: rotate(45deg); }
  .hamburger.active .hamburger-icon span:nth-child(2) { opacity: 0; }
  .hamburger.active .hamburger-icon span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

  .mobile-nav-controls {
    display: none;
    align-items: center;
    gap: 10px;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: rgba(7, 7, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-bright);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
  }
  .mobile-menu.active { transform: translateX(0); }
  .mobile-menu a {
    color: var(--text-dim);
    text-decoration: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-menu a:hover, .mobile-menu a:active { color: var(--text); padding-left: 8px; }
  .mobile-menu .mobile-cta {
    margin-top: 24px;
    padding: 16px 24px;
    background: var(--grad-cta);
    background-size: 200% 200%;
    color: #07070f;
    border-radius: 999px;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: none;
  }
  .mobile-menu .mobile-cta:hover { padding-left: 24px; color: #07070f; }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 7, 15, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 150;
  }
  .menu-backdrop.active { opacity: 1; pointer-events: auto; }

  @keyframes fluid {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  /* ===== HERO ===== */
  .hero {
    padding: 90px 0 110px;
    position: relative;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid var(--border-bright);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 30px;
    letter-spacing: 0.02em;
  }
  .eyebrow .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--electric-green);
    box-shadow: 0 0 12px var(--electric-green);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
  }

  h1.hero-headline {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: clamp(2.6rem, 6.5vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
    max-width: 1100px;
  }
  .hero-headline .fluid {
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fluid 7s ease-in-out infinite;
  }

  .hero-sub {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--text-dim);
    max-width: 720px;
    margin-bottom: 44px;
    line-height: 1.55;
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
  }
  .btn-primary {
    padding: 16px 30px;
    background: var(--grad-cta);
    background-size: 200% 200%;
    color: #07070f;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background-position 0.6s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 10px 40px -10px rgba(168, 85, 247, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 16px 50px -8px rgba(168, 85, 247, 0.65);
  }
  .btn-primary svg { transition: transform 0.25s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .btn-ghost {
    padding: 16px 26px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-bright);
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { background: rgba(168, 85, 247, 0.08); border-color: var(--electric-purple); }

  .hero-meta {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 8px;
  }

  /* Decorative orb */
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    opacity: 0.55;
  }
  .orb-1 {
    width: 380px; height: 380px;
    background: var(--electric-purple);
    top: 5%; right: -80px;
    animation: float 14s ease-in-out infinite;
  }
  .orb-2 {
    width: 280px; height: 280px;
    background: var(--electric-blue);
    bottom: -100px; left: 20%;
    animation: float 18s ease-in-out infinite reverse;
  }
  .orb-3 {
    width: 220px; height: 220px;
    background: var(--electric-yellow);
    top: 35%; left: -40px;
    opacity: 0.35;
    animation: float 22s ease-in-out infinite;
  }
  .orb-4 {
    width: 200px; height: 200px;
    background: var(--electric-green);
    bottom: 10%; right: 25%;
    opacity: 0.4;
    animation: float 16s ease-in-out infinite reverse;
  }
  @keyframes float {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(40px, -30px); }
  }

  /* ===== SECTION SHARED ===== */
  section { padding: 100px 0; position: relative; }
  .section-eyebrow {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--electric-cyan);
    margin-bottom: 18px;
    display: block;
  }
  h2 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    max-width: 900px;
  }
  h2 .fluid {
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fluid 7s ease-in-out infinite;
  }
  .section-intro {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 720px;
    margin-bottom: 60px;
  }

  /* ===== PROBLEMS ===== */
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .problem-card {
    padding: 36px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
  }
  .problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-fluid);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 20px;
    z-index: -1;
    animation: fluid 6s ease-in-out infinite;
  }
  .problem-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
  }
  .problem-card:hover::before { opacity: 0.6; }
  .problem-num {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fluid 6s ease-in-out infinite;
    margin-bottom: 14px;
    display: block;
  }
  .problem-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }
  .problem-card p {
    color: var(--text-dim);
    font-size: 0.97rem;
    line-height: 1.6;
  }

  /* ===== AI DEMO ===== */
  .ai-demo-card {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.05), rgba(168, 85, 247, 0.05));
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
  }
  .ai-demo-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    padding: 2px;
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
    animation: fluid 10s ease-in-out infinite;
  }
  .ai-demo-inner { position: relative; z-index: 2; }
  .fluid-warm {
    background: var(--grad-warm);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fluid 5s ease-in-out infinite;
  }
  .ai-chat-mock {
    background: rgba(7, 7, 15, 0.6);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    font-family: 'Manrope', sans-serif;
    margin-top: 16px;
  }
  .chat-line {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    align-items: flex-start;
  }
  .chat-line:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  .chat-label {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-dim);
  }
  .ai-label {
    background: var(--grad-fluid);
    background-size: 300% 300%;
    animation: fluid 6s ease-in-out infinite;
    color: #07070f;
    border-color: transparent;
  }
  .chat-line span:not(.chat-label):not(.highlight-mention) {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.55;
    padding-top: 8px;
  }
  .chat-line.user span:not(.chat-label) { color: var(--text-dim); }
  .highlight-mention {
    background: var(--grad-warm);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    animation: fluid 4s ease-in-out infinite;
  }
  @media (max-width: 700px) {
    .ai-demo-card { padding: 40px 26px; }
  }
  .solution {
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.04) 50%, transparent 100%);
  }
  .solution-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .feature-list li {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .feature-list li:hover {
    border-color: var(--border-bright);
    transform: translateX(4px);
  }
  .feature-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(0, 224, 255, 0.2));
    border: 1px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-cyan);
  }
  .feature-list h4 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .feature-list p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  /* ===== OFFER ===== */
  .offer-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(168, 85, 247, 0.08));
    border: 1px solid var(--border-bright);
    border-radius: 28px;
    padding: 60px;
    position: relative;
    overflow: hidden;
  }
  .offer-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    padding: 2px;
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0.4;
    pointer-events: none;
    animation: fluid 8s ease-in-out infinite;
  }
  .offer-name {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  .offer-name .fluid {
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fluid 7s ease-in-out infinite;
  }
  .offer-tagline {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 600px;
  }
  .price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }
  .price-block {
    padding: 24px;
    background: rgba(7, 7, 15, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
  }
  .price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
  }
  .price-amount {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .price-detail {
    font-size: 0.88rem;
    color: var(--text-dim);
  }
  .offer-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-bottom: 36px;
  }
  .offer-guarantees span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-dim);
  }
  .offer-guarantees svg { color: var(--electric-green); }

  .offer-footnote {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-style: italic;
    margin-top: 24px;
  }

  /* ===== ABOUT ===== */
  .about {
    background: linear-gradient(180deg, transparent, rgba(0, 224, 255, 0.03));
  }
  .about-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .avatar-frame {
    aspect-ratio: 1;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elev));
    border: 1px solid var(--border-bright);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    padding: 20px;
  }
  .avatar-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0.5;
    animation: fluid 9s ease-in-out infinite;
  }
  .about p {
    color: var(--text-dim);
    margin-bottom: 18px;
    font-size: 1.05rem;
  }
  .about p strong { color: var(--text); font-weight: 600; }

  /* ===== CASES ===== */
  .case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }
  .case-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
  }
  .case-industry {
    display: inline-block;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--electric-cyan);
    padding: 5px 12px;
    background: rgba(0, 224, 255, 0.08);
    border-radius: 999px;
    margin-bottom: 22px;
  }
  .case-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }
  .case-result {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fluid 6s ease-in-out infinite;
    margin-bottom: 6px;
    display: block;
    letter-spacing: -0.02em;
  }
  .case-result-label {
    color: var(--text-muted);
    font-size: 0.85rem;
  }

  /* ===== WEBSITES CALLOUT ===== */
  .websites-callout {
    margin-top: 40px;
    padding: 36px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .websites-callout h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .websites-callout p {
    color: var(--text-dim);
    font-size: 0.97rem;
    max-width: 520px;
  }
  .arrow-link {
    color: var(--electric-cyan);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s;
    white-space: nowrap;
  }
  .arrow-link:hover { gap: 14px; }

  /* ===== FINAL CTA ===== */
  .final-cta {
    text-align: center;
    padding: 130px 0;
    position: relative;
  }
  .final-cta h2 {
    margin: 0 auto 24px;
  }
  .final-cta .section-intro {
    margin: 0 auto 44px;
  }

  /* ===== FOOTER ===== */
  footer {
    border-top: 1px solid var(--border);
    padding: 50px 0 40px;
    background: var(--bg-elev);
    position: relative;
    z-index: 2;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-meta { color: var(--text-muted); font-size: 0.88rem; }
  .footer-contact {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 0.92rem;
  }
  .footer-contact a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--electric-cyan); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-nav-controls { display: flex; }
    .hamburger { display: inline-flex; }
    .problems-grid { grid-template-columns: 1fr; }
    .solution-wrap { grid-template-columns: 1fr; gap: 50px; }
    .about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .avatar-frame { max-width: 320px; margin: 0 auto; }
    .case-grid { grid-template-columns: 1fr; }
    .price-grid { grid-template-columns: 1fr; }
    .offer-card { padding: 36px 28px; }
    .hero { padding: 60px 0 80px; }
    section { padding: 70px 0; }
    .websites-callout { flex-direction: column; align-items: flex-start; }
    /* Shrink orbs so they don't leak off screen */
    .orb-1 { width: 240px; height: 240px; right: -60px; }
    .orb-2 { width: 200px; height: 200px; left: 10%; }
    .orb-3 { width: 160px; height: 160px; left: -30px; }
    .orb-4 { width: 160px; height: 160px; right: 10%; }
    /* Prevent any nested element from being wider than viewport */
    .container { padding: 0 20px; }
  }
  @media (max-width: 480px) {
    .nav-cta { padding: 8px 16px; font-size: 0.82rem; }
    .hamburger { width: 38px; height: 38px; }
    h1.hero-headline { font-size: clamp(2rem, 9vw, 3rem); }
    .offer-card { padding: 28px 20px; }
    .ai-demo-card { padding: 32px 22px; }
  }

/* ===== AUDIT PAGE EXTRAS ===== */

:root {
    --bg-base: #07070f;
    --bg-elev: #0f0f1f;
    --bg-card: #12122a;
    --bg-input: #0a0a18;
    --border: rgba(140, 140, 200, 0.12);
    --border-bright: rgba(168, 85, 247, 0.35);
    --border-input: rgba(140, 140, 200, 0.18);
    --border-input-focus: rgba(0, 224, 255, 0.6);

    --text: #f4f4fa;
    --text-dim: #a4a4b8;
    --text-muted: #6f6f85;

    --electric-blue: #00e0ff;
    --electric-cyan: #22d3ee;
    --electric-green: #4ade80;
    --electric-lime: #a3e635;
    --electric-yellow: #facc15;
    --electric-orange: #fb923c;
    --electric-magenta: #ec4899;
    --electric-purple: #a855f7;
    --electric-violet: #7c3aed;

    --grad-fluid: linear-gradient(
      120deg,
      #00e0ff 0%, #22d3ee 14%, #4ade80 28%, #a3e635 38%,
      #facc15 50%, #fb923c 62%, #ec4899 76%, #a855f7 88%, #00e0ff 100%
    );
    --grad-cta: linear-gradient(135deg, #00e0ff 0%, #a3e635 50%, #facc15 100%);
    --grad-warm: linear-gradient(135deg, #facc15 0%, #fb923c 50%, #ec4899 100%);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg-base);
    color: var(--text);
    font-family: 'Manrope', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse 60% 50% at 15% 15%, rgba(168, 85, 247, 0.18), transparent 60%),
      radial-gradient(ellipse 50% 40% at 85% 30%, rgba(0, 224, 255, 0.14), transparent 60%),
      radial-gradient(ellipse 40% 35% at 75% 75%, rgba(250, 204, 21, 0.10), transparent 60%),
      radial-gradient(ellipse 40% 35% at 25% 80%, rgba(74, 222, 128, 0.08), transparent 60%);
    z-index: 0;
  }
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

  @keyframes fluid {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
  }
  @keyframes float {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(40px, -30px); }
  }

  /* ===== NAV ===== */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(7, 7, 15, 0.65);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
  }
  .logo {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--text);
    display: inline-flex;
    align-items: center;
  }
  .logo-mark {
    display: inline-block;
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fluid 8s ease-in-out infinite;
  }
  .back-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, gap 0.25s;
  }
  .back-link:hover { color: var(--text); gap: 12px; }

  /* ===== HEADER ===== */
  .page-header {
    padding: 70px 0 50px;
    position: relative;
  }
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.5;
  }
  .orb-1 { width: 360px; height: 360px; background: var(--electric-purple); top: 0; right: -100px; animation: float 14s ease-in-out infinite; }
  .orb-2 { width: 260px; height: 260px; background: var(--electric-blue); top: 30%; left: -80px; animation: float 18s ease-in-out infinite reverse; }
  .orb-3 { width: 200px; height: 200px; background: var(--electric-yellow); bottom: 0; right: 30%; opacity: 0.3; animation: float 22s ease-in-out infinite; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid var(--border-bright);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 22px;
    letter-spacing: 0.02em;
  }
  .eyebrow .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--electric-green);
    box-shadow: 0 0 12px var(--electric-green);
    animation: pulse 2s ease-in-out infinite;
  }

  h1 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    max-width: 800px;
  }
  h1 .fluid {
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fluid 7s ease-in-out infinite;
  }
  .header-sub {
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    color: var(--text-dim);
    max-width: 720px;
    line-height: 1.55;
  }

  /* ===== MAIN GRID ===== */
  .main-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    padding-bottom: 100px;
    align-items: start;
  }

  /* ===== FORM ===== */
  .form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    border-radius: 24px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
  }
  .form-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: var(--grad-fluid);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0.4;
    pointer-events: none;
    animation: fluid 9s ease-in-out infinite;
  }
  .form-card h2 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 1.45rem;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .form-card .form-intro {
    color: var(--text-dim);
    font-size: 0.96rem;
    margin-bottom: 32px;
  }
  form { position: relative; z-index: 2; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
  .field { display: flex; flex-direction: column; margin-bottom: 18px; }
  .field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
  }
  .field label .req { color: var(--electric-magenta); margin-left: 3px; }
  .field input, .field select, .field textarea {
    background: var(--bg-input);
    border: 1px solid var(--border-input);
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.97rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--border-input-focus);
    box-shadow: 0 0 0 4px rgba(0, 224, 255, 0.08);
  }
  .field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
  .field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a4a4b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
  }
  .field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }

  .submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: var(--grad-cta);
    background-size: 200% 200%;
    color: #07070f;
    border: none;
    border-radius: 14px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.02rem;
    cursor: pointer;
    transition: background-position 0.6s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 10px 40px -10px rgba(168, 85, 247, 0.5);
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .submit-btn:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 16px 50px -8px rgba(168, 85, 247, 0.65);
  }
  .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
  .form-footnote {
    text-align: center;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.85rem;
  }

  .success-message {
    display: none;
    padding: 30px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.12), rgba(0, 224, 255, 0.08));
    border: 1px solid var(--electric-green);
    border-radius: 16px;
    text-align: center;
  }
  .success-message.active { display: block; }
  .success-message h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--electric-green);
  }
  .success-message p { color: var(--text-dim); }

  /* ===== VALUE SIDE ===== */
  .value-side { padding-top: 14px; }
  .value-side h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
  }
  .value-side h3 .fluid {
    background: var(--grad-warm);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fluid 5s ease-in-out infinite;
  }
  .value-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
  }
  .value-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .value-num {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--grad-fluid);
    background-size: 300% 300%;
    animation: fluid 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    color: #07070f;
    font-size: 0.95rem;
  }
  .value-list h4 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .value-list p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.55; }

  .what-happens {
    padding: 28px;
    background: rgba(7, 7, 15, 0.4);
    border: 1px solid var(--border);
    border-radius: 16px;
  }
  .what-happens h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--electric-cyan);
    margin-bottom: 16px;
  }
  .what-happens ol {
    list-style: none;
    counter-reset: step;
  }
  .what-happens ol li {
    counter-increment: step;
    padding: 8px 0 8px 32px;
    position: relative;
    color: var(--text-dim);
    font-size: 0.95rem;
  }
  .what-happens ol li::before {
    content: counter(step);
    position: absolute;
    left: 0; top: 8px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(0, 224, 255, 0.1);
    border: 1px solid var(--electric-cyan);
    color: var(--electric-cyan);
    font-family: 'Unbounded', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== FOOTER ===== */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 0 30px;
    background: var(--bg-elev);
    position: relative;
    z-index: 2;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-meta { color: var(--text-muted); font-size: 0.88rem; }
  .footer-contact { display: flex; gap: 28px; flex-wrap: wrap; font-size: 0.92rem; }
  .footer-contact a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
  .footer-contact a:hover { color: var(--electric-cyan); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .main-grid { grid-template-columns: 1fr; gap: 40px; }
    .value-side { order: -1; padding-top: 0; }
    .form-card { padding: 32px 24px; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .page-header { padding: 50px 0 30px; }
  }