/* Safe Care Medical — Landing B2B Chile */

:root {
  --brand: #0E7C86;
  --brand-dark: #0B636B;
  --brand-light: #E8F4F5;
  --brand-muted: #5BA8AE;
  --navy: #0B2545;
  --navy-soft: #163A5F;
  --text: #15202B;
  --text-body: #3D4F5F;
  --text-muted: #6B7C8C;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FA;
  --bg-warm: #FAFBFC;
  --border: #DDE3EA;
  --border-light: #EAEFF4;
  --success: #1A7F4B;
  --success-bg: #EAF6EF;
  --error: #C0392B;
  --error-bg: #FDF0EE;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.06);
  --shadow: 0 8px 30px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.12);
  --transition: 180ms ease;
  --header-h: 72px;
  --topbar-h: 36px;
  --sticky-h: 60px;
  --container: 1120px;
  --container-narrow: 720px;
}

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

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

@media (max-width: 768px) {
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(11, 37, 69, 0.45);
    z-index: 98;
  }
}
body.has-sticky { padding-bottom: var(--sticky-h); }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
fieldset { border: none; }

.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  padding: 10px 18px; background: var(--brand); color: #fff;
  border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container--form { max-width: 780px; }
.container--narrow { max-width: var(--container-narrow); }

.section { padding: 80px 0; }
.section__header { margin-bottom: 44px; max-width: 640px; }
.section__header--center { text-align: center; margin-left: auto; margin-right: auto; }

.section__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 10px;
}

.section__title {
  font-size: clamp(26px, 3.8vw, 36px); font-weight: 700;
  line-height: 1.18; letter-spacing: -0.02em; color: var(--text);
}

.section__subtitle {
  font-size: 17px; color: var(--text-muted);
  margin-top: 14px; line-height: 1.65;
}

.section__header--center .section__subtitle { margin-left: auto; margin-right: auto; }

/* Topbar */
.topbar {
  background: var(--navy); color: rgba(255,255,255,0.85);
  font-size: 12px; min-height: var(--topbar-h);
  display: flex; align-items: center;
}

.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px;
}

.topbar strong { color: #fff; font-weight: 600; }
.topbar__phone { color: var(--brand-muted); font-weight: 600; white-space: nowrap; }
.topbar__phone:hover { color: #fff; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: 0 2px 12px rgba(11, 37, 69, 0.1);
}

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}
.logo:hover { opacity: 0.92; }

.logo__mark {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #0ca4b8;
}

.logo__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.logo__mark--footer {
  width: 42px;
  height: 42px;
}

.nav {
  display: block;
  background: #fff;
}

.nav__list {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}

.nav__link {
  display: block; padding: 8px 12px; font-size: 14px; font-weight: 500;
  color: var(--text-body); border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--text); background: var(--bg-soft); }

.nav__link--wa { color: var(--brand); }
.nav__link--cta {
  background: var(--brand); color: #fff !important;
  margin-left: 6px; font-weight: 600;
}
.nav__link--cta:hover { background: var(--brand-dark); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; padding: 8px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text); border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; font-size: 15px; font-weight: 600; line-height: 1;
  border-radius: var(--radius); border: 1.5px solid transparent;
  transition: all var(--transition); white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }

.btn--outline {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }

.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--bg-soft); color: var(--navy); }

.btn--ghost-white {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }

.btn--lg { padding: 14px 28px; font-size: 16px; }
.btn--full { width: 100%; }

/* Hero */
.hero {
  position: relative; padding: 56px 0 72px;
  color: #fff; overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute; inset: 0; z-index: 0;
}

.hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 37, 69, 0.93) 0%, rgba(11, 37, 69, 0.82) 42%, rgba(11, 37, 69, 0.62) 100%),
    linear-gradient(to top, rgba(11, 37, 69, 0.4) 0%, transparent 40%);
}

.hero__grid {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: center;
}

.hero__kicker {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--brand-muted); margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(30px, 4.5vw, 44px); font-weight: 700;
  line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 18px; max-width: 18ch;
}

.hero__lead {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.78); margin-bottom: 28px; max-width: 52ch;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero__actions .btn--outline {
  color: #fff; border-color: rgba(255,255,255,0.28);
}
.hero__actions .btn--outline:hover {
  background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.5); color: #fff;
}

.hero__checks {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__checks li {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8);
  padding-left: 22px; position: relative;
}

.hero__checks li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-muted);
}

.hero__panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 22px 20px;
}

