/* ─────────────────────────────────────────────────────────
   M&Co — Components · Dark Aurora
   ───────────────────────────────────────────────────────── */

/* ═══════════════ NAV — píldora flotante de cristal ═══════════════ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(1080px, calc(100% - 28px));
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 10px 0 18px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  border-color: var(--border-mid);
  background: linear-gradient(180deg, rgba(10,14,19,0.82), rgba(6,9,13,0.78));
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo img {
  height: 94px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.nav__logo-dot { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav__links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-3);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--grad-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--text); }
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--grad-cta);
  color: #06110c;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset, 0 4px 18px rgba(70,227,166,0.22);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.nav__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.16) inset, 0 8px 26px rgba(70,227,166,0.3);
}
.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  padding: 0;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.nav__hamburger:active { background: rgba(255,255,255,0.1); }
.nav__hamburger.open { background: rgba(255,255,255,0.09); border-color: var(--border-heavy); }
.nav__hamburger span {
  width: 16px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(3.5px, 3.5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(3.5px, -3.5px); }

/* Cuando el menú está abierto, la píldora del nav pierde el redondeo
   inferior para fundirse visualmente con el panel que cuelga de ella */
.nav.menu-open {
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  border-bottom-color: transparent;
  transition: border-radius 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* ── Velo tras el panel: el contenido de la página se ve, atenuado ── */
.nav__scrim {
  position: fixed;
  inset: 0;
  z-index: 185;
  background: rgba(4,7,10,0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
}
.nav__scrim.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.35s var(--ease), visibility 0s linear 0s;
}

/* ── Menú móvil — panel colgado de la píldora de navegación ── */
.nav__mobile {
  position: fixed;
  top: 78px; /* nav.top + nav.height en escritorio; ajustado en el breakpoint móvil */
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  z-index: 190;
  width: min(1080px, calc(100% - 28px));
  max-height: min(72vh, 560px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  counter-reset: mnav;
  padding: 6px 8px 10px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  background: linear-gradient(180deg, rgba(10,14,19,0.97), rgba(6,9,13,0.99));
  border: 1px solid var(--border-mid);
  border-top: none;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
}
.nav__mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0s;
}
/* Todos los enlaces del panel (incluida la CTA) comparten la entrada
   animada; el resto del "chrome" de fila se excluye de la CTA para que
   esta pueda ser el mismo botón .nav__cta.btn-eval que en el resto del sitio */
.nav__mobile a {
  position: relative;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: color 0.2s, background 0.2s, transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav__mobile a:not(.nav__mobile-cta) {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 10px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:not(.nav__mobile-cta)::before {
  counter-increment: mnav;
  content: counter(mnav, decimal-leading-zero);
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-4);
}
.nav__mobile a:not(.nav__mobile-cta)::after {
  content: '→';
  margin-left: auto;
  font-size: 14px;
  color: var(--green-soft);
  opacity: 0;
  transform: translateX(-6px);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav__mobile a:not(.nav__mobile-cta):hover { color: var(--text); background: rgba(255,255,255,0.035); }
.nav__mobile a:not(.nav__mobile-cta):hover::after { opacity: 1; transform: translateX(0); }

.nav__mobile.open a { opacity: 1; transform: translateY(0); }
.nav__mobile.open a:nth-child(1) { transition-delay: 0.05s; }
.nav__mobile.open a:nth-child(2) { transition-delay: 0.08s; }
.nav__mobile.open a:nth-child(3) { transition-delay: 0.11s; }
.nav__mobile.open a:nth-child(4) { transition-delay: 0.14s; }
.nav__mobile.open a:nth-child(5) { transition-delay: 0.17s; }
.nav__mobile.open a:nth-child(6) { transition-delay: 0.2s; }
.nav__mobile.open a:nth-child(7) { transition-delay: 0.23s; }

/* La CTA es el mismo .nav__cta.btn-eval del nav de escritorio: solo
   la centramos y le damos aire respecto a la lista, sin tocar su look */
.nav__mobile-cta {
  display: inline-flex !important; /* .nav__cta se oculta en el breakpoint móvil; aquí es la CTA del panel */
  align-self: center;
  margin-top: 12px;
}

.nav__mobile-handle {
  flex-shrink: 0;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--border-heavy);
  margin: 14px auto 2px;
}

/* ═══════════════ BOTONES ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease),
              filter 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-primary,
.btn-white {
  background: var(--grad-cta);
  color: #06110c;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14) inset,
              0 6px 24px rgba(70,227,166,0.22),
              0 2px 10px rgba(242,164,92,0.14);
}
.btn-primary:hover,
.btn-white:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2) inset,
              0 12px 34px rgba(70,227,166,0.3),
              0 4px 14px rgba(242,164,92,0.2);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border-mid);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-heavy);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 13px;
}
.btn--lg {
  padding: 15px 30px;
  font-size: 15px;
}

/* Estrella aurora en las CTA grandes sin flecha */
.btn-primary.btn--lg::after,
.btn-white.btn--lg::after {
  content: '✦';
  font-size: 12px;
  line-height: 1;
  opacity: 0.75;
}

/* ── Botón "Solicitar evaluación": esquinas cuadradas, degradado bitono, textura granulada ── */
/* Usado en el hero, el nav y el CTA final, en todas las páginas */
.btn-eval {
  border-radius: 12px !important;
  gap: 10px;
}
.btn-eval svg { flex-shrink: 0; opacity: 0.85; }
.btn-eval.btn-primary,
.btn-eval.btn-white,
.btn-eval.nav__cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, var(--teal) 0%, var(--peach) 100%);
}
.btn-eval.btn-primary::before,
.btn-eval.btn-white::before,
.btn-eval.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.btn-eval.btn-primary::after,
.btn-eval.btn-white::after,
.btn-eval.nav__cta::after { content: none; }
.btn-eval.btn-ghost {
  background: rgba(10,14,19,0.55);
}

