/* ============================================================
   BOMSOL — Bombas y Soluciones Especiales de Control
   Industrial B2B landing — design system & layout
   ============================================================ */

:root {
  /* Color system */
  --navy:        #0f2744;
  --navy-dark:   #0a1c30;
  --steel-mid:   #1a3a5c;
  --steel-mid-2: #2a5280;
  --blue:        #2a7abf;
  --blue-light:  #4a9ada;
  --steel:       #c8d4e0;
  --pale:        #e8eef4;
  --white:       #ffffff;
  --text-2:      #3d5a7a;

  /* Cool-toned shadows */
  --shadow-sm: 0 2px 8px rgba(15, 39, 68, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 39, 68, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 28, 48, 0.18);

  /* Spacing */
  --section-y: 130px;
  --gutter: clamp(20px, 5vw, 64px);
  --maxw: 1240px;

  --r-card: 16px;
  --r-btn: 4px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-light);
}

.section { padding-block: var(--section-y); position: relative; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --pad-y: 15px;
  --pad-x: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--r-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; stroke-width: 2.2; }

.btn-accent {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(42, 122, 191, 0.28);
}
.btn-accent:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(42, 122, 191, 0.40);
}

.btn-outline {
  background: transparent;
  border-color: var(--steel);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  transform: translateY(-2px);
}
.btn-outline.on-light { color: var(--navy); border-color: var(--text-2); }
.btn-outline.on-light:hover { color: var(--blue); border-color: var(--blue); }

.btn-sm { --pad-y: 11px; --pad-x: 20px; font-size: 0.9rem; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 28, 48, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: rgba(200, 212, 224, 0.10);
  box-shadow: 0 6px 24px rgba(10, 28, 48, 0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.brand .mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--blue-light);
}
.brand .mark svg { width: 30px; height: 30px; }
.brand .mark img { width: 100%; height: 100%; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0.01em;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blue-light);
  transition: width 0.28s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

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

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.hamburger svg { width: 28px; height: 28px; }

/* Mobile sheet */
.sheet {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 360px);
  background: var(--navy-dark);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  padding: 88px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.sheet.open { transform: translateX(0); }
.sheet a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--steel);
  padding: 14px 0;
  border-bottom: 1px solid rgba(200,212,224,0.08);
  transition: color 0.2s var(--ease);
}
.sheet a:hover, .sheet a.active { color: var(--blue-light); }
.sheet .btn { margin-top: 24px; justify-content: center; }
.sheet-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--steel); cursor: pointer; padding: 6px;
}
.sheet-close svg { width: 26px; height: 26px; }
.scrim {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(5, 14, 26, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.scrim.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   Hero + fixed video background
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-video-wrap video,
.hero-video-wrap img.poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
/* Gradient overlay — dark navy on the left, fade to clear over the impeller */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      var(--navy-dark) 0%,
      rgba(10, 28, 48, 0.92) 28%,
      rgba(10, 28, 48, 0.55) 50%,
      rgba(10, 28, 48, 0.10) 72%,
      rgba(10, 28, 48, 0.0) 100%),
    linear-gradient(0deg, rgba(10,28,48,0.55) 0%, rgba(10,28,48,0) 30%);
}
.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
}
.hero-content { max-width: 620px; padding-block: 120px 60px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.92;
  margin-top: 22px;
}
.hero h1 .accent { color: var(--blue-light); }
.hero .sub {
  color: var(--steel);
  font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
  max-width: 30em;
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat .num span { color: var(--blue-light); }
.hero-stat .lbl {
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 6px;
  max-width: 16ch;
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--steel);
  opacity: 0.7;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue svg { width: 20px; height: 20px; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* ============================================================
   Section header helpers
   ============================================================ */
.sec-head { max-width: 760px; }
.sec-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.0;
  margin-top: 18px;
}

/* ============================================================
   Problema
   ============================================================ */
.problema { background: var(--pale); text-align: center; }
.problema .wrap { max-width: 980px; }
.problema h2 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  color: var(--navy);
  line-height: 1.0;
}
.problema h2 .hl { color: var(--blue); }
.problema p {
  color: var(--text-2);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  max-width: 720px;
  margin: 32px auto 0;
}
.rule {
  width: 64px; height: 3px;
  background: var(--blue);
  margin: 0 auto 4px;
  border-radius: 2px;
}

