:root {
  --bg: #080808;
  --bg-soft: #111111;
  --surface: #151515;
  --surface-2: #1d1d1d;
  --text: #f5f5f5;
  --muted: #a6a6a6;
  --line: #2a2a2a;
  --brand: #ffffff;
  --accent: #9dff4f;
  --accent-dim: rgba(157,255,79,0.15);
  --accent-glow: rgba(157,255,79,0.25);
  --glow-sm: 0 0 20px rgba(157,255,79,0.12);
  --glow-md: 0 0 40px rgba(157,255,79,0.10);
  --glow-lg: 0 0 80px rgba(157,255,79,0.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

/* ---- Декоративная фоновая сетка точек ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(157,255,79,0.07), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(255,255,255,0.04), transparent 60%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.container { width: min(1240px, 92%); margin: 0 auto; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: #0a0a0a;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(8, 8, 8, 0.78);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}

.header.is-scrolled {
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .25s ease;
}

.logo:hover::after { opacity: 1; }

nav { display: flex; align-items: center; }

nav a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 12px;
  font-size: 14px;
  position: relative;
  transition: color .2s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
}

nav a:hover { color: var(--text); }
nav a:hover::after { transform: scaleX(1); }
nav a.active { color: var(--accent); }
nav a.active::after { transform: scaleX(1); opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ---- Burger ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s ease;
}
.nav-toggle:hover { border-color: var(--accent-dim); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====== HERO ====== */
.hero {
  padding: 92px 0 42px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(157,255,79,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 12px;
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(157,255,79,0.2);
}

h1 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(40px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin-top: 14px;
}

h3 { letter-spacing: -0.01em; }

.lead {
  color: var(--muted);
  max-width: 760px;
  font-size: clamp(16px, 2vw, 20px);
  margin-top: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: #dcdcdc;
  font-size: 13px;
}

.hero-proof li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(157,255,79,0.55);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.hero-scroll:hover { color: var(--accent); }

.hero-scroll::after {
  content: '↓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text);
  border-radius: 999px;
  padding: 11px 18px;
  text-decoration: none;
  color: #070707;
  background: var(--brand);
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.12);
}

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

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: rgba(157,255,79,0.5);
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(157,255,79,0.08);
}

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

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

.btn-accent:hover {
  background: #b8ff6e;
  border-color: #b8ff6e;
  box-shadow: 0 8px 28px rgba(157, 255, 79, 0.28);
}

.hide-mobile { display: inline-flex; }

/* ====== HERO STATS ====== */
.hero-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  padding: 16px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.stat:hover {
  border-color: rgba(157,255,79,0.3);
  box-shadow: var(--glow-sm);
}

.stat strong {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.02em;
}

.stat span { color: var(--muted); font-size: 13px; }

/* ====== SECTIONS ====== */
.section {
  padding: 56px 0;
  position: relative;
}

.section-head {
  margin-bottom: 28px;
  max-width: 760px;
}

.section-head .lead { margin-top: 12px; margin-bottom: 0; }

.section-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section + .section {
  border-top: 1px solid var(--line);
}

.divider-glow {
  position: relative;
  overflow: visible;
}

.divider-glow::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ====== CARDS ====== */
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.cases-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #3a3a3a;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.card h3 { margin: 0 0 8px; font-size: 24px; }

.card p { margin: 0; color: #d8d8d8; }
.card p + p { margin-top: 10px; }

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.service-more { margin-top: 16px; }

.outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-card {
  min-height: 100%;
}

.outcome-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.launch-check {
  padding: 24px;
  background: linear-gradient(135deg, rgba(157,255,79,0.10), rgba(255,255,255,0.02));
}

.launch-check ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-check li {
  position: relative;
  padding-left: 28px;
  color: #d8d8d8;
}

.launch-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

/* ====== BENTO ====== */
.bento { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }

.bento-wide {
  background: linear-gradient(125deg, rgba(157,255,79,0.18), rgba(157,255,79,0.04));
  border-color: rgba(157,255,79,0.4);
  position: relative;
  overflow: hidden;
}

.bento-wide::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(157,255,79,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bento-wide:hover {
  border-color: rgba(157,255,79,0.6);
  box-shadow: 0 0 40px rgba(157,255,79,0.1);
}

/* ====== CASE CARDS ====== */
.case-card { padding: 14px; position: relative; overflow: hidden; }
.case-card picture { display: block; }
.case-card h3 { font-size: 22px; margin-top: 10px; }

.case-media-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.case-media-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 8, 8, 0.55) 100%);
  pointer-events: none;
}
.case-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #333;
  background: var(--surface);
  transition: transform .4s ease, filter .4s ease;
}

