:root {
  --space-0: #060b16;
  --space-1: #0a1224;
  --space-2: #0e1830;
  --ink: #eef2fa;
  --muted: #a4b0c8;
  --line: rgba(255, 255, 255, 0.09);
  --glass: rgba(255, 255, 255, 0.04);
  --accent: #4f86ff;
  --accent-2: #9a7bff;
  --accent-dark: #2f5fd6;
  --radius: 14px;
  --max-width: 1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--space-0);
  overflow-x: clip;
}

/* Anchored sections land below the sticky header */
section[id] { scroll-margin-top: 90px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(79, 134, 255, 0.10), transparent 60%),
    radial-gradient(800px 600px at 0% 35%, rgba(154, 123, 255, 0.07), transparent 60%),
    radial-gradient(1000px 700px at 100% 90%, rgba(79, 134, 255, 0.06), transparent 60%),
    linear-gradient(180deg, var(--space-0) 0%, var(--space-1) 55%, var(--space-0) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Starfield canvas — behind everything, never blocks text */
#stars-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 200;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(79, 134, 255, 0.7);
}

header, main, footer { position: relative; z-index: 1; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 800; margin: 0; line-height: 1.15; color: var(--ink); }

p { margin: 0; color: var(--muted); }

a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: #8ab0ff;
  margin: 0 0 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 11, 22, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(140deg, #4f86ff 0%, #3a6cf0 45%, #7b5cff 100%);
  box-shadow: 0 6px 18px -6px rgba(79, 134, 255, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 60%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(18deg);
  animation: brand-shine 4.5s ease-in-out infinite;
}

@keyframes brand-shine {
  0%, 65% { left: -30%; }
  100% { left: 130%; }
}

.brand-mark-inner {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.02em;
  z-index: 1;
}

.brand-word {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand-word span {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav { display: flex; gap: 30px; }

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
}

.nav a:hover { color: var(--ink); }

.nav-cta { display: inline-flex; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-small { padding: 9px 20px; font-size: 14px; }

.btn-large { padding: 16px 34px; font-size: 17px; }

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(79, 134, 255, 0.8);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(122, 108, 255, 0.85);
}

.btn:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: #bcd2ff;
  transform: translateY(-2px);
}

/* Scroll reveal — paragraphs & blocks glide in with blur.
   Hidden state only applies when JS is running (html.js), so content
   is never lost if scripts fail to load. */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(7px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

html.js [data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
}

/* Hero */
.hero {
  padding: 140px 0 110px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-inner { position: relative; width: 100%; }

.hero-orbit {
  position: absolute;
  top: 50%;
  right: -140px;
  width: 560px;
  height: 560px;
  margin-top: -280px;
  border: 1px dashed rgba(138, 176, 255, 0.22);
  border-radius: 50%;
  animation: orbit-rotate 70s linear infinite;
  pointer-events: none;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 90px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(79, 134, 255, 0.9);
}

@keyframes orbit-rotate {
  to { transform: rotate(360deg); }
}

.hero-text { max-width: 680px; }

.eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 9px;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(79, 134, 255, 0.55);
  animation: pulse-dot 2.2s ease-out infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(79, 134, 255, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(79, 134, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 134, 255, 0); }
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 66px);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero h1 .grad {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: grad-shift 6s linear infinite;
}

@keyframes grad-shift {
  to { background-position: 200% center; }
}

.hero-sub {
  font-size: 18px;
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 26px;
  font-size: 14px;
  color: var(--muted);
}

.hero-trust strong { color: var(--ink); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  .eyebrow-dot, .hero h1 .grad, .brand-mark::after, .hero-orbit { animation: none; }
}

/* Sections */
.section { padding: 96px 0; }

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading { max-width: 640px; margin-bottom: 48px; }

.section-heading h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.015em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: center;
}

.about-content { max-width: 720px; display: flex; flex-direction: column; gap: 18px; }

.about-content p { font-size: 17px; }

/* Portrait card */
.about-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.portrait-ring {
  position: relative;
  animation: portrait-float 7s ease-in-out infinite;
}

.portrait-ring::before {
  content: "";
  position: absolute;
  inset: -20px -40px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(79, 134, 255, 0.2), transparent 65%);
  filter: blur(20px);
  z-index: -1;
}

.portrait-ring img {
  display: block;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 380 / 530;
  object-fit: cover;
  /* Feather all four edges so the photo's dark border dissolves into the
     space background on every side — no visible rectangle. */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 8%, #000 88%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 8%, #000 88%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-composite: intersect;
}

