/* =========================================================================
   ZORODO — single stylesheet
   Aesthetic: dark technical, lime accent, mono-display headlines.
   No frameworks. ~14KB. Tested down to 360px viewports.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
  /* Color */
  --bg:            #0a0a0a;
  --bg-soft:       #111111;
  --surface:       #161616;
  --surface-2:     #1c1c1c;
  --border:        #242424;
  --border-strong: #333333;

  --text:          #f5f5f5;
  --text-dim:      #a8a8a8;
  --text-muted:    #6b6b6b;

  --accent:        #d3ff3d;          /* electric lime */
  --accent-soft:   rgba(211,255,61,.12);
  --accent-strong: #b8e62f;
  --warn:          #ffb800;
  --bad:           #ff5a5a;

  /* Type */
  --font-display:  "Schibsted Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body:     "Schibsted Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-mono:     "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container:     1200px;
  --container-narrow: 800px;
  --radius:        14px;
  --radius-sm:     8px;

  /* Motion */
  --ease:          cubic-bezier(.2,.7,.3,1);
}

/* -------------------------------------------------------------------------
   2. Reset
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s var(--ease);
}

button { font: inherit; cursor: pointer; }

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

/* -------------------------------------------------------------------------
   3. Layout primitives
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

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

@media (max-width: 720px) {
  section { padding: 64px 0; }
}

/* -------------------------------------------------------------------------
   4. Typography
   ------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); }

p { margin: 0 0 1em; color: var(--text-dim); }

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-soft);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-dot 2.4s var(--ease) infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.section-eyebrow {
  margin-bottom: 32px;
}

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-bottom: 12px;
}
.section-lede {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin: 0;
}

.accent { color: var(--accent); }
.strike {
  position: relative;
  white-space: nowrap;
}
.strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 55%;
  height: 4px;
  background: var(--bad);
  transform: skewY(-3deg);
  border-radius: 2px;
  opacity: 0.85;
}

/* -------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 1rem; }

.btn--primary {
  background: var(--accent);
  color: #0a0a0a;
}
.btn--primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--text-dim);
  background: var(--bg-soft);
}

/* -------------------------------------------------------------------------
   6. Header / Navigation
   ------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 28px;
  background: rgba(10,10,10,.7);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  flex-shrink: 0;
}
.brand__mark {
  height: 22px;
  width: auto;
  color: var(--text);
}
.brand__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  fill: currentColor;
  letter-spacing: -0.04em;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.nav__links a:hover { color: var(--text); }

.nav__cta { flex-shrink: 0; }

/* Hamburger button — desktop hidden, mobile shown */
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0;
  position: relative;
  cursor: pointer;
}
.nav__burger-bar {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform .25s var(--ease), opacity .2s var(--ease), top .25s var(--ease);
}
.nav__burger-bar:nth-child(1) { top: 13px; }
.nav__burger-bar:nth-child(2) { top: 19px; }
.nav__burger-bar:nth-child(3) { top: 25px; }

/* Hamburger -> X transformation when open */
.nav__burger[aria-expanded="true"] .nav__burger-bar:nth-child(1) {
  top: 19px; transform: rotate(45deg);
}
.nav__burger[aria-expanded="true"] .nav__burger-bar:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] .nav__burger-bar:nth-child(3) {
  top: 19px; transform: rotate(-45deg);
}

@media (max-width: 860px) {
  .nav { gap: 8px; padding: 12px 16px; }
  .nav__cta { padding: 9px 14px; font-size: 0.85rem; }

  /* Show hamburger; CTA stays in the bar so it's always tappable */
  .nav__burger { display: block; margin-left: auto; }
  .nav__cta { margin-left: 0; }

  /* Mobile drawer: full-width slide-down panel */
  .nav__links {
    position: fixed;
    top: 60px;            /* below the sticky nav */
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform .3s var(--ease);
    visibility: hidden;
    margin-left: 0;
    font-size: 1.05rem;
  }
  .nav__links.is-open {
    transform: translateY(0);
    visibility: visible;
  }
  .nav__links a {
    padding: 16px 0;
    border-top: 1px solid var(--border);
    color: var(--text);
  }
  .nav__links a:first-child { border-top: 0; }
}