/* ============================================================
   Solución — 3 columns
   ============================================================ */
.solucion .grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 70px;
}
.step .num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 3.4rem;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0.02em;
}
.step h3 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-top: 14px;
  padding-top: 22px;
  border-top: 2px solid var(--pale);
}
.step p {
  color: var(--text-2);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.6;
  margin-top: 14px;
}

/* ============================================================
   Productos — navy, 4 cards
   ============================================================ */
.productos { background: var(--navy-dark); color: var(--white); }
.productos .eyebrow { color: var(--blue-light); }
.productos .sec-head h2 { color: var(--white); }
.productos .sec-head p {
  color: var(--steel); font-weight: 300; font-size: 1.1rem; line-height: 1.6;
  margin-top: 18px; max-width: 56ch;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.prod-card {
  background: linear-gradient(160deg, var(--steel-mid) 0%, var(--navy) 100%);
  border: 1px solid rgba(200, 212, 224, 0.10);
  border-radius: var(--r-card);
  padding: 32px 28px 34px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.prod-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(74,154,218,0.16), transparent 60%);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.prod-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 154, 218, 0.45);
  box-shadow: 0 24px 50px rgba(10, 28, 48, 0.5);
}
.prod-card:hover::before { opacity: 1; }
.prod-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(74, 154, 218, 0.14);
  color: var(--blue-light);
  margin-bottom: 22px;
}
.prod-icon svg { width: 28px; height: 28px; stroke-width: 1.8; }
.prod-card h3 { font-size: 1.55rem; color: var(--white); }
.prod-card p {
  color: var(--steel);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.58;
  margin-top: 12px;
}

/* ============================================================
   Marcas
   ============================================================ */
.marcas { background: var(--white); text-align: center; }
.marcas .sec-head { margin-inline: auto; text-align: center; }
.marcas .sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 48px auto 0;
  max-width: 940px;
}
.brand-pill {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--pale);
  border: 1px solid #d5dfea;
  border-radius: 999px;
  padding: 13px 26px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.brand-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.marcas .foot {
  color: var(--text-2);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 44px auto 0;
}

/* ============================================================
   Contacto — navy, 2 columns
   ============================================================ */
.contacto { background: var(--navy); color: var(--white); }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.contacto .eyebrow { color: var(--blue-light); }
.contacto h2 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4rem); margin-top: 16px; }
.contacto .lede {
  color: var(--steel);
  font-weight: 300;
  font-size: 1.12rem;
  line-height: 1.6;
  margin-top: 22px;
  max-width: 40ch;
}
.contact-details { margin-top: 44px; display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; align-items: center; gap: 16px; }
.contact-row .ic {
  width: 46px; height: 46px; flex: none;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(74,154,218,0.14);
  color: var(--blue-light);
}
.contact-row .ic svg { width: 22px; height: 22px; }
.contact-row .k { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); }
.contact-row .v { font-size: 1.18rem; font-weight: 500; color: var(--white); margin-top: 2px; }

