/* ============================================================
   RAVEL_ — Design System
   Branco + Terracota #c2410c · Bricolage Grotesque + Manrope
   ============================================================ */

:root {
  --white:        #ffffff;
  --off:          #f7f5f0;
  --ink:          #111110;
  --ink2:         #1c1b18;
  --mid:          #6b6963;
  --light:        #b8b4ac;
  --border:       #e8e4dc;
  --border2:      #f0ece4;
  --terra:        #c2410c;
  --terra-hover:  #a83509;
  --terra-bg:     #fef2ed;
  --terra-border: #f5c9b0;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'Roboto Mono', ui-monospace, monospace;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --w:        1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.5; }
::selection { background: var(--terra); color: #fff; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* Terracota top accent line */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terra);
  z-index: 200;
}

/* ── CONTAINER ── */
.wrap {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 64px;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── LABEL ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
}
.label-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}
.label--dark { color: rgba(255,255,255,0.35); }
.label--dark .label-dot { background: var(--terra); }
.label--terra { color: var(--terra); opacity: 0.8; }
.label--terra .label-dot { background: var(--terra); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 980px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-terra {
  background: var(--terra);
  color: #fff;
  padding: 14px 30px;
}
.btn-terra:hover { background: var(--terra-hover); }

.btn-ghost {
  background: transparent;
  color: var(--mid);
  padding: 14px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); transform: none; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 3px; left: 0; right: 0;
  height: 64px;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.06em;
  color: var(--ink);
  line-height: 1;
  flex-shrink: 0;
  transition: font-size 0.35s var(--ease);
}
.logo.logo--scrolled { font-size: 1.125rem; }
.logo-us {
  color: var(--terra);
  display: inline-block;
  animation: blink 1.8s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.15s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: var(--terra); }
.nav a.active::after { transform: scaleX(1); background: var(--terra); }

.header-link {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.15s;
  flex-shrink: 0;
}
.header-link:hover { color: var(--terra); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  display: block;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 100px;
  background: var(--white);
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 40px;
  animation: heroSlide 0.9s var(--ease-out) both;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 6.5vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 36px;
  animation: heroSlide 0.9s var(--ease-out) 0.1s both;
}

@keyframes heroSlide {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Typewriter line */
.tw-line {
  display: block;
  color: var(--terra);
}
.tw-target { color: var(--terra); }
.tw-cursor {
  display: inline-block;
  width: 4px;
  height: 0.82em;
  background: var(--terra);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1.1s step-end infinite;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 44px;
  animation: heroSlide 0.9s var(--ease-out) 0.28s both;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroSlide 0.9s var(--ease-out) 0.44s both;
}

/* ── CLIENTS BAR ── */
.clients-bar {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 56px;
  display: flex;
  align-items: center;
}
.clients-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
  padding: 0 40px;
  white-space: nowrap;
}
.marquee-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light);
  white-space: nowrap;
}
.b-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.75;
}
.marquee-sep {
  color: var(--terra-border);
  font-size: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION BASE ── */
.section { padding: 112px 0; }
.section-white { background: var(--white); }
.section-off   { background: var(--off); }
.section-ink   { background: var(--ink); color: var(--white); }

.section-header {
  margin-bottom: 72px;
  text-align: center;
}
.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin-top: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 520px;
  margin: 14px auto 0;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.sc {
  padding: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: background 0.25s;
}
.sc:hover { background: var(--terra-bg); }
.sc:hover .sc-num { color: var(--terra); opacity: 0.15; }
.sc:hover .sc-icon { color: var(--terra); }
.sc:hover .sc-metric { opacity: 1; border-color: var(--terra-border); background: rgba(194,65,12,0.06); }
.sc:nth-child(3n) { border-right: none; }
.sc:nth-last-child(-n+3) { border-bottom: none; }

/* Left accent bar on hover */
.sc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--terra);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease-out);
}
.sc:hover::before { transform: scaleY(1); }

.sc-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  letter-spacing: -0.06em;
  color: var(--ink);
  opacity: 0.04;
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  transition: opacity 0.25s, color 0.25s;
  user-select: none;
  pointer-events: none;
}

.sc-body {
  padding: 36px 32px;
  position: relative;
}

.sc-icon {
  width: 28px; height: 28px;
  color: var(--mid);
  margin-bottom: 18px;
  transition: color 0.25s;
}
.sc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.sc-desc {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.sc-metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terra);
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  transition: opacity 0.25s, border-color 0.25s, background 0.25s;
  opacity: 0.7;
}
.sc-metric span { color: var(--mid); }

/* ── SERVICES CTA ── */
.services-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.services-cta-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--ink);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sg-item {
  padding: 72px 48px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  text-align: center;
}
.sg-item:last-child { border-right: none; }
.sg-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease-out);
}
.sg-item.visible::before { transform: scaleX(1); }

