/* ============================================================
   ECOM TECH — Landing design system (standalone, no build step)
   Palette: paper #EDEBE6 / ink #0C0C0C / signal red #FE3B1F
   Type: Anton (display) · Archivo (body) · JetBrains Mono (labels)
   ============================================================ */

:root {
  --bg: #EDEBE6;
  --paper: #F4F2EE;
  --ink: #0C0C0C;
  --ink-soft: #3A3A38;
  --accent: #FE3B1F;
  --line: rgba(12, 12, 12, 0.85);
  --line-soft: rgba(12, 12, 12, 0.18);
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --body: "Archivo", system-ui, sans-serif;
  --display: "Anton", "Archivo Black", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-power: cubic-bezier(0.83, 0, 0.17, 1);
  --header-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ---------- Typography utilities ---------- */

.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
}

.hl { color: var(--accent); }
.hollow { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.on-dark .hollow, .dark .hollow { -webkit-text-stroke: 2px var(--bg); }

.mono-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mono-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--accent);
  flex: none;
}

.slashes {
  font-family: var(--display);
  color: var(--accent);
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: -0.06em;
  display: block;
}

/* ---------- Layout ---------- */

.container { width: min(1440px, 100% - 48px); margin-inline: auto; }

.section { padding: clamp(72px, 9vw, 140px) 0; position: relative; }
.section.tight { padding: clamp(52px, 6vw, 92px) 0; }

.section.dark { background: var(--ink); color: var(--bg); }
.section.dark .mono-tag { color: rgba(237, 235, 230, 0.75); }
.section.dark .side-note { color: rgba(237, 235, 230, 0.6); }
.section.dark p { color: rgba(237, 235, 230, 0.78); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 4.5vw, 64px);
}

.section-head h2 { font-size: clamp(38px, 6.4vw, 96px); max-width: 16ch; }

.side-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 320px;
  color: var(--ink-soft);
  line-height: 1.7;
  padding-bottom: 8px;
}

.lead { font-size: clamp(17px, 1.5vw, 20px); font-weight: 500; max-width: 62ch; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  background-image: url("assets/grain.webp");
  background-size: 620px;
  mix-blend-mode: multiply;
  opacity: 0.13;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 19px 32px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
  transition: color 0.25s;
}

.btn > * { position: relative; z-index: 1; }

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.32s var(--ease-out);
}

.btn:hover::before { transform: translateY(0); }
.btn:hover { color: #fff; }

.btn.red { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.red::before { background: var(--ink); }

.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { color: #fff; }
.dark .btn.ghost, .cta-band .btn.ghost { border-color: var(--bg); color: var(--bg); }

.btn svg { transition: transform 0.3s var(--ease-out); flex: none; }
.btn:hover svg { transform: translateX(5px); }

.link-line {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid currentColor;
  padding-bottom: 5px;
  transition: color 0.2s;
}

.link-line:hover { color: var(--accent); }

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.reveal.in { opacity: 1; transform: none; }

.reveal-clip { overflow: hidden; display: block; }

.reveal-clip > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-power);
  transition-delay: var(--d, 0s);
}

.reveal-clip.in > span { transform: translateY(0); }

/* ---------- Header ---------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--line);
  background: rgba(237, 235, 230, 0.9);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease-out);
}

.header.hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, 100% - 48px);
  margin-inline: auto;
}

.logo {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img { width: 24px; height: 24px; object-fit: contain; }
.logo .dot { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 13px;
  transition: color 0.2s;
}

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

.nav .nav-cta {
  background: var(--ink);
  color: var(--bg);
  border: 2px solid var(--ink);
  padding: 12px 18px;
  margin-left: 12px;
  position: relative;
  overflow: hidden;
}

.nav .nav-cta span { position: relative; z-index: 1; }

.nav .nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.3s var(--ease-out);
}

.nav .nav-cta:hover::before { transform: translateY(0); }
.nav .nav-cta:hover { color: #fff; }

.burger { display: none; flex-direction: column; gap: 6px; padding: 12px; }
.burger i { width: 26px; height: 2.5px; background: var(--ink); transition: transform 0.3s var(--ease-out), opacity 0.2s; }
.burger.open i:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; }
.burger.open i:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--ink);
  color: var(--bg);
  z-index: 890;
  display: flex;
  flex-direction: column;
  padding: 36px 24px;
  transform: translateY(-102%);
  transition: transform 0.5s var(--ease-power);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(32px, 8vw, 56px);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(237, 235, 230, 0.14);
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu a .idx { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.mobile-menu a:hover { color: var(--accent); }

/* ---------- Hero ---------- */

.hero {
  min-height: 100svh;
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, var(--line-soft) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  opacity: 0.3;
}

.hero-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 28px 0 22px;
  border-bottom: 2px solid var(--line);
}

