/* ─── CSS Variables ─── */
  :root {
    --blue:        #2C9FE8;
    --blue-light:  #4DB8FF;
    --blue-deep:   #0D6FAD;
    --blue-glow:   rgba(44,159,232,0.22);
    --blue-faint:  rgba(44,159,232,0.07);
    --dark:        #080E18;
    --dark-2:      #0E1825;
    --dark-3:      #152033;
    --dark-4:      #1C2B42;
    --text:        #E8F1FB;
    --text-muted:  #7FA4C4;
    --white:       #FFFFFF;
    --radius:      14px;
    --font-head:   'Syne', sans-serif;
    --font-body:   'DM Sans', sans-serif;
  }

  /* ─── Reset ─── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  ul { list-style: none; }

  /* ─── Scrollbar ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--dark-2); }
  ::-webkit-scrollbar-thumb { background: var(--blue-deep); border-radius: 3px; }

  /* ─── Noise overlay ─── */
  body::before {
    content: '';
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
  }

  /* ─── Grid BG ─── */
  .grid-bg {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(44,159,232,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(44,159,232,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
  }

  /* ─── Glow blobs ─── */
  .blob {
    position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); opacity: 0.18;
  }
  .blob-1 { width: 600px; height: 600px; background: var(--blue); top: -200px; left: -150px; }
  .blob-2 { width: 400px; height: 400px; background: var(--blue-deep); top: 100px; right: -100px; }

  /* ─── Container ─── */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

  /* ─── Buttons ─── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 50px; font-family: var(--font-body);
    font-weight: 500; font-size: 0.95rem; cursor: pointer; border: none;
    transition: all 0.25s ease;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    color: var(--white);
    box-shadow: 0 0 24px rgba(44,159,232,0.35);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(44,159,232,0.55);
  }
  .btn-outline {
    background: transparent;
    color: var(--blue-light);
    border: 1.5px solid rgba(77,184,255,0.4);
    backdrop-filter: blur(8px);
  }
  .btn-outline:hover {
    background: var(--blue-faint);
    border-color: var(--blue-light);
  }
  .btn-lg { padding: 16px 36px; font-size: 1.05rem; }

  /* ─── Section label ─── */
  .section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--blue-light); margin-bottom: 16px;
  }
  .section-label::before {
    content: ''; width: 24px; height: 2px; background: var(--blue-light);
  }

  /* ─── Section title ─── */
  .section-title {
    font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800; line-height: 1.15; color: var(--white);
  }
  .section-title span { color: var(--blue-light); }

  /* ─── ══════════════════════════════════
      NAVBAR
  ══════════════════════════════════ ─── */
  #navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 0;
    transition: all 0.35s ease;
  }
  #navbar.scrolled {
    background: rgba(8,14,24,0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(44,159,232,0.12);
    padding: 14px 0;
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    font-family: var(--font-head); font-size: 1.55rem; font-weight: 800;
    color: var(--white); letter-spacing: -0.02em;
  }
  .logo span {
    color: var(--blue-light);
    background: linear-gradient(90deg, var(--blue-light), var(--blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .logo-dot { color: var(--blue-light); }
  .nav-links {
    display: flex; align-items: center; gap: 32px;
  }
  .nav-links a {
    font-size: 0.9rem; font-weight: 400; color: var(--text-muted);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta { display: flex; align-items: center; gap: 12px; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }

  /* Mobile nav */
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 99;
    background: rgba(8,14,24,0.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--text); }
  .mobile-menu a:hover { color: var(--blue-light); }
  .mobile-close { position: absolute; top: 24px; right: 24px; font-size: 2rem; cursor: pointer; color: var(--text-muted); }

  /* ─── ══════════════════════════════════
      HERO
  ══════════════════════════════════ ─── */
  #hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
    padding: 120px 0 80px;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 720px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(44,159,232,0.12); border: 1px solid rgba(44,159,232,0.25);
    border-radius: 50px; padding: 6px 16px; font-size: 0.82rem; color: var(--blue-light);
    margin-bottom: 32px; animation: fadeDown 0.6s ease forwards;
  }
  .hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-light); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

  .hero-title {
    font-family: var(--font-head); font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900; line-height: 1.08; letter-spacing: -0.02em;
    color: var(--white); margin-bottom: 24px;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  .hero-title .line-accent {
    display: block;
    background: linear-gradient(90deg, var(--blue-light) 0%, #7DD9FF 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .hero-sub {
    font-size: 1.15rem; color: var(--text-muted); max-width: 560px; margin-bottom: 40px;
    animation: fadeUp 0.7s 0.2s ease both;
  }
  .hero-actions {
    display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px;
    animation: fadeUp 0.7s 0.3s ease both;
  }
  .hero-stats {
    display: flex; flex-wrap: wrap; gap: 40px;
    animation: fadeUp 0.7s 0.4s ease both;
  }
  .stat-item strong {
    display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--white);
  }
  .stat-item span { font-size: 0.85rem; color: var(--text-muted); }

  /* Hero visual */
  .hero-visual {
    position: absolute; right: -350px; top: 50%; transform: translateY(-50%);
    width: 520px; z-index: 1;
    animation: fadeLeft 0.9s 0.3s ease both;
  }
  .hero-card {
    background: rgba(14,24,37,0.8); border: 1px solid rgba(44,159,232,0.18);
    border-radius: 20px; padding: 28px; backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(44,159,232,0.08);
  }
  .card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
  .card-dot { width: 12px; height: 12px; border-radius: 50%; }
  .card-dot.r { background: #ff5f56; }
  .card-dot.y { background: #ffbd2e; }
  .card-dot.g { background: #27c93f; }
  .card-title-sm { font-size: 0.8rem; color: var(--text-muted); margin-left: auto; }
  .code-block { font-family: 'Courier New', monospace; font-size: 0.82rem; line-height: 1.8; }
  .code-line { display: flex; gap: 12px; }
  .ln { color: rgba(44,159,232,0.35); min-width: 20px; text-align: right; }
  .kw { color: #79BCFF; }
  .fn { color: #A8D8FF; }
  .str { color: #A8EDBB; }
  .cm { color: rgba(126,178,210,0.5); font-style: italic; }
  .hl { background: rgba(44,159,232,0.1); border-left: 2px solid var(--blue); padding-left: 6px; border-radius: 0 4px 4px 0; }

  .floating-badge {
    position: absolute; background: linear-gradient(135deg,var(--blue),var(--blue-deep));
    border-radius: 12px; padding: 12px 18px; box-shadow: 0 8px 30px rgba(44,159,232,0.35);
    font-size: 0.82rem; font-weight: 600; white-space: nowrap;
  }
  .fb-1 { bottom: -30px; left: -40px; }
  .fb-2 { top: -30px; right: 20px; }

  /* ─── ══════════════════════════════════
      CLIENTS / LOGOS
  ══════════════════════════════════ ─── */
  #clients {
    padding: 50px 0; border-top: 1px solid rgba(44,159,232,0.08);
    border-bottom: 1px solid rgba(44,159,232,0.08);
    position: relative; z-index: 2;
  }
  .clients-label { text-align: center; font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 28px; }
  .logos-track {
    display: flex; gap: 64px; align-items: center; justify-content: center; flex-wrap: wrap;
  }
  .logo-item {
    font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: rgba(126,178,210,0.35);
    letter-spacing: 0.05em; transition: color 0.2s;
  }
  .logo-item:hover { color: var(--text-muted); }

  /* ─── ══════════════════════════════════
      SERVICES
  ══════════════════════════════════ ─── */
  #services {
    padding: 100px 0; position: relative; z-index: 2;
  }
  .services-head { text-align: center; margin-bottom: 64px; }
  .services-head .section-label { justify-content: center; }
  .services-head .section-label::before { display: none; }
  .services-head .section-label::after { content: ''; width: 24px; height: 2px; background: var(--blue-light); }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .service-card {
    background: var(--dark-2); border: 1px solid rgba(44,159,232,0.1);
    border-radius: var(--radius); padding: 36px 30px;
    transition: all 0.3s ease; position: relative; overflow: hidden; cursor: default;
  }
  .service-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(44,159,232,0.04), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .service-card:hover { border-color: rgba(44,159,232,0.35); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(44,159,232,0.08); }
  .service-card:hover::before { opacity: 1; }
  .service-card.featured { border-color: rgba(44,159,232,0.3); background: linear-gradient(135deg, rgba(44,159,232,0.06), var(--dark-2)); }

  .service-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(44,159,232,0.12); border: 1px solid rgba(44,159,232,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 22px;
  }
  .service-card h3 {
    font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
    color: var(--white); margin-bottom: 12px;
  }
  .service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }
  .service-features { display: flex; flex-direction: column; gap: 8px; }
  .feature-item {
    display: flex; align-items: center; gap: 9px;
    font-size: 0.85rem; color: var(--text-muted);
  }
  .feature-item::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue); flex-shrink: 0;
  }
  .badge-new {
    position: absolute; top: 20px; right: 20px;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    color: white; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; letter-spacing: 0.05em;
  }

  /* ─── ══════════════════════════════════
      PROCESS
  ══════════════════════════════════ ─── */
  #process {
    padding: 100px 0; background: var(--dark-2); position: relative; z-index: 2;
  }
  .process-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .process-steps { display: flex; flex-direction: column; gap: 0; }
  .process-step {
    display: flex; gap: 24px; padding: 28px 0;
    border-bottom: 1px solid rgba(44,159,232,0.08);
    position: relative;
  }
  .process-step:last-child { border-bottom: none; }
  .step-num {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    background: rgba(44,159,232,0.1); border: 1px solid rgba(44,159,232,0.25);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 800;
    color: var(--blue-light);
  }
  .step-content h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
  .step-content p { font-size: 0.88rem; color: var(--text-muted); }

  .process-visual { position: relative; }
  .mockup-wrapper {
    background: var(--dark-3); border: 1px solid rgba(44,159,232,0.15);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  }
  .mockup-bar { background: var(--dark-4); padding: 14px 20px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(44,159,232,0.1); }
  .mockup-dots { display: flex; gap: 6px; }
  .mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
  .mockup-dots span:nth-child(1) { background: #ff5f56; }
  .mockup-dots span:nth-child(2) { background: #ffbd2e; }
  .mockup-dots span:nth-child(3) { background: #27c93f; }
  .mockup-url { flex: 1; margin: 0 12px; background: rgba(44,159,232,0.08); border-radius: 6px; padding: 5px 12px; font-size: 0.78rem; color: var(--text-muted); }
  .mockup-body { padding: 24px; }
  .mockup-hero-bar { height: 8px; background: linear-gradient(90deg,var(--blue),var(--blue-deep)); border-radius: 4px; margin-bottom: 20px; }
  .mockup-rows { display: flex; flex-direction: column; gap: 10px; }
  .mockup-row { display: flex; gap: 10px; }
  .mockup-block { border-radius: 6px; background: rgba(44,159,232,0.08); }
  .mockup-row:nth-child(1) .mockup-block:nth-child(1) { flex: 2; height: 70px; }
  .mockup-row:nth-child(1) .mockup-block:nth-child(2) { flex: 1; height: 70px; }
  .mockup-row:nth-child(1) .mockup-block:nth-child(3) { flex: 1; height: 70px; }
  .mockup-row:nth-child(2) .mockup-block { flex: 1; height: 40px; }
  .mockup-row:nth-child(3) .mockup-block:nth-child(1) { flex: 3; height: 50px; background: rgba(44,159,232,0.15); }
  .mockup-row:nth-child(3) .mockup-block:nth-child(2) { flex: 1; height: 50px; }

  /* ─── ══════════════════════════════════
      RESULTS
  ══════════════════════════════════ ─── */
  #results { padding: 100px 0; position: relative; z-index: 2; }
  .results-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px;
  }
  .result-card {
    background: var(--dark-2); border: 1px solid rgba(44,159,232,0.1);
    border-radius: var(--radius); padding: 32px 24px; text-align: center;
    transition: all 0.3s;
  }
  .result-card:hover { border-color: rgba(44,159,232,0.3); transform: translateY(-3px); }
  .result-number {
    font-family: var(--font-head); font-size: 3rem; font-weight: 800;
    background: linear-gradient(135deg, var(--blue-light), var(--white));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
  }
  .result-label { font-size: 0.88rem; color: var(--text-muted); }

  /* ─── ══════════════════════════════════
      TESTIMONIALS
  ══════════════════════════════════ ─── */
  #testimonials {
    padding: 100px 0; background: var(--dark-2); position: relative; z-index: 2;
  }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
  .testi-card {
    background: var(--dark-3); border: 1px solid rgba(44,159,232,0.1);
    border-radius: var(--radius); padding: 28px;
    transition: all 0.3s;
  }
  .testi-card:hover { border-color: rgba(44,159,232,0.25); transform: translateY(-3px); }
  .testi-stars { color: var(--blue-light); font-size: 0.9rem; margin-bottom: 14px; }
  .testi-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: white;
  }
  .testi-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
  .testi-role { font-size: 0.78rem; color: var(--text-muted); }

  /* ─── ══════════════════════════════════
      PRICING
  ══════════════════════════════════ ─── */
  #pricing { padding: 100px 0; position: relative; z-index: 2; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
  .pricing-card {
    background: var(--dark-2); border: 1px solid rgba(44,159,232,0.1);
    border-radius: var(--radius); padding: 36px 30px;
    transition: all 0.3s; position: relative;
  }
  .pricing-card.popular {
    border-color: rgba(44,159,232,0.4);
    background: linear-gradient(160deg, rgba(44,159,232,0.07), var(--dark-2));
    transform: scale(1.03);
  }
  .popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    color: white; font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 50px;
    white-space: nowrap; letter-spacing: 0.05em;
  }
  .pricing-card:hover:not(.popular) { border-color: rgba(44,159,232,0.25); transform: translateY(-4px); }
  .pricing-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text-muted); margin-bottom: 4px; }
  .pricing-price { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--white); line-height: 1; margin: 12px 0; }
  .pricing-price sub { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
  .pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
  .pricing-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
  .pricing-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-muted); }
  .pricing-item::before { content: '✓'; color: var(--blue-light); font-weight: 700; flex-shrink: 0; }
  .pricing-item.off { text-decoration: line-through; opacity: 0.4; }
  .pricing-item.off::before { content: '✗'; color: var(--text-muted); }

  /* ─── ══════════════════════════════════
      FAQ
  ══════════════════════════════════ ─── */
  #faq { padding: 100px 0; background: var(--dark-2); position: relative; z-index: 2; }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
  .faq-item {
    background: var(--dark-3); border: 1px solid rgba(44,159,232,0.1);
    border-radius: var(--radius); overflow: hidden;
  }
  .faq-q {
    padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; gap: 12px;
    font-weight: 600; font-size: 0.95rem; color: var(--white); user-select: none;
  }
  .faq-icon { color: var(--blue-light); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a {
    padding: 0 24px; max-height: 0; overflow: hidden;
    transition: all 0.35s ease; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 200px; padding: 0 24px 22px; }

  /* ─── ══════════════════════════════════
      CTA
  ══════════════════════════════════ ─── */
  #cta { padding: 100px 0; position: relative; z-index: 2; overflow: hidden; }
  .cta-box {
    background: linear-gradient(135deg, rgba(44,159,232,0.12), rgba(13,111,173,0.06));
    border: 1px solid rgba(44,159,232,0.25); border-radius: 24px;
    padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-glow {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(44,159,232,0.15), transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
  }
  .cta-box h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
  .cta-box p { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 36px; }
  .cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

  /* ─── ══════════════════════════════════
      FOOTER
  ══════════════════════════════════ ─── */
  footer {
    background: var(--dark-2); border-top: 1px solid rgba(44,159,232,0.1);
    padding: 60px 0 30px; position: relative; z-index: 2;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin: 16px 0 24px; max-width: 280px; line-height: 1.7; }
  .footer-socials { display: flex; gap: 12px; }
  .social-btn {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(44,159,232,0.08); border: 1px solid rgba(44,159,232,0.18);
    display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
    transition: all 0.2s; color: var(--text-muted);
  }
  .social-btn:hover { background: rgba(44,159,232,0.15); color: var(--blue-light); }
  .footer-col h4 { font-family: var(--font-head); font-weight: 700; color: var(--white); margin-bottom: 18px; font-size: 0.95rem; }
  .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 0.87rem; color: var(--text-muted); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--blue-light); }
  .footer-bottom { border-top: 1px solid rgba(44,159,232,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
  .footer-bottom span { color: var(--blue-light); }

  /* ─── ══════════════════════════════════
      WHATSAPP FLOAT
  ══════════════════════════════════ ─── */
  .whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 99;
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: all 0.2s; animation: float 3s ease-in-out infinite;
  }
  .whatsapp-float:hover { transform: scale(1.1); }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

  /* ─── Animations ─── */
  @keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeLeft { from { opacity:0; transform:translateX(50px); } to { opacity:1; transform:translateX(0); } }

  /* ─── Scroll reveal ─── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .process-inner { grid-template-columns: 1fr; }
  .process-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* ─── Fix overflow lateral ─── */
  html, body { overflow-x: hidden; }
  #hero { overflow: hidden; }
  .blob-1, .blob-2 { display: none; }
}
  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 48px 24px; }
    .hero-stats { gap: 28px; }
    .logos-track { gap: 32px; }

    /* ─── Fix overflow lateral ─── */
    html, body { overflow-x: hidden; }
    #hero { overflow: hidden; }
    .hero-visual { display: none; }
    .blob-1, .blob-2 { display: none; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 14px; }

    .hero-title { font-size: 2.1rem; }
    .hero-sub { font-size: 1rem; }
    .hero-stats { gap: 16px; }
    .stat-item strong { font-size: 1.7rem; }

    .btn-lg { padding: 13px 22px; font-size: 0.95rem; }
    .hero-actions { gap: 10px; }

    .section-title { font-size: 1.7rem; }

    .service-card { padding: 24px 18px; }
    .result-number { font-size: 2.2rem; }

    .pricing-card { padding: 28px 20px; }
    .pricing-price { font-size: 2rem; }

    .cta-box { padding: 36px 16px; }
    .cta-box h2 { font-size: 1.7rem; }

    .testi-card { padding: 20px 16px; }
    .faq-q { padding: 18px 16px; font-size: 0.88rem; }
    .faq-item.open .faq-a { padding: 0 16px 18px; }

    .logos-track { gap: 20px; }
    .logo-item { font-size: 0.88rem; }

    .footer-grid { gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.3rem; }
  }
@media (max-width: 450px) {
  .container { padding: 0 14px; }

  .hero-title { font-size: 1.8rem; }
  .hero-sub { font-size: 1rem; }
  .hero-stats { gap: 16px; }
  .stat-item strong { font-size: 1.7rem; }

  .btn-lg { padding: 13px 22px; font-size: 0.95rem; }
  .hero-actions { gap: 10px; }

  .section-title { font-size: 1.7rem; }

  .service-card { padding: 24px 18px; }
  .result-number { font-size: 2.2rem; }

  .pricing-card { padding: 28px 20px; }
  .pricing-price { font-size: 2rem; }

  .cta-box { padding: 36px 16px; }
  .cta-box h2 { font-size: 1.7rem; }

  .testi-card { padding: 20px 16px; }
  .faq-q { padding: 18px 16px; font-size: 0.88rem; }
  .faq-item.open .faq-a { padding: 0 16px 18px; }

  .logos-track { gap: 20px; }
  .logo-item { font-size: 0.88rem; }

  .footer-grid { gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.3rem; }
}