/* Very small screens: hide CTA text label, keep hamburger + brand */
@media (max-width: 380px) {
  .nav__cta { display: none; }
}

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
  opacity: 0.55;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding-top: 40px; }
}

.hero__title {
  margin: 24px 0 20px;
}

.hero__sub {
  font-size: 1.18rem;
  color: var(--text-dim);
  max-width: 56ch;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}
.hero__proof span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 540px) {
  .hero__proof { grid-template-columns: 1fr; gap: 16px; }
}

/* Hero workflow visual */
.hero__visual {
  width: 100%;
  max-width: 480px;
  justify-self: end;
  position: relative;
}
@media (max-width: 980px) {
  .hero__visual { justify-self: center; max-width: 380px; }
}

.flow text {
  font-family: var(--font-mono);
  font-size: 12px;
  fill: var(--text);
  text-anchor: middle;
  font-weight: 500;
}
.flow .node rect {
  fill: var(--surface);
  stroke: var(--border-strong);
  stroke-width: 1.5;
  transition: stroke .3s var(--ease);
}
.flow .node--trigger rect {
  stroke: var(--accent);
  fill: var(--accent-soft);
}
.flow .node--trigger text { fill: var(--accent); }

.flow__edges path {
  stroke-dasharray: 4 4;
  opacity: 0.55;
}

/* Pulse animations along the flow paths */
@keyframes pulse-travel-1 {
  0%   { transform: translate(80px, 80px); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translate(240px, 160px); opacity: 1; }
  60%  { transform: translate(380px, 100px); opacity: 1; }
  70%  { opacity: 0; }
  100% { transform: translate(380px, 100px); opacity: 0; }
}
@keyframes pulse-travel-2 {
  0%   { transform: translate(80px, 80px); opacity: 0; }
  15%  { opacity: 1; }
  55%  { transform: translate(240px, 160px); opacity: 1; }
  70%  { transform: translate(380px, 220px); opacity: 1; }
  80%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes pulse-travel-3 {
  0%   { transform: translate(80px, 80px); opacity: 0; }
  20%  { opacity: 1; }
  60%  { transform: translate(240px, 240px); opacity: 1; }
  80%  { transform: translate(380px, 300px); opacity: 1; }
  90%  { opacity: 0; }
  100% { opacity: 0; }
}
.pulse {
  filter: drop-shadow(0 0 6px var(--accent));
}
.pulse--1 { animation: pulse-travel-1 4s var(--ease) infinite; }
.pulse--2 { animation: pulse-travel-2 4s var(--ease) infinite; animation-delay: 1.3s; }
.pulse--3 { animation: pulse-travel-3 4s var(--ease) infinite; animation-delay: 2.6s; }

@media (prefers-reduced-motion: reduce) {
  .pulse, .eyebrow__dot { animation: none; }
}

/* -------------------------------------------------------------------------
   8. Pain strip
   ------------------------------------------------------------------------- */
.painstrip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .pain-grid { grid-template-columns: 1fr; }
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.pain-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.pain-card__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.pain-card h3 { color: var(--text); margin-bottom: 10px; }
.pain-card p { font-size: 0.96rem; margin: 0; }
.pain-card strong { color: var(--text); }

/* -------------------------------------------------------------------------
   9. Services
   ------------------------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) {
  .service-grid { grid-template-columns: 1fr; }
}
.service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.service:hover {
  border-color: var(--accent);
  background: var(--surface-2);
}
.service__icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 20px;
}
.service__icon svg { width: 22px; height: 22px; }
.service h3 { color: var(--text); margin-bottom: 10px; }
.service p { font-size: 0.96rem; margin-bottom: 16px; }
.service__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.service__list li {
  padding: 6px 0 6px 22px;
  position: relative;
  border-top: 1px solid var(--border);
}
.service__list li:first-child { border-top: 0; }
.service__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* -------------------------------------------------------------------------
   10. Process / Steps
   ------------------------------------------------------------------------- */
.process { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }
}
.step {
  padding: 0 16px;
  position: relative;
  text-align: left;
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step h3 { color: var(--text); margin-bottom: 8px; }
.step p { font-size: 0.94rem; margin-bottom: 10px; }
.step__time {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* -------------------------------------------------------------------------
   11. "Why" comparison
   ------------------------------------------------------------------------- */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .compare { grid-template-columns: 1fr; }
}
.compare__col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.compare__col--good {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(211,255,61,0.05), var(--surface));
}
.compare__brand {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.compare__col--good .compare__brand { color: var(--accent); }
.compare__price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1;
}
.compare__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-left: 4px;
}
.compare__col--bad .compare__price {
  color: var(--bad);
}
.compare__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dim);
}
.compare__col li {
  padding: 10px 0 10px 24px;
  border-top: 1px solid var(--border);
  position: relative;
}
.compare__col li:first-child { border-top: 0; }
.compare__col--bad li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--bad);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}
.compare__col--good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.compare__divider {
  display: grid;
  place-items: center;
  color: var(--text-muted);
  width: 24px;
}
.compare__divider svg { width: 24px; height: 80px; }
@media (max-width: 860px) {
  .compare__divider { display: none; }
}

