/* ─── Tokens ─────────────────────────────────────────────────────── */
:root {
  --teal: #00b398;
  --teal-hover: #00c8ae;
  --teal-dark: #00907c;
  --dark: #0a1e35;
  --dark-2: #091729;
  --dark-3: #0d2744;
  --muted: #5b6a84;
  --border: #dde3ef;
  --surface: #ffffff;
  --surface-alt: #f0f5ff;
  --amber: #fbbf24;
  --nav-h: 68px;
  --shell: 1240px;
  --gutter: 28px;
  --dark-gradient: linear-gradient(160deg, #091729 0%, #0d2744 55%, #0a2238 100%);
  --teal-gradient: linear-gradient(135deg, #00b398, #00907c);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--surface);
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, p { margin: 0; }
img { max-width: 100%; display: block; }

button {
  font-family: inherit;
  cursor: pointer;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ─── Layout helpers ─────────────────────────────────────────────── */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.section { padding-block: 88px; }
.section--light { background-color: var(--surface); }
.section--alt { background-color: var(--surface-alt); }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head--left { text-align: left; }

.chip {
  display: inline-block;
  background-color: rgba(0, 179, 152, 0.12);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 40px;
  border: 1px solid rgba(0, 179, 152, 0.25);
  margin-bottom: 16px;
}

.h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.h2--narrow { max-width: 560px; }

.section-head--left .lede { margin-left: 0; }

.lede {
  color: var(--muted);
  font-size: 16px;
  margin: 14px auto 0;
  max-width: 520px;
}

.blob { position: absolute; border-radius: 50%; pointer-events: none; }

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s, color 0.2s;
}

.btn--primary { background-color: var(--teal); color: #fff; }
.btn--primary:hover { background-color: var(--teal-hover); transform: translateY(-2px); }

.btn--ghost {
  background-color: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
}
.btn--ghost:hover { background-color: rgba(255, 255, 255, 0.12); }

.btn--lg { padding: 13px 32px; font-size: 15px; }
.btn--xl { padding: 14px 40px; font-size: 15px; }
.btn--sm { padding: 9px 24px; font-size: 14px; letter-spacing: 0.01em; }
.btn--block { display: block; width: 100%; padding: 13px; font-size: 14.5px; }

/* ─── Brand ──────────────────────────────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--teal-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand__name {
  display: block;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand__tag {
  display: block;
  font-size: 9.5px;
  color: var(--teal);
  letter-spacing: 0.14em;
  font-weight: 600;
}

.brand--sm .brand__mark { width: 36px; height: 36px; border-radius: 8px; }
.brand--sm .brand__name { font-size: 17px; }

/* ─── Header / nav ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background-color: rgba(9, 23, 41, 0.97);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.site-header__bar {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav { display: flex; align-items: center; gap: 2px; }

.nav__link {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__link:hover { color: #fff; }
.nav__link.is-active { color: var(--teal); }

.nav__cta { margin-left: 12px; }
.nav__cta:hover { transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  padding: 6px;
  line-height: 0;
}

.nav-toggle__close { display: none; }
.nav-toggle.is-open .nav-toggle__open { display: none; }
.nav-toggle.is-open .nav-toggle__close { display: block; }

.mobile-menu {
  display: none;
  background-color: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px var(--gutter) 24px;
}
.mobile-menu.is-open { display: block; }

.mobile-menu__link {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
.mobile-menu__link.is-active { color: var(--teal); }
.mobile-menu__cta { margin-top: 16px; }

/* ─── Page shell ─────────────────────────────────────────────────── */
/* El header es fixed y transparente: cada hero reserva su propio espacio
   bajo la barra (var(--nav-h)) en lugar de empujar toda la página. */
.page { flex: 1; }

/* El body asoma bajo la última sección en pantallas muy altas:
   que su fondo coincida con el de esa sección. */
body.bg-alt { background-color: var(--surface-alt); }
body.bg-dark { background-color: #0d2744; }

/* ─── Notice banner ──────────────────────────────────────────────── */
.notice {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background-color: rgba(251, 191, 36, 0.12);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.notice[hidden] { display: none; }

.notice__text { color: rgba(255, 255, 255, 0.8); font-size: 13px; }
.notice__text strong { color: var(--amber); }

.notice__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  padding: 0;
  margin-left: 8px;
  line-height: 0;
}
.notice__close:hover { color: rgba(255, 255, 255, 0.8); }

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-block: 148px 110px;
  background: var(--dark-gradient);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__blob--a {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 179, 152, 0.18) 0%, transparent 70%);
}

.hero__blob--b {
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 120, 220, 0.12) 0%, transparent 70%);
}

.hero__inner { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__title em { color: var(--teal); font-style: normal; }

.hero__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Stats ──────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.stat {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 22px;
  transition: background-color 0.25s, border-color 0.25s;
}
.stat:hover {
  background-color: rgba(0, 179, 152, 0.08);
  border-color: rgba(0, 179, 152, 0.25);
}

.stat__num {
  font-size: 34px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat__label { color: rgba(255, 255, 255, 0.55); font-size: 13px; line-height: 1.45; }

/* ─── Certifications ─────────────────────────────────────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.cert {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.cert:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0, 179, 152, 0.1);
  transform: translateY(-4px);
}

.cert__badge {
  min-width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--teal-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
}
.cert__badge--long { font-size: 9px; }

.cert__field {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  background-color: rgba(0, 179, 152, 0.08);
  padding: 2px 10px;
  border-radius: 40px;
  letter-spacing: 0.05em;
}

.cert__name { font-weight: 700; font-size: 15px; color: var(--dark); margin: 8px 0 4px; }
.cert__desc { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ─── Trust ──────────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.trust__visual { position: relative; }

.trust__panel {
  border-radius: 20px;
  background: linear-gradient(160deg, #091729 0%, #0d2744 100%);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.trust__panel .blob {
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 179, 152, 0.2) 0%, transparent 70%);
}

.trust__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
.trust__row:last-child { border-bottom: none; }
.trust__row dt { color: rgba(255, 255, 255, 0.6); font-size: 14px; }
.trust__row dd {
  margin: 0;
  color: var(--teal);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust__stats { margin: 0; position: relative; z-index: 1; }

.trust__seal {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.trust__seal-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--teal-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust__seal-title { display: block; font-size: 12px; font-weight: 700; color: var(--dark); }
.trust__seal-sub { font-size: 11px; color: var(--muted); }

.prose { color: var(--muted); font-size: 16px; line-height: 1.78; }
.prose + .prose { margin-top: 24px; }

.trust__body .h2 { margin-bottom: 20px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.trust__body .prose { line-height: 1.75; margin-bottom: 32px; }

.checklist { display: flex; flex-direction: column; gap: 12px; }

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-size: 14.5px;
  font-weight: 500;
}

.checklist__mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(0, 179, 152, 0.12);
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

ul.checklist { list-style: none; margin: 0; padding: 0; }

/* ─── Services ───────────────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background-color: #fff;
  transition: border-color 0.2s, background-color 0.2s;
}
.service:hover { border-color: var(--teal); background-color: rgba(0, 179, 152, 0.03); }

.service__icon { font-size: 20px; flex-shrink: 0; line-height: 1.4; }
.service__text { color: var(--dark); font-size: 14px; line-height: 1.55; font-weight: 500; }

/* Compact variant used on the about page */
.service-list { display: flex; flex-direction: column; gap: 10px; list-style: none; margin: 0; padding: 0; }

.service-list .service {
  align-items: center;
  padding: 14px 18px;
  border-width: 1px;
  border-radius: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-list .service:hover { border-color: var(--teal); background-color: #fff; transform: translateX(4px); }
.service-list .service__icon { font-size: 18px; }
.service-list .service__text { line-height: 1.4; }

/* ─── CTA band ───────────────────────────────────────────────────── */
.cta {
  background: linear-gradient(160deg, #091729 0%, #0d2744 100%);
  padding: 80px var(--gutter);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta .blob {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 179, 152, 0.12) 0%, transparent 70%);
}

.cta__inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }

.cta__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.65;
}

/* ─── Page hero (about / contact) ────────────────────────────────── */
.page-hero {
  background: var(--dark-gradient);
  padding: 150px var(--gutter) 100px;
  position: relative;
  overflow: hidden;
}

.page-hero .blob {
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 179, 152, 0.15) 0%, transparent 65%);
}

.page-hero__inner { position: relative; z-index: 1; }

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 640px;
}
.page-hero__title em { color: var(--teal); font-style: normal; }

