:root {
  --navy: #111b54;
  --navy-dark: #0a123e;
  --blue: #124e8b;
  --teal: #079ca7;
  --teal-bright: #13c5c3;
  --teal-soft: #eafafa;
  --ink: #16233a;
  --muted: #667085;
  --line: #d8e3e8;
  --paper: #ffffff;
  --bg: #f1f6f8;
  --danger: #a33a33;
  --shadow: 0 24px 60px rgba(20, 49, 79, .15);
  --shadow-soft: 0 12px 32px rgba(20, 49, 79, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(7, 156, 167, .12), transparent 28%),
    linear-gradient(180deg, #edf5f7 0%, #f8fbfc 44%, #eef4f6 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.landing-page { padding: 30px 22px 24px; }
.landing-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(21, 72, 98, .11);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.brand-banner {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(24, 222, 218, .72), transparent 25%),
    linear-gradient(120deg, #087f93 0%, #14518f 27%, #151c58 62%, #0b123e 100%);
}
.brand-banner::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -3%;
  bottom: -58px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 -6px 0 var(--teal-bright);
}
.brand-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1080px, calc(100% - 64px));
  min-height: 96px;
  margin: 0 auto;
  padding-bottom: 10px;
}
.brand-lockup img {
  width: 184px;
  height: auto;
  filter: brightness(0) invert(1);
}
.brand-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #e7ffff;
  font-size: .82rem;
  line-height: 1.28;
  text-align: left;
}
.brand-badge svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 12px;
  fill: currentColor;
}
.brand-badge strong { color: #8df5ef; font-size: .96rem; }

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(540px, 1.08fr);
  gap: 42px;
  align-items: stretch;
  padding: 42px 48px 34px;
}

.story-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 10px 0 8px;
}
.story-panel__eyebrow {
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.story-panel h1 {
  max-width: 500px;
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.story-panel h1 strong { color: var(--teal); }
.story-panel > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.story-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.story-products figure {
  position: relative;
  min-height: 215px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dbe8eb;
  border-radius: 24px;
  background: linear-gradient(180deg, #f9ffff, #edf7f8);
}
.story-products img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.story-products figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  color: #fff;
  background: rgba(9, 34, 77, .82);
  backdrop-filter: blur(8px);
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
}
.story-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.story-points span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid #dfeaed;
  border-radius: 14px;
  color: #32516e;
  background: #fbfefe;
  font-size: .7rem;
  font-weight: 750;
  line-height: 1.3;
}
.story-points i {
  display: grid;
  flex: 0 0 23px;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-style: normal;
  font-size: .68rem;
}

.request-panel { min-width: 0; }
.request-intro { margin-bottom: 16px; text-align: left; }
.request-intro__eyebrow {
  margin: 0 0 4px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.request-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.8rem;
  letter-spacing: -.025em;
}
.request-intro > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .89rem;
  line-height: 1.55;
}
.request-intro strong { color: #087e88; }

.form-card {
  padding: 24px;
  border: 1px solid rgba(7, 156, 167, .56);
  border-radius: 24px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-soft);
}
.form-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.form-card__topline > span {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #087b86;
  background: var(--teal-soft);
  font-size: .72rem;
  font-weight: 850;
}
.form-card__topline small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6f7d8c;
  font-size: .7rem;
  font-weight: 750;
}
.form-card__topline svg { width: 16px; fill: var(--teal); }
.form-alert {
  margin-bottom: 16px;
  padding: 13px 15px;
  border: 1px solid #f0c6c3;
  border-radius: 13px;
  color: var(--danger);
  background: #fff4f2;
  font-size: .82rem;
}
.form-alert strong { display: block; margin-bottom: 4px; }
.form-alert ul { margin: 0; padding-left: 18px; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 16px;
}
.field--full { grid-column: 1 / -1; }
.field label {
  display: block;
  margin: 0 0 6px;
  color: #222a3b;
  font-size: .78rem;
  font-weight: 760;
}
.field label span { color: var(--teal); }
.control { position: relative; }
.control > svg {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 14px;
  width: 19px;
  height: 19px;
  fill: var(--teal);
  transform: translateY(-50%);
  pointer-events: none;
}
.control--textarea > svg { top: 16px; transform: none; }
.control input,
.control textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px 11px 44px;
  border: 1px solid #d7e0e5;
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.control textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.45;
}
.control input::placeholder,
.control textarea::placeholder { color: #9da7b2; }
.control input:focus,
.control textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(7, 156, 167, .10);
  background: #fbffff;
}
.phone-prefix {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 42px;
  padding-right: 8px;
  border-right: 1px solid #dce3e7;
  color: #5e6b79;
  font-size: .8rem;
  font-weight: 750;
  transform: translateY(-50%);
}
.phone-control input { padding-left: 84px; }
.quick-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.quick-products button {
  min-height: 29px;
  padding: 4px 10px;
  border: 1px solid #d4e5e7;
  border-radius: 999px;
  color: #216f77;
  background: #f5fbfb;
  font-size: .68rem;
  font-weight: 760;
  transition: .18s ease;
}
.quick-products button:hover,
.quick-products button.is-selected {
  border-color: var(--teal);
  color: #fff;
  background: var(--teal);
}