/* Browsers without mask support: soft rounded card instead of a hard rectangle */
@supports not ((mask-image: linear-gradient(#000, transparent)) or (-webkit-mask-image: linear-gradient(#000, transparent))) {
  .portrait-ring img {
    border-radius: 24px;
    box-shadow: 0 0 60px 30px rgba(6, 11, 22, 0.9);
  }
}

@keyframes portrait-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.portrait-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.portrait-caption strong { font-size: 18px; color: var(--ink); }

.portrait-caption > span { font-size: 14px; color: var(--muted); }

/* Certified badges */
.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hero-badges { margin-top: 18px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #c7d5f5;
  background: rgba(79, 134, 255, 0.1);
  border: 1px solid rgba(79, 134, 255, 0.3);
}

.badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 10px;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
}

@media (prefers-reduced-motion: reduce) {
  .portrait-ring { animation: none; }
}

/* Stats band */
.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  padding: 44px 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.stat-num {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(100deg, #bcd2ff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label { font-size: 14px; color: var(--muted); }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 134, 255, 0.45);
  box-shadow: 0 22px 46px -20px rgba(79, 134, 255, 0.5);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(79, 134, 255, 0.22), rgba(154, 123, 255, 0.22));
  border: 1px solid rgba(138, 176, 255, 0.25);
  color: #9dbcff;
  font-size: 17px;
  margin-bottom: 18px;
}

.card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }

.card p { font-size: 15px; }

/* How it works — numbered steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.step {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 134, 255, 0.45);
  box-shadow: 0 22px 46px -20px rgba(79, 134, 255, 0.45);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 22px -8px rgba(79, 134, 255, 0.8);
  margin-bottom: 18px;
}

.step h3 { font-size: 17px; margin-bottom: 10px; font-weight: 700; }

.step p { font-size: 14.5px; }

.step em { color: #bcd2ff; font-style: normal; font-weight: 600; }

/* FAQ accordion */
.faq-container { max-width: 780px; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] { border-color: rgba(79, 134, 255, 0.4); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  color: #9dbcff;
  border: 1px solid rgba(79, 134, 255, 0.35);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
}

.faq-item p {
  padding: 0 22px 20px;
  font-size: 15px;
}

/* Logo wall — real client logos as icon tiles */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.logo-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--glass);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-tile:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(79, 134, 255, 0.5);
  box-shadow: 0 22px 48px -18px rgba(79, 134, 255, 0.55);
}

.logo-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background:
    radial-gradient(120px 120px at 30% 20%, rgba(154, 123, 255, 0.25), transparent 70%),
    linear-gradient(150deg, rgba(79, 134, 255, 0.16), rgba(154, 123, 255, 0.1));
  border: 1px dashed rgba(138, 176, 255, 0.4);
}

.more-plus {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.more-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.more-label {
  font-size: 13px;
  color: var(--muted);
}

.logo-note {
  margin-top: 26px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* Results */
.results-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.result-story { display: flex; flex-direction: column; gap: 18px; }

.result-story p { font-size: 17px; }

.result-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-points li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.result-points li:hover { transform: translateX(4px); border-left-color: var(--accent-2); }

.result-points strong { font-size: 16px; color: var(--ink); }

.result-points span { font-size: 14px; color: var(--muted); }

/* Contact */
.contact-section { padding: 110px 0; }

.contact-inner { max-width: 760px; margin: 0 auto; }

.contact-head { text-align: center; margin-bottom: 40px; }

.contact-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* Lead form */
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 30px 80px -40px rgba(79, 134, 255, 0.35);
}

.hidden-field { display: none; }

.field { display: flex; flex-direction: column; gap: 7px; }

.field-full { grid-column: 1 / -1; }

.lead-form label {
  font-size: 13px;
  font-weight: 600;
  color: #c3cde2;
  letter-spacing: 0.01em;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder { color: #6d7a94; }

.lead-form select { cursor: pointer; }
.lead-form select option { color: #0b1526; background: #fff; }

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(79, 134, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(79, 134, 255, 0.18);
}

.lead-form textarea { resize: vertical; }

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.form-actions .btn { border: none; cursor: pointer; }

.form-alt { font-size: 14px; color: var(--muted); }
.form-alt a { color: #8ab0ff; }
.form-alt a:hover { text-decoration: underline; }

/* Thank-you page */
.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.thanks-inner { max-width: 600px; margin: 0 auto; }

.thanks-check {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  box-shadow: 0 12px 34px -10px rgba(79, 134, 255, 0.7);
}

.thanks-inner h1 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.thanks-sub { font-size: 17px; margin-bottom: 32px; }

.thanks-redirect {
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
  opacity: 0.75;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: rgba(6, 11, 22, 0.6);
}

.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.6;
  margin-bottom: 14px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -10px rgba(79, 134, 255, 0.7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-inner a:hover { color: #8ab0ff; }

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1100px) {
  .hero-orbit { display: none; }
}

@media (max-width: 900px) {
  .results-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-portrait { order: -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .hero { padding: 100px 0 70px; min-height: 0; }
  .section { padding: 64px 0; }
  .contact-section { padding: 80px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .logo-more { grid-column: 1 / -1; aspect-ratio: auto; padding: 26px 0; }
  .lead-form { grid-template-columns: 1fr; padding: 24px 18px; }
  .steps { grid-template-columns: 1fr; }
}