.case-card:hover .case-media {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.case-results {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.case-results li {
  position: relative;
  padding-left: 18px;
}

.case-results li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(157,255,79,0.35);
}

/* ====== PROCESS STEPS ====== */
.process { position: relative; }

.process::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), var(--accent-dim), transparent);
  border-radius: 2px;
  z-index: 0;
}

.process .card { padding-top: 26px; position: relative; z-index: 1; }

.process .card h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.12em;
}

.process .card::before {
  content: attr(data-step);
  position: absolute;
  top: -14px;
  left: 20px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 13px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(157,255,79,0.3);
}

/* ====== PLAN CARDS ====== */
.plan-card { position: relative; display: flex; flex-direction: column; gap: 8px; }
.plan-btn { margin-top: auto; width: fit-content; }

.recommended {
  border-color: rgba(157,255,79,0.7);
  box-shadow: 0 0 0 1px rgba(157,255,79,0.35) inset, var(--glow-md);
  background: linear-gradient(180deg, rgba(157,255,79,0.1), rgba(255,255,255,0.02));
}

.recommended:hover {
  border-color: rgba(157,255,79,0.9);
  box-shadow: 0 0 0 1px rgba(157,255,79,0.5) inset, 0 0 60px rgba(157,255,79,0.15);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(157,255,79,0.5);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8,8,8,0.6);
}

.plan-note { margin: 0; color: var(--muted); font-size: 13px; }

/* ====== PRICE CARDS ====== */
.price-card {
  min-height: 100%;
}

.price-card h3 { margin-top: 8px; }

.price-label {
  display: inline-flex;
  width: fit-content;
  padding: 4px 9px;
  border: 1px solid rgba(157,255,79,0.35);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(157,255,79,0.08);
  font-size: 12px;
  font-weight: 700;
}

.price-value {
  color: var(--accent) !important;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.price-card li {
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

/* ====== FORMS ====== */
label {
  display: grid;
  gap: 8px;
  color: #d2d2d2;
  font-weight: 600;
  font-size: 14px;
}

label.check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

label.check input { width: 18px; height: 18px; accent-color: var(--accent); }

input, select, textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  padding: 12px;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(157,255,79,0.6);
  box-shadow: 0 0 0 3px rgba(157,255,79,0.15);
}

.form { display: grid; gap: 12px; max-width: 760px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.form-note { color: var(--muted); font-size: 13px; margin: 4px 0 0; }
.form-intro { color: var(--muted); margin: 0 0 4px; }

.task-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  border: 0;
}

.task-picker legend {
  width: 100%;
  margin-bottom: 2px;
  color: #d2d2d2;
  font-weight: 600;
  font-size: 14px;
}

.task-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.task-chip:hover,
.task-chip:focus {
  color: var(--text);
  border-color: rgba(157,255,79,0.45);
  outline: none;
}

.task-chip.is-active {
  color: #0a0a0a;
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-1px);
}

label.form-consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  max-width: 100%;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}

label.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex: 0 0 18px;
  padding: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}

label.form-consent span {
  flex: 1;
  min-width: 0;
}

label.form-consent a { color: var(--accent); }

/* ====== CALCULATOR ====== */
.calc { max-width: 560px; }

.range-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.range-row output {
  min-width: 3ch;
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

input[type="range"] {
  flex: 1;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--line);
  accent-color: var(--accent);
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(157, 255, 79, 0.35);
}

