:root {
  --green-950: #0b3222;
  --green-900: #0f482d;
  --green-800: #126a38;
  --green-700: #168446;
  --green-600: #259c54;
  --green-100: #e5f3e8;
  --green-50: #f3faf4;
  --blue-700: #006ebc;
  --blue-500: #1197e5;
  --ink: #173127;
  --muted: #5f6f67;
  --cream: #fbfaf5;
  --white: #ffffff;
  --line: #dce5df;
  --shadow: 0 20px 55px rgba(16, 67, 42, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  color: white;
  background: var(--green-950);
  border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  color: white;
  background: var(--green-950);
  font-size: .88rem;
}
.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 72, 45, .08);
  background: rgba(251, 250, 245, .95);
  backdrop-filter: blur(12px);
}
.header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 205px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-size: .96rem;
  font-weight: 700;
  text-decoration: none;
}
.main-nav a:not(.button):hover { color: var(--green-700); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-950);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid var(--green-800);
  border-radius: 999px;
  color: white;
  background: var(--green-800);
  box-shadow: 0 10px 25px rgba(18, 106, 56, .16);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--green-700);
  box-shadow: 0 15px 30px rgba(18, 106, 56, .22);
}
.button--small { min-height: 42px; padding: 9px 18px; font-size: .92rem; }
.button--outline { color: var(--green-900); background: transparent; box-shadow: none; }
.button--outline:hover { color: white; }
.button--full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 85% 18%, rgba(17,151,229,.11), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(37,156,84,.16), transparent 27%),
    linear-gradient(135deg, #fbfaf5 0%, #f4f8ee 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -70px -140px auto;
  width: 340px;
  height: 340px;
  border: 46px solid rgba(18, 106, 56, .05);
  border-radius: 50%;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 64px;
}
.hero__copy { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow--light { color: #8fdda7; }
h1, h2, h3 {
  margin-top: 0;
  color: var(--green-950);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.12;
}
h1 { max-width: 700px; margin-bottom: 24px; font-size: clamp(2.75rem, 5.2vw, 5.1rem); letter-spacing: -.045em; }
h2 { margin-bottom: 18px; font-size: clamp(2.05rem, 3.2vw, 3.45rem); letter-spacing: -.035em; }
h3 { margin-bottom: 10px; font-size: 1.35rem; }
.hero__lead { max-width: 650px; margin: 0 0 30px; color: var(--muted); font-size: 1.15rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.hero__checks li::before { content: "✓"; margin-right: 8px; color: var(--green-700); }
.hero__visual { position: relative; }
.hero__image-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(18,106,56,.08);
  border-radius: 36px;
  background: white;
  box-shadow: var(--shadow);
}
.hero__image-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 24px; }
.hero__badge {
  position: absolute;
  top: 42px;
  left: 42px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  color: white;
  background: var(--green-800);
  font-size: .8rem;
  font-weight: 800;
}
.hero__note {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: min(310px, 70%);
  padding: 18px 22px;
  border-left: 5px solid var(--blue-500);
  border-radius: 14px;
  background: white;
  box-shadow: 0 18px 45px rgba(13, 54, 36, .18);
}
.hero__note strong, .hero__note span { display: block; }
.hero__note span { margin-top: 4px; color: var(--muted); font-size: .88rem; }

.trust-strip { padding: 22px 0; color: white; background: var(--green-900); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  padding: 6px 22px;
  border-right: 1px solid rgba(255,255,255,.16);
}
.trust-strip__grid > div:last-child { border-right: 0; }
.trust-icon {
  min-width: 48px;
  color: #8fdda7;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
}
.trust-strip p { margin: 0; font-size: .9rem; line-height: 1.35; }

.section { padding: 100px 0; }
.section--tint { background: var(--green-50); }
.section--dark { color: white; background: var(--green-950); }
.section--dark h2, .section--dark h3 { color: white; }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}
.section-heading > p { max-width: 500px; margin: 0 0 10px; color: var(--muted); }
.section-heading--center { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading--center > p { margin-inline: auto; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 12px 35px rgba(16,67,42,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card__media { position: relative; padding: 22px; background: #f6f8f5; }
.product-card__media img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: contain; border-radius: 18px; background: white; }
.product-card__tag {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(15,72,45,.92);
  font-size: .76rem;
  font-weight: 800;
}
.product-card__body { padding: 30px; }
.product-card__brand { margin: 0 0 4px; color: var(--blue-700); font-weight: 800; }
.product-card__body > p:not(.product-card__brand) { color: var(--muted); }
.mini-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .9rem;
}
.mini-specs li::before { content: "•"; margin-right: 8px; color: var(--green-600); font-weight: 900; }
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.price-label { color: var(--muted); font-size: .92rem; }
.price-label strong { color: var(--green-800); }
.product-card__actions { display: flex; align-items: center; gap: 14px; }
.text-button { padding: 0; border: 0; color: var(--green-800); background: transparent; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.feature-split { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.feature-split__media img { width: 100%; max-height: 720px; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); }
.feature-split__copy > p:not(.eyebrow) { color: var(--muted); }
.benefit-list { margin-top: 34px; }
.benefit-list > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.benefit-list span { grid-row: span 2; color: var(--blue-700); font-family: Georgia, serif; font-size: 1.25rem; font-weight: 800; }
.benefit-list h3 { margin-bottom: 6px; }
.benefit-list p { margin: 0; color: var(--muted); }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; min-height: 255px; padding: 32px 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.steps li::after { content: ""; position: absolute; top: 48px; right: -23px; width: 22px; border-top: 1px dashed var(--green-600); }
.steps li:last-child::after { display: none; }
.steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: white;
  background: var(--green-800);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
}
.steps p { margin: 0; color: var(--muted); }

.values-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 30px; }
.values-grid__intro { padding-right: 30px; }
.values-grid__intro p:last-child { color: #bfd0c6; }
.values-card { padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); background: rgba(255,255,255,.04); }
.values-card ul { margin: 18px 0 0; padding: 0; list-style: none; color: #d6e1da; }
.values-card li { padding: 11px 0; border-top: 1px solid rgba(255,255,255,.1); }
.values-card li::before { content: "✓"; margin-right: 10px; color: #8fdda7; }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.faq-layout__intro p:last-child { color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  color: var(--green-950);
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 20px; color: var(--green-700); font: 400 1.7rem Arial, sans-serif; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -8px 0 24px; padding-right: 45px; color: var(--muted); }

.contact-section { padding-top: 40px; }
.contact-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  padding: 58px;
  border-radius: 34px;
  background: linear-gradient(135deg, #eff8ef 0%, #ffffff 75%);
  box-shadow: var(--shadow);
}
.contact-card__copy > p:not(.eyebrow) { color: var(--muted); }
.contact-points { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-points p { margin: 8px 0; }
.contact-points a { color: var(--green-800); }
.quote-form { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label, .quote-selection legend { color: var(--green-950); font-weight: 800; }
.quote-form input, .quote-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #cdd9d1;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.quote-form input:focus, .quote-form textarea:focus { border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(37,156,84,.12); }
.quote-selection { margin: 20px 0; padding: 18px; border: 1px solid var(--line); border-radius: 12px; }
.quote-selection legend { padding: 0 8px; }
.quote-items { display: grid; gap: 10px; }
.empty-state { margin: 0; color: var(--muted); font-size: .92rem; }
.quote-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.quote-item:last-child { border-bottom: 0; }
.quote-item strong, .quote-item span { display: block; }
.quote-item > div:first-child span { color: var(--muted); font-size: .82rem; }
.quantity-control { display: flex; align-items: center; gap: 9px; }
.quantity-control button { width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; background: var(--green-50); color: var(--green-900); font-weight: 900; }
.quantity-control span { min-width: 18px; text-align: center; }
.quote-form > label { display: block; margin-bottom: 20px; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: .8rem; text-align: center; }

.site-footer { padding: 70px 0 24px; color: #cfddd4; background: #071f16; }
.footer__grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 50px; }
.footer__logo { width: 220px; filter: brightness(1.08); }
.footer__grid > div:first-child p { max-width: 360px; }
.footer__grid h2 { margin-bottom: 16px; color: white; font-family: Arial, sans-serif; font-size: 1rem; }
.footer__grid a { display: block; margin: 9px 0; color: #cfddd4; text-decoration: none; }
.footer__grid a:hover { color: white; text-decoration: underline; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.footer__bottom p { margin: 0; }

.quote-dock {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--green-900);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.quote-dock__icon { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--green-900); background: white; }
.contact-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: white;
  background: #1ea952;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  font-weight: 900;
  text-decoration: none;
}

.product-modal {
  width: min(1000px, calc(100% - 34px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.product-modal::backdrop { background: rgba(5, 30, 20, .72); backdrop-filter: blur(4px); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.modal-grid > img { width: 100%; height: 100%; object-fit: cover; background: #f4f6f3; }
.modal-grid > div { padding: 48px; }
.modal-grid > div > p:not(.eyebrow) { color: var(--muted); }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--green-950); background: white; box-shadow: 0 5px 18px rgba(0,0,0,.14); font-size: 1.55rem; }
.spec-table { margin: 28px 0; }
.spec-table > div { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 11px 0; border-top: 1px solid var(--line); }
.spec-table dt { color: var(--muted); }
.spec-table dd { margin: 0; color: var(--green-950); font-weight: 800; text-align: right; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 300;
  max-width: min(430px, calc(100% - 32px));
  padding: 13px 18px;
  border-radius: 999px;
  color: white;
  background: var(--green-950);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  opacity: 0;
  transform: translate(-50%, 15px);
  pointer-events: none;
  transition: .25s ease;
  text-align: center;
  font-weight: 700;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 18px 35px rgba(16,67,42,.1);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 4px; }
  .main-nav .button { margin-top: 8px; }
  .hero__grid, .feature-split, .faq-layout, .contact-card { grid-template-columns: 1fr; }
  .hero__grid { gap: 50px; }
  .hero__copy { text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__checks { justify-content: center; }
  .hero__visual { max-width: 680px; margin-inline: auto; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid > div:nth-child(2) { border-right: 0; }
  .trust-strip__grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li::after { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .values-grid__intro { grid-column: 1 / -1; padding-right: 0; }
  .contact-card { padding: 42px; gap: 32px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar__inner { justify-content: center; min-height: 34px; }
  .topbar__inner span { display: none; }
  .header__inner { min-height: 74px; }
  .brand img { width: 170px; }
  .hero { padding: 52px 0 65px; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  h2 { font-size: clamp(1.9rem, 8.5vw, 2.7rem); }
  .hero__image-card { padding: 14px; border-radius: 24px; }
  .hero__image-card img { border-radius: 16px; }
  .hero__badge { top: 26px; left: 26px; }
  .hero__note { position: relative; right: auto; bottom: auto; width: calc(100% - 28px); margin: -18px auto 0; }
  .section { padding: 74px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; margin-bottom: 34px; }
  .product-grid, .steps, .values-grid, .footer__grid { grid-template-columns: 1fr; }
  .mini-specs { grid-template-columns: 1fr; }
  .product-card__body { padding: 24px; }
  .product-card__footer { align-items: flex-start; flex-direction: column; }
  .product-card__actions { width: 100%; justify-content: space-between; }
  .feature-split { gap: 38px; }
  .feature-split__media img { max-height: none; }
  .steps li { min-height: 0; }
  .values-grid__intro { grid-column: auto; }
  .contact-card { padding: 25px 18px; border-radius: 22px; }
  .quote-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { gap: 30px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-grid > img { max-height: 330px; }
  .modal-grid > div { padding: 28px 22px 32px; }
  .spec-table > div { gap: 12px; font-size: .9rem; }
  .quote-dock { left: 14px; bottom: 14px; }
  .contact-float { right: 14px; bottom: 14px; }
}

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


/* Video de la sección Cómo funciona */
.how-video {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 38px;
  margin-top: 42px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 12px 35px rgba(16,67,42,.07);
}
.how-video__copy h3 { margin-bottom: 12px; font-size: clamp(1.55rem, 2.2vw, 2.15rem); }
.how-video__copy > p:last-child { margin-bottom: 0; color: var(--muted); }
.how-video__player { overflow: hidden; border-radius: var(--radius-md); background: #061a12; box-shadow: 0 12px 32px rgba(0,0,0,.16); }
.how-video__player video { display: block; width: 100%; max-height: 560px; background: #000; }

/* Enlaces de ficha técnica en el pie */
.footer-link-button {
  display: block;
  margin: 9px 0;
  padding: 0;
  border: 0;
  color: #cfddd4;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.footer-link-button:hover { color: white; text-decoration: underline; }

/* Fichas técnicas visuales */
.brochure-modal {
  width: min(1180px, calc(100% - 34px));
  max-height: calc(100vh - 34px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #f7faf7;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.brochure-modal::backdrop { background: rgba(5, 30, 20, .78); backdrop-filter: blur(4px); }
.brochure-modal__header { padding: 40px 54px 28px; background: white; border-bottom: 1px solid var(--line); }
.brochure-modal__header h2 { margin-bottom: 10px; }
.brochure-modal__header > p:last-child { max-width: 760px; margin-bottom: 0; color: var(--muted); }
.brochure-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 28px;
}
.brochure-gallery a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 6px 18px rgba(16,67,42,.06);
}
.brochure-gallery img { width: 100%; height: auto; }

@media (max-width: 760px) {
  .how-video { grid-template-columns: 1fr; padding: 22px; }
  .brochure-modal__header { padding: 34px 26px 22px; }
  .brochure-gallery { grid-template-columns: 1fr; padding: 18px; }
}
