/* ============================================================
   MEKATRO HOME — Site stilleri
   Tema: koyu, premium, teknoloji odaklı
   ============================================================ */

:root {
  --bg: #070b16;
  --bg-alt: #0b1122;
  --surface: #0f172a;
  --surface-2: #131c33;
  --border: rgba(148, 163, 184, 0.14);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --cyan: #22d3ee;
  --indigo: #818cf8;
  --amber: #fbbf24;
  --grad: linear-gradient(135deg, #22d3ee 0%, #818cf8 100%);
  --radius: 18px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --shadow: 0 20px 50px rgba(2, 6, 23, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

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

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--grad);
  color: #061020;
  box-shadow: 0 8px 30px rgba(34, 211, 238, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(34, 211, 238, 0.4); }

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(148, 163, 184, 0.06);
}
.btn--ghost:hover { background: rgba(148, 163, 184, 0.12); transform: translateY(-2px); }

.btn--light { background: #061020; color: #fff; }
.btn--light:hover { transform: translateY(-2px); }

.btn--full { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(7, 11, 22, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.5);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__icon { width: 36px; height: 36px; }
.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
}
.logo__text em { font-style: normal; color: var(--cyan); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav__link:hover { color: var(--text); }
.nav__link--cta {
  color: #061020;
  background: var(--grad);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.nav__link--cta:hover { color: #061020; box-shadow: 0 8px 24px rgba(34, 211, 238, 0.35); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.35;
  pointer-events: none;
}
.hero__glow--1 { width: 480px; height: 480px; background: #164e63; top: -140px; left: -120px; }
.hero__glow--2 { width: 420px; height: 420px; background: #312e81; bottom: -160px; right: -100px; }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.07);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 1.8s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero__desc {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero__stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
.stat__num, .stat__plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.stat__plus { color: var(--cyan); }
.stat__label { display: block; color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; }

/* Hero görseli */
.hero__visual { position: relative; }
.smart-house { position: relative; }
.smart-house__svg { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(34, 211, 238, 0.12)); }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: floaty 5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 0.92rem; }
.float-card small { color: var(--text-muted); font-size: 0.75rem; }
.float-card__icon { font-size: 1.3rem; }
.float-card--1 { top: 8%; right: -4%; animation-delay: 0s; }
.float-card--2 { bottom: 24%; left: -6%; animation-delay: 1.4s; }
.float-card--3 { bottom: -4%; right: 6%; animation-delay: 2.8s; }

.switch {
  width: 36px; height: 20px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.3);
  position: relative;
  flex-shrink: 0;
}
.switch::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}
.switch--on { background: var(--cyan); }
.switch--on::after { transform: translateX(16px); }

.dot-live {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: livePulse 2s ease-out infinite;
  flex-shrink: 0;
}

/* SVG animasyonları */
.pulse-node { animation: nodePulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.pulse-soft { animation: softGlow 3.2s ease-in-out infinite; }
.wifi-arc { animation: blink 2.2s ease-in-out infinite; }
.dash-anim { animation: dashMove 2.5s linear infinite; }
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }

@keyframes nodePulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.6; } }
@keyframes softGlow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes dashMove { to { stroke-dashoffset: -20; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* ---------- Section genel ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__desc { color: var(--text-muted); font-size: 1.02rem; }

/* ---------- Hizmet kartları ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.6);
}

.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon--cyan { background: rgba(34, 211, 238, 0.12); color: var(--cyan); }
.card__icon--indigo { background: rgba(129, 140, 248, 0.12); color: var(--indigo); }
.card__icon--amber { background: rgba(251, 191, 36, 0.12); color: var(--amber); }

.card__title { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 10px; }
.card__desc { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 16px; }

.card__list { list-style: none; display: grid; gap: 8px; }
.card__list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

/* ---------- Split bölümler ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse .split__content { order: 1; }
.split--reverse .split__visual { order: 2; }
.split .section__title, .split .section__desc { text-align: left; }
.split .section__desc { margin-bottom: 28px; }

.feature-list { list-style: none; display: grid; gap: 18px; margin-bottom: 32px; }
.feature-list li {
  padding-left: 34px;
  position: relative;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: rgba(34, 211, 238, 0.15) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2322d3ee" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4L19 7"/></svg>') center/12px no-repeat;
}
.feature-list strong { display: block; font-size: 0.98rem; }
.feature-list span { color: var(--text-muted); font-size: 0.9rem; }

/* Telefon mockup */
.phone {
  width: min(300px, 80%);
  margin-inline: auto;
  background: #0b1120;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 38px;
  padding: 14px;
  box-shadow: var(--shadow), 0 0 80px rgba(34, 211, 238, 0.08);
  position: relative;
  animation: floaty 6s ease-in-out infinite;
}
.phone__notch {
  width: 110px; height: 22px;
  background: #0b1120;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-top: 0;
}
.phone__screen {
  background: linear-gradient(170deg, #101a33 0%, #0a1224 100%);
  border-radius: 26px;
  padding: 40px 16px 20px;
  display: grid;
  gap: 14px;
}

.app-head small { color: var(--text-muted); font-size: 0.75rem; display: block; }
.app-head strong { font-family: var(--font-display); font-size: 1.02rem; }

.app-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.app-tile {
  background: rgba(148, 163, 184, 0.07);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.app-tile--on {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.35);
}
.app-tile span { font-size: 1.15rem; display: block; margin-bottom: 4px; }
.app-tile strong { font-size: 0.82rem; display: block; }
.app-tile small { color: var(--text-muted); font-size: 0.7rem; }

.app-scene {
  background: rgba(129, 140, 248, 0.1);
  border: 1px solid rgba(129, 140, 248, 0.3);
  border-radius: 14px;
  padding: 12px 14px;
}
.app-scene small { color: var(--text-muted); font-size: 0.7rem; display: block; }
.app-scene strong { font-size: 0.9rem; display: block; margin: 2px 0 8px; }
.app-scene__bar {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.15);
  overflow: hidden;
}
.app-scene__bar i {
  display: block;
  height: 100%;
  width: 70%;
  border-radius: inherit;
  background: var(--grad);
}

.app-energy {
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}
.app-energy small { color: var(--text-muted); font-size: 0.7rem; display: block; margin-bottom: 8px; }
.app-energy__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 44px;
}
.app-energy__bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(34, 211, 238, 0.35), var(--cyan));
}