/* Form */
.form-card {
  background: linear-gradient(165deg, var(--steel-mid) 0%, var(--navy-dark) 100%);
  border: 1px solid rgba(200,212,224,0.12);
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 20px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field.row2 .field { margin-bottom: 0; }
label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
input, textarea {
  width: 100%;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  color: var(--white);
  background: rgba(10, 28, 48, 0.55);
  border: 1.5px solid rgba(200, 212, 224, 0.18);
  border-radius: var(--r-btn);
  padding: 13px 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
input::placeholder, textarea::placeholder { color: rgba(200,212,224,0.45); }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  background: rgba(10, 28, 48, 0.8);
  box-shadow: 0 0 0 3px rgba(74, 154, 218, 0.18);
}
textarea { resize: vertical; min-height: 120px; }
.form-card .btn-accent { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { color: var(--steel); font-size: 0.82rem; font-weight: 300; margin-top: 16px; text-align: center; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 8px;
}
.form-success.show { display: flex; }
.form-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(74,154,218,0.16);
  color: var(--blue-light);
}
.form-success .check svg { width: 34px; height: 34px; stroke-width: 2.4; }
.form-success h3 { font-size: 1.8rem; color: var(--white); }
.form-success p { color: var(--steel); font-weight: 300; line-height: 1.55; max-width: 36ch; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-dark); color: var(--steel); padding-block: 64px; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer .brand { color: var(--white); margin-bottom: 14px; }
.footer .tagline {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--blue-light);
}
.footer .contact-inline { display: flex; flex-direction: column; gap: 8px; font-size: 1.02rem; font-weight: 300; }
.footer .contact-inline a:hover { color: var(--white); }
.footer .contact-inline .social-link { display: flex; align-items: center; gap: 6px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(200,212,224,0.10);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(200,212,224,0.6);
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue svg { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  :root { --section-y: 80px; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: inline-flex; }
  .solucion .grid3 { grid-template-columns: 1fr; gap: 44px; }
  .contacto-grid { grid-template-columns: 1fr; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10,28,48,0.45) 0%, rgba(10,28,48,0.78) 55%, var(--navy-dark) 100%),
      linear-gradient(90deg, rgba(10,28,48,0.6), rgba(10,28,48,0.2));
  }
  .hero-video-wrap video, .hero-video-wrap img.poster { object-position: 70% center; }
}
@media (max-width: 560px) {
  :root { --section-y: 64px; }
  .grid4 { grid-template-columns: 1fr; }
  .field.row2 { grid-template-columns: 1fr; gap: 0; }
  .field.row2 .field { margin-bottom: 20px; }
  .hero-stats { gap: 28px; }
  .hero-content { padding-block: 110px 40px; }
}

/* ============================================================
   PRODUCTOS PAGE — brand selector
   ============================================================ */
.page-header {
  background: var(--navy-dark);
  color: var(--white);
  padding-top: 172px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  right: -10%; top: -40%;
  width: 60%; height: 180%;
  background: radial-gradient(closest-side, rgba(42,122,191,0.16), transparent 70%);
  pointer-events: none;
}
.page-header .eyebrow { color: var(--blue-light); }
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.98;
  margin-top: 16px;
}
.page-header p {
  color: var(--steel);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  max-width: 58ch;
  margin-top: 22px;
}

.brands-section { background: var(--pale); padding-block: 84px 96px; }

.brand-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.brand-card {
  background: var(--white);
  border: 1px solid #dbe4ee;
  border-radius: var(--r-card);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.brand-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #c2d2e2;
}
.brand-logo {
  width: 100%;
  height: 92px;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid #eef2f7;
  margin-bottom: 20px;
}
.brand-logo img { max-width: 100%; max-height: 66px; object-fit: contain; }
.brand-logo--dark { background: var(--navy-dark); border-color: var(--navy); }
.brand-logo--ph {
  background: var(--pale);
  border-style: dashed;
  border-color: #c2d2e2;
}
.brand-logo--ph span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text-2);
}
.brand-name {
  font-size: 1.45rem;
  color: var(--navy);
  line-height: 1.05;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tag-soon {
  margin-top: 14px;
  background: var(--pale);
  color: var(--text-2);
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 999px;
}

.helper-cta {
  margin-top: 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.helper-cta p {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--navy);
  line-height: 1.04;
  max-width: 18ch;
}

@media (max-width: 1024px) {
  .brand-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .brand-cards { grid-template-columns: repeat(2, 1fr); }
  .page-header { padding-top: 140px; padding-bottom: 72px; }
}
@media (max-width: 430px) {
  .brand-cards { grid-template-columns: 1fr; gap: 18px; }
}