.stat-card__value {
  display: block; font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em; color: #fff; line-height: 1;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.4;
}

.hero__panel-note {
  grid-column: 1 / -1;
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(0,0,0,0.18); border-radius: var(--radius);
  padding: 16px 18px; margin-top: 4px;
}

.hero__panel-note svg { flex-shrink: 0; color: var(--brand-muted); margin-top: 2px; }
.hero__panel-note p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.72); }

/* Credenciales */
.credenciales {
  background: var(--bg-soft); border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
}

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

.credencial {
  display: flex; gap: 14px; align-items: flex-start;
}

.credencial__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--brand);
}

.credencial__icon svg { width: 20px; height: 20px; }

.credencial strong {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text); margin-bottom: 2px;
}

.credencial span { font-size: 13px; color: var(--text-muted); line-height: 1.45; }

/* Catálogo */
.catalogo { background: var(--bg); }

.catalogo__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.cat-card {
  background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.cat-card:hover {
  border-color: var(--brand-muted);
  box-shadow: var(--shadow-sm);
}

.cat-card__icon {
  width: 44px; height: 44px; color: var(--brand);
  margin-bottom: 16px;
}

.cat-card h3 {
  font-size: 16px; font-weight: 600; color: var(--text);
  margin-bottom: 8px;
}

.cat-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Problema / Solución */
.problema { background: var(--bg-soft); }

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

.problema__list {
  list-style: none; margin-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}

.problema__list li {
  font-size: 15px; padding-left: 18px; position: relative;
  color: var(--text-body);
}

.problema__list li::before {
  content: '—'; position: absolute; left: 0; color: var(--brand);
  font-weight: 600;
}

.solucion {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 28px;
  box-shadow: var(--shadow);
}

.solucion h3 {
  font-size: 18px; font-weight: 700; color: var(--text);
  margin-bottom: 18px;
}

.solucion ul {
  list-style: none; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 12px;
}

.solucion li {
  font-size: 15px; padding-left: 26px; position: relative; line-height: 1.5;
}

.solucion li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

/* Formulario */
.cotizar-section { background: var(--bg-warm); }

.quote-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 28px;
  box-shadow: var(--shadow);
}

.quote-form__block {
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.quote-form__block:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.quote-form__block legend {
  font-size: 15px; font-weight: 700; color: var(--text);
  margin-bottom: 16px; padding: 0;
}

.form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}

.form__row:last-child { margin-bottom: 0; }

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

.form__field label {
  font-size: 13px; font-weight: 600; color: var(--text);
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; color: var(--text);
  background: #fff; transition: border-color var(--transition), box-shadow var(--transition);
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14,124,134,0.15);
}

.form__field input::placeholder,
.form__field textarea::placeholder { color: #A0ADB8; }

.form__field--check { justify-content: flex-end; padding-bottom: 4px; }

.form__hint {
  font-size: 13px; color: var(--text-muted); margin-bottom: 14px;
}

.form__checks {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}

.check-pill { cursor: pointer; }

.check-pill input {
  position: absolute; opacity: 0; width: 0; height: 0;
}

.check-pill span {
  display: block; padding: 8px 14px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--border); border-radius: 999px;
  color: var(--text-muted); transition: all var(--transition);
}

.check-pill input:checked + span {
  background: var(--brand-light); border-color: var(--brand);
  color: var(--brand-dark); font-weight: 600;
}

.checkbox-line {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-body); cursor: pointer;
  line-height: 1.45;
}

.checkbox-line input {
  width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--brand);
}

.form__legal {
  font-size: 12px; color: var(--text-muted); margin: 20px 0 16px;
  line-height: 1.5;
}

.form__error {
  background: var(--error-bg); color: var(--error);
  padding: 12px 14px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 14px;
}

.form-success {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--success-bg); border: 1px solid #B8E0C8;
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px;
}

