/* ============================================================
   VERIONA — landing v2 styles
   Editorial Terracota
   ============================================================ */

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
}

::selection { background: var(--color-terracotta-mute); color: var(--color-graphite); }

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

/* ─────────── Layout shell ─────────── */
.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

/* ─────────── Header ─────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img { width: 30px; height: 30px; }

.brand .wordmark {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-graphite);
  letter-spacing: -0.01em;
}

.header-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-graphite);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-base);
  background: var(--color-bg-card);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out);
}
.header-cta:hover { background: var(--color-surface); opacity: 1; }
.header-cta .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--color-success);
  box-shadow: 0 0 0 3px rgba(90, 140, 110, 0.18);
}

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--radius-base);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: all var(--duration-base) var(--ease-out);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-off-white);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 6px 18px rgba(194, 109, 82, 0.30);
}
.btn-primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); opacity: 1; }
.btn-primary:active { background: var(--color-accent-pressed); transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--color-graphite);
  font-weight: 500;
  padding: 14px 4px;
}
.btn-ghost:hover { opacity: 0.75; }
.btn-ghost .arrow { transition: transform var(--duration-base) var(--ease-out); }
.btn-ghost:hover .arrow { transform: translateX(3px); }

.btn-large { padding: 20px 32px; font-size: 17px; }

/* ─────────── Eyebrow / labels ─────────── */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-terracotta);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--color-graphite);
  max-width: 720px;
}

.section-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-graphite-mid);
  max-width: 620px;
  margin-top: 20px;
}

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

.hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -160px;
  width: 540px; height: 540px;
  background: radial-gradient(circle at center, rgba(212, 163, 115, 0.22), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero .shell { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: var(--color-graphite);
  max-width: 16ch;
}

.hero h1 .accent { color: var(--color-terracotta); }

.hero .subhead {
  margin-top: 28px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--color-graphite-mid);
  max-width: 580px;
}

.hero .ctas {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-graphite-light);
}
.hero-meta svg { color: var(--color-success); }

/* ─────────── Video section ─────────── */
.video-section {
  background: var(--color-graphite);
  padding: 80px 0 96px;
}

.video-section .eyebrow { color: var(--color-amber); }

.video-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--color-off-white);
  max-width: 720px;
  margin-bottom: 40px;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-xl);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.40);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ─────────── Problem section ─────────── */
.problem {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-grid .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--color-graphite);
  font-weight: 500;
}
.problem-grid .body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-graphite-mid);
}
.problem-grid .body p + p { margin-top: 20px; }

.tabs-mock {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.tab-chip {
  padding: 14px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  font-size: 13px;
  color: var(--color-graphite);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  position: relative;
}
.tab-chip .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--color-graphite-muted); flex-shrink: 0; }
.tab-chip:nth-child(1) .dot { background: #25D366; }
.tab-chip:nth-child(2) .dot { background: #25D366; }
.tab-chip:nth-child(3) .dot { background: var(--color-terracotta); }
.tab-chip:nth-child(4) .dot { background: var(--color-warning); }

.problem-arrow {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-terracotta);
  font-family: var(--font-mono);
}

/* ─────────── Solution (3 cards) ─────────── */
.solution-head {
  margin-bottom: 56px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.s-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--duration-slow) var(--ease-out);
}
.s-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

.s-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-graphite-light);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.s-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-base);
  background: var(--color-terracotta-bg);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.s-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-graphite);
  line-height: 1.25;
  margin-bottom: 12px;
}

.s-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-graphite-mid);
}

/* ─────────── Anchor banner ─────────── */
.anchor {
  padding: 0 0 96px;
}
.anchor-band {
  background: var(--color-terracotta);
  color: var(--color-off-white);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.anchor-band::before {
  content: "";
  position: absolute;
  bottom: -80px; right: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.anchor-band .text {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.25;
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.anchor-band .badge {
  position: relative;
  z-index: 1;
  background: rgba(250, 247, 242, 0.18);
  border: 1px solid rgba(250, 247, 242, 0.35);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─────────── WhatsApp diff ─────────── */
.whatsapp-section {
  background: var(--color-graphite);
  color: var(--color-off-white);
}
.whatsapp-section .eyebrow { color: var(--color-warm-amber, var(--color-amber)); }
.whatsapp-section h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--color-off-white);
  max-width: 720px;
}
.whatsapp-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.whatsapp-grid p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.78);
}
.whatsapp-grid p + p { margin-top: 18px; }
.whatsapp-grid strong {
  color: var(--color-amber);
  font-weight: 600;
}

.routes {
  display: grid;
  gap: 16px;
}
.route {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.10);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.route.featured {
  border-color: rgba(212, 163, 115, 0.45);
  background: rgba(212, 163, 115, 0.06);
}
.route .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(250, 247, 242, 0.08);
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 12px;
}
.route.featured .tag { background: var(--color-amber); color: var(--color-graphite); }
.route h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-off-white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.route .desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.65);
  margin: 0;
}

/* ─────────── Vertical / Authority ─────────── */
.editorial-block {
  background: var(--color-amber-bg);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  position: relative;
}

.editorial-block .eyebrow { color: var(--color-amber-dark); }
.editorial-block h2 {
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--color-graphite);
  max-width: 720px;
}
.editorial-block p {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-graphite-mid);
  max-width: 720px;
}
.editorial-block .signature {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-amber-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.editorial-block .signature::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-amber-dark);
}

