  :root {
    --ink: #0a0f1e;
    --ink2: #1a2238;
    --sky: #e8f0fe;
    --electric: #4f6ef7;
    --electric-light: #7c96ff;
    --electric-dark: #2d4fd6;
    --neon: #00e5a0;
    --neon-dim: rgba(0,229,160,0.12);
    --surface: #ffffff;
    --surface2: #f7f8fc;
    --muted: #6b7280;
    --border: rgba(15,20,50,0.09);
    --border2: rgba(79,110,247,0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-xl: 24px;
    --shadow-card: 0 2px 20px rgba(10,15,30,0.07);
    --shadow-hover: 0 8px 40px rgba(79,110,247,0.14);
  }

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

  html { scroll-behavior: smooth; }

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

  h1,h2,h3,h4,h5 {
    font-family: 'Syne', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  /* ─── GRID BG ─── */
  .grid-bg {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image:
      linear-gradient(rgba(79,110,247,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(79,110,247,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .grid-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79,110,247,0.06) 0%, transparent 70%);
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    height: 68px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .nav-logo-mark {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--electric) 0%, var(--electric-light) 100%);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 0 3px rgba(79,110,247,0.15);
    position: relative;
    overflow: hidden;
  }
  .nav-logo-mark::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  }
  .logo-s {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: white;
    position: relative;
    z-index: 1;
  }
  .nav-wordmark {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    letter-spacing: -0.03em;
  }
  .nav-wordmark span { color: var(--electric); }

  .nav-links {
    display: flex; align-items: center; gap: 6px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    padding: 6px 12px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover { color: var(--ink); background: var(--surface2); }

  .btn-nav-cta {
    background: var(--electric) !important;
    color: white !important;
    padding: 8px 18px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: background 0.2s, box-shadow 0.2s !important;
  }
  .btn-nav-cta:hover {
    background: var(--electric-dark) !important;
    box-shadow: 0 4px 16px rgba(79,110,247,0.35) !important;
  }

  /* ─── HERO ─── */
  .hero {
    padding: 140px 48px 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--neon-dim);
    border: 1px solid rgba(0,229,160,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00a370;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
  }
  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--neon);
    display: inline-block;
    box-shadow: 0 0 8px var(--neon);
  }

  .hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--electric) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
  }

  .hero-ctas {
    display: flex; align-items: center; gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--electric);
    color: white;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    border: none; cursor: pointer;
  }
  .btn-primary:hover {
    background: var(--electric-dark);
    box-shadow: 0 6px 24px rgba(79,110,247,0.4);
    transform: translateY(-1px);
  }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .btn-secondary:hover {
    border-color: var(--electric);
    color: var(--electric);
    box-shadow: 0 0 0 3px rgba(79,110,247,0.08);
  }

  .hero-trust {
    display: flex; align-items: center; gap: 20px;
    flex-wrap: wrap;
  }
  .trust-pill {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
  }
  .trust-pill svg { color: var(--neon); }

  /* ─── HERO CARD ─── */
  .hero-visual {
    position: relative;
  }

  .mock-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(79,110,247,0.05);
    position: relative;
    overflow: hidden;
  }
  .mock-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 24px; right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--electric), #8b5cf6, var(--neon));
    border-radius: 0 0 4px 4px;
  }

  .score-ring {
    position: absolute; top: 24px; right: 24px;
    width: 64px; height: 64px;
  }
  .score-ring svg { width: 100%; height: 100%; }
  .score-num {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--electric);
  }

  .card-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--electric) 0%, #8b5cf6 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 12px;
  }
  .card-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 2px;
  }
  .card-title {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .card-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .bar-row { display: flex; align-items: center; gap: 10px; }
  .bar-label { font-size: 0.72rem; color: var(--muted); min-width: 80px; font-weight: 500; }
  .bar-track { flex: 1; height: 6px; background: var(--surface2); border-radius: 100px; overflow: hidden; }
  .bar-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }
  .bar-pct { font-size: 0.72rem; font-weight: 700; color: var(--ink); min-width: 32px; text-align: right; }

  .card-chips {
    display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px;
  }
  .chip {
    background: var(--sky);
    color: var(--electric-dark);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.01em;
  }

  .card-ats-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,229,160,0.1);
    border: 1px solid rgba(0,229,160,0.25);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #008f64;
  }

  /* Floating mini-cards */
  .float-card {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: var(--shadow-card);
    font-size: 0.78rem;
  }
  .float-card-1 {
    bottom: -24px;
    display: flex; align-items: center; gap: 10px;
  }
  .float-card-2 {
    top: 50px; right: -28px;
    text-align: center;
  }
  .float-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
  .float-label { font-weight: 600; color: var(--ink); font-size: 0.78rem; }
  .float-sub { color: var(--muted); font-size: 0.7rem; }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--ink);
    padding: 22px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .trust-bar-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .trust-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: -0.01em;
    transition: color 0.2s;
  }
  .trust-logo:hover { color: rgba(255,255,255,0.8); }

  /* ─── SECTION BASE ─── */
  section { padding: 100px 48px; }
  .container { max-width: 1120px; margin: 0 auto; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 16px;
  }
  .eyebrow::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--electric);
    border-radius: 2px;
    display: inline-block;
  }

  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.1;
  }
  .section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 56px;
  }

  /* ─── SERVICES ─── */
  .services { background: var(--surface2); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  .svc-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
  }
  .svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79,110,247,0.03), transparent);
    opacity: 0;
    transition: opacity 0.2s;
  }
  .svc-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: var(--border2);
  }
  .svc-card:hover::after { opacity: 1; }

  .svc-icon {
    width: 48px; height: 48px;
    background: var(--sky);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
  }
  .svc-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .svc-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

  /* ─── HOW IT WORKS ─── */
  .how { background: var(--ink); }
  .how .section-title { color: white; }
  .how .section-sub { color: rgba(255,255,255,0.5); }
  .how .eyebrow { color: var(--neon); }
  .how .eyebrow::before { background: var(--neon); }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
  }
  .step {
    background: var(--ink2);
    padding: 36px 28px;
    position: relative;
  }
  .step-num {
    width: 40px; height: 40px;
    background: rgba(79,110,247,0.15);
    border: 1px solid rgba(79,110,247,0.3);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--electric-light);
    margin-bottom: 20px;
  }
  .step h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 10px; }
  .step p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

  /* ─── STATS ─── */
  .stats {
    background: linear-gradient(135deg, var(--electric) 0%, #8b5cf6 100%);
    padding: 60px 48px;
  }
  .stats-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
  }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: white;
    margin-bottom: 4px;
  }
  .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; }

  /* ─── PRICING ─── */
  .pricing { background: var(--surface); }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
  }
  .plan-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: box-shadow 0.2s;
    position: relative;
  }
  .plan-card:hover { box-shadow: var(--shadow-hover); }
  .plan-card.featured {
    border-color: var(--electric);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(79,110,247,0.08);
    transform: scale(1.03);
  }

  .plan-badge {
    display: inline-block;
    background: var(--electric);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
  }
  .plan-badge.free { background: rgba(79,110,247,0.1); color: var(--electric); }

  .plan-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .plan-price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--ink);
    line-height: 1;
    margin: 12px 0 4px;
  }
  .plan-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }
  .plan-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

  .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.875rem; color: var(--ink);
  }
  .plan-check {
    width: 18px; height: 18px; flex-shrink: 0;
    background: rgba(0,229,160,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    color: #008f64;
    font-weight: 700;
  }

  .btn-plan {
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px;
    border-radius: 100px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    width: 100%;
  }
  .btn-plan-primary {
    background: var(--electric);
    color: white;
  }
  .btn-plan-primary:hover { background: var(--electric-dark); box-shadow: 0 4px 20px rgba(79,110,247,0.35); }
  .btn-plan-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border);
  }
  .btn-plan-outline:hover { border-color: var(--electric); color: var(--electric); }

  .expert-bar {
    margin-top: 40px;
    background: var(--sky);
    border: 1px solid rgba(79,110,247,0.15);
    border-radius: var(--radius);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .expert-bar-text strong { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--ink); display: block; margin-bottom: 4px; }
  .expert-bar-text span { font-size: 0.85rem; color: var(--muted); }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: var(--surface2); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .testi-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex; flex-direction: column; gap: 20px;
    transition: box-shadow 0.2s;
  }
  .testi-card:hover { box-shadow: var(--shadow-card); }

  .testi-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; }
  .testi-text { font-size: 0.92rem; color: var(--ink); line-height: 1.7; flex: 1; 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: 700; font-size: 1rem; color: white;
    flex-shrink: 0;
  }
  .testi-name { font-size: 0.88rem; font-weight: 700; color: var(--ink); }
  .testi-role { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
  .testi-tag {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.7rem; font-weight: 700;
    color: #008f64;
    background: rgba(0,229,160,0.1);
    padding: 2px 8px;
    border-radius: 100px;
  }

  /* ─── BLOG ─── */
  .blog { background: var(--surface); }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .blog-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
  .blog-img { height: 180px; overflow: hidden; background: var(--surface2); }
  .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .blog-card:hover .blog-img img { transform: scale(1.04); }
  .blog-body { padding: 22px; }
  .blog-tag {
    display: inline-block;
    background: var(--sky);
    color: var(--electric-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
  }
  .blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.35; }
  .blog-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
  .blog-meta { display: flex; align-items: center; justify-content: space-between; }
  .blog-author { font-size: 0.75rem; color: var(--muted); }
  .blog-read { font-size: 0.8rem; font-weight: 700; color: var(--electric); text-decoration: none; }
  .blog-read:hover { text-decoration: underline; }

  /* ─── FAQ ─── */
  .faq { background: var(--surface2); }
  .faq-grid { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--electric); }
  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: var(--surface2);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
    transition: background 0.2s, color 0.2s, transform 0.3s;
  }
  .faq-item.open .faq-icon { background: var(--electric); color: white; transform: rotate(45deg); }
  .faq-item.open .faq-q { color: var(--electric); }
  .faq-a { display: none; }
  .faq-item.open .faq-a { display: block; }
  .faq-a-inner { padding: 0 0 20px; font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

  /* ─── CTA BAND ─── */
  .cta-band {
    background: linear-gradient(135deg, var(--electric) 0%, #8b5cf6 100%);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: white; margin-bottom: 14px; position: relative; }
  .cta-band p { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; position: relative; }
  .cta-band .btn-primary {
    background: white;
    color: var(--electric-dark);
    font-size: 1rem;
    padding: 16px 40px;
    position: relative;
  }
  .cta-band .btn-primary:hover { background: rgba(255,255,255,0.92); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
  .cta-fine { margin-top: 18px; font-size: 0.78rem; color: rgba(255,255,255,0.4); position: relative; }

  /* ─── CONTACT ─── */
  .contact { background: var(--surface); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
  .contact-info h3 { font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
  .contact-info p { font-size: 0.9rem; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
  .contact-item {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--surface2);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
  }
  .contact-item-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--sky);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .contact-item strong { display: block; font-weight: 600; color: var(--ink); font-size: 0.88rem; margin-bottom: 2px; }
  .contact-item span { font-size: 0.82rem; color: var(--muted); }

  .contact-form {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-card);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
  .form-group label { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: 'Epilogue', sans-serif;
    font-size: 0.88rem;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--electric);
    box-shadow: 0 0 0 3px rgba(79,110,247,0.1);
    background: white;
  }
  .form-group textarea { min-height: 100px; resize: vertical; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.55);
    padding: 60px 48px 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1120px;
    margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 28px;
  }
  .footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 14px; margin-bottom: 20px; }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 32px; height: 32px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .footer-social a:hover { border-color: var(--electric); color: var(--electric-light); background: rgba(79,110,247,0.1); }
  .footer-col h5 {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { text-decoration: none; font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
  .footer-col a:hover { color: white; }
  .footer-bottom {
    max-width: 1120px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap; gap: 10px;
  }

  /* ─── FLOAT BTN ─── */
  .float-cta {
    position: fixed; bottom: 28px; right: 28px; z-index: 99;
    background: var(--electric);
    color: white;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 22px;
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(79,110,247,0.45);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s;
    pointer-events: none;
  }
  .float-cta.visible { opacity: 1; transform: none; pointer-events: auto; }
  .float-cta:hover { background: var(--electric-dark); box-shadow: 0 6px 32px rgba(79,110,247,0.55); }

  /* ─── HAMBURGER ─── */
  .hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
    .hero-visual { display: none; }
    section { padding: 70px 24px; }
    .services-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .plan-card.featured { transform: none; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-bar { padding: 20px 24px; gap: 20px; }
    .stats { padding: 50px 24px; }
    .cta-band { padding: 60px 24px; }
  }

  @media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-left > * { animation: fadeUp 0.5s ease both; }
  .hero-left > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-left > *:nth-child(2) { animation-delay: 0.12s; }
  .hero-left > *:nth-child(3) { animation-delay: 0.19s; }
  .hero-left > *:nth-child(4) { animation-delay: 0.26s; }
  .hero-left > *:nth-child(5) { animation-delay: 0.33s; }
  .hero-visual { animation: fadeUp 0.6s 0.2s ease both; }
  .mock-card { animation: float 6s ease-in-out infinite; }
  .float-card-1 { animation: float 5s 1s ease-in-out infinite; }
  .float-card-2 { animation: float 5.5s 0.5s ease-in-out infinite; }
  
  
  