/* ─── About ──────────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }

.pillar__rule { width: 44px; height: 5px; border-radius: 3px; margin-bottom: 24px; background-color: var(--teal); }
.pillar__rule--dark { background-color: var(--dark-3); }

.pillar__title { font-size: 26px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; margin-bottom: 18px; }
.pillar__text { color: var(--muted); font-size: 15.5px; line-height: 1.78; }

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

/* ─── Contact ────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-aside { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background-color: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
}

.contact-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(0, 179, 152, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card__label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-card__value { color: var(--dark); font-size: 14.5px; font-weight: 600; text-decoration: none; }
.contact-card__value--plain { font-size: 14px; font-weight: 400; line-height: 1.5; display: block; }

.fraud-alert {
  padding: 18px 20px;
  background-color: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.fraud-alert span { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.fraud-alert p { color: #78350f; font-size: 13px; line-height: 1.65; }

.form-card {
  background-color: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.form-card__title { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; letter-spacing: -0.02em; }
.form-card__sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { margin-bottom: 16px; }
.field--last { margin-bottom: 24px; }
.field-row .field { margin-bottom: 0; }

.field label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark);
  background-color: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--teal); }

.field select { cursor: pointer; }
.field textarea { height: 110px; resize: vertical; }

.form-success { text-align: center; padding: 40px 0; }
.form-success[hidden] { display: none; }

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 179, 152, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15px; }

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer { background-color: var(--dark-2); color: rgba(255, 255, 255, 0.55); }
.site-footer__inner { max-width: var(--shell); margin: 0 auto; padding: 60px var(--gutter) 32px; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .brand { margin-bottom: 18px; }
.site-footer__about { font-size: 14px; line-height: 1.72; max-width: 280px; margin-bottom: 20px; }

.social { display: flex; gap: 10px; }

.social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.social a:hover { background-color: var(--teal); color: #fff; }

.site-footer__heading {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.site-footer__nav { list-style: none; margin: 0; padding: 0; }
.site-footer__nav a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  padding: 5px 0;
  margin-bottom: 4px;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__nav a:hover { color: var(--teal); }

.site-footer__address { font-size: 13.5px; line-height: 1.6; margin-bottom: 10px; font-style: normal; }
.site-footer__address a { display: block; color: rgba(255, 255, 255, 0.55); font-size: 13.5px; text-decoration: none; margin-bottom: 5px; }

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
}
.site-footer__legal span:last-child { color: var(--teal); font-weight: 600; }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__grid,
  .split,
  .pillars,
  .why,
  .contact-grid,
  .site-footer__grid { grid-template-columns: 1fr; }

  .split, .why { gap: 48px; }
  .pillars { gap: 40px; }
  .trust__seal { position: static; margin-top: 16px; display: inline-flex; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: auto; padding-block: 150px 80px; }
  .section { padding-block: 64px; }
  .page-hero { padding-top: 120px; padding-bottom: 72px; }
  .form-card { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .field-row .field { margin-bottom: 16px; }
  .field-row .field:last-child { margin-bottom: 0; }
  .cert { padding: 22px; gap: 16px; }
  .trust__panel { padding: 36px 26px; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .stats { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .notice { padding: 12px 20px; align-items: flex-start; }
  .hero__actions .btn { flex: 1 1 100%; text-align: center; }
}

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

/* ─── Contacto directo (reemplaza al formulario) ─────────────────── */
.reach {
  background-color: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.reach__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.reach__text { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }

.reach__actions { display: flex; flex-direction: column; gap: 12px; }

.reach__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
}
.reach__btn:hover {
  border-color: var(--teal);
  background-color: rgba(0, 179, 152, 0.04);
  transform: translateY(-2px);
}

.reach__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.reach__icon--wa { background-color: #25d366; }
.reach__icon--mail { background: var(--teal-gradient); }

.reach__label { display: block; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 3px; }
.reach__value { display: block; color: var(--dark); font-size: 16px; font-weight: 700; }
.reach__hint { display: block; color: var(--muted); font-size: 12.5px; margin-top: 2px; }

.reach__note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}
.reach__note a { color: var(--teal); font-weight: 700; text-decoration: none; }
.reach__note a:hover { text-decoration: underline; }

.hero__note {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 420px;
}
.hero__note a { color: rgba(255, 255, 255, 0.75); }

@media (max-width: 768px) {
  .reach { padding: 28px 22px; }
}