.calc-result {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(157,255,79,0.4);
  border-radius: 14px;
  background: rgba(157,255,79,0.06);
  margin-top: 4px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.calc-result:hover {
  border-color: rgba(157,255,79,0.6);
  box-shadow: var(--glow-sm);
}

.calc-result span { color: var(--muted); font-size: 14px; }
.calc-result strong { font-size: clamp(22px, 3vw, 30px); color: var(--accent); }

.calc-result.is-updated strong {
  animation: pricePop .35s ease;
}

@keyframes pricePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.quote-card {
  position: relative;
  padding-top: 28px;
}

.quote-card::before {
  content: '“';
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 48px;
  line-height: 1;
  color: rgba(157, 255, 79, 0.35);
  font-family: Georgia, serif;
}

.quote-card p { font-size: 17px; line-height: 1.6; }

.quote-card strong {
  display: block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.city-search {
  width: 100%;
  max-width: 360px;
  margin-top: 14px;
  margin-bottom: 4px;
}

.city-chip.is-hidden { display: none; }

.city-empty {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

.city-empty.is-visible { display: block; }

/* ====== CITY CHIPS ====== */
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.city-chips--compact { margin-top: 0; }
.nearby-label { margin: 0 0 8px; color: var(--muted); font-size: 14px; }

.city-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,0.02);
  font-size: 13px;
  transition: border-color .2s ease, color .2s ease, box-shadow .2s ease, background .2s ease;
}

.city-chip:hover {
  border-color: rgba(157,255,79,0.4);
  color: var(--accent);
  box-shadow: var(--glow-sm);
  background: var(--accent-dim);
}

.city-chip--primary {
  border-color: rgba(157,255,79,0.5);
  color: var(--accent);
  background: rgba(157,255,79,0.08);
}

.city-chip--primary:hover {
  border-color: rgba(157,255,79,0.7);
  box-shadow: var(--glow-md);
}

/* ====== FAQ ====== */
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: var(--surface);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq details:hover {
  border-color: #3a3a3a;
}

.faq details[open] {
  border-color: rgba(157,255,79,0.3);
  box-shadow: var(--glow-sm);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  transition: color .2s ease;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease, border-color .25s ease;
}

.faq details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
  border-color: rgba(157, 255, 79, 0.4);
}

.faq summary:hover { color: var(--accent); }

.faq p { color: var(--muted); }