.hero-body { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(32px, 4vw, 72px); align-items: center; padding: clamp(32px, 4vw, 56px) 0; }

.hero-title { font-size: clamp(52px, 11vw, 168px); color: var(--ink); position: relative; z-index: 2; }
.hero-title .row { display: block; }

.hero-sub { max-width: 54ch; font-size: clamp(16.5px, 1.4vw, 19px); font-weight: 500; margin-top: 28px; color: var(--ink-soft); }
.hero-sub strong { color: var(--accent); font-weight: 700; }

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

.hero-media { position: relative; }

.hero-media .shot {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--ink);
}

.hero-media .shot img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); transform: scale(1.03); }

.hero-media .shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  mix-blend-mode: multiply;
  opacity: 0.16;
}

.hero-media .tag-strip {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 12px;
  z-index: 2;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--line);
}

.hero-stats .cell { padding: 24px 20px 26px; border-right: 2px solid var(--line); }
.hero-stats .cell:last-child { border-right: none; }
.hero-stats .v { font-family: var(--display); font-size: clamp(32px, 3.6vw, 56px); line-height: 1; color: var(--accent); }
.hero-stats .l { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-top: 10px; line-height: 1.6; }

/* ---------- Marquee ---------- */

.marquee {
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  overflow: hidden;
  padding: 15px 0;
  background: var(--ink);
  color: var(--bg);
}

.marquee.red { background: var(--accent); color: #fff; }

.marquee-track { display: flex; width: max-content; animation: marquee 24s linear infinite; }

.marquee-item {
  font-family: var(--display);
  font-size: clamp(20px, 2.8vw, 36px);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  padding-right: 40px;
}

.marquee-item .sep { color: var(--accent); }
.marquee.red .sep { color: var(--ink); }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Pain points ---------- */

.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); border: 2px solid var(--line); }

.pain-item {
  background: var(--bg);
  padding: clamp(24px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s, color 0.3s;
}

.pain-item:hover { background: var(--ink); color: var(--bg); }
.pain-item .x { font-family: var(--display); font-size: 26px; color: var(--accent); }
.pain-item h3 { font-family: var(--display); font-size: clamp(20px, 2.2vw, 30px); text-transform: uppercase; line-height: 1; }
.pain-item p { color: var(--ink-soft); font-size: 15.5px; max-width: 46ch; transition: color 0.3s; }
.pain-item:hover p { color: rgba(237, 235, 230, 0.72); }

/* ---------- Cards (offer / deliverables) ---------- */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 2px solid var(--line); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg);
  padding: clamp(26px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  transition: background 0.3s, color 0.3s;
}

.card:hover { background: var(--accent); color: #fff; }
.card .card-num { font-family: var(--mono); font-size: 12px; color: var(--accent); transition: color 0.3s; }
.card:hover .card-num { color: var(--ink); }
.card h3 { font-family: var(--display); font-size: clamp(22px, 2.4vw, 34px); text-transform: uppercase; line-height: 0.98; }
.card p { color: var(--ink-soft); font-size: 15.5px; transition: color 0.3s; }
.card:hover p { color: rgba(255, 255, 255, 0.92); }

.card ul { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.card ul li { font-family: var(--mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; padding-left: 18px; position: relative; }
.card ul li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; background: var(--accent); transition: background 0.3s; }
.card:hover ul li::before { background: var(--ink); }

/* ---------- Stats band (animated counters) ---------- */

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid rgba(237, 235, 230, 0.25); }

.stat-cell { padding: clamp(26px, 3vw, 46px) clamp(18px, 2.2vw, 36px); border-right: 2px solid rgba(237, 235, 230, 0.25); }
.stat-cell:last-child { border-right: none; }
.stat-value { font-family: var(--display); font-size: clamp(42px, 5.2vw, 84px); line-height: 1; transition: color 0.25s; }
.stat-cell:hover .stat-value { color: var(--accent); }
.stat-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(237, 235, 230, 0.65); margin-top: 12px; display: block; line-height: 1.7; }

