/* ===== Base ===== */
:root {
  --bg: #0a0a0c;
  --bg-2: #0f0f13;
  --surface: #15151b;
  --surface-2: #1c1c25;
  --line: #2a2a35;
  --line-2: #34343f;
  --text: #f4f4f6;
  --muted: #b4b4bd;
  --accent: #ff3a1f;
  --accent-2: #ff6a00;
  --accent-soft: rgba(255, 58, 31, 0.12);
  --signal: #d4ff00;
  --paper: #efece4;
  --paper-ink: #1a1a1f;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 30px 80px rgba(0,0,0,0.5);
  --display: 'Archivo Black', 'Impact', 'Oswald', sans-serif;
  --body: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SF Mono, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1220px, 92%); margin: 0 auto; }
.num { font-family: var(--mono); font-feature-settings: "tnum"; letter-spacing: 0; }

h1, h2, h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 16px;
  line-height: 0.98;
  font-weight: 900;
}
h1 { font-size: clamp(44px, 7.2vw, 96px); }
h2 { font-size: clamp(32px, 4.6vw, 56px); }
h3 { font-size: 20px; letter-spacing: 0.02em; line-height: 1.1; }

.accent { color: var(--accent); }

.tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid rgba(255,58,31,0.25);
  border-radius: 2px;
  margin-bottom: 18px;
}
.tag--dark {
  background: rgba(255,255,255,0.04);
  color: var(--accent);
  border-color: var(--line);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 4px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,58,31,0.35), inset 0 -3px 0 rgba(0,0,0,0.2);
}
.btn--primary:hover { transform: translateY(-2px); background: #ff5232; box-shadow: 0 14px 36px rgba(255,58,31,0.55), inset 0 -3px 0 rgba(0,0,0,0.2); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--solid {
  background: var(--paper-ink);
  color: var(--paper);
  border-color: var(--paper-ink);
}
.btn--solid:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--full { width: 100%; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,12,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__mark {
  width: 38px; height: 38px;
  background: var(--accent);
  color: #0a0a0c;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.25);
}
.logo__text {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.logo__text span { color: var(--accent); }
.nav {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.nav a { color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--text); }
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.burger span {
  width: 24px; height: 2px;
  background: #fff;
  display: block;
  transition: transform .2s, opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background: var(--bg);
}
.hero__bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  -webkit-filter: grayscale(35%) contrast(1.15) saturate(0.85);
  filter: grayscale(35%) contrast(1.15) saturate(0.85);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero__grid {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(900px 600px at 78% 8%, rgba(255,58,31,0.22), transparent 60%),
    radial-gradient(700px 500px at 8% 85%, rgba(255,106,0,0.10), transparent 70%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10,10,12,0) 35%, var(--bg) 100%);
  background-size: auto, auto, 56px 56px, 56px 56px, auto;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__content { min-width: 0; }
.hero__title {
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.hero__title-accent {
  display: inline-block;
  position: relative;
  color: var(--accent);
  padding: 0 4px;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 8px;
  background: var(--accent);
  opacity: 0.18;
  z-index: -1;
  transform: skewX(-12deg);
}
.hero__sub {
  font-size: clamp(15px, 1.15vw, 18px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 36px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__bullets {
  display: flex;
  gap: 48px;
  list-style: none;
  padding: 0; margin: 0;
}
.hero__bullets li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}
.hero__bullets strong {
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--text);
  line-height: 1;
  letter-spacing: 0;
}
.hero__bullets span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Stub voucher */
.stub {
  position: relative;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.035) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, #f5f2ea, #e3dfd2);
  color: var(--paper-ink);
  padding: 30px 32px 32px;
  border-radius: 4px;
  transform: rotate(-2.6deg);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.03);
  font-family: var(--body);
}
.stub::before {
  content: 'free / talon';
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%) rotate(2.6deg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg);
  padding: 5px 12px;
  border: 1px solid var(--accent);
  border-radius: 2px;
}
.stub__head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: #6b6657;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px dashed #b8b3a3;
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.stub__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 30px;
  color: var(--accent);
  margin: 0 0 10px;
  line-height: 0.95;
}
.stub p {
  color: #34333d;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.stub .btn { margin-top: 4px; }
.stub__foot {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: #6b6657;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stub__foot b { color: var(--accent); }
.stub__perf {
  position: absolute;
  top: 12px; bottom: 12px;
  width: 1px;
  background-image: radial-gradient(circle, var(--bg) 0 2px, transparent 2.5px);
  background-size: 1px 10px;
  background-repeat: repeat-y;
}
.stub__perf--left { left: 16px; }
.stub__perf--right { right: 16px; }

/* ===== Strip / Marquee ===== */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: stretch;
  overflow: hidden;
}
.strip__label {
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex; align-items: center;
  white-space: nowrap;
}
.marquee {
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  animation: marquee 38s linear infinite;
  padding: 18px 24px;
}
.marquee__track span {
  opacity: 0.5;
  transition: opacity 0.25s, color 0.25s;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span:hover { opacity: 1; color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Section base ===== */
.section { padding: 110px 0; position: relative; }
.section--dark {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
}
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.section__head p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

/* ===== Services / Bento ===== */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
.service {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 26px;
  transition: transform .25s ease, border-color .25s, background .25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  background: var(--surface-2);
}
.service__icon {
  width: 44px; height: 44px;
  flex: 0 0 auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.service__icon svg {
  display: block;
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  color: var(--accent);
  stroke: var(--accent);
  fill: none;
}
.service__icon svg * { stroke: var(--accent); }
.service--hero .service__icon { width: 56px; height: 56px; }
.service--hero .service__icon svg {
  width: 56px; height: 56px; max-width: 56px; max-height: 56px;
  color: var(--signal);
  stroke: var(--signal);
}
.service--hero .service__icon svg * { stroke: var(--signal); }
.socials a svg { display: block; width: 18px; height: 18px; max-width: 18px; max-height: 18px; }
.review__stars svg { display: block; width: 18px; height: 18px; max-width: 18px; max-height: 18px; fill: var(--accent); }
.map__pin svg { display: block; width: 36px; height: 36px; stroke: var(--accent); fill: none; }
.service__kicker {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.service h3 { color: var(--text); margin: 0; }
.service p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.55; flex: 1; }
.service__price {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.service__cta {
  font-family: var(--mono);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.service--hero {
  grid-column: span 2;
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(255,58,31,0.35), transparent 60%),
    linear-gradient(160deg, #2b1410, #14141a);
  border-color: rgba(255,58,31,0.45);
  padding: 36px;
  gap: 20px;
}
.service--hero .service__icon { width: 56px; height: 56px; color: var(--signal); }
.service--hero h3 { font-size: clamp(26px, 2.4vw, 36px); }
.service--hero p { color: rgba(244,244,246,0.78); font-size: 15px; }
.service--hero .service__price { font-size: 17px; color: var(--signal); }
.service--hero .service__cta { color: #fff; }
.service--hero::after {
  content: '';
  position: absolute;
  right: -40px; bottom: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  opacity: 0.5;
  filter: blur(20px);
  pointer-events: none;
}
.service--ghost {
  background: transparent;
  border-style: dashed;
  border-color: var(--line-2);
}
.service--ghost:hover { border-color: var(--accent); background: rgba(255,58,31,0.04); color: var(--text); }
.service--ghost h3 { color: var(--text); }
.service--ghost .service__cta { color: var(--accent); margin-top: auto; }

/* ===== Kinetic divider ===== */
.kinetic {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  padding: 18px 0;
}
.kinetic__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--text);
  animation: marquee 32s linear infinite;
}
.kinetic__track span:nth-child(4n+1) { color: var(--text); }
.kinetic__track span:nth-child(4n+3) { color: transparent; -webkit-text-stroke: 1.5px var(--accent); }
.kinetic__dot {
  color: var(--accent) !important;
  -webkit-text-stroke: 0 !important;
  font-size: 0.6em;
  display: inline-flex;
  align-items: center;
}

/* ===== Why ===== */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
  align-items: start;
}
.why__head h2 {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 0.9;
  margin-bottom: 22px;
}
.why__head p { color: var(--muted); font-size: 17px; max-width: 360px; margin: 0; }
.why {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
}
.why__item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.why__item:last-child { border-bottom: 1px solid var(--line); }
.why__num {
  font-family: var(--display);
  font-size: 90px;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  letter-spacing: 0.01em;
}
.why__item h3 { margin-bottom: 10px; font-size: 22px; }
.why__item p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.6; }

/* ===== Works ===== */
.works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.work {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.work:hover { transform: translateY(-4px); border-color: var(--line-2); }
.work__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1f1f25, #0c0c10);
}
.work__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.work:hover .work__media img { transform: scale(1.04); }
.work__tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(10,10,12,0.82);
  color: var(--signal);
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(212,255,0,0.25);
}
.work__body { padding: 24px 26px 28px; flex: 1; }
.work__body h3 { font-size: 22px; line-height: 1; margin-bottom: 12px; }
.work__sub {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-top: 6px;
  font-weight: 500;
}
.work__body p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.55; }

/* ===== Pricing ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.plan__num {
  position: absolute;
  right: -8px; bottom: -28px;
  font-family: var(--display);
  font-size: 200px;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.06);
  pointer-events: none;
  letter-spacing: -0.02em;
}
.plan__badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--signal);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}
.plan__name {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plan__price {
  font-family: var(--display);
  font-size: 36px;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.plan ul {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.plan li {
  color: #d8d8e0;
  padding-left: 26px;
  position: relative;
  font-size: 15px;
}
.plan li::before {
  content: "+";
  position: absolute;
  left: 0; top: -2px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 20px;
}
.plan--featured {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,58,31,0.2), transparent 60%),
    var(--surface);
  border-color: rgba(255,58,31,0.5);
  transform: translateY(-10px);
}
.plan--featured .plan__num { -webkit-text-stroke: 1.5px rgba(255,58,31,0.18); }
.plan .btn { position: relative; z-index: 1; }

/* ===== Reviews ===== */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .25s;
}
.review:hover { border-color: var(--line-2); }
.review__stars {
  display: flex; gap: 4px;
  color: var(--accent);
}
.review__stars svg { width: 18px; height: 18px; fill: currentColor; }
.review > p {
  color: #dadae0;
  margin: 0;
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  flex: 1;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 4px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.review__author b { display: block; color: #fff; font-weight: 700; }
.review__author span { color: var(--muted); font-size: 13px; }

/* ===== CTA ===== */
.cta {
  padding: 110px 0;
  background:
    radial-gradient(900px 600px at 0% 50%, rgba(255,58,31,0.16), transparent 60%),
    var(--bg);
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.cta__text h2 { font-size: clamp(36px, 4.4vw, 64px); }
.cta__text p { color: var(--muted); font-size: 17px; margin: 0 0 26px; max-width: 480px; }
.cta__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #d8d8e0;
  font-size: 15px;
}
.cta__list li { display: flex; gap: 14px; align-items: center; }
.cta__list span { color: var(--accent); font-family: var(--mono); font-weight: 700; }

.form {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.form__head {
  border-bottom: 1px dashed var(--line-2);
  padding-bottom: 18px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__head .num {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.form__head .num b { color: var(--signal); }
.form__head h3 { color: #fff; margin: 0; font-size: 22px; }
.form label {
  display: block;
  margin-bottom: 16px;
}
.form label > span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 4px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.form input::placeholder { color: rgba(180,180,189,0.55); }
.form input:focus {
  outline: none;
  border-color: var(--accent);
  background: #08080a;
}
.form input[aria-invalid="true"] {
  border-color: var(--accent);
  background: rgba(255,58,31,0.06);
}
.form .btn { margin-top: 6px; }
.form small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  margin-top: 14px;
}
.form__success {
  position: absolute;
  inset: 0;
  background: rgba(10,10,12,0.97);
  border-radius: var(--radius-lg);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text);
  padding: 30px;
  text-align: center;
}
.form__success .num {
  color: var(--signal);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--signal);
  border-radius: 2px;
}
.form__success p {
  font-family: var(--display);
  font-size: 22px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
}
.form__success.is-active { display: flex; }

/* ===== Contacts ===== */
.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contacts__col h2 { font-size: clamp(40px, 5vw, 64px); line-height: 0.9; }
.contacts__addr { color: var(--muted); font-size: 14px; letter-spacing: 0.04em; line-height: 1.7; }
.contacts__phone a, .contacts__mail a {
  font-family: var(--display);
  font-size: 26px;
  color: #fff;
  transition: color .2s;
  letter-spacing: 0.02em;
}
.contacts__phone a:hover, .contacts__mail a:hover { color: var(--accent); }
.socials {
  margin-top: 26px;
  display: flex;
  gap: 10px;
}
.socials a {
  width: 44px; height: 44px;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.socials a svg { width: 18px; height: 18px; }
.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.map {
  height: 380px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.map__frame {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer p { color: var(--muted); margin: 0; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer__top {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color .2s;
}
.footer__top:hover { color: var(--accent); }

/* ===== Floating CTA (mobile) ===== */
.floating-cta {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 4px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(255,58,31,0.5);
  display: none;
  z-index: 40;
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .services { grid-template-columns: repeat(3, 1fr); }
  .service--hero { grid-column: span 3; }
  .why-wrap { gap: 60px; }
}
@media (max-width: 1024px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .stub { transform: rotate(0); max-width: 480px; margin: 0 auto; }
  .stub::before { transform: translateX(-50%); }
  .services { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service--hero { grid-column: span 2; }
  .why-wrap { grid-template-columns: 1fr; gap: 40px; }
  .why__head h2 br { display: none; }
  .reviews, .pricing, .works { grid-template-columns: repeat(2, 1fr); }
  .cta__inner, .contacts { grid-template-columns: 1fr; gap: 40px; }
  .plan--featured { transform: none; }
  .floating-cta { display: inline-flex; }
  .strip { grid-template-columns: 1fr; }
  .strip__label { border-right: none; border-bottom: 1px solid var(--line); padding: 14px 24px; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-2);
    flex-direction: column;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
}
@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .hero { padding: 70px 0 80px; }
  .services, .reviews, .pricing, .works { grid-template-columns: 1fr; }
  .service--hero { grid-column: span 1; padding: 28px; }
  .why__item { grid-template-columns: 80px 1fr; gap: 20px; padding: 24px 0; }
  .why__num { font-size: 60px; }
  .hero__bullets { flex-wrap: wrap; gap: 24px; }
  .form, .stub { padding: 24px; }
  .map { height: 320px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .marquee__track, .kinetic__track { animation: none !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .work:hover .work__media img { transform: none; }
}
