/* =========================================================
   Fracto Consulting · Landing
   Tema único oscuro (identidad del brochure: carbón + dorado).
   Un solo acento: dorado. Radios: 8px en todo, 4px en casillas.
   Movimiento mínimo: solo estados hover / active / focus.
   ========================================================= */

:root {
  --bg: #121113;
  --bg-tint: #171618;
  --surface: #1c1b1d;
  --surface-2: #232124;
  --line: rgba(241, 237, 230, .09);
  --line-strong: rgba(241, 237, 230, .18);

  --text: #f1ede6;
  --muted: #aba49b;
  --subtle: #8a847c;

  --gold: #c4a46c;
  --gold-hi: #d8bd8a;
  --gold-soft: rgba(196, 164, 108, .09);
  --on-gold: #17140f;
  --danger: #e8a293;

  --font: "Geist", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius: 8px;
  --radius-xs: 4px;
  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(80px, 10vw, 128px);
  --nav-h: 68px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.65 var(--font);
  font-feature-settings: "tnum" 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 500; }
p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold); color: var(--on-gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--radius-xs); }
.ph { line-height: 1; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--gold); color: var(--on-gold); padding: 10px 16px; border-radius: var(--radius); text-decoration: none; font-weight: 600; }
.skip:focus { top: 12px; }

/* ---------- Tipografía ---------- */
.eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.lead { color: var(--muted); font-size: clamp(17px, 1.35vw, 19px); line-height: 1.6; max-width: 58ch; margin-top: 18px; }
.subhead { font-size: 15px; font-weight: 500; color: var(--muted); margin: 56px 0 20px; }

.section { padding-block: var(--section-y); }
.section--tint { background: var(--bg-tint); }
.section__head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 15.5px; font-weight: 500; line-height: 1;
  text-decoration: none; white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s, transform .15s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .ph { font-size: 19px; }
.btn--primary { background: var(--gold); color: var(--on-gold); }
.btn--primary:hover { background: var(--gold-hi); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-hi); }
.btn--sm { min-height: 42px; padding: 0 16px; font-size: 14.5px; }
.btn--block { width: 100%; }
.btn.is-loading { pointer-events: none; opacity: .7; }

/* ---------- Navegación ---------- */
.nav-sentinel { position: absolute; top: 0; height: 24px; width: 1px; }
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 17, 19, .82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand__mark { width: 17px; height: 36px; }
.brand__word { display: flex; flex-direction: column; gap: 4px; font-size: 16px; font-weight: 500; line-height: 1; letter-spacing: .24em; }
.brand__word small { font-size: 8.5px; letter-spacing: .4em; color: var(--muted); }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a:not(.btn) { font-size: 15px; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav__links a:not(.btn):hover { color: var(--text); }
.nav__cta { margin-left: 4px; }

.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: var(--radius);
  border: 1px solid var(--line-strong); background: transparent; cursor: pointer;
  place-items: center; font-size: 22px;
}
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 6vw, 80px) 0 clamp(72px, 8vw, 104px); }
.hero__title {
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.035em;
  max-width: 21em;
  text-wrap: balance;
}
.hero__row {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px); align-items: start;
  margin-top: clamp(32px, 4vw, 52px);
}
.hero__body { padding-top: 6px; }
.hero__lead { font-size: clamp(17.5px, 1.5vw, 20px); line-height: 1.55; color: var(--muted); max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; background: var(--surface); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; filter: grayscale(.55) contrast(1.03); }