/* ---------- Bars chart ---------- */

.bars { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.bar-row { display: grid; grid-template-columns: 170px 1fr 72px; gap: 16px; align-items: center; }
.bar-row .bl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.bar-track { height: 24px; background: rgba(237, 235, 230, 0.1); border: 1.5px solid rgba(237, 235, 230, 0.2); position: relative; overflow: hidden; }
.bar-fill { position: absolute; inset: 0; background: var(--accent); transform-origin: left; transform: scaleX(0); transition: transform 1.3s var(--ease-power); transition-delay: var(--d, 0s); }
.bars.grow .bar-fill { transform: scaleX(var(--w, 0.5)); }
.bar-row .bv { font-family: var(--display); font-size: 19px; text-align: right; color: var(--accent); }

/* ---------- Process ---------- */

.process-row {
  display: grid;
  grid-template-columns: 130px 1fr 1.2fr 150px;
  gap: 24px;
  align-items: start;
  border-top: 2px solid var(--line);
  padding: clamp(24px, 2.8vw, 40px) 0;
}

.process-row:last-child { border-bottom: 2px solid var(--line); }
.section.dark .process-row { border-color: rgba(237, 235, 230, 0.25); }
.process-row .p-num { font-family: var(--display); font-size: clamp(36px, 4.2vw, 64px); color: transparent; -webkit-text-stroke: 1.5px var(--accent); line-height: 0.9; }
.process-row h3 { font-family: var(--display); font-size: clamp(22px, 2.6vw, 38px); text-transform: uppercase; line-height: 0.98; }
.process-row p { color: var(--ink-soft); max-width: 52ch; font-size: 15.5px; }
.process-row .p-dur { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); text-align: right; }

/* ---------- Testimonials ---------- */

.testi-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 2px solid var(--line); }
.testi-card { background: var(--paper); padding: clamp(24px, 2.8vw, 40px); display: flex; flex-direction: column; gap: 22px; }
.testi-card .q-mark { font-family: var(--display); font-size: 58px; color: var(--accent); line-height: 0.6; }
.testi-card blockquote { font-size: 16.5px; font-weight: 500; line-height: 1.55; }
.testi-card .who { margin-top: auto; border-top: 1.5px solid var(--line-soft); padding-top: 14px; }
.testi-card .who .n { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.testi-card .who .r { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-top: 5px; }

/* ---------- Offer / pricing ---------- */

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 2px solid var(--line); }

.offer-card { background: var(--bg); padding: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; gap: 18px; }
.offer-card.featured { background: var(--ink); color: var(--bg); }
.offer-card.featured p { color: rgba(237, 235, 230, 0.75); }
.offer-card .badge { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; background: var(--accent); color: #fff; padding: 6px 10px; align-self: flex-start; }
.offer-card h3 { font-family: var(--display); font-size: clamp(24px, 2.6vw, 36px); text-transform: uppercase; line-height: 1; }
.offer-price { font-family: var(--display); font-size: clamp(34px, 4vw, 58px); color: var(--accent); line-height: 1; }
.offer-price small { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-soft); display: block; margin-top: 8px; text-transform: uppercase; }
.offer-card.featured .offer-price small { color: rgba(237, 235, 230, 0.6); }
.offer-list { display: flex; flex-direction: column; gap: 10px; }
.offer-list li { font-size: 14.5px; padding-left: 20px; position: relative; }
.offer-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--accent); }
.offer-card .btn { margin-top: auto; justify-content: center; }

/* ---------- FAQ ---------- */

.faq-item { border-top: 2px solid var(--line); }
.faq-item:last-child { border-bottom: 2px solid var(--line); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  font-size: clamp(16.5px, 1.5vw, 21px);
  font-weight: 700;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--accent); }
.faq-q .plus { font-family: var(--display); font-size: 26px; color: var(--accent); transition: transform 0.35s var(--ease-out); flex: none; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease-power); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p { color: var(--ink-soft); max-width: 76ch; padding-bottom: 24px; font-size: 15.5px; }

/* ---------- Form ---------- */

.form-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

.field input, .field textarea, .field select {
  font-family: var(--body);
  font-size: 16px;
  padding: 15px;
  background: var(--paper);
  border: 2px solid var(--line);
  color: var(--ink);
  border-radius: 0;
  appearance: none;
  transition: border-color 0.2s, background 0.2s;
}

