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

:root {
  --bg:        #070b14;
  --bg2:       #0a1020;
  --bg3:       #0d1529;
  --blue:      #3b82f6;
  --blue-glow: rgba(59,130,246,.35);
  --cyan:      #22d3ee;
  --cyan-glow: rgba(34,211,238,.25);
  --purple:    #a78bfa;
  --white:     #ffffff;
  --text:      #cbd5e1;
  --muted:     #64748b;
  --border:    rgba(255,255,255,.07);
  --border2:   rgba(255,255,255,.12);
  --glass:     rgba(255,255,255,.03);
  --glass2:    rgba(255,255,255,.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ──────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .6;
}

/* ─── AMBIENT ORBS ───────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,.18) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: drift1 18s ease-in-out infinite alternate;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,211,238,.12) 0%, transparent 70%);
  bottom: 200px; left: -150px;
  animation: drift2 22s ease-in-out infinite alternate;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(167,139,250,.1) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation: drift3 16s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(-60px, 80px); } }
@keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(80px,-60px); } }
@keyframes drift3 { from { transform: translate(0,0); } to { transform: translate(-40px, 50px); } }

/* ─── NAV ────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem max(5%, calc((100% - 1440px) / 2));
  background: rgba(7,11,20,.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .4s;
}
nav.scrolled { border-color: var(--border2); }

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.nav-logo span {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  position: relative;
  z-index: 1;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-active {
  color: var(--white);
}
.nav-links a.nav-active::after {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  margin-top: 2px;
}

/* ─── LANG SWITCHER ─────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  padding: .2rem .25rem;
  letter-spacing: .06em;
  transition: color .2s;
  line-height: 1;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { color: var(--cyan); }
.lang-divider { color: var(--border2); font-size: .65rem; user-select: none; }

.nav-cta {
  padding: .5rem 1.25rem !important;
  background: linear-gradient(135deg, var(--blue), #1d4ed8) !important;
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600 !important;
  box-shadow: 0 0 20px var(--blue-glow);
  transition: box-shadow .3s, transform .2s !important;
}
.nav-cta:hover {
  box-shadow: 0 0 32px rgba(59,130,246,.55) !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: 1px solid var(--border2);
  color: var(--white);
  border-radius: 8px;
  padding: .45rem .65rem;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

/* ─── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem max(5%, calc((100% - 1440px) / 2)) 5rem;
  position: relative;
  z-index: 1;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .35rem 1rem .35rem .7rem;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.2);
  border-radius: 100px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: blink 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hero h1 .grad,
.section-title .grad {
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 60%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.85rem;
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .25s, transform .2s;
  box-shadow: 0 4px 24px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.15);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.btn-primary:hover { box-shadow: 0 8px 36px rgba(59,130,246,.55), inset 0 1px 0 rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.85rem;
  background: var(--glass2);
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22); color: var(--white); }

.hero-stats {
  margin-top: 4rem;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  background: var(--glass);
  max-width: 580px;
}
.stat {
  flex: 1;
  min-width: 120px;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .75rem; color: var(--muted); margin-top: .3rem; line-height: 1.3; }

/* ─── PROOF BAR ──────────────────────────── */
.proof-bar {
  position: relative;
  z-index: 1;
  padding: 1.25rem max(5%, calc((100% - 1440px) / 2));
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.proof-label { font-size: .78rem; color: var(--muted); font-weight: 500; white-space: nowrap; }
.sectors { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.sector-tag {
  padding: .28rem .8rem;
  background: var(--glass2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color .2s, color .2s;
}
.sector-tag:hover { border-color: var(--cyan); color: var(--cyan); }

/* ─── SECTIONS ───────────────────────────── */
section {
  padding: 6rem max(5%, calc((100% - 1440px) / 2));
  position: relative;
  z-index: 1;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .85rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--cyan);
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* ─── PROBLEM ────────────────────────────── */
.problem { background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.problem-card {
  padding: 2rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background .3s;
}
.problem-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(59,130,246,.07), transparent 70%);
  opacity: 0;
  transition: opacity .35s;
}
.problem-card:hover { background: var(--bg2); }
.problem-card:hover::after { opacity: 1; }
.problem-glyph {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}
.problem-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.problem-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ─── SERVICES ───────────────────────────── */
.services { background: var(--bg2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  backdrop-filter: blur(12px);
}
.service-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 .3s;
}
.service-card:hover { border-color: rgba(59,130,246,.3); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card:nth-child(2):hover { border-color: rgba(34,211,238,.3); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.service-card:nth-child(3):hover { border-color: rgba(167,139,250,.3); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, transparent, var(--purple), transparent); }
.service-card:nth-child(4):hover { border-color: rgba(34,197,94,.3); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, transparent, #22c55e, transparent); }

.service-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  background: var(--glass2);
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.service-card p  { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.service-list { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.service-list li {
  font-size: .82rem;
  color: var(--muted);
  display: flex; align-items: center; gap: .5rem;
}
.service-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ─── WHY ────────────────────────────────── */
.why { background: var(--bg); }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 2rem; }
.why-point { display: flex; gap: 1.1rem; align-items: flex-start; }
.why-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(59,130,246,.2), rgba(34,211,238,.2));
  border: 1px solid rgba(59,130,246,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--cyan);
}
.why-point h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .35rem; }
.why-point p  { font-size: .875rem; color: var(--muted); line-height: 1.6; }

.why-panel {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.why-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.why-panel-content { position: relative; }
.why-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.015em;
}
.why-quote .hi { color: var(--cyan); }
.why-author { font-size: .8rem; color: var(--muted); margin-bottom: 2rem; }
.why-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.wm {
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}
.wm-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wm-label { font-size: .72rem; color: var(--muted); margin-top: .2rem; line-height: 1.3; }

/* ─── HOW ────────────────────────────────── */
.how { background: var(--bg2); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.step {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  transition: border-color .25s;
}
.step:hover { border-color: var(--border2); }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.step h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.step p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials { background: var(--bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
}
.testi-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.testi-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.testi-stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.testi-stars span { color: #fbbf24; font-size: .9rem; }
.testi-text { font-size: .9rem; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; }
.testi-author { display: flex; flex-direction: column; gap: .15rem; }
.testi-name { font-size: .875rem; font-weight: 700; color: var(--white); }
.testi-role { font-size: .78rem; color: var(--muted); }

/* ─── CONTACT ────────────────────────────── */
.contact { background: var(--bg2); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: .9rem; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--glass2);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: .75rem; font-weight: 600; color: var(--muted); margin-bottom: .2rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-item p  { font-size: .9rem; color: var(--white); }
.contact-item p a { color: var(--white); text-decoration: none; transition: color .2s; }
.contact-item p a:hover { color: var(--cyan); }

/* ─── FORM ───────────────────────────────── */
.form-wrap {
  background: var(--glass);
  border: 1px solid var(--border2);
  border-radius: 22px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue) 30%, var(--cyan) 70%, transparent);
}
.form-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .85rem; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(59,130,246,.6);
  background: rgba(59,130,246,.05);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
.form-group select { cursor: pointer; }
.form-group select option { background: #0d1529; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.form-submit {
  width: 100%;
  padding: .9rem;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow .25s, transform .2s;
  box-shadow: 0 4px 24px var(--blue-glow);
  margin-top: .25rem;
  position: relative;
  overflow: hidden;
}
.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s;
}
.form-submit:hover { box-shadow: 0 8px 36px rgba(59,130,246,.5); transform: translateY(-1px); }
.form-submit:hover::after { transform: translateX(100%); }

.form-note { font-size: .72rem; color: var(--muted); text-align: center; margin-top: .75rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.25rem; color: var(--white); font-weight: 700; margin-bottom: .5rem; }
.form-success p  { font-size: .9rem; color: var(--muted); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem max(5%, calc((100% - 1440px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
footer p { font-size: .78rem; color: var(--muted); }

/* ─── FADE-IN ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 960px) {
  .why-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row     { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  section { padding: 4rem 5%; }
  nav { padding: .9rem 5%; }
  .hero { padding: 6.5rem 5% 3.5rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-stats { flex-direction: column; gap: 0; max-width: 100%; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(7,11,20,.97);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5%;
    gap: 1.25rem;
    backdrop-filter: blur(20px);
  }
  .why-panel { order: -1; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .problem-grid { grid-template-columns: 1fr; gap: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { justify-content: center; }
}
