/* ============================================================
   INDA LLC — Sistema de diseño
   Matriz tecnológica/energética · matriz de EnerVisionLite
   Base clara institucional + guiños tech (numeración, énfasis
   en cursiva editorial, bloques oscuros) · bilingüe ES/EN
   ============================================================ */

:root {
  /* Marca */
  --navy:        #0E2A52;
  --navy-600:    #163766;
  --navy-900:    #0A1F3D;
  --green:       #4FA12C;
  --green-deep:  #3C8A22;
  --green-soft:  rgba(79, 161, 44, 0.10);
  --ink:         #0B0F10;   /* bloques oscuros — puente con EnerVisionLite */
  --ink-700:     #14191B;

  /* Neutros (base fría, sutil) */
  --bg:          #F5F7FA;
  --bg-2:        #EEF2F6;
  --surface:     #FFFFFF;
  --text:        #15243B;
  --muted:       #5C6E86;
  --muted-2:     #8493A6;
  --line:        rgba(14, 42, 82, 0.12);
  --line-soft:   rgba(14, 42, 82, 0.07);

  /* Tipografía */
  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-body:    "IBM Plex Sans", system-ui, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, monospace;
  --f-emph:    "Newsreader", Georgia, serif;

  /* Medidas */
  --container: 1200px;
  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 1px 2px rgba(14,42,82,.05), 0 14px 40px -18px rgba(14,42,82,.28);
  --shadow-sm: 0 1px 2px rgba(14,42,82,.06), 0 6px 18px -12px rgba(14,42,82,.25);
  --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Bilingüe ---------- */
html.lang-es [data-en] { display: none; }
html.lang-en [data-es] { display: none; }
/* inline emphasis variants keep their display via the wrapper */

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--ink); color: #E7ECF1; }
.section--navy { background: var(--navy); color: #E9EFF7; }
.section--alt { background: var(--bg-2); }

/* ---------- Tipografía utilitaria ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.eyebrow .num { color: var(--muted-2); }
.section--dark .eyebrow .num, .section--navy .eyebrow .num { color: rgba(255,255,255,.45); }

h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; color: var(--navy); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); letter-spacing: -.01em; }

.emph { font-family: var(--f-emph); font-style: italic; font-weight: 400; color: var(--green); letter-spacing: -.01em; }
.section--dark .emph, .section--navy .emph { color: #7BD158; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--muted); line-height: 1.55; max-width: 62ch; }
.section--dark .lead, .section--navy .lead { color: rgba(231,236,241,.78); }

.section-head { max-width: 760px; }
.section-head h2 { margin-top: 18px; }
.section-head .lead { margin-top: 20px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 500; font-size: 15.5px;
  padding: 14px 24px; border-radius: 100px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-sm { padding: 10px 18px; font-size: 14.5px; }
.btn-primary { background: var(--green-deep); color: #fff; box-shadow: 0 8px 22px -10px rgba(60,138,34,.7); }
.btn-primary:hover { background: var(--green); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-600); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); background: #fff; transform: translateY(-2px); }
.section--dark .btn-ghost, .section--navy .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.section--dark .btn-ghost:hover, .section--navy .btn-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.5); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.textlink { color: var(--green); font-weight: 500; display: inline-flex; align-items: center; gap: 7px; }
.textlink .arrow { transition: transform .2s var(--ease); }
.textlink:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,247,250,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; border-radius: 50%; background: #fff; display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); overflow: hidden; }
.brand-mark img { width: 90%; height: 90%; object-fit: contain; }
.footer-brand .brand-mark { box-shadow: 0 0 0 1px rgba(255,255,255,.1); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--f-display); font-weight: 700; font-size: 19px; letter-spacing: .02em; color: var(--navy); }
.brand-text .tag { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 15px; color: var(--text); padding: 9px 14px; border-radius: 8px;
  position: relative; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--navy); background: rgba(14,42,82,.05); }
.nav a.active { color: var(--navy); font-weight: 500; }
.nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--green); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle { display: inline-flex; background: var(--bg-2); border: 1px solid var(--line); border-radius: 100px; padding: 3px; }
.lang-toggle button { font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: .05em; padding: 5px 11px; border-radius: 100px; color: var(--muted); transition: .2s; }
.lang-toggle button.active { background: var(--navy); color: #fff; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); margin: 4px auto; border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 84px 0 92px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 80% at 85% -10%, rgba(79,161,44,.08), transparent 60%),
    radial-gradient(50% 70% at 8% 0%, rgba(14,42,82,.06), transparent 55%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-top: 22px; }
.hero .lead { margin-top: 26px; }
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { margin-top: 40px; display: flex; gap: 30px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-meta div { }
.hero-meta .n { font-family: var(--f-display); font-weight: 600; font-size: 1.6rem; color: var(--navy); }
.hero-meta .l { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* Visual del hero — tarjeta de consola simulada */
.console {
  background: var(--ink); border-radius: 18px; padding: 18px; color: #cdd6e0;
  box-shadow: 0 40px 80px -30px rgba(11,15,16,.6); border: 1px solid rgba(255,255,255,.06);
}
.console-top { display: flex; align-items: center; gap: 8px; padding: 4px 6px 14px; }
.console-top i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.18); display: block; }
.console-top .ttl { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; color: rgba(255,255,255,.45); margin-left: auto; text-transform: uppercase; }
.console-body { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 18px; }
.console-row { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.console-row:last-child { border-bottom: none; }
.console-row .k { font-family: var(--f-mono); font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .03em; }
.console-row .v { font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; color: #fff; }
.console-row .v.up { color: #7BD158; }
.bars { display: flex; align-items: flex-end; gap: 7px; height: 84px; margin-top: 16px; }
.bars i { flex: 1; background: linear-gradient(180deg, #4FA12C, #2f6f1c); border-radius: 4px 4px 0 0; opacity: .85; }

/* ============================================================
   PLACEHOLDERS de imagen
   ============================================================ */
.ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--bg-2) 0 11px, var(--bg) 11px 22px);
  border: 1px solid var(--line);
  display: grid; place-items: center; min-height: 220px;
}
.ph span { font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em; color: var(--muted-2); text-transform: uppercase; background: rgba(245,247,250,.85); padding: 7px 14px; border-radius: 100px; border: 1px solid var(--line); }
.ph.dark { background: repeating-linear-gradient(135deg, #15191b 0 11px, #0e1213 11px 22px); border-color: rgba(255,255,255,.08); }
.ph.dark span { background: rgba(11,15,16,.7); color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.1); }

/* ============================================================
   STRIP credibilidad
   ============================================================ */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item { padding: 34px 28px; border-right: 1px solid var(--line-soft); }
.strip-item:last-child { border-right: none; }
.strip-item .n { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); letter-spacing: -.02em; }
.strip-item .n .u { color: var(--green); }
.strip-item .l { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--green); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleY(1); }
.card .idx { font-family: var(--f-mono); font-size: 12px; color: var(--muted-2); letter-spacing: .08em; }
.card .icon { width: 46px; height: 46px; border-radius: 11px; background: var(--green-soft); display: grid; place-items: center; margin-bottom: 20px; }
.card .icon svg { width: 23px; height: 23px; stroke: var(--green); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card.wide { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center; }
.card.wide .icon { margin-bottom: 0; }

/* feature list */
.flist { display: grid; gap: 14px; margin-top: 8px; }
.flist li { display: flex; gap: 14px; align-items: flex-start; }
.flist .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--green-soft); display: grid; place-items: center; margin-top: 2px; }
.flist .tick svg { width: 12px; height: 12px; stroke: var(--green); }
.flist b { font-weight: 600; color: var(--navy); }
.flist span { color: var(--muted); font-size: 15.5px; }
.section--dark .flist b, .section--navy .flist b { color: #fff; }
.section--dark .flist span, .section--navy .flist span { color: rgba(231,236,241,.7); }
.section--dark .flist .tick, .section--navy .flist .tick { background: rgba(79,161,44,.18); }

/* ============================================================
   Bloque producto destacado (oscuro)
   ============================================================ */
.product-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.evl-badge { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.16); padding: 7px 14px; border-radius: 100px; }
.evl-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #7BD158; box-shadow: 0 0 0 4px rgba(123,209,88,.18); }
.metric-big { font-family: var(--f-display); font-weight: 600; font-size: clamp(3rem, 7vw, 5rem); color: #fff; letter-spacing: -.03em; line-height: 1; }
.metric-big .u { color: #7BD158; }

/* ============================================================
   Organigrama (Nosotros)
   ============================================================ */
.org { display: flex; flex-direction: column; align-items: center; gap: 0; }
.org-node {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 30px; text-align: center; box-shadow: var(--shadow-sm); min-width: 240px;
}
.org-node.parent { background: var(--navy); border-color: var(--navy); color: #fff; }
.org-node.parent .role { color: rgba(255,255,255,.6); }
.org-node .name { font-family: var(--f-display); font-weight: 600; font-size: 1.25rem; color: var(--navy); }
.org-node.parent .name { color: #fff; }
.org-node .role { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.org-connector { width: 2px; height: 34px; background: var(--line); }
.org-children { display: flex; gap: 28px; position: relative; }
.org-children::before { content: ""; position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: calc(100% - 240px); height: 2px; background: var(--line); }
.org-child-wrap { display: flex; flex-direction: column; align-items: center; }
.org-node.product { border-color: var(--green); }
.org-node.product .name { color: var(--navy); }
.org-node.future { border-style: dashed; background: transparent; box-shadow: none; }
.org-node.future .name { color: var(--muted-2); }

/* ============================================================
   Valores / lista numerada
   ============================================================ */
.numlist { display: grid; gap: 0; }
.numlist .row { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid var(--line); align-items: start; }
.numlist .row:last-child { border-bottom: 1px solid var(--line); }
.numlist .row .n { font-family: var(--f-mono); font-size: 14px; color: var(--green); padding-top: 4px; }
.numlist .row h3 { margin-bottom: 8px; }
.numlist .row p { color: var(--muted); max-width: 62ch; }

/* ============================================================
   Contacto
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.contact-form { padding: 44px; }
.contact-info { background: var(--ink); color: #E7ECF1; padding: 44px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--f-body); font-size: 16px; color: var(--text);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); background: #fff; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #d2483b; box-shadow: 0 0 0 3px rgba(210,72,59,.12); }
.field .err { display: none; font-size: 13px; color: #d2483b; margin-top: 6px; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted-2); margin-top: 4px; }
.form-success { display: none; background: var(--green-soft); border: 1px solid var(--green); border-radius: var(--radius-sm); padding: 16px 18px; color: var(--green-deep); font-size: 15px; margin-bottom: 22px; }
.form-success.show { display: block; }
.form-error { display: none; background: rgba(210,72,59,.08); border: 1px solid #d2483b; border-radius: var(--radius-sm); padding: 16px 18px; color: #b23a2e; font-size: 15px; margin-bottom: 22px; }
.form-error.show { display: block; }
.btn.is-loading { opacity: .7; pointer-events: none; }

.info-block { margin-bottom: 30px; }
.info-block .lab { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 7px; }
.info-block .val { font-size: 17px; color: #fff; }
.info-block .val a:hover { color: #7BD158; }
.info-tag { display: inline-block; font-family: var(--f-mono); font-size: 10.5px; color: var(--muted-2); border: 1px solid var(--line); padding: 3px 9px; border-radius: 100px; margin-left: 8px; }

/* ============================================================
   Page hero (interior)
   ============================================================ */
.page-hero { padding: 72px 0 56px; position: relative; }
.page-hero h1 { margin-top: 18px; max-width: 18ch; }
.page-hero .lead { margin-top: 22px; }
.breadcrumb { font-family: var(--f-mono); font-size: 12px; letter-spacing: .05em; color: var(--muted-2); text-transform: uppercase; }
.breadcrumb a:hover { color: var(--green); }

/* ============================================================
   CTA final
   ============================================================ */
.cta-final { text-align: center; }
.cta-final h2 { max-width: 20ch; margin-inline: auto; }
.cta-final .lead { margin: 22px auto 34px; }
.cta-final .hero-cta { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #9fb0c2; padding: 70px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand p { margin-top: 18px; font-size: 14.5px; color: #8093a6; max-width: 34ch; }
.footer-col h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #6d8097; margin-bottom: 16px; font-weight: 500; }
.footer-col a { display: block; font-size: 14.5px; color: #b8c6d6; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: #6d8097; }
.footer-bottom .evl-link { font-family: var(--f-mono); font-size: 12px; color: #7BD158; display: inline-flex; align-items: center; gap: 7px; }

/* ============================================================
   Animaciones de entrada
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.bars i { transform-origin: bottom; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .product-feature { grid-template-columns: 1fr; gap: 38px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item { border-bottom: 1px solid var(--line-soft); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: var(--surface); border-bottom: 1px solid var(--line); padding: 14px 20px 22px; gap: 2px;
    box-shadow: var(--shadow);
  }
  .nav.open a { width: 100%; padding: 13px 14px; }
  .nav.open a.active::after { display: none; }
  .grid-2, .grid-3, .contact-grid, .field-row { grid-template-columns: 1fr; }
  .card.wide { grid-template-columns: 1fr; }
  .org-children { flex-direction: column; gap: 0; }
  .org-children::before { display: none; }
  .org-child-wrap .org-connector { display: block; }
  .container { padding-inline: 20px; }
  .hero-meta { gap: 22px; }
  .contact-form, .contact-info { padding: 30px; }
}

@media (max-width: 480px) {
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