/* ═══════════════ BADGES — píldoras de cristal ═══════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.badge-coral,
.badge-blue,
.badge-green,
.badge-neutral { background: var(--surface); color: var(--text-2); border: 1px solid var(--border-mid); }
.badge-coral::before,
.badge-blue::before,
.badge-green::before,
.badge-neutral::before { background: var(--text-4); box-shadow: none; }

/* ═══════════════ CARDS ═══════════════ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover {
  border-color: var(--border-mid);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.card--flat {
  background: transparent;
  border: 1px solid var(--border);
}
.card--flat:hover { border-color: var(--border-mid); }

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.card__icon--coral { background: rgba(242,164,92,0.12); border-color: rgba(242,164,92,0.25); }
.card__icon--green { background: rgba(70,227,166,0.10); border-color: rgba(70,227,166,0.25); }

.card__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--text-4);
}

/* ═══════════════ ACORDEÓN — fases ═══════════════ */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  transition: background 0.2s;
}
.accordion-trigger:hover .accordion-trigger__title { color: var(--text); }

.accordion-trigger__left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.accordion-trigger__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border-mid);
  transition: all 0.3s var(--ease);
}
.accordion-item.open .accordion-trigger__icon {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
  font-weight: 500;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2);
}
.accordion-trigger__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.accordion-trigger__sub {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 2px;
}
.accordion-trigger__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), border-color 0.3s;
}
.accordion-trigger__arrow svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-3);
  fill: none;
  stroke-width: 1.6;
}
.accordion-item.open .accordion-trigger__arrow {
  transform: rotate(180deg);
  border-color: var(--border-mid);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.accordion-item.open .accordion-body {
  max-height: 900px;
}
.accordion-body__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 6px 4px 30px 62px;
}
.accordion-body__block h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 12px;
}
.accordion-body__block ul {
  list-style: none;
}
.accordion-body__block ul li {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
  padding-left: 14px;
  position: relative;
  margin-bottom: 8px;
}
.accordion-body__block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-4);
}

/* ═══════════════ SECTION HEADER — título izq. / intro dcha. ═══════════════ */
.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: end;
  column-gap: 64px;
  margin-bottom: var(--space-8);
}
.section-header .t-label { grid-column: 1; }
.section-header h1,
.section-header h2 { grid-column: 1; }
.section-header .section-intro {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-top: 0;
  max-width: 420px;
  justify-self: end;
}
.section-header .link-arrow { grid-column: 1; }
.section-header--center {
  display: block;
  text-align: center;
}
.section-header--center .section-intro { margin-left: auto; margin-right: auto; }

.section-intro {
  margin-top: 18px;
  color: var(--text-3);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══════════════ STATUS ═══════════════ */
.status {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.status-done    { background: rgba(70,227,166,0.12); color: var(--green-deep); border: 1px solid rgba(70,227,166,0.25); }
.status-active  { background: rgba(56,210,198,0.12); color: var(--blue-deep); border: 1px solid rgba(56,210,198,0.25); }
.status-pending { background: var(--surface); color: var(--text-3); border: 1px solid var(--border); }
.status-warn    { background: rgba(245,192,142,0.12); color: var(--peach); border: 1px solid rgba(245,192,142,0.25); }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: #030508;
  border-top: 1px solid var(--border);
  padding: var(--space-9) 0 var(--space-6);
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-8);
}
.footer__logo {
  text-decoration: none;
  margin-bottom: 18px;
}
.footer__logo img { filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6)); }
.footer__logo span { color: var(--orange); }
.footer__tagline { font-size: 14px; color: var(--text-3); line-height: 1.6; max-width: 220px; margin: 0 auto; text-align: center; }
.footer__col h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-4); margin-bottom: 16px; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: 14px; color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--green-soft); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-4);
}

/* ═══════════════ PROGRESS ═══════════════ */
.progress-bar {
  height: 5px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  background: var(--grad-cta);
  border-radius: 3px;
}

/* ═══════════════ CHIP ═══════════════ */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.chip:hover { border-color: rgba(70,227,166,0.35); color: var(--green-soft); }

/* ═══════════════ FAQ ═══════════════ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  background: var(--surface);
  transition: border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.faq-item:hover { border-color: var(--border-mid); }
.faq-item.open { border-color: var(--border-mid); background: var(--surface-2); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  text-align: left;
}
.faq-trigger span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.faq-trigger__plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.faq-item.open .faq-trigger__plus {
  transform: rotate(45deg);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-body__inner {
  padding: 0 22px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}
.faq-item.open .faq-body { max-height: 400px; }

/* ═══════════════ FONDOS DECORATIVOS ═══════════════ */
.noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
/* Las espirales del tema claro no encajan en el tema aurora */
.bg-swirl { display: none; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 900px) {
  .section-header {
    display: block;
  }
  .section-header .section-intro {
    max-width: 560px;
    justify-self: start;
  }
  .accordion-body__grid {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 4px;
  }
}

@media (max-width: 768px) {
  .nav { height: 58px; padding: 0 8px 0 14px; top: 12px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo img { height: 64px; }
  .nav__mobile { top: 70px; } /* nav.top(12) + nav.height(58) */
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .accordion-body__grid { grid-template-columns: 1fr; }
  .accordion-trigger__sub { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { white-space: normal; text-align: center; }
}
