/* ============================================================
   LEHALOH — breakcore digital portfolio
   Палитра: acid violet #b46bff / deep purple #180b26 / acid green #b7f53c
   ============================================================ */

:root {
  --bg: #0a0414;
  --bg-2: #110722;
  --panel: #160b26;
  --panel-2: #1d0f30;
  --line: rgba(183, 245, 60, 0.18);
  --line-purple: rgba(180, 107, 255, 0.28);
  --line-bright: rgba(180, 107, 255, 0.45);
  --purple: #b46bff;
  --purple-deep: #7c3aed;
  --green: #b7f53c;
  --green-deep: #7fb000;
  --text: #f0eafc;
  --muted: #a99dc4;
  --shadow-purple: 0 0 22px rgba(180, 107, 255, 0.45);
  --shadow-green: 0 0 18px rgba(183, 245, 60, 0.35);
  --font-display: "Unbounded", "Arial Black", sans-serif;
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Consolas", monospace;
  --clip-corner: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  --radius-corner: var(--clip-corner);
}
* { 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.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--green); color: #0a0414; }

/* ---------- инфраструктура фона: scanlines + noise ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.028) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: overlay;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1999;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* фоновые blob-градиенты */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 45% at 15% 12%, rgba(124, 58, 237, 0.30) 0%, transparent 60%),
    radial-gradient(50% 40% at 88% 22%, rgba(183, 245, 60, 0.10) 0%, transparent 60%),
    radial-gradient(70% 60% at 50% 108%, rgba(180, 107, 255, 0.18) 0%, transparent 65%),
    var(--bg);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(183, 245, 60, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 245, 60, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
}

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

section { padding: 96px 0; position: relative; }

/* ---------- типографика ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--green);
  box-shadow: var(--shadow-green);
}
.section-title { font-size: clamp(30px, 4.4vw, 54px); margin: 18px 0 14px; }
.section-lead { color: var(--muted); max-width: 640px; font-size: 17px; }

.hili { color: var(--green); }
.hipe { background: linear-gradient(90deg, var(--purple), var(--green)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 26px;
  border: 2px solid var(--green);
  color: #0a0414;
  background: var(--green);
  clip-path: var(--radius-corner);
  cursor: pointer;
  transition: all 0.18s ease;
  text-transform: uppercase;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-green);
  filter: brightness(1.06);
}
.btn:active { transform: translate(0, 0); }

.btn-ghost {
  background: transparent;
  color: var(--purple);
  border-color: var(--line-bright);
}
.btn-ghost:hover { border-color: var(--purple); box-shadow: var(--shadow-purple); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ============================================================
   НАВИГАЦИЯ
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 4, 20, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo .dot {
  width: 12px; height: 12px;
  background: var(--green);
  box-shadow: var(--shadow-green);
  transform: rotate(45deg);
  animation: blink 1.6s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }

.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 9px 14px;
  color: var(--muted);
  position: relative;
  text-transform: uppercase;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 10px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span { width: 26px; height: 2px; background: var(--purple); display: block; }

/* ============================================================
   HERO (index)
   ============================================================ */
.hero { padding: 120px 0 60px; }
.hero .container { position: relative; }

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker .pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: var(--shadow-green);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(183, 245, 60, 0.12); } }

.hero-title {
  font-size: clamp(42px, 8.5vw, 116px);
  font-weight: 800;
  margin: 26px 0 8px;
  line-height: 0.98;
}
.hero-sub { font-size: clamp(18px, 2.4vw, 24px); color: var(--muted); max-width: 680px; margin: 22px 0 34px; }

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 74px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}
.stat b {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 42px);
  color: var(--purple);
}
.stat span { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ---------- glitch-текст ---------- */
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
}
.glitch::before { left: 3px; text-shadow: 2px 0 var(--green); animation: glitch-a 3.2s infinite linear alternate-reverse; }
.glitch::after { left: -3px; text-shadow: -2px 0 var(--purple); animation: glitch-b 2.7s infinite linear alternate-reverse; }
@keyframes glitch-a {
  0%   { clip: rect(8px, 9999px, 62px, 0); }
  20%  { clip: rect(120px, 9999px, 133px, 0); }
  40%  { clip: rect(4px, 9999px, 15px, 0); }
  60%  { clip: rect(90px, 9999px, 118px, 0); }
  80%  { clip: rect(40px, 9999px, 66px, 0); }
  100% { clip: rect(0, 9999px, 0, 0); }
}
@keyframes glitch-b {
  0%   { clip: rect(60px, 9999px, 90px, 0); }
  25%  { clip: rect(0, 9999px, 9px, 0); }
  50%  { clip: rect(130px, 9999px, 160px, 0); }
  75%  { clip: rect(30px, 9999px, 55px, 0); }
  100% { clip: rect(0, 9999px, 0, 0); }
}
.glitch-hover:hover::before, .glitch-hover:hover::after { animation: none; clip: rect(0 9999px 0 0); }