.form-success__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--success); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.form-success__icon svg { width: 22px; height: 22px; stroke: #fff; }

.form-success p { font-size: 15px; color: var(--text); line-height: 1.55; }
.form-success__sub { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* Pasos */
.proceso { background: var(--bg); }

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

.paso {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
}

.paso--accent {
  background: var(--brand-light); border-color: rgba(14,124,134,0.25);
}

.paso__num {
  display: block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--brand); margin-bottom: 14px;
}

.paso h3 {
  font-size: 17px; font-weight: 600; color: var(--text);
  margin-bottom: 10px;
}

.paso p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Ventajas */
.ventajas { background: var(--bg-soft); }

.ventajas__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.ventaja {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px;
}

.ventaja__icon {
  width: 40px; height: 40px; color: var(--brand); margin-bottom: 14px;
}

.ventaja h3 {
  font-size: 16px; font-weight: 600; color: var(--text);
  margin-bottom: 8px;
}

.ventaja p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Testimonios */
.testimonios { background: var(--bg); }

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

.testimonio {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 24px;
  margin: 0;
}

.testimonio p {
  font-size: 15px; line-height: 1.65; color: var(--text-body);
  margin-bottom: 18px; font-style: normal;
}

.testimonio cite {
  display: block; font-style: normal; font-size: 14px;
  font-weight: 600; color: var(--text);
}

.testimonio footer span {
  display: block; font-size: 13px; color: var(--text-muted); margin-top: 2px;
}

.sectores {
  text-align: center; font-size: 14px; color: var(--text-muted);
  margin-top: 28px; max-width: 560px; margin-left: auto; margin-right: auto;
}

/* FAQ */
.faq { background: var(--bg-soft); }

.faq__list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}

.faq-item__q {
  width: 100%; text-align: left; padding: 18px 20px;
  font-size: 15px; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}

.faq-item__q::after {
  content: '+'; font-size: 20px; font-weight: 400;
  color: var(--brand); flex-shrink: 0; line-height: 1;
  transition: transform var(--transition);
}

.faq-item--open .faq-item__q::after { transform: rotate(45deg); }

.faq-item__a {
  padding: 0 20px 18px;
}

.faq-item__a p {
  font-size: 14px; color: var(--text-muted); line-height: 1.65;
}

/* CTA final */
.cta-final {
  background: linear-gradient(160deg, var(--navy) 0%, #0D4A52 100%);
  color: #fff; padding: 72px 0;
}

.cta-final__inner { text-align: center; max-width: 560px; margin: 0 auto; }

.cta-final__title {
  font-size: clamp(24px, 3.5vw, 32px); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px;
}

.cta-final__text {
  font-size: 17px; color: rgba(255,255,255,0.75);
  margin-bottom: 28px; line-height: 1.6;
}

.cta-final__actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

/* Footer */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.75);
  padding-top: 56px;
}

.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}

.footer__brand p {
  font-size: 14px; line-height: 1.6; margin-top: 14px; max-width: 320px;
}

.footer__heading {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.footer__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer__list a,
.footer__list li { font-size: 14px; color: rgba(255,255,255,0.8); }
.footer__list a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}

.footer__bottom-inner {
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.45);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 10px 16px; background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 280ms ease;
}

.sticky-cta--visible { transform: translateY(0); }

/* WhatsApp flotante */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 16px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  font-size: 15px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), bottom var(--transition);
}

.wa-float:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.48);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

body.has-sticky .wa-float {
  bottom: calc(var(--sticky-h) + 16px);
}

@media (max-width: 768px) {
  .wa-float {
    right: 16px;
    bottom: 20px;
    padding: 14px;
  }

  .wa-float__label { display: none; }

  body.has-sticky .wa-float {
    bottom: calc(var(--sticky-h) + 12px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__title { max-width: none; }
  .credenciales__grid { grid-template-columns: repeat(2, 1fr); }
  .catalogo__grid { grid-template-columns: repeat(2, 1fr); }
  .ventajas__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonios__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .hero { min-height: auto; padding: 48px 0 56px; }
  .hero__photo { object-position: 65% center; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(11, 37, 69, 0.92) 0%, rgba(11, 37, 69, 0.88) 100%);
  }

  .nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: #fff; padding: 20px;
    transform: translateX(100%); transition: transform 0.3s;
    z-index: 99;
    box-shadow: -4px 0 24px rgba(11, 37, 69, 0.12);
    overflow-y: auto;
  }
  .nav--open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link {
    padding: 12px 14px;
    color: var(--text);
    background: var(--bg-soft);
  }
  .nav__link:hover { background: var(--brand-light); }
  .nav__link--cta {
    background: var(--brand);
    margin-top: 8px;
  }
  .nav__link--cta:hover { background: var(--brand-dark); }
  .nav-toggle { display: flex; z-index: 101; background: #fff; border-radius: var(--radius-sm); }

  .problema__grid { grid-template-columns: 1fr; gap: 32px; }
  .pasos { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .credenciales__grid { grid-template-columns: 1fr; }
  .catalogo__grid { grid-template-columns: 1fr; }
  .ventajas__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__phone { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