/* Kod penceresi */
.code-window {
  background: #0b1120;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}
.code-window__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(148, 163, 184, 0.06);
  border-bottom: 1px solid var(--border);
}
.code-window__bar i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.3);
}
.code-window__bar i:nth-child(1) { background: #f87171; }
.code-window__bar i:nth-child(2) { background: #fbbf24; }
.code-window__bar i:nth-child(3) { background: #34d399; }
.code-window__bar span { margin-left: 8px; color: var(--text-muted); font-size: 0.75rem; }
.code-window__body {
  padding: 20px;
  overflow-x: auto;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  line-height: 1.8;
  color: #cbd5e1;
}
.c-kw { color: #c084fc; }
.c-fn { color: #22d3ee; }
.c-var { color: #e2e8f0; }
.c-str { color: #86efac; }
.c-num { color: #fbbf24; }
.c-cm { color: #64748b; font-style: italic; }

/* Mini kartlar (yazılım) */
.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}
.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.mini-card:hover { border-color: rgba(34, 211, 238, 0.35); transform: translateY(-3px); }
.mini-card strong { display: block; font-size: 0.93rem; margin-bottom: 5px; }
.mini-card span { color: var(--text-muted); font-size: 0.83rem; }

/* ---------- Süreç ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.step:hover { transform: translateY(-6px); border-color: rgba(129, 140, 248, 0.4); }
.step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
  display: block;
  margin-bottom: 12px;
}
.step__title { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 8px; }
.step__desc { color: var(--text-muted); font-size: 0.88rem; }

/* ---------- Neden Biz ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: linear-gradient(160deg, rgba(148, 163, 184, 0.05), transparent 60%);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.why:hover { transform: translateY(-5px); border-color: rgba(34, 211, 238, 0.3); }
.why__icon { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.why h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 8px; }
.why p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- CTA bant ---------- */
.cta-band {
  margin: 20px 0;
}
.cta-band__inner {
  background: var(--grad);
  border-radius: 24px;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  color: #061020;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 6px; }
.cta-band p { font-weight: 500; opacity: 0.85; }

/* ---------- İletişim ---------- */
.contact-items { display: grid; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-item:hover { border-color: rgba(34, 211, 238, 0.35); transform: translateX(4px); }
.contact-item__icon { font-size: 1.4rem; }
.contact-item small { display: block; color: var(--text-muted); font-size: 0.75rem; }
.contact-item strong { font-size: 0.95rem; }

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: grid; gap: 7px; }
.form__field span { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.form__field input,
.form__field select,
.form__field textarea {
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form__field select { appearance: none; cursor: pointer; }
.form__field select option { background: var(--surface); }
.form__field textarea { resize: vertical; min-height: 100px; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: rgba(148, 163, 184, 0.5); }
.form__note { color: #34d399; font-size: 0.88rem; text-align: center; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
}
.footer__col { display: grid; gap: 10px; align-content: start; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.footer__col a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s ease;
  width: fit-content;
}
.footer__col a:hover { color: var(--cyan); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 0.83rem;
}

/* ---------- Reveal animasyonu ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 64px; }
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .cards-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split__content { order: 0; }
  .split--reverse .split__visual { order: 1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(300px, 80vw);
    background: rgba(7, 11, 22, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid var(--border);
    z-index: 99;
  }
  .nav.open { transform: translateX(0); }
  .nav__link { font-size: 1.05rem; }
  .nav-toggle { display: flex; z-index: 100; }

  .hero { padding: 130px 0 70px; }
  .hero__stats { gap: 28px; }
  .section { padding: 68px 0; }
  .cards-grid, .why-grid, .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-band__inner { padding: 36px 28px; }
  .float-card--1 { right: 0; }
  .float-card--2 { left: 0; }
}
