:root {
    --indigo: #4F46E5;
    --indigo-light: #3aa2bb;
    --indigo-dim: #1E1B4B;
    --teal: #1D9E75;
    --teal-light: #34D399;
    --void: #080C18;
    --surface: #0D1225;
    --surface2: #131929;
    --border: rgba(79,70,229,0.18);
    --text: #F1F5FF;
    --muted: #6B7280;
    --subtle: #9CA3AF;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Sora', sans-serif;
    background: var(--void);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ── GRID TEXTURE ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(79,70,229,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(79,70,229,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 60px;
    background: rgba(8,12,24,0.8);
    backdrop-filter: blur(16px);
    border-bottom: 0.5px solid var(--border);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo-icon {
    width: 36px; height: 36px;
    background: var(--indigo);
    border-radius: 9px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    padding: 7px;
  }
  .logo-icon span {
    border-radius: 2px;
    background: #fff;
  }
  .logo-icon span:nth-child(2),
  .logo-icon span:nth-child(3) { opacity: 0.3; }
  .logo-icon span:nth-child(4) { opacity: 0.65; }
  .logo-wordmark {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #fff;
  }
  .logo-wordmark em { font-style: normal; color: var(--indigo-light); }
  .logo-image {
    max-height: 65px;
    width: auto;
    filter: brightness(1.35) drop-shadow(0 0 25px rgba(129, 140, 248, 0.8)) drop-shadow(0 0 50px rgba(129, 140, 248, 0.5));
    transition: filter 0.3s ease;
  }
  .logo:hover .logo-image {
    filter: brightness(1.5) drop-shadow(0 0 35px rgba(129, 140, 248, 1)) drop-shadow(0 0 70px rgba(129, 140, 248, 0.7));
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px;
    color: var(--subtle);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: #fff; }
  .nav-cta {
    background: var(--indigo);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #4338CA !important; }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 60px 80px;
    text-align: center;
    z-index: 1;
    margin-top: 0;
  }
  .hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(79,70,229,0.22) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,70,229,0.12);
    border: 0.5px solid rgba(129,140,248,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    color: var(--indigo-light);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal-light);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  .hero h1 {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero h1 .accent { color: var(--indigo-light); }
  .hero h1 .teal { color: var(--teal-light); }
  .hero p {
    font-size: 18px;
    color: var(--subtle);
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeUp 0.6s 0.2s ease both;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--indigo);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: #4338CA; transform: translateY(-1px); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 0.5px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.35); transform: translateY(-1px); }

  /* ── STATS BAR ── */
  .stats {
    position: relative;
    z-index: 1;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    background: rgba(13,18,37,0.6);
    padding: 28px 60px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
  }
  .stat { text-align: center; }
  .stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    font-family: 'JetBrains Mono', monospace;
  }
  .stat-num span { color: var(--indigo-light); }
  .stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; letter-spacing: 0.05em; }

  /* ── SECTIONS ── */
  section { position: relative; z-index: 1; }
  .container { max-width: 1100px; margin: 0 auto; padding: 0 60px; }
  .section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--indigo-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 16px;
    color: var(--subtle);
    max-width: 520px;
    line-height: 1.7;
  }

  /* ── FEATURES ── */
  .features { padding: 100px 0; }
  .features-header { text-align: center; margin-bottom: 64px; }
  .features-header .section-sub { margin: 0 auto; }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .feature-card {
    background: var(--surface);
    border: 0.5px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .feature-card:hover { border-color: rgba(79,70,229,0.5); transform: translateY(-3px); }
  .feature-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }
  .feature-card p { font-size: 14px; color: var(--subtle); line-height: 1.65; }

  /* ── HOW IT WORKS ── */
  .how { padding: 100px 0; background: rgba(13,18,37,0.5); }
  .steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--indigo), var(--border), transparent);
  }
  .step { text-align: center; padding: 0 20px; }
  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--indigo-dim);
    border: 1.5px solid var(--indigo);
    color: var(--indigo-light);
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  .step h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
  .step p { font-size: 13px; color: var(--subtle); line-height: 1.6; }

  /* ── SERVICES ── */
  .services { padding: 100px 0; }
  .services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
  }
  .service-list { display: flex; flex-direction: column; gap: 16px; }
  .service-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    border: 0.5px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
  }
  .service-item:hover, .service-item.active {
    background: var(--surface);
    border-color: var(--border);
  }
  .service-dot {
    width: 32px; height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .service-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
  .service-item p { font-size: 13px; color: var(--subtle); line-height: 1.6; }
  .services-visual {
    background: var(--surface);
    border: 0.5px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mock-dashboard { width: 100%; }
  .mock-bar { height: 8px; border-radius: 4px; margin-bottom: 10px; }
  .mock-row { display: flex; gap: 10px; margin-bottom: 14px; }
  .mock-chip {
    height: 32px;
    border-radius: 8px;
    background: var(--surface2);
    border: 0.5px solid var(--border);
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 11px;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
  }
  .mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    margin-top: 16px;
  }
  .mock-chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--indigo-dim);
    transition: background 0.2s;
  }
  .mock-chart-bar.hi { background: var(--indigo); }

  /* ── PRICING ── */
  .pricing { padding: 100px 0; background: rgba(13,18,37,0.5); }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 60px;
  }
  .plan {
    background: var(--surface);
    border: 0.5px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
  }
  .plan.featured {
    border-color: var(--indigo);
    background: linear-gradient(160deg, #1E1B4B 0%, var(--surface) 100%);
  }
  .plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--indigo);
    color: #fff;
    font-size: 11px;
    padding: 4px 14px;
    border-radius: 100px;
    font-weight: 500;
    white-space: nowrap;
  }
  .plan-name { font-size: 13px; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'JetBrains Mono', monospace; }
  .plan-price { font-size: 42px; font-weight: 700; letter-spacing: -2px; margin-bottom: 4px; }
  .plan-price span { font-size: 16px; color: var(--muted); font-weight: 400; }
  .plan-desc { font-size: 13px; color: var(--subtle); margin-bottom: 24px; }
  .plan-features { list-style: none; margin-bottom: 28px; }
  .plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--subtle);
    padding: 7px 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.04);
  }
  .plan-features li::before {
    content: '';
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(29,158,117,0.15);
    border: 0.5px solid var(--teal);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%231D9E75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }
  .plan-btn {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: block;
  }
  .plan-btn-outline {
    background: transparent;
    color: var(--text);
    border: 0.5px solid rgba(255,255,255,0.15) !important;
  }
  .plan-btn-outline:hover { border-color: rgba(255,255,255,0.35) !important; }
  .plan-btn-fill { background: var(--indigo); color: #fff; }
  .plan-btn-fill:hover { background: #4338CA; }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 100px 0; }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 60px;
  }
  .testi-card {
    background: var(--surface);
    border: 0.5px solid var(--border);
    border-radius: 16px;
    padding: 28px;
  }
  .testi-stars { color: #FBBF24; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
  .testi-text { font-size: 14px; color: var(--subtle); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
  }
  .testi-name { font-size: 13px; font-weight: 600; }
  .testi-role { font-size: 12px; color: var(--muted); }

  /* ── CTA ── */
  .cta-section {
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(79,70,229,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-section h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 16px; }
  .cta-section p { font-size: 16px; color: var(--subtle); margin-bottom: 36px; }

  /* ── CONTACT SECTION ── */
  .contact-section {
    padding: 100px 0;
    background: rgba(13,18,37,0.5);
  }
  .contact-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(79,70,229,0.1);
    border: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo-light);
    flex-shrink: 0;
  }
  .info-item h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .info-item a {
    font-size: 14px;
    color: var(--subtle);
    text-decoration: none;
    transition: color 0.2s;
  }
  .info-item a:hover {
    color: var(--indigo-light);
  }
  .info-item p {
    font-size: 14px;
    color: var(--subtle);
    margin: 0;
  }
  .social-links {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 0.5px solid var(--border);
  }
  .social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(79,70,229,0.1);
    border: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo-light);
    transition: all 0.2s;
    text-decoration: none;
  }
  .social-icon:hover {
    background: var(--indigo);
    color: #fff;
    border-color: var(--indigo);
    transform: translateY(-3px);
  }

  /* ── CONTACT FORM ── */
  .contact-form {
    background: var(--surface);
    border: 0.5px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
  }
  .form-group input,
  .form-group textarea {
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--surface2);
    border: 0.5px solid var(--border);
    color: var(--text);
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--indigo);
  }
  .form-group textarea {
    resize: vertical;
  }
  .contact-form button {
    margin-top: 8px;
    align-self: flex-start;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 0.5px solid var(--border);
    padding: 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
  }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: #fff; }
  .footer-copy { font-size: 13px; color: var(--muted); }
  .footer-copy span { color: var(--indigo-light); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 16px 32px; }
    .container { padding: 0 32px; }
    .hero { padding: 100px 32px 60px; }
    .stats { gap: 40px; padding: 28px 32px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .services-layout { gap: 40px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    nav { 
      padding: 14px 20px; 
      justify-content: space-between;
    }
    .logo { 
      gap: 8px; 
    }
    .logo-image { 
      max-height: 45px; 
    }
    .logo-wordmark { 
      font-size: 17px; 
    }
    .nav-links { display: none; }
    
    .hero { 
      padding: 80px 20px 50px; 
      min-height: auto;
    }
    .hero h1 { 
      font-size: 32px;
      margin-bottom: 16px;
    }
    .hero p { 
      font-size: 15px; 
      margin-bottom: 28px;
    }
    .hero-badge { 
      font-size: 11px; 
      margin-bottom: 16px;
    }
    .hero-actions { 
      flex-direction: column;
      gap: 10px;
    }
    .btn-primary, .btn-secondary { 
      width: 100%;
      padding: 12px 24px;
      font-size: 14px;
    }
    
    .stats { 
      padding: 20px;
      gap: 20px;
      flex-direction: column;
    }
    .stat-num { 
      font-size: 24px; 
    }
    .stat-label { 
      font-size: 11px; 
    }
    
    .container { padding: 0 20px; }
    
    .features { padding: 60px 0; }
    .features-header { margin-bottom: 40px; }
    .features-grid { 
      grid-template-columns: 1fr; 
      gap: 16px;
    }
    .feature-card { 
      padding: 24px 20px; 
    }
    .feature-card h3 { 
      font-size: 15px; 
    }
    .feature-card p { 
      font-size: 13px; 
    }
    
    .how { padding: 60px 0; }
    .steps { 
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 40px;
    }
    .steps::before { display: none; }
    .step { padding: 0; }
    .step-num { 
      width: 48px; 
      height: 48px; 
      font-size: 14px;
      margin-bottom: 12px;
    }
    .step h4 { font-size: 14px; }
    .step p { font-size: 12px; }
    
    .services { padding: 60px 0; }
    .services-layout { 
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .service-list { gap: 12px; }
    .service-item { 
      padding: 16px; 
      gap: 12px;
    }
    .service-item h4 { font-size: 14px; }
    .service-item p { font-size: 12px; }
    .services-visual { 
      min-height: 300px;
      padding: 24px;
    }
    
    .pricing { padding: 60px 0; }
    .pricing-grid { 
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .plan { 
      padding: 28px 20px; 
    }
    .plan-price { 
      font-size: 32px; 
    }
    .plan-features li { 
      font-size: 12px; 
      padding: 5px 0;
    }
    
    .testimonials { padding: 60px 0; }
    .testi-grid { 
      grid-template-columns: 1fr; 
      gap: 16px;
    }
    .testi-card { 
      padding: 20px; 
    }
    .testi-text { 
      font-size: 13px; 
      margin-bottom: 16px;
    }
    
    .cta-section { 
      padding: 60px 20px; 
    }
    .cta-section h2 { 
      font-size: 28px; 
      margin-bottom: 12px;
    }
    .cta-section p { 
      font-size: 14px; 
      margin-bottom: 24px;
    }
    .cta-glow { 
      width: 400px; 
      height: 200px;
    }

    .contact-section { padding: 60px 0; }
    .contact-header { margin-bottom: 40px; }
    .contact-wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .contact-info { gap: 24px; }
    .info-item { gap: 12px; }
    .info-icon { width: 40px; height: 40px; }
    .contact-form { padding: 32px 24px; }
    .social-icons { gap: 10px; }
    .social-icon { width: 40px; height: 40px; }
    
    footer { 
      padding: 28px 20px; 
      flex-direction: column; 
      text-align: center;
      gap: 16px;
    }
    .footer-links { 
      justify-content: center; 
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-links a { 
      font-size: 12px; 
    }
    .footer-copy { 
      font-size: 12px; 
    }
  }

  @media (max-width: 480px) {
    nav { 
      padding: 12px 16px; 
    }
    .logo-image { 
      max-height: 45px; 
    }
    .logo-wordmark { 
      font-size: 17px; 
    }
    
    .hero { 
      padding: 70px 16px 40px; 
    }
    .hero h1 { 
      font-size: 24px;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .hero p { 
      font-size: 14px; 
      margin-bottom: 20px;
      max-width: 100%;
    }
    .hero-badge { 
      font-size: 10px; 
      padding: 4px 12px;
      margin-bottom: 12px;
    }
    
    .stats { 
      padding: 16px;
      gap: 16px;
    }
    .stat-num { 
      font-size: 20px; 
    }
    
    .container { padding: 0 16px; }
    
    .features { padding: 48px 0; }
    .features-header { margin-bottom: 32px; }
    .section-title { 
      font-size: 22px; 
    }
    .section-sub { 
      font-size: 14px; 
    }
    .feature-card { 
      padding: 20px 16px; 
    }
    .feature-icon { 
      width: 36px; 
      height: 36px;
      margin-bottom: 16px;
    }
    
    .how { padding: 48px 0; }
    .steps { 
      margin-top: 32px;
    }
    .step-num { 
      width: 40px; 
      height: 40px; 
      font-size: 12px;
    }
    
    .services { padding: 48px 0; }
    .service-item { 
      padding: 12px; 
    }
    .service-dot { 
      width: 28px; 
      height: 28px;
    }
    
    .pricing { padding: 48px 0; }
    .plan { 
      padding: 24px 16px; 
    }
    .plan-price { 
      font-size: 28px; 
    }
    
    .testimonials { padding: 48px 0; }
    .testi-card { 
      padding: 16px; 
    }
    
    .cta-section { 
      padding: 48px 16px; 
    }
    .cta-section h2 { 
      font-size: 22px; 
    }
    .cta-glow { 
      width: 300px; 
      height: 150px;
    }

    .contact-section { padding: 48px 0; }
    .contact-wrapper { gap: 32px; }
    .contact-info { gap: 20px; }
    .contact-form { padding: 24px 16px; }
    
    footer { 
      padding: 24px 16px; 
    }
  }