.vertical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.vertical-grid .copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-graphite-mid);
  margin-top: 24px;
}
.field-list {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 8px;
}
.field-list .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-base);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-graphite);
}
.field-list .row + .row { border-top: 1px solid var(--color-border); }
.field-list .row .key { color: var(--color-graphite-light); letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }
.field-list .row .val { color: var(--color-graphite); font-weight: 500; }

/* ─────────── Plans ─────────── */
.plans-head { margin-bottom: 64px; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan.featured {
  border-color: var(--color-terracotta);
  background: var(--color-bg-card);
  box-shadow: 0 0 0 1px var(--color-terracotta), 0 18px 40px rgba(194, 109, 82, 0.18);
}
.plan .ribbon {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--color-terracotta);
  color: var(--color-off-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.plan h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-graphite);
  letter-spacing: -0.01em;
}
.plan .price {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan .price .num {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-graphite);
  line-height: 1;
}
.plan .price .per {
  font-size: 14px;
  color: var(--color-graphite-light);
}
.plan .price.consult .num {
  font-size: 28px;
  font-weight: 500;
}
.plan .lede {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-graphite-mid);
  line-height: 1.55;
  min-height: 44px;
}
.plan ul {
  list-style: none;
  margin-top: 28px;
  padding: 0;
  display: grid;
  gap: 14px;
  flex: 1;
}
.plan ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--color-graphite);
  line-height: 1.5;
}
.plan ul li svg { flex-shrink: 0; color: var(--color-terracotta); margin-top: 3px; }
.plan ul li .strong { font-weight: 600; }
.plan ul li .muted { color: var(--color-graphite-light); }

.plan .btn {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}
.plan.featured .btn { background: var(--color-accent); color: var(--color-off-white); }
.plan:not(.featured) .btn {
  background: var(--color-graphite);
  color: var(--color-off-white);
}
.plan:not(.featured) .btn:hover { background: #1f2733; }

.plans-footnote {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--color-graphite-mid);
  line-height: 1.6;
  max-width: 760px;
  margin-inline: auto;
}
.plans-footnote strong { color: var(--color-graphite); font-weight: 600; }

/* ─────────── Final CTA ─────────── */
.final-cta-wrap { padding-bottom: 32px; }

.final-cta {
  background: var(--color-graphite);
  color: var(--color-off-white);
  border-radius: var(--radius-xl);
  padding: 88px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(194, 109, 82, 0.20), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(212, 163, 115, 0.14), transparent 45%);
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--color-off-white);
  max-width: 16ch;
  margin: 0 auto;
}
.final-cta p {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(250, 247, 242, 0.72);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.6;
}
.final-cta .btn { margin-top: 40px; }

/* ─────────── Footer ─────────── */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 48px 0;
}
.site-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-graphite-mid);
}
.footer-brand img { height: 22px; opacity: 0.8; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-graphite-mid);
  text-decoration: none;
  background: var(--color-bg-card);
  transition: all var(--duration-base) var(--ease-out);
}
.social-link:hover {
  color: var(--color-terracotta);
  border-color: var(--color-terracotta-mute);
  background: var(--color-terracotta-bg);
  opacity: 1;
}
.social-link svg { color: currentColor; }

.footer-meta {
  font-size: 13px;
  color: var(--color-graphite-light);
  line-height: 1.6;
}
.footer-meta a { color: var(--color-graphite-mid); }
.footer-meta .sep { color: var(--color-graphite-muted); margin: 0 8px; }

/* ─────────── Contact form ─────────── */
.contact-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.contact-section h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--color-graphite);
  max-width: 720px;
}

.contact-sub {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-graphite-mid);
  max-width: 600px;
  margin-bottom: 48px;
}

.contact-form-wrap { max-width: 680px; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-graphite);
}

.form-label-opt {
  color: var(--color-graphite-light);
  font-weight: 400;
}

.form-required {
  color: var(--color-terracotta);
  font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-graphite);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-base);
  padding: 12px 14px;
  outline: none;
  width: 100%;
  transition: border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-graphite-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(194, 109, 82, 0.12);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232F3A4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--color-graphite-light);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  margin: 0;
}

.form-success {
  padding: 48px 40px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.form-success-check {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-terracotta-bg);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-graphite);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 15px;
  color: var(--color-graphite-mid);
  line-height: 1.6;
}

/* ─────────── Reveal-on-scroll ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────── Responsive ─────────── */
@media (max-width: 900px) {
  section { padding: 64px 0; }
  .shell { padding: 0 24px; }

  .problem-grid,
  .whatsapp-grid,
  .vertical-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .anchor-band {
    padding: 36px 28px;
  }

  .editorial-block {
    padding: 56px 32px;
  }

  .final-cta {
    padding: 64px 28px;
  }

  .tabs-mock { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  section { padding: 56px 0; }
  .shell { padding: 0 20px; }
  .hero { padding-top: 56px; padding-bottom: 32px; }
  .hero .ctas .btn { width: 100%; justify-content: center; }
  .anchor-band { flex-direction: column; align-items: flex-start; }
  .anchor-band .text { font-size: 22px; }
  .editorial-block { padding: 40px 24px; }
  .final-cta { padding: 48px 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-trio { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
}