.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-family: var(--mono); font-size: 10.5px; color: var(--ink-soft); line-height: 1.8; }
.form-success { border: 2px solid var(--accent); background: var(--paper); padding: 32px; text-align: center; }
.form-success h3 { font-family: var(--display); font-size: 30px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }

.info-stack { display: flex; flex-direction: column; gap: 2px; background: var(--line); border: 2px solid var(--line); align-self: start; }
.info-block { background: var(--bg); padding: 24px; }
.info-block .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px; }
.info-block .val { font-size: 16.5px; font-weight: 700; line-height: 1.5; }

/* ---------- CTA band ---------- */

.cta-band { background: var(--accent); color: #fff; position: relative; overflow: hidden; padding: clamp(64px, 8vw, 130px) 0; }

.cta-band .cta-texture {
  position: absolute;
  left: -4%;
  top: 0;
  width: 108%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: multiply;
  animation: drift 26s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes drift {
  from { transform: translateX(0) scale(1.02); }
  to { transform: translateX(-4%) scale(1.08); }
}

.cta-band .container { position: relative; z-index: 2; }
.cta-band .giant-cta { font-family: var(--display); font-size: clamp(46px, 9.5vw, 150px); text-transform: uppercase; line-height: 0.9; }
.cta-band .giant-cta .hollow { -webkit-text-stroke: 2px #fff; }
.cta-band .cta-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 26px; margin-top: clamp(28px, 3.5vw, 50px); }
.cta-band p { max-width: 46ch; font-size: 16.5px; font-weight: 500; }
.cta-band .btn { background: var(--ink); border-color: var(--ink); color: #fff; }
.cta-band .btn::before { background: #fff; }
.cta-band .btn:hover { color: var(--ink); }

/* ---------- Footer ---------- */

.footer { background: var(--ink); color: var(--bg); border-top: 2px solid var(--line); }

.footer-giant {
  font-family: var(--display);
  font-size: clamp(48px, 11vw, 180px);
  text-transform: uppercase;
  line-height: 0.85;
  padding: clamp(44px, 6vw, 88px) 0 clamp(26px, 3.5vw, 52px);
  display: block;
  transition: color 0.3s;
}

.footer-giant .dot { color: var(--accent); }
.footer-giant:hover { color: var(--accent); }
.footer-giant:hover .dot { color: var(--bg); }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 36px 0 44px; border-top: 1.5px solid rgba(237, 235, 230, 0.18); }
.footer h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.footer-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-col a, .footer-col span { font-size: 14.5px; color: rgba(237, 235, 230, 0.78); transition: color 0.2s, transform 0.2s; }
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }
.footer-col address { font-style: normal; color: rgba(237, 235, 230, 0.78); font-size: 14.5px; line-height: 1.8; }
.footer-mark { width: 42px; height: 42px; object-fit: contain; margin-bottom: 14px; }

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff !important;
  background: #1FAF38;
  padding: 12px 17px;
  margin-top: 6px;
  transition: background 0.25s, transform 0.2s;
}

.wa-link:hover { background: #178A2C; transform: translateY(-3px); }
.wa-link svg { flex: none; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0 28px;
  border-top: 1.5px solid rgba(237, 235, 230, 0.18);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237, 235, 230, 0.5);
}

.footer-bottom a { color: rgba(237, 235, 230, 0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Tag cloud ---------- */

.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; border: 2px solid var(--line); padding: 11px 16px; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.tag-cloud span:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.section.dark .tag-cloud span { border-color: rgba(237, 235, 230, 0.3); }

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-media { max-width: 420px; }
  .cards, .cards.four { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .testi-rail { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 2px solid rgba(237, 235, 230, 0.25); }
  .process-row { grid-template-columns: 90px 1fr; }
  .process-row p, .process-row .p-dur { grid-column: 2; text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 120px 1fr 60px; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .pain-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .cell { border-right: none; border-bottom: 2px solid var(--line); }
  .hero-stats .cell:last-child { border-bottom: none; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 32px); }
  .cards, .cards.two, .cards.four { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 2px solid rgba(237, 235, 230, 0.25); }
  .stat-cell:last-child { border-bottom: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 1fr; gap: 6px; }
  .bar-row .bv { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-clip > span { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; }
}