/* ---------- бегущая строка ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--panel);
  padding: 18px 0;
  overflow: hidden;
  transform: rotate(-1deg);
  margin: 6px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 44px);
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px var(--purple);
  padding: 0 26px;
  position: relative;
}
.marquee-track span::after {
  content: "◆";
  color: var(--green);
  -webkit-text-stroke: 0;
  margin-left: 52px;
  font-size: 0.7em;
  vertical-align: 0.1em;
}
.marquee-track span.solid {
  color: var(--text);
  -webkit-text-stroke: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   КАРТОЧКИ / СЕРВИСЫ
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px 22px;
  clip-path: var(--radius-corner);
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  background: var(--panel-2);
  box-shadow: var(--shadow-purple);
}
.service-card .num {
  font-family: var(--font-mono);
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.2em;
}
.service-card h3 { font-size: 19px; margin: 14px 0 10px; }
.service-card p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   СЕТКА РАБОТ
   ============================================================ */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.work-grid.eight { grid-template-columns: repeat(4, 1fr); }

.work-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  clip-path: var(--radius-corner);
  cursor: pointer;
  display: block;
}
.work-card .thumb { aspect-ratio: 4 / 5; overflow: hidden; position: relative; background: #140a22; }
.work-card .thumb svg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, filter 0.4s ease; }
.work-card:hover .thumb svg { transform: scale(1.06) rotate(var(--turn, 0deg)); filter: saturate(1.35); }

.work-meta { padding: 18px 18px 20px; }
.work-meta .tags { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--green); text-transform: uppercase; }
.work-meta h3 { font-size: 20px; margin: 10px 0 6px; transition: color 0.2s; }
.work-card:hover .work-meta h3 { color: var(--purple); }
.work-meta .year { color: var(--muted); font-family: var(--font-mono); font-size: 13px; }

/* ---------- фильтры портфолио ---------- */
.filters { display: flex; gap: 12px; flex-wrap: wrap; margin: 40px 0 10px; }
.filter-btn {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  clip-path: var(--radius-corner);
  transition: all 0.16s ease;
}
.filter-btn:hover { color: var(--text); border-color: var(--purple); }
.filter-btn.active { background: var(--green); color: #0a0414; border-color: var(--green); font-weight: 700; }

.work-card.hidden { display: none; }

/* ============================================================
   HOVER-глитч у работ
   ============================================================ */
.thumb-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 3px);
  opacity: 0;
  transition: opacity 0.2s;
}
.work-card:hover .thumb-scan { opacity: 1; }

.thumb-glitch {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}
.work-card:hover .thumb-glitch {
  opacity: 0.16;
  background: linear-gradient(90deg, transparent 0 8%, var(--purple) 8% 12%, transparent 12% 34%, var(--green) 34% 38%, transparent 38% 70%, var(--purple) 70% 74%, transparent 74%);
  mix-blend-mode: screen;
  animation: glitch-shift 0.5s steps(3) infinite;
}
@keyframes glitch-shift {
  0% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  100% { transform: translateX(-6px); }
}

/* ============================================================
   ОТЗЫВ / ABOUT
   ============================================================ */
