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

    :root {
      --navy: #0D1220;
      --navy2: #111B2E;
      --navy3: #162038;
      --blue: #E8622A;
      --blue-light: #FF7A3D;
      --cyan: #FF9A5C;
      --green: #00D4A0;
      --orange: #FF6B35;
      --text: #E8ECF4;
      --text-muted: #8A95B0;
      --border: rgba(255,255,255,0.07);
      --card: rgba(255,255,255,0.04);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--navy);
      color: var(--text);
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 60px;
      background: rgba(11,15,26,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s;
    }
    
    /* Brand logo on dark nav/footer */
    .brand { display:flex; align-items:center; gap:12px; }
    .brand-badge{
      display:inline-flex; align-items:center;
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.10);
      border-radius: 16px;
      padding: 10px 14px;
      box-shadow: 0 12px 34px rgba(0,0,0,0.32);
    }
    .brand-logo{ height: 44px; width: auto; display:block; }
    .footer-logo-wrap{
      display:inline-flex; align-items:center;
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.10);
      border-radius: 16px;
      padding: 12px 16px;
      width: fit-content;
      box-shadow: 0 12px 34px rgba(0,0,0,0.22);
    }
.logo {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.03em;
    }
    .logo span { color: var(--cyan); }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: var(--text); }
    .nav-cta {
      background: var(--blue);
      color: #fff; border: none; padding: 10px 24px;
      border-radius: 8px; font-family: 'Syne', sans-serif;
      font-weight: 700; font-size: 0.9rem; cursor: pointer;
      transition: all 0.25s; text-decoration: none; display: inline-block;
    }
    .nav-cta:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,111,255,0.4); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 120px 60px 80px;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(59,111,255,0.12) 0%, transparent 70%),
                  radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,212,255,0.08) 0%, transparent 60%);
    }
    .hero-grid {
      position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
      background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1300px; margin: 0 auto; width: 100%; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.25);
      border-radius: 100px; padding: 6px 16px; font-size: 0.8rem;
      color: var(--cyan); font-weight: 500; margin-bottom: 28px;
      animation: fadeUp 0.6s ease both;
    }
    .hero-badge-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

    h1.hero-title {
      font-size: clamp(2.8rem, 5vw, 4.4rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.04em;
      margin-bottom: 24px;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    h1.hero-title .accent { color: var(--blue-light); }
    h1.hero-title .accent2 { 
      background: linear-gradient(90deg, var(--cyan), var(--green));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }

    .hero-sub {
      font-size: 1.15rem; line-height: 1.7; color: var(--text-muted);
      max-width: 520px; margin-bottom: 40px;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .hero-actions {
      display: flex; gap: 16px; flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--blue), #5B8FFF);
      color: #fff; border: none; padding: 16px 32px;
      border-radius: 10px; font-family: 'Syne', sans-serif;
      font-weight: 700; font-size: 1rem; cursor: pointer;
      transition: all 0.25s; text-decoration: none; display: inline-block;
      box-shadow: 0 4px 24px rgba(59,111,255,0.35);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,111,255,0.5); }
    .btn-ghost {
      background: transparent; color: var(--text);
      border: 1px solid var(--border); padding: 16px 32px;
      border-radius: 10px; font-family: 'Syne', sans-serif;
      font-weight: 600; font-size: 1rem; cursor: pointer;
      transition: all 0.25s; text-decoration: none; display: inline-block;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

    .hero-stats {
      display: flex; gap: 40px; margin-top: 56px;
      animation: fadeUp 0.7s 0.4s ease both;
    }
    .stat-item { }
    .stat-num { font-family: 'Syne', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--text); }
    .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

    /* Dashboard mockup */
    .hero-visual {
      position: relative;
      animation: fadeIn 1s 0.5s ease both;
    }
    .dashboard-mock {
      background: var(--navy2);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    }
    .mock-topbar {
      background: var(--navy3); padding: 12px 20px;
      display: flex; align-items: center; gap: 12px;
      border-bottom: 1px solid var(--border);
    }
    .mock-dot { width: 10px; height: 10px; border-radius: 50%; }
    .mock-title { font-size: 0.8rem; color: var(--text-muted); margin-left: 8px; font-weight: 500; }
    .mock-body { display: flex; height: 340px; }
    .mock-sidebar {
      width: 160px; background: rgba(255,255,255,0.02);
      border-right: 1px solid var(--border); padding: 16px 0;
      flex-shrink: 0;
    }
    .mock-nav-item {
      padding: 9px 16px; font-size: 0.72rem; color: var(--text-muted);
      display: flex; align-items: center; gap: 8px; cursor: pointer;
      transition: all 0.15s;
    }
    .mock-nav-item.active { color: var(--text); background: rgba(59,111,255,0.12); border-right: 2px solid var(--blue); }
    .mock-nav-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.5; }
    .mock-content { flex: 1; padding: 20px; overflow: hidden; }
    .mock-section-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
    .mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
    .mock-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 8px; padding: 12px;
    }
    .mock-card-label { font-size: 0.65rem; color: var(--text-muted); margin-bottom: 4px; }
    .mock-card-val { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; }
    .mock-progress-row { margin-bottom: 10px; }
    .mock-progress-label { display: flex; justify-content: space-between; font-size: 0.65rem; color: var(--text-muted); margin-bottom: 5px; }
    .mock-bar { height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
    .mock-bar-fill { height: 100%; border-radius: 3px; transition: width 2s ease; }
    .mock-pill {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(0,229,160,0.1); border: 1px solid rgba(0,229,160,0.2);
      border-radius: 100px; padding: 3px 10px; font-size: 0.65rem; color: var(--green);
      margin-top: 8px;
    }

    @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
    @keyframes fadeIn { from{opacity:0} to{opacity:1} }

    /* ── LOGOS / SOCIAL PROOF ── */
    .logos-strip {
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 28px 60px; overflow: hidden;
      background: rgba(255,255,255,0.015);
    }
    .logos-inner { display: flex; align-items: center; gap: 60px; animation: slide 30s linear infinite; white-space: nowrap; }
    .logo-item { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; flex-shrink: 0; }
    @keyframes slide { from{transform:translateX(0)} to{transform:translateX(-50%)} }

    /* ── SECTION COMMONS ── */
    section { padding: 100px 60px; }
    .section-inner { max-width: 1300px; margin: 0 auto; }
    .section-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(59,111,255,0.1); border: 1px solid rgba(59,111,255,0.25);
      border-radius: 100px; padding: 5px 14px; font-size: 0.75rem;
      color: var(--blue-light); font-weight: 600; margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase;
    }
    .section-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 20px; }
    .section-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 560px; }

    /* ── FEATURES ── */
    .features { background: var(--navy2); }
    .features-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 70px; }
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .feature-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 32px;
      transition: all 0.3s; cursor: default;
      position: relative; overflow: hidden;
    }
    .feature-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .feature-card:hover { border-color: rgba(59,111,255,0.3); transform: translateY(-4px); background: rgba(255,255,255,0.06); }
    .feature-card:hover::before { opacity: 1; }
    .feature-icon {
      width: 48px; height: 48px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 20px;
    }
    .feature-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
    .feature-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

    /* ── HOW IT WORKS ── */
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 70px; position: relative; }
    .steps::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--blue), var(--border), transparent); }
    .step { text-align: center; padding: 0 20px; }
    .step-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--navy2); border: 2px solid var(--blue);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800;
      color: var(--blue); margin: 0 auto 24px; position: relative; z-index: 1;
    }
    .step-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
    .step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

    /* ── PRICING ── */
    .pricing { background: var(--navy2); }
    .pricing-header { text-align: center; margin-bottom: 60px; }
    .pricing-header .section-sub { margin: 0 auto; }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .price-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; padding: 40px 36px;
      transition: all 0.3s; position: relative; overflow: hidden;
    }
    .price-card.featured {
      border-color: var(--blue); background: linear-gradient(135deg, rgba(59,111,255,0.12), rgba(59,111,255,0.04));
    }
    .price-card.featured::before {
      content: 'MOST POPULAR';
      position: absolute; top: 20px; right: -28px;
      background: var(--blue); color: #fff;
      font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em;
      padding: 4px 40px; transform: rotate(40deg);
    }
    .price-name { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
    .price-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; }
    .price-amount { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
    .price-amount sup { font-size: 1.4rem; vertical-align: super; }
    .price-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 32px; }
    .price-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 28px; }
    .price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
    .price-features li { font-size: 0.88rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
    .price-features li .check { color: var(--green); font-size: 1rem; }
    .price-features li.muted { opacity: 0.4; }
    .btn-outline {
      display: block; text-align: center; padding: 14px;
      border: 1px solid var(--border); border-radius: 10px;
      color: var(--text); font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 0.9rem; text-decoration: none; transition: all 0.25s;
    }
    .btn-outline:hover { border-color: var(--blue); color: var(--blue); }
    .btn-filled {
      display: block; text-align: center; padding: 14px;
      background: var(--blue); border-radius: 10px;
      color: #fff; font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 0.9rem; text-decoration: none; transition: all 0.25s;
    }
    .btn-filled:hover { background: var(--blue-light); box-shadow: 0 6px 20px rgba(59,111,255,0.4); }

    /* ── TESTIMONIALS ── */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
    .testi-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 32px;
    }
    .stars { color: #FFB800; font-size: 0.9rem; margin-bottom: 16px; }
    .testi-quote { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.9rem; color: #fff;
    }
    .testi-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; }
    .testi-biz { font-size: 0.78rem; color: var(--text-muted); }

    /* ── CTA STRIP ── */
    .cta-section {
      background: linear-gradient(135deg, rgba(59,111,255,0.15), rgba(0,212,255,0.08));
      border-top: 1px solid rgba(59,111,255,0.2);
      border-bottom: 1px solid rgba(59,111,255,0.2);
      text-align: center; padding: 100px 60px;
    }
    .cta-section .section-title { max-width: 700px; margin: 0 auto 20px; }
    .cta-section .section-sub { margin: 0 auto 40px; }
    .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .cta-note { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }

    /* ── FOOTER ── */
    footer {
      background: var(--navy); border-top: 1px solid var(--border);
      padding: 60px 60px 40px;
    }
    .footer-inner { max-width: 1300px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
    .footer-brand .logo { font-size: 1.3rem; margin-bottom: 14px; display: block; }
    .footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; max-width: 280px; }
    .footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
    .footer-col a:hover { color: var(--text); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--text-muted); }

    /* ── COMPARISON ── */
    .compare-table { width: 100%; border-collapse: collapse; margin-top: 60px; }
    .compare-table th, .compare-table td { padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
    .compare-table th { font-family: 'Syne', sans-serif; font-weight: 700; text-align: left; background: var(--navy3); }
    .compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; }
    .compare-table tr:hover td { background: rgba(255,255,255,0.02); }
    .compare-check { color: var(--green); font-size: 1.1rem; }
    .compare-x { color: #FF4D4D; font-size: 1rem; }
    .compare-table .us-col { color: var(--blue-light); font-weight: 700; }
    .compare-table th.us-col { background: rgba(59,111,255,0.12); }

    /* ── MOBILE ── */
    @media (max-width: 1024px) {
      nav { padding: 16px 30px; }
      .nav-links { display: none; }
      section { padding: 70px 30px; }
      .hero { padding: 100px 30px 70px; }
      .hero-inner { grid-template-columns: 1fr; gap: 50px; }
      .hero-visual { order: -1; }
      .features-header { grid-template-columns: 1fr; gap: 20px; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
      .steps::before { display: none; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .logos-strip { padding: 20px 30px; }
    }
    @media (max-width: 640px) {
      .hero-stats { gap: 24px; }
      .features-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    }

    /* Scroll-reveal */
    .reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  

/* Deployment optimizations */
nav.nav--scrolled {
  background: rgba(11,15,26,0.97) !important;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
/* ===== HEADER LOGO VISIBILITY FIX ===== */
.brand-badge{
  background: #ffffff;      /* solid white, not translucent */
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.brand-logo{
  height: 44px;             /* bigger */
  width: auto;
  display: block;
  opacity: 1;               /* kill any fading */
  filter: none;             /* no weird dimming */
}
/* Force nav background to be solid (no transparency) */
nav{
  background: #0b0f1a !important;
  backdrop-filter: none !important;
}
/* Slight contrast boost for PNG logos */
.brand-logo{
  filter: contrast(1.15) saturate(1.05);
}