/* ---------- Autodiagnóstico ---------- */
.diag { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.diag__intro { position: sticky; top: calc(var(--nav-h) + 40px); }

.meter { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.meter__count { font-size: 15px; color: var(--muted); }
.meter__count b { font-size: 44px; font-weight: 500; letter-spacing: -.03em; color: var(--text); margin-right: 8px; font-variant-numeric: tabular-nums; vertical-align: -4px; }
.meter__msg { margin-top: 10px; color: var(--muted); font-size: 15.5px; max-width: 40ch; }
.meter .btn { margin-top: 20px; }

.checklist { display: grid; gap: 10px; }
.check {
  width: 100%; display: flex; align-items: center; gap: 18px;
  padding: 20px 22px; text-align: left; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 16.5px; line-height: 1.45; color: var(--text);
  transition: border-color .2s, background-color .2s;
}
.check:hover { border-color: var(--line-strong); }
.check:active { transform: translateY(1px); }
.check__box {
  flex: none; width: 24px; height: 24px; border-radius: var(--radius-xs);
  border: 1.5px solid var(--line-strong); display: grid; place-items: center;
  color: var(--on-gold); font-size: 15px;
  transition: background-color .2s, border-color .2s;
}
.check__box .ph { opacity: 0; transition: opacity .15s; }
.check[aria-pressed="true"] { border-color: rgba(196, 164, 108, .5); background: var(--gold-soft); }
.check[aria-pressed="true"] .check__box { background: var(--gold); border-color: var(--gold); }
.check[aria-pressed="true"] .check__box .ph { opacity: 1; }

/* ---------- Postura ---------- */
.statement {
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.04; letter-spacing: -.04em;
  max-width: 18em; text-wrap: balance;
}
.statement__muted { display: block; color: var(--subtle); margin-bottom: .1em; }
.outcomes {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(48px, 6vw, 80px);
}
.outcomes li {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 0; border-top: 1px solid var(--line);
  font-size: 17px; line-height: 1.35;
}
.outcomes .ph { font-size: 24px; color: var(--gold); flex: none; }

/* ---------- Servicios (bento) ---------- */
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 12px; }
.tile {
  grid-column: span 4;
  display: flex; flex-direction: column; gap: 12px;
  padding: clamp(24px, 2.6vw, 32px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.tile h3 { font-size: 21px; line-height: 1.25; letter-spacing: -.015em; }
.tile p { color: var(--muted); font-size: 16px; line-height: 1.55; }
.tile__meta { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--gold); margin-bottom: 4px; min-height: 26px; }
.tag { padding: 5px 10px; border-radius: var(--radius-xs); background: var(--gold); color: var(--on-gold); font-size: 13px; font-weight: 500; }

.tile--lead { grid-column: span 7; background: linear-gradient(160deg, rgba(196, 164, 108, .13), rgba(196, 164, 108, .02) 60%), var(--surface); border-color: rgba(196, 164, 108, .28); }
.tile--lead h3 { font-size: clamp(24px, 2.4vw, 30px); }
.tile--pattern { grid-column: span 5; position: relative; overflow: hidden; }
.tile--pattern::after {
  content: ""; position: absolute; right: -40px; bottom: -40px; width: 260px; height: 220px; pointer-events: none;
  background-image: radial-gradient(circle, rgba(196, 164, 108, .22) 1.3px, transparent 1.7px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(circle at 100% 100%, #000 10%, transparent 70%);
          mask-image: radial-gradient(circle at 100% 100%, #000 10%, transparent 70%);
}
.tile--pattern > * { position: relative; z-index: 1; }
.bento > .tile:nth-child(3) { grid-column: span 5; }
.tile--tools { grid-column: span 7; background: var(--surface-2); }
.bento > .tile:nth-child(5), .bento > .tile:nth-child(6) { grid-column: span 6; }

.ticks { display: grid; gap: 9px; margin-top: 8px; }
.ticks--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; }
.ticks li { position: relative; padding-left: 22px; font-size: 15.5px; line-height: 1.45; }
.ticks li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 9px; height: 5px; border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg); }

.tools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tools li { padding: 9px 13px; border-radius: var(--radius); border: 1px solid var(--line-strong); font-size: 14.5px; }

/* ---------- Método ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3vw, 40px); counter-reset: step; }
.timeline li { position: relative; padding-top: 32px; border-top: 1px solid var(--line-strong); }
.timeline li::before { content: ""; position: absolute; top: -1px; left: 0; width: 48px; height: 2px; background: var(--gold); }
.timeline__time { display: block; font-size: 14px; color: var(--gold); margin-bottom: 12px; }
.timeline h3 { font-size: 21px; letter-spacing: -.015em; margin-bottom: 10px; }
.timeline p { color: var(--muted); font-size: 16px; line-height: 1.55; }

/* ---------- Caso ---------- */
.case { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 88px); align-items: center; }
.case__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--surface); }
.case__media img { width: 100%; height: 100%; object-fit: cover; object-position: 38% 50%; filter: grayscale(.55) contrast(1.03); }
.case__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; margin-top: 40px; }
.case__label { font-size: 15px; font-weight: 500; color: var(--gold); margin-bottom: 14px; }
.plain { display: grid; gap: 10px; }
.plain li { color: var(--muted); font-size: 16px; line-height: 1.45; }
.case__result {
  display: flex; gap: 14px; align-items: flex-start;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line);
  font-size: clamp(19px, 1.7vw, 23px); line-height: 1.4; letter-spacing: -.01em;
}
.case__result .ph { color: var(--gold); font-size: 24px; margin-top: 3px; flex: none; }