.why__foot {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 32px auto 0;
}

/* -------------------------------------------------------------------------
   12. Testimonials grid
   ------------------------------------------------------------------------- */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .voices-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .voices-grid { grid-template-columns: 1fr; } }

.voice {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.voice:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.voice blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
  position: relative;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  font-style: italic;
}
.voice figcaption {
  display: flex;
  flex-direction: column;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: auto;
}
.voice figcaption strong {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  font-style: normal;
}

/* -------------------------------------------------------------------------
   13. FAQ
   ------------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-list details {
  border-top: 1px solid var(--border);
  padding: 4px 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--border); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  transition: color .2s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--accent); }

.faq__plus {
  width: 16px; height: 16px;
  position: relative;
  flex-shrink: 0;
}
.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .25s var(--ease);
}
.faq__plus::before { top: 7px; left: 0; right: 0; height: 2px; }
.faq__plus::after  { left: 7px; top: 0; bottom: 0; width: 2px; }

.faq-list details[open] .faq__plus::after { transform: rotate(90deg); }

.faq-list details p {
  margin: 0 0 22px;
  color: var(--text-dim);
  font-size: 0.98rem;
  max-width: 70ch;
}

/* -------------------------------------------------------------------------
   14. Form
   ------------------------------------------------------------------------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
@media (max-width: 540px) { .form { padding: 22px; } }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) {
  .form__row { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field > span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-soft);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%), linear-gradient(135deg, var(--text-dim) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }

/* Honeypot — hide visually and from assistive tech */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__submit { align-self: flex-start; margin-top: 8px; }
@media (max-width: 540px) {
  .form__submit { width: 100%; }
}

.form__status {
  margin: 0;
  font-size: 0.92rem;
  min-height: 1.4em;
}
.form__status.is-ok    { color: var(--accent); }
.form__status.is-err   { color: var(--bad); }
.form__legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
.form__legal a {
  color: var(--text-dim);
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 2px;
  transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
}
.form__legal a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* -------------------------------------------------------------------------
   15. Footer
   ------------------------------------------------------------------------- */
.foot {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 56px 0 32px;
}
.foot__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr; gap: 24px; }
}
.foot__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 14px 0 0;
}
.foot__col { display: flex; flex-direction: column; gap: 8px; }
.foot__col h4 { margin-bottom: 8px; }
.foot__col a { font-size: 0.92rem; color: var(--text-dim); }
.foot__col a:hover { color: var(--text); }

.foot__legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.foot__sub { color: var(--text-muted); }

/* -------------------------------------------------------------------------
   16. Reduced motion
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