/* ====== BREADCRUMBS ====== */
.breadcrumbs { padding: 18px 0 0; font-size: 14px; color: var(--muted); }
.breadcrumbs a { color: var(--muted); text-decoration: none; transition: color .2s ease; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span[aria-hidden] { margin: 0 8px; opacity: .6; }
.breadcrumbs > span:last-child { color: var(--text); }
.nearby { color: var(--muted); font-size: 14px; line-height: 1.8; }
.nearby a { margin-right: 4px; }

/* ====== LINKS ====== */
a { color: #d6ffad; transition: color .2s ease; }
a:hover { color: #efffdb; }

/* ====== FOOTER ====== */
.footer {
  border-top: 1px solid var(--line);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer p { margin: 0; padding: 20px 0; color: var(--muted); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 36px 0 20px;
}

.footer-grid .logo { display: inline-block; margin-bottom: 10px; }

.footer-grid p {
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col a:hover { color: var(--accent); }

.footer-copy {
  border-top: 1px solid var(--line);
}

.footer-copy p {
  padding: 16px 0 20px;
  font-size: 13px;
}

.footer-credit {
  padding-top: 0;
  margin-top: -8px;
}

.footer-credit a {
  color: var(--muted);
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--accent);
}

.back-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(157, 255, 79, 0.35);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.9);
  color: var(--accent);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, box-shadow .25s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  box-shadow: var(--glow-sm);
  background: rgba(157, 255, 79, 0.12);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  z-index: 60;
  transform: translateX(-50%) translateY(16px);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.96);
  border: 1px solid rgba(157, 255, 79, 0.45);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

body.nav-open { overflow: hidden; }
body.cookie-open { padding-bottom: 116px; }
body.cookie-open .mobile-telegram { display: none; }
body.cookie-open .back-top { bottom: 132px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

input:user-invalid, textarea:user-invalid {
  border-color: rgba(255, 100, 100, 0.65);
}

/* ====== MOBILE TELEGRAM ====== */
.mobile-telegram {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  background: #b8ff6e;
  color: #0a0a0a;
  font-weight: 800;
  padding: 12px 14px;
  box-shadow: 0 16px 32px rgba(0,0,0,.45);
  transition: transform .2s ease;
}

.mobile-telegram:hover { transform: scale(1.02); }

/* ====== SCROLL ANIMATIONS ====== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn, .city-chip, .stat, .faq details, .case-media { transition: none; }
  .card:hover, .btn:hover { transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .card, .btn, .city-chip, .stat, .faq details { transition: all .25s ease; }
}

/* ====== RESPONSIVE ====== */
/* ====== LEGAL & COOKIE ====== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 12px 0;
  background: rgba(8, 8, 8, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 -18px 40px rgba(0,0,0,0.42);
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-banner__text {
  margin: 0;
  max-width: 720px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner__actions .btn {
  min-height: 42px;
  padding: 10px 16px;
}

.legal-page h1 {
  margin-bottom: 20px;
  max-width: 920px;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-transform: none;
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  overflow-wrap: anywhere;
}

.legal-page h2 {
  margin: 28px 0 10px;
  font-size: 22px;
  line-height: 1.25;
  text-transform: none;
  display: block;
}

.legal-page h2::after { display: none; }

.legal-page h3 { margin: 18px 0 8px; font-size: 18px; text-transform: none; }

.legal-page p, .legal-page li { color: var(--muted); line-height: 1.6; }

.legal-page ul { padding-left: 20px; margin: 8px 0 16px; }

.legal-page .eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.legal-contact, .legal-nav { margin-top: 28px; font-size: 14px; }

.legal-nav a { margin-right: 6px; }

@media (max-width: 980px) {
  .page-legal .header .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
  }

  .page-legal .header nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .page-legal .header nav a {
    margin: 0;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .hide-mobile { display: none !important; }
  .nav {
    gap: 10px;
    min-height: 66px;
  }
  .nav-actions { gap: 6px; }
  .nav-actions .btn-sm {
    padding: 8px 10px;
    font-size: 13px;
  }
  nav {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 24px;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    overflow-y: auto;
  }
  nav.open { display: flex; }
  nav a {
    padding: 14px 20px;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 16px;
  }
  nav a:hover, nav a:focus { background: rgba(255,255,255,0.04); }
  nav a::after { display: none; }

  .grid, .cases-grid, .hero-stats, .bento, .outcome-grid { grid-template-columns: 1fr; }
  .launch-check ul { grid-template-columns: 1fr; }

  h1 { font-size: clamp(34px, 11vw, 56px); }
  h2 { font-size: clamp(28px, 9vw, 40px); }
  .hero { padding-top: 56px; }
  .hero-cta .btn { width: 100%; }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mobile-telegram { display: block; }
  .footer { padding-bottom: 74px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; }
  .back-top { bottom: 78px; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { width: 100%; }

  .process::before { display: none; }

  .hero::before { width: 250px; height: 250px; right: -40px; top: -60px; }
}

.service-more { margin-top: 16px; }

.local-bullets {
  margin-top: 20px;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.local-bullets li { line-height: 1.5; }

.btn-phone-mobile { display: none !important; }

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1240px); }
  .logo { letter-spacing: 0.04em; }
  .nav-actions .btn-ghost { display: none; }
  .btn-phone-mobile {
    display: inline-flex !important;
    min-width: auto;
    padding: 8px 10px;
  }
  .nav-toggle { width: 40px; height: 40px; }
  .section { padding: 44px 0; }
  .card { padding: 16px; border-radius: 16px; }
  input, select, textarea { min-height: 46px; }
  textarea { min-height: 112px; }
  .case-card { padding: 10px; }
  .cookie-banner { padding: 10px 0; }
  .cookie-banner__inner {
    display: grid;
    gap: 10px;
  }
  .cookie-banner__text { font-size: 12px; }
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cookie-banner__actions .btn {
    width: 100%;
    padding: 9px 10px;
    font-size: 13px;
  }
  body.cookie-open { padding-bottom: 146px; }
}

@media (max-width: 380px) {
  .nav-actions .btn:not(.btn-ghost):not(.btn-phone-mobile) { display: none; }
  .cookie-banner__actions { grid-template-columns: 1fr; }
  body.cookie-open { padding-bottom: 188px; }
}