/* ---------- Para quién ---------- */
.profile { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 clamp(20px, 3vw, 40px); }
.profile div { padding-top: 20px; border-top: 1px solid var(--line-strong); }
.profile dt { font-size: 14px; color: var(--gold); margin-bottom: 8px; }
.profile dd { font-size: 17px; line-height: 1.45; }
.sectors { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.sectors li {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  font-size: 16.5px; line-height: 1.3;
}
.sectors .ph { font-size: 26px; color: var(--gold); flex: none; }

/* ---------- Por qué Fracto ---------- */
.why { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.quote { margin-top: 44px; padding-left: 24px; border-left: 2px solid var(--gold); }
.quote blockquote { font-size: clamp(19px, 1.7vw, 22px); line-height: 1.45; letter-spacing: -.01em; }
.quote figcaption { margin-top: 18px; font-size: 15px; color: var(--muted); }
.quote figcaption strong { display: block; color: var(--text); font-weight: 500; }
.why__list { display: grid; }
.why__list article { padding: 28px 0; border-top: 1px solid var(--line); }
.why__list article:first-child { padding-top: 0; border-top: 0; }
.why__list h3 { font-size: 21px; letter-spacing: -.015em; margin-bottom: 10px; }
.why__list p { color: var(--muted); max-width: 60ch; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: calc(820px + var(--gutter) * 2); }
.faq { margin-top: 40px; border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 0; font-size: 18px; font-weight: 500; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ph { font-size: 20px; color: var(--gold); flex: none; transition: transform .25s var(--ease); }
.faq details[open] summary .ph { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold-hi); }
.faq details p { padding: 0 48px 24px 0; color: var(--muted); }
.faq__more { margin-top: 28px; color: var(--muted); font-size: 15.5px; }
.faq__more a { color: var(--gold-hi); text-underline-offset: 3px; }

/* ---------- Contacto ---------- */
.contact__wrap { max-width: calc(780px + var(--gutter) * 2); }
.form { padding: clamp(24px, 4vw, 48px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.form__head { margin-bottom: 32px; }
.form__head h2 { font-size: clamp(30px, 3.4vw, 42px); line-height: 1.1; letter-spacing: -.03em; }
.form__head p { margin-top: 10px; color: var(--muted); }
.form__note { margin-top: 18px !important; padding: 12px 14px; border-radius: var(--radius); background: var(--gold-soft); border: 1px solid rgba(196, 164, 108, .28); color: var(--gold-hi) !important; font-size: 15px; }

.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field > label, .field legend { font-size: 14.5px; font-weight: 500; color: var(--text); }
.opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  font-size: 16px;
  -webkit-appearance: none; appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  padding-right: 40px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) 52%, calc(100% - 15px) 52%;
  background-size: 5px 5px; background-repeat: no-repeat;
}
.field select option { background: var(--surface); color: var(--text); }
.field input::placeholder { color: var(--subtle); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(196, 164, 108, .45); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196, 164, 108, .22); }
.field__err { display: none; font-size: 13.5px; color: var(--danger); }
.field.is-invalid input, .field.is-invalid select { border-color: var(--danger); }
.field.is-invalid .field__err { display: block; }

.field--chips { border: 0; padding: 0; margin: 0 0 22px; }
.field--chips legend { padding: 0; margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label { position: relative; cursor: pointer; }
.chips input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.chips span { display: inline-block; padding: 10px 14px; border-radius: var(--radius); border: 1px solid var(--line-strong); font-size: 14.5px; color: var(--muted); transition: border-color .2s, color .2s, background-color .2s; user-select: none; }
.chips label:hover span { border-color: rgba(196, 164, 108, .5); color: var(--text); }
.chips input:checked + span { background: var(--gold-soft); border-color: var(--gold); color: var(--gold-hi); }
.chips input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.consent { display: flex; align-items: flex-start; gap: 12px; margin: 22px 0 24px; font-size: 14.5px; color: var(--muted); cursor: pointer; }
.consent input { -webkit-appearance: none; appearance: none; flex: none; width: 20px; height: 20px; margin: 2px 0 0; border-radius: var(--radius-xs); border: 1.5px solid var(--line-strong); background: transparent; cursor: pointer; position: relative; }
.consent input:checked { background: var(--gold); border-color: var(--gold); }
.consent input:checked::after { content: ""; position: absolute; left: 5px; top: 5px; width: 7px; height: 4px; border-left: 2px solid var(--on-gold); border-bottom: 2px solid var(--on-gold); transform: rotate(-45deg); }
.consent.is-invalid input { border-color: var(--danger); }

.form__status { margin-top: 14px; min-height: 1.4em; font-size: 14.5px; text-align: center; color: var(--muted); }
.form__status.is-error { color: var(--danger); }
.form__status a { color: var(--gold-hi); }

.form-success { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; padding-block: 64px; }
.form-success__mark { width: 30px; height: 62px; }
.form-success h2 { font-size: clamp(26px, 3vw, 34px); letter-spacing: -.025em; }
.form-success p { color: var(--muted); max-width: 46ch; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 36px 0; }
.footer__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; }
.footer__meta { font-size: 14.5px; color: var(--muted); }
.footer__meta a { color: var(--text); text-decoration: none; }
.footer__meta a:hover { color: var(--gold-hi); }

.mobile-cta { display: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1023px) {
  .nav__toggle { display: grid; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 24px;
    background: var(--bg); border-bottom: 1px solid var(--line);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .2s, transform .2s var(--ease), visibility .2s;
  }
  .nav__links.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav__links a:not(.btn) { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 17px; color: var(--text); }
  .nav__cta { margin: 20px 0 0; }

  .bento > .tile, .bento > .tile:nth-child(n) { grid-column: span 6; }
  .tile--lead, .tile--tools { grid-column: span 12 !important; }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 48px; }
  .profile { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
  .sectors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .hero__row, .diag, .case, .why { grid-template-columns: minmax(0, 1fr); }
  .hero__lead { max-width: none; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__media { aspect-ratio: 4 / 3; }
  .diag__intro { position: static; }
  .check { padding: 16px 18px; font-size: 16px; gap: 14px; }

  .outcomes { grid-template-columns: minmax(0, 1fr); }
  .outcomes li { padding: 18px 0; }

  .bento > .tile, .bento > .tile:nth-child(n) { grid-column: span 12 !important; }
  .ticks--2col { grid-template-columns: minmax(0, 1fr); }

  .timeline { grid-template-columns: minmax(0, 1fr); row-gap: 36px; }
  .case__media { aspect-ratio: 4 / 3; order: 2; }
  .case__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .profile { grid-template-columns: minmax(0, 1fr); }
  .sectors { grid-template-columns: minmax(0, 1fr); }
  .sectors li { padding: 16px 18px; }
  .faq summary { font-size: 17px; }
  .faq details p { padding-right: 0; }

  .form__grid { grid-template-columns: minmax(0, 1fr); }
  .footer { padding-bottom: 104px; }
  .footer__row { flex-direction: column; align-items: flex-start; }

  .mobile-cta {
    display: flex; gap: 8px; position: fixed; z-index: 40; left: 12px; right: 12px; bottom: 12px;
    padding: 8px; border-radius: calc(var(--radius) + 4px);
    background: rgba(28, 27, 29, .94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border: 1px solid var(--line-strong);
    transform: translateY(140%); transition: transform .3s var(--ease);
  }
  .mobile-cta.is-visible { transform: none; }
  .mobile-cta__wa { flex: none; width: 50px; height: 50px; display: grid; place-items: center; border-radius: var(--radius); border: 1px solid var(--line-strong); color: var(--gold-hi); font-size: 24px; text-decoration: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