.sg-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 4.8vw, 4.5rem);
  letter-spacing: -0.05em;
  color: var(--terra);
  line-height: 1;
}
.sg-unit {
  font-size: 0.5em;
  letter-spacing: -0.02em;
  vertical-align: baseline;
  margin-left: 2px;
}
.sg-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  margin-top: 12px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.tcard {
  background: var(--white);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.2s;
}
.tcard:hover { background: #fdfcfb; }
.tcard-metrics {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.tm {
  padding: 10px 14px;
  background: var(--terra-bg);
  border: 1px solid var(--terra-border);
  border-radius: 4px;
}
.tm-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  color: var(--terra);
  line-height: 1;
}
.tm-label {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--terra);
  opacity: 0.55;
  margin-top: 4px;
}
.tcard-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
  margin-bottom: 32px;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.tcard-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--terra-bg);
  color: var(--terra);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tcard-name { font-size: 12px; font-weight: 700; color: var(--ink); }
.tcard-role { font-size: 11px; color: var(--mid); margin-top: 1px; }

/* CTA card */
.tcard--cta {
  background: var(--ink);
  justify-content: space-between;
}
.tcard--cta:hover { background: var(--ink2); }
.tcard-cta-inner { flex: 1; }
.tcard-cta-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--white);
  margin: 16px 0 20px;
}
.tcard-cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ── PROCESS ── */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  position: relative;
}
/* Connecting line */
.process-row::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 11px;
  right: calc(33.333% + 11px);
  height: 1px;
  background: var(--terra);
  opacity: 0.3;
}

.ps {
  padding: 0 40px 40px 0;
  border-right: 1px solid var(--border);
  padding-top: 36px;
}
.ps:last-child { border-right: none; }
.ps + .ps { padding-left: 40px; }

.ps-step {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ps-step span { color: var(--light); }
.ps-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ps-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.ps-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ── CONTACT / CTA ── */
.section-ink { background: var(--ink); color: var(--white); }
/* Contact section header is left-aligned (2-col form layout) */
#contacto .section-header { text-align: left; }
#contacto .section-sub { margin: 14px 0 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 100px 0;
}
.cg-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 3.8vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #fff;
  margin-top: 18px;
  margin-bottom: 20px;
}
.cg-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}
.cg-promises { display: flex; flex-direction: column; gap: 12px; }
.cp {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.cp-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(194,65,12,0.2);
  border: 1px solid rgba(194,65,12,0.4);
  color: var(--terra);
  font-size: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Form */
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 44px;
}
.form { display: flex; flex-direction: column; gap: 22px; }
.ff { display: flex; flex-direction: column; gap: 7px; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fl {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.fi {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.fi::placeholder { color: rgba(255,255,255,0.18); }
.fi:focus { border-bottom-color: var(--terra); }
.f-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 16px 30px;
}
.f-note {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  text-align: center;
  margin-top: -8px;
  letter-spacing: 0.02em;
}
.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: rgba(194,65,12,0.1);
  border: 1px solid rgba(194,65,12,0.3);
  border-radius: 4px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  animation: fadeUp 0.4s var(--ease-out);
}
.form-success.show { display: flex; }
@keyframes fadeUp {
  from { opacity:0; transform:translateY(8px); }
  to   { opacity:1; transform:none; }
}
.fs-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--terra); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px; font-weight: 500;
  color: var(--mid);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 11px; color: var(--light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .wrap { padding: 0 40px; }
  .nav { position: static; transform: none; gap: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sc:nth-child(3n) { border-right: 1px solid var(--border); }
  .sc:nth-child(2n) { border-right: none; }
  .sc:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .sc:nth-last-child(-n+2) { border-bottom: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sg-item:nth-child(2) { border-right: none; }
  .sg-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
  .testi-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .process-row::before { display: none; }
  .ps { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 0; }
  .ps:last-child { border-bottom: none; }
  .ps + .ps { padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 24px; }
  .section { padding: 80px 0; }
  .nav { display: none; }
  .header-link { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 67px 0 0;
    background: var(--white);
    align-items: flex-start;
    padding: 40px 24px;
    gap: 24px;
    border-top: 1px solid var(--border);
    z-index: 99;
  }
  .nav.open a {
    font-size: 1.25rem;
    color: var(--ink);
    position: static;
  }
  .nav.open a::after { display: none; }
  .hero { padding: 110px 0 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .sc { border-right: none; border-bottom: 1px solid var(--border); }
  .sc:last-child { border-bottom: none; }
  .sc:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .sc:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .sg-item { padding: 48px 28px; }
  .ff-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}