.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.about-card {
  position: relative;
  background: linear-gradient(150deg, var(--panel-2), var(--bg));
  border: 1px solid var(--line-bright);
  clip-path: var(--radius-corner);
  padding: 40px;
  min-height: 380px;
}
.about-card h3 { font-size: 24px; margin-bottom: 14px; }
.about-card p { color: var(--muted); margin-bottom: 14px; }
.about-avatar {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 86px;
  height: 86px;
  border: 2px solid var(--green);
  transform: rotate(6deg);
  background: #000;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--purple);
  box-shadow: var(--shadow-green);
}
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fact {
  border: 1px dashed var(--line-bright);
  padding: 18px;
  background: rgba(124, 58, 237, 0.06);
}
.fact b { font-family: var(--font-display); color: var(--green); font-size: 18px; display: block; margin-bottom: 6px; }
.fact span { color: var(--muted); font-size: 14px; }

/* ============================================================
   РАСЦЕНКИ
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: stretch; }

.plan {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  clip-path: var(--radius-corner);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border: 2px solid var(--purple);
  background: linear-gradient(170deg, var(--panel-2), var(--bg));
  box-shadow: var(--shadow-purple);
}
.plan-flag {
  position: absolute;
  top: -13px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--green);
  color: #0a0414;
  padding: 6px 14px;
  clip-path: var(--radius-corner);
}
.plan h3 { font-size: 22px; margin-bottom: 4px; }
.plan .sub { color: var(--muted); font-size: 14px; }
.plan .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  margin: 24px 0 6px;
}
.plan .price small { font-size: 15px; color: var(--muted); font-weight: 500; font-family: var(--font-body); }
.plan ul { list-style: none; margin: 24px 0 30px; flex: 1; }
.plan li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
  border-bottom: 1px dashed rgba(183, 245, 60, 0.12);
}
.plan li::before {
  content: "+";
  position: absolute;
  left: 6px;
  color: var(--green);
  font-family: var(--font-mono);
  font-weight: 700;
}
.plan .btn { width: 100%; justify-content: center; }

/* ---------- доп. модальности/ FAQ ---------- */
.extra-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.extra {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.extra .ico {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--purple);
  min-width: 40px;
  text-align: center;
}
.extra h3 { font-size: 18px; margin-bottom: 8px; }
.extra p { color: var(--muted); font-size: 14.5px; }

.faq { border-top: 1px solid var(--line); margin-top: 20px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 6px;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-family: var(--font-mono); font-size: 22px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: 14px; max-width: 720px; }

/* ============================================================
   КОНТАКТ / ФОРМА
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}
.contact-info h3 { font-size: 26px; margin-bottom: 14px; }
.contact-info p { color: var(--muted); margin-bottom: 28px; }

.channel {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.channel .ch-ico {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  color: var(--purple);
  font-size: 20px;
  flex-shrink: 0;
  clip-path: var(--radius-corner);
  background: var(--panel);
}
.channel b { display: block; font-size: 15px; }
.channel span { color: var(--muted); font-size: 13.5px; font-family: var(--font-mono); }
.channel:hover { border-color: var(--purple); }

.form-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  clip-path: var(--radius-corner);
  padding: 38px;
  position: relative;
}
.form-wrap::before {
  content: "FORM://LEAD";
  position: absolute;
  top: 14px; right: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--green);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-bright);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  clip-path: var(--radius-corner);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 12.5px; color: var(--muted); font-family: var(--font-mono); }

.form-state { margin-top: 18px; font-family: var(--font-mono); font-size: 14px; min-height: 24px; }
.form-state.ok { color: var(--green); }
.form-state.err { color: #ff6b6b; }
.form-state.busy { color: var(--purple); }

/* ============================================================
   FOOTER / CTA
   ============================================================ */
.cta-band {
  background: var(--panel);
  border-block: 1px solid var(--line-bright);
  padding: 70px 0;
}
.cta-band h2 { font-size: clamp(30px, 5vw, 60px); margin-bottom: 30px; }

.site-footer { padding: 46px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.footer-grid a { display: block; color: var(--muted); padding: 5px 0; font-size: 15px; transition: color 0.15s, padding-left 0.15s; }
.footer-grid a:hover { color: var(--purple); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.footer-bottom b { color: var(--green); }

/* ---------- reveal-анимации ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid.eight { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .plan { grid-auto-rows: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    top: 72px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg);
    padding: 40px 8%;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 20px; }
  .nav-burger { display: flex; }
  .nav-cta { margin: 10px 0 0; }
  .services-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 60px; }
  .section { padding: 64px 0; }
  .form-wrap { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; }
}