.whatsapp-button {
  position: relative;
  display: grid;
  grid-template-columns: 27px auto 27px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  width: 100%;
  min-height: 61px;
  margin-top: 19px;
  padding: 9px 20px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(102deg, #058996 0%, #08aab0 58%, #11c3bd 100%);
  box-shadow: 0 14px 28px rgba(7, 156, 167, .25);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.whatsapp-button:hover { transform: translateY(-2px); box-shadow: 0 18px 33px rgba(7, 156, 167, .33); }
.whatsapp-button svg {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.whatsapp-button span {
  grid-column: 2;
  align-self: end;
  justify-self: center;
  text-align: center;
  font-size: .98rem;
  font-weight: 850;
  line-height: 1.15;
}
.whatsapp-button small {
  grid-column: 2;
  align-self: start;
  justify-self: center;
  text-align: center;
  color: rgba(255,255,255,.78);
  font-size: .64rem;
  line-height: 1.15;
}
.whatsapp-button:disabled { cursor: wait; opacity: .78; transform: none; }
.whatsapp-button.is-loading svg { animation: spin 1.1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.privacy-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  margin: 11px 0 0;
  color: #7a8793;
  font-size: .64rem;
  line-height: 1.4;
  text-align: center;
}
.privacy-note svg { flex: 0 0 14px; width: 14px; margin-top: 1px; fill: var(--teal); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.trust-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: calc(100% - 96px);
  margin: 0 auto 36px;
  overflow: hidden;
  border: 1px solid #dce8eb;
  border-radius: 22px;
  background: linear-gradient(180deg, #fbffff, #f2f9fa);
}
.trust-section article {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 19px 22px;
}
.trust-section article + article::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 1px;
  background: #dce7e9;
}
.trust-icon {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #a8d9de;
  border-radius: 18px;
  color: var(--teal);
  background: #fff;
}
.trust-icon svg { width: 26px; fill: currentColor; }
.trust-section strong { color: #123b69; font-size: .84rem; line-height: 1.25; }
.trust-section p { margin: 4px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.4; }

.mobile-products { display: none; }
.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 23px 20px;
  color: #dbe8f0;
  background: var(--navy-dark);
}
.site-footer img { width: 112px; filter: brightness(0) invert(1); }
.site-footer p { margin: 0; max-width: 600px; font-size: .73rem; line-height: 1.5; }
.site-footer strong { color: #82eeeb; }

@media (max-width: 980px) {
  .main-grid {
    grid-template-columns: minmax(0, .8fr) minmax(490px, 1.2fr);
    gap: 28px;
    padding-inline: 32px;
  }
  .story-panel h1 { font-size: 2.35rem; }
  .story-products figure { min-height: 180px; }
  .story-points { grid-template-columns: 1fr; }
  .trust-section { width: calc(100% - 64px); }
}

@media (max-width: 760px) {
  body { background: #f3f6f8; }
  .landing-page { padding: 6px; }
  .landing-shell {
    width: min(430px, 100%);
    border-radius: 10px;
    box-shadow: 0 7px 22px rgba(26, 55, 74, .08);
  }
  .brand-banner { min-height: 99px; }
  .brand-banner::after {
    left: -14%;
    right: -14%;
    bottom: -50px;
    height: 78px;
    box-shadow: 0 -5px 0 var(--teal-bright);
  }
  .brand-banner__inner {
    justify-content: center;
    width: 100%;
    min-height: 86px;
    padding: 0 10px 11px;
  }
  .brand-lockup img { width: 128px; }
  .brand-badge { display: none; }

  .main-grid { display: block; padding: 0 10px 18px; }
  .story-panel { display: none; }
  .request-intro {
    margin: 12px 0 14px;
    padding: 0 10px;
    text-align: center;
  }
  .request-intro__eyebrow {
    margin: 0;
    font-size: .98rem;
    font-weight: 820;
    letter-spacing: 0;
    text-transform: none;
  }
  .request-intro h2 { display: none; }
  .request-intro > p:last-child {
    margin: 10px auto 0;
    max-width: 340px;
    color: #2f3542;
    font-size: .95rem;
    line-height: 1.55;
  }
  .request-intro strong { color: #087b86; }

  .form-card {
    padding: 15px 12px 14px;
    border-width: 1.5px;
    border-radius: 12px;
    box-shadow: none;
  }
  .form-card__topline { display: none; }
  .form-alert { font-size: .9rem; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .field--full { grid-column: auto; }
  .field label {
    margin: 0 0 7px 37px;
    font-size: .92rem;
    font-weight: 760;
    line-height: 1.3;
  }
  .control > svg {
    left: 7px;
    width: 20px;
    height: 20px;
  }
  .control input,
  .control textarea {
    min-height: 48px;
    margin-left: 32px;
    width: calc(100% - 32px);
    padding: 11px 12px;
    border-radius: 8px;
    font-size: .98rem;
    line-height: 1.35;
  }
  .control textarea {
    min-height: 88px;
    resize: none;
  }
  .control--textarea > svg { top: 13px; }
  .phone-prefix { display: none; }
  .phone-control input { padding-left: 10px; }
  .quick-products { display: none; }

  .whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    margin-top: 16px;
    padding: 10px 18px;
    box-shadow: none;
  }
  .whatsapp-button svg {
    display: block;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
  }
  .whatsapp-button span {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    min-height: 22px;
    font-size: 1.02rem;
    font-weight: 820;
    line-height: 1;
    text-align: center;
  }
  .whatsapp-button small { display: none; }
  .privacy-note { display: none; }

  .trust-section {
    width: 100%;
    margin: 0;
    border: 0;
    border-top: 1px solid #edf1f3;
    border-radius: 0;
    background: #fff;
  }
  .trust-section article {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 17px 6px 18px;
    text-align: center;
  }
  .trust-section article + article::before {
    top: 17px;
    bottom: 17px;
    background: #dfe7ea;
  }
  .trust-icon {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .trust-icon svg { width: 29px; }
  .trust-section strong {
    max-width: 104px;
    color: #114c6d;
    font-size: .82rem;
    line-height: 1.28;
  }
  .trust-section p { display: none; }

  .mobile-products {
    display: block;
    overflow: hidden;
    border-top: 1px solid #e7edef;
    background: #fff;
  }
  .mobile-products__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 120px;
  }
  .mobile-products__images figure {
    margin: 0;
    overflow: hidden;
    background: #eef6f7;
  }
  .mobile-products__images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
  }
  .mobile-products__caption {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -18px;
    padding: 24px 10px 12px;
    border-radius: 50% 50% 0 0 / 42% 42% 0 0;
    color: #0e6975;
    background: #fff;
  }
  .mobile-products__caption strong { font-size: 1rem; }
  .mobile-products__caption span { margin-top: 3px; font-size: .86rem; font-weight: 650; }
  .site-footer { display: none; }
}

@media (max-width: 360px) {
  .landing-page { padding-inline: 3px; }
  .main-grid { padding-inline: 8px; }
  .form-card { padding-inline: 10px; }
  .field label { margin-left: 34px; }
  .control input,
  .control textarea { margin-left: 29px; width: calc(100% - 29px); }
  .trust-section strong { font-size: .76rem; }
}

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

/* Ajuste 7.0: cabecera de escritorio corregida y cabecera móvil conservada */
@media (min-width: 761px) {
  .brand-banner {
    min-height: 158px;
    background: #111b54 url("../img/header-wave-desktop.svg") center / 100% 100% no-repeat;
  }
  .brand-banner::before,
  .brand-banner::after { content: none; }
  .brand-banner__inner {
    width: min(1110px, calc(100% - 72px));
    min-height: 142px;
    padding: 2px 0 25px;
  }
  .brand-lockup {
    display: flex;
    align-items: center;
    align-self: stretch;
  }
  .brand-lockup img {
    width: clamp(275px, 25vw, 335px);
    height: auto;
    max-height: 132px;
    object-fit: contain;
    object-position: left center;
    filter: none;
  }
  .brand-badge {
    align-self: flex-start;
    margin-top: 34px;
    margin-bottom: 0;
    font-size: .92rem;
  }
  .brand-badge svg {
    width: 42px;
    height: 42px;
  }
  .brand-badge strong { font-size: 1.08rem; }
  .main-grid { padding-top: 28px; }
}

@media (max-width: 760px) {
  .brand-banner {
    min-height: 128px;
    background: #111b54 url("../img/header-wave-mobile.svg") center / 100% 100% no-repeat;
  }
  .brand-banner::before,
  .brand-banner::after { content: none; }
  .brand-banner__inner {
    min-height: 116px;
    padding: 0 10px 28px;
  }
  .brand-lockup img {
    width: 154px;
    height: auto;
    filter: none;
  }
  .request-intro { margin-top: 3px; }
}

/* =========================================================
   Versión 8.0: contenido informativo posterior al formulario
   ========================================================= */
.more-info,
.product-section,
.faq-section { padding: 66px 48px; }
.more-info {
  border-top: 1px solid #e7eef0;
  background: linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
}
.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-heading > span,
.why-eyebrow,
.final-cta > div > span {
  display: inline-block;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-heading h2,
.why-content h2,
.final-cta h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-heading p,
.why-content > p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
}
.care-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1020px;
  margin: 0 auto;
}
.care-steps::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 18%;
  right: 18%;
  border-top: 2px dashed #b7dfe2;
}
.care-steps article {
  position: relative;
  z-index: 1;
  min-height: 240px;
  padding: 28px 22px 24px;
  border: 1px solid #dce9ec;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 68, 94, .08);
  text-align: center;
}
.step-number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: .76rem;
  font-weight: 900;
}
.step-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border: 1px solid #bce2e5;
  border-radius: 26px;
  color: var(--teal);
  background: linear-gradient(180deg, #fff, #eafafa);
}
.step-icon svg { width: 35px; fill: currentColor; }
.care-steps h3 { margin: 0 0 9px; color: #123b69; font-size: 1.02rem; }
.care-steps p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.6; }

.product-section { background: linear-gradient(135deg, #0c1748 0%, #11245f 54%, #087e91 100%); }
.section-heading--light > span { color: #73eee8; }
.section-heading--light h2 { color: #fff; }
.section-heading--light p { color: #d6e8ee; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.product-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 22px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 36px rgba(3, 18, 50, .20);
}
.product-card figure { height: 185px; margin: 0; overflow: hidden; background: #f1f7f8; }
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform .3s ease;
}
.product-card:hover img { transform: scale(1.035); }
.product-card > div { padding: 18px 18px 20px; }
.product-card h3 { margin: 0 0 6px; color: var(--navy); font-size: 1rem; }
.product-card p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }

.why-section {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
  gap: 48px;
  align-items: center;
  padding: 70px 58px;
  background: #fff;
}
.why-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #eafafa, #dff2f4);
}
.why-visual > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}
.why-visual__seal {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  min-width: 190px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 18px;
  color: #fff;
  background: rgba(10, 23, 72, .88);
  backdrop-filter: blur(10px);
}
.why-visual__seal strong { font-size: 1.05rem; }
.why-visual__seal span { margin-top: 3px; color: #78eee9; font-size: .72rem; font-weight: 750; }
.why-content { max-width: 620px; }
.why-list { display: grid; gap: 13px; margin-top: 25px; }
.why-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #dfeaed;
  border-radius: 17px;
  background: #fbfefe;
}
.why-list i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: var(--teal);
  background: var(--teal-soft);
}
.why-list svg { width: 24px; fill: currentColor; }
.why-list div { display: flex; flex-direction: column; gap: 3px; }
.why-list strong { color: #123b69; font-size: .9rem; }
.why-list span { color: var(--muted); font-size: .75rem; line-height: 1.45; }

.faq-section { background: linear-gradient(180deg, #f7fbfc, #fff); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  max-width: 940px;
  margin: 0 auto;
}
.faq-grid details {
  border: 1px solid #dce8eb;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 55, 75, .05);
}
.faq-grid summary {
  position: relative;
  padding: 18px 50px 18px 18px;
  color: #123b69;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  transform: translateY(-50%);
}
.faq-grid details[open] summary::after { content: "−"; }
.faq-grid p { margin: 0; padding: 0 18px 18px; color: var(--muted); font-size: .78rem; line-height: 1.6; }

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin: 0 48px 48px;
  padding: 36px 40px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 95% 10%, rgba(25, 223, 217, .30), transparent 30%),
    linear-gradient(110deg, #111b54, #0a396d 62%, #078b99);
}
.final-cta > div { max-width: 700px; }
.final-cta > div > span { color: #79f2ec; }
.final-cta h2 { color: #fff; font-size: clamp(1.45rem, 2.6vw, 2.15rem); }
.final-cta p { color: #dbe9ef; font-size: .88rem; }
.final-cta__button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(100deg, #08a0a8, #15c6c0);
  box-shadow: 0 14px 30px rgba(2, 24, 44, .24);
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
}
.final-cta__button svg { width: 22px; fill: currentColor; }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-section { grid-template-columns: .8fr 1.2fr; gap: 30px; padding-inline: 38px; }
  .why-visual, .why-visual > img { min-height: 380px; }
}

@media (max-width: 760px) {
  .more-info,
  .product-section,
  .faq-section { padding: 42px 16px; }
  .section-heading { margin-bottom: 24px; }
  .section-heading > span,
  .why-eyebrow,
  .final-cta > div > span { font-size: .72rem; letter-spacing: .08em; }
  .section-heading h2,
  .why-content h2,
  .final-cta h2 { margin-top: 8px; font-size: 1.55rem; line-height: 1.14; }
  .section-heading p,
  .why-content > p,
  .final-cta p { font-size: .92rem; line-height: 1.6; }
  .care-steps { grid-template-columns: 1fr; gap: 12px; }
  .care-steps::before { display: none; }
  .care-steps article {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
    min-height: 0;
    padding: 18px;
    text-align: left;
  }
  .step-number { top: 10px; left: 10px; width: 25px; height: 25px; font-size: .65rem; }
  .step-icon { grid-row: 1 / 3; width: 56px; height: 56px; margin: 0; border-radius: 18px; }
  .step-icon svg { width: 28px; }
  .care-steps h3 { margin: 2px 0 5px; font-size: 1rem; }
  .care-steps p { font-size: .84rem; }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card { border-radius: 16px; }
  .product-card figure { height: 135px; }
  .product-card > div { padding: 13px 12px 15px; }
  .product-card h3 { font-size: .9rem; }
  .product-card p { font-size: .73rem; line-height: 1.45; }

  .why-section { grid-template-columns: 1fr; gap: 26px; padding: 44px 16px; }
  .why-visual, .why-visual > img { min-height: 290px; }
  .why-visual { border-radius: 24px; }
  .why-visual__seal { right: 14px; bottom: 14px; min-width: 164px; padding: 12px 14px; }
  .why-list article { grid-template-columns: 44px 1fr; padding: 13px; }
  .why-list i { width: 42px; height: 42px; }
  .why-list strong { font-size: .9rem; }
  .why-list span { font-size: .8rem; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid summary { font-size: .88rem; }
  .faq-grid p { font-size: .82rem; }

  .final-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    margin: 0 12px 18px;
    padding: 28px 22px;
    border-radius: 23px;
    text-align: center;
  }
  .final-cta__button { width: 100%; min-height: 54px; font-size: .98rem; }
}

@media (max-width: 390px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: 118px 1fr; }
  .product-card figure { height: 118px; }
  .product-card > div { display: flex; flex-direction: column; justify-content: center; }
}
