/* Notificar.IA — Landing Page styles
   Light mode default, brand-driven, editorial spacing */

@import url("./tokens.css");

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-first);
  color: var(--text-default);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* ────────────────────────────────────────────────────────
   Layout primitives
   ──────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section--tight { padding: 80px 0; }

.section--bg-second { background: var(--bg-second); }
.section--bg-third  { background: var(--bg-third); }
.section--bg-dark   { background: var(--bg-dark); color: var(--text-inverse); }

/* ────────────────────────────────────────────────────────
   Typography
   ──────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-p-500);
}

.eyebrow--purple { color: var(--brand-s-500); }
.eyebrow--inverse { color: var(--brand-p-300); }

.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text-default);
  margin: 0;
  text-wrap: balance;
}

.h-display .accent { color: var(--brand-p-500); }
.h-display .accent-purple { color: var(--brand-s-500); }

.h-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.lede {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
  font-weight: 400;
  margin: 0;
  text-wrap: pretty;
}

.lede--lg { font-size: 20px; }

/* ────────────────────────────────────────────────────────
   Buttons
   ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  border-radius: 8px;
  border: 0;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
              background-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn--primary {
  background: var(--brand-p-500);
  color: #fff;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.18) inset,
              0 8px 22px -10px rgba(0, 134, 120, 0.55);
}
.btn--primary:hover {
  background: var(--brand-p-600);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0) scale(0.99); }

.btn--ghost {
  background: transparent;
  color: var(--text-default);
  border: 1px solid var(--surface-divider);
}
.btn--ghost:hover {
  background: var(--bg-second);
  border-color: var(--gray-400);
}

.btn--lg { padding: 22px 32px; font-size: 17px; }

.btn .arrow {
  display: inline-block;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ────────────────────────────────────────────────────────
   Header
   ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 249, 251, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(212, 212, 212, 0.5);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-header__logo img { height: 28px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 150ms;
}
.nav__link:hover { color: var(--text-default); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 880px) {
  .nav { display: none; }
}

/* ────────────────────────────────────────────────────────
   Hero
   ──────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(0, 185, 159, 0.12), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  background: var(--bg-second);
  border: 1px solid var(--surface-divider);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.hero__pill .dot {
  width: 8px; height: 8px;
  background: var(--brand-p-500);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(0, 134, 120, 0.18);
}

.hero__title { margin-bottom: 24px; }

.hero__lede { margin-bottom: 40px; max-width: 520px; }

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust-item svg { color: var(--brand-p-500); }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { aspect-ratio: 4 / 3; }
}

/* ────────────────────────────────────────────────────────
   Problem section
   ──────────────────────────────────────────────────────── */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem__list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.problem__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 17px;
  color: var(--text-default);
  font-weight: 400;
  line-height: 1.45;
}

.problem__item .x {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--error-150);
  color: var(--error-600);
  display: inline-grid;
  place-items: center;
  margin-top: 2px;
}

.problem__visual { aspect-ratio: 1 / 1; width: 100%; }

@media (max-width: 980px) {
  .problem__grid { grid-template-columns: 1fr; gap: 48px; }
  .problem__visual { aspect-ratio: 4 / 3; }
}

/* ────────────────────────────────────────────────────────
   How it works
   ──────────────────────────────────────────────────────── */
.how__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.timeline {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(to bottom,
    var(--brand-p-500) 0%,
    var(--brand-p-300) 60%,
    var(--brand-p-200) 100%);
  border-radius: 2px;
  opacity: 0.6;
}

.timeline__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--bg-second);
  border: 2px solid var(--brand-p-500);
  color: var(--brand-p-600);
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
}

.timeline__body h4 {
  margin: 8px 0 6px;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-default);
  line-height: 1.3;
}
.timeline__body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-third);
  box-shadow: var(--shadow-md);
}

.video-thumb__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0);
  border: 0;
  transition: background 200ms;
}
.video-thumb__play:hover { background: rgba(0,0,0,0.04); }

.video-thumb__play-circle {
  width: 84px; height: 84px;
  border-radius: 999px;
  background: var(--brand-p-500);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px -8px rgba(0, 134, 120, 0.5),
              0 0 0 8px rgba(255,255,255,0.85);
  transition: transform 200ms;
}
.video-thumb__play:hover .video-thumb__play-circle {
  transform: scale(1.05);
}

@media (max-width: 980px) {
  .how__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ────────────────────────────────────────────────────────
   Benefits
   ──────────────────────────────────────────────────────── */
.benefits__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits__head h2 { margin-bottom: 18px; }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit-card {
  background: var(--bg-second);
  border: 1px solid var(--surface-divider);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 220ms,
              border-color 220ms;
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-p-300);
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--brand-p-100);
  display: grid;
  place-items: center;
  color: var(--brand-p-600);
}

.benefit-card__icon--purple {
  background: var(--brand-s-100);
  color: var(--brand-s-500);
}

.benefit-card__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-default);
  margin: 0;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
}
.meta-badge img {
  height: 48px;
  width: auto;
}

@media (max-width: 720px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .benefits__grid { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────────────── */
.faq {
  max-width: 880px;
  margin: 0 auto;
}

.faq__head {
  text-align: center;
  margin-bottom: 56px;
}
.faq__head h2 { margin-bottom: 14px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-second);
  border: 1px solid var(--surface-divider);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 200ms, box-shadow 200ms;
}
.faq-item--open {
  border-color: var(--brand-p-300);
  box-shadow: var(--shadow-sm);
}

.faq-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  color: var(--text-default);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  gap: 16px;
}

.faq-item__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--brand-p-100);
  color: var(--brand-p-600);
  display: grid;
  place-items: center;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
              background 200ms;
}
.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--brand-p-500);
  color: #fff;
}

.faq-item__body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
              padding 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item--open .faq-item__body {
  max-height: 240px;
  padding: 0 24px 24px;
}

.faq-item__body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
}

/* ────────────────────────────────────────────────────────
   Garantia
   ──────────────────────────────────────────────────────── */
.guarantee {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px 56px;
  background: linear-gradient(135deg, var(--brand-p-100) 0%, var(--brand-s-100) 100%);
  border-radius: 20px;
  border: 1px solid var(--brand-p-200);
}

.guarantee__seal {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  color: var(--brand-p-500);
  border: 2px dashed var(--brand-p-300);
}

.guarantee__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-p-600);
  margin: 0 0 6px;
}

.guarantee__text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  color: var(--text-default);
  letter-spacing: -0.015em;
}

.guarantee__sub {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
}

@media (max-width: 780px) {
  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 28px;
  }
  .guarantee__seal { margin: 0 auto; }
}

/* ────────────────────────────────────────────────────────
   CTA Final
   ──────────────────────────────────────────────────────── */
.cta-final {
  background: var(--bg-dark);
  color: var(--text-inverse);
  border-radius: 24px;
  padding: 96px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 185, 159, 0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(137, 105, 214, 0.14), transparent 40%);
  pointer-events: none;
}

.cta-final > * { position: relative; z-index: 1; }

.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px;
  text-wrap: balance;
}

.cta-final p {
  font-size: 19px;
  color: #c7cdd1;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-final .btn--primary {
  background: var(--brand-p-400);
}
.cta-final .btn--primary:hover { background: var(--brand-p-300); color: var(--brand-p-800); }

.cta-final__meta {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 13px;
  color: #9ea4a8;
  flex-wrap: wrap;
}

.cta-final__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-final__meta-item svg { color: var(--brand-p-300); }

/* ────────────────────────────────────────────────────────
   Footer
   ──────────────────────────────────────────────────────── */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-first);
  border-top: 1px solid var(--surface-divider);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer__brand img { height: 28px; margin-bottom: 16px; }
.footer__brand p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.55;
}

.footer__col h2,
.footer__col h5 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--text-default);
  font-weight: 600;
  font-family: var(--font-sans);
}
.footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 150ms;
}
.footer__col a:hover { color: var(--brand-p-600); }

.footer__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--surface-divider);
  font-size: 13px;
  color: var(--text-muted);
}

.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__socials a {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--bg-second);
  border: 1px solid var(--surface-divider);
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  transition: all 180ms;
}
.footer__socials a:hover {
  color: var(--brand-p-600);
  border-color: var(--brand-p-300);
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__base { flex-direction: column; gap: 16px; }
}

/* ────────────────────────────────────────────────────────
   Skip link (accessibility)
   ──────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--brand-p-500);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid var(--brand-p-300);
  outline-offset: 2px;
}

/* ────────────────────────────────────────────────────────
   Benefits grid as <ul>
   ──────────────────────────────────────────────────────── */
.benefits__grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ────────────────────────────────────────────────────────
   COMPREHENSIVE RESPONSIVE — Tablet → Mobile
   Mobile-first overrides progressively reduce spacing,
   typography, and grid columns.
   ──────────────────────────────────────────────────────── */

/* Tablet (≤980px) — already handled per section, plus: */
@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .section { padding: 96px 0; }
  .section--tight { padding: 64px 0; }
  .hero { padding: 56px 0 80px; }
}

/* Small tablet / large phone (≤720px) */
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section--tight { padding: 56px 0; }
  .hero { padding: 40px 0 64px; }

  .h-display { font-size: clamp(34px, 8vw, 56px); }
  .h-section { font-size: clamp(28px, 5.6vw, 40px); }
  .lede { font-size: 17px; }
  .lede--lg { font-size: 18px; }

  .hero__pill { font-size: 12.5px; padding: 8px 14px 8px 10px; }
  .hero__lede { margin-bottom: 32px; }
  .hero__cta-row { margin-bottom: 28px; }
  .hero__trust { gap: 16px; }
  .hero__visual { aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; }

  .btn { padding: 16px 22px; font-size: 15px; gap: 10px; }
  .btn--lg { padding: 18px 24px; font-size: 16px; }

  .problem__item { font-size: 16px; }
  .timeline__body h3, .timeline__body h4 { font-size: 18px; }

  .benefits__head { margin: 0 auto 40px; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .benefit-card { padding: 16px; }
  .benefit-card__icon { width: 36px; height: 36px; }
  .benefit-card__icon svg { width: 22px; height: 22px; }

  .faq__head { margin-bottom: 36px; }
  .faq-item__head { padding: 18px 20px; font-size: 16px; }
  .faq-item--open .faq-item__body { padding: 0 20px 20px; }

  .cta-final { padding: 64px 28px; border-radius: 20px; }
  .cta-final h2 { font-size: clamp(30px, 6vw, 44px); }
  .cta-final p { font-size: 17px; margin-bottom: 32px; }
  .cta-final__meta { gap: 18px; }
}

/* Mobile (≤560px) */
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section--tight { padding: 48px 0; }
  .hero { padding: 28px 0 48px; }

  .h-display { font-size: clamp(30px, 9vw, 44px); line-height: 1.05; }
  .h-section { font-size: clamp(26px, 7vw, 36px); }

  /* Header — shrink CTA and logo */
  .site-header__logo img { height: 22px; }
  .site-header__actions .btn { padding: 10px 14px !important; font-size: 13px !important; gap: 6px !important; }
  .site-header__actions .btn svg { width: 14px; height: 14px; }

  /* Hero pill wraps cleanly */
  .hero__pill {
    font-size: 12px;
    padding: 7px 14px 7px 9px;
    line-height: 1.4;
    margin-bottom: 22px;
  }
  .hero__title { margin-bottom: 18px; }
  .hero__lede { font-size: 16px; margin-bottom: 26px; line-height: 1.5; }
  .hero__cta-row { margin-bottom: 24px; }
  .hero__cta-row .btn { width: 100%; justify-content: center; text-align: center; }
  .hero__trust { gap: 12px 18px; font-size: 12.5px; }
  .hero__visual { aspect-ratio: 1 / 1; max-width: 380px; }

  /* Buttons full width on mobile sections */
  .btn--lg { padding: 16px 20px; font-size: 15px; }

  .problem__item { font-size: 15px; gap: 12px; }
  .problem__item .x { width: 24px; height: 24px; flex-basis: 24px; }
  .problem__list { margin-top: 28px; gap: 14px; }

  .timeline { margin-top: 32px; }
  .timeline::before { left: 17px; }
  .timeline__item { grid-template-columns: 36px 1fr; gap: 16px; padding-bottom: 24px; }
  .timeline__num { width: 36px; height: 36px; font-size: 13px; }
  .timeline__body h3, .timeline__body h4 { font-size: 17px; margin-top: 6px; }
  .timeline__body p { font-size: 14.5px; }

  .video-thumb__play-circle { width: 64px; height: 64px; }
  .video-thumb__play-circle svg { width: 24px; height: 24px; }

  .benefits__head { margin-bottom: 32px; }
  .benefits__head h2 { margin-bottom: 14px; }
  .benefits__grid { grid-template-columns: 1fr; gap: 10px; }
  .benefit-card { padding: 14px; }
  .meta-badge { margin-top: 22px; }
  .meta-badge img { height: 40px; }

  .faq__head { margin-bottom: 28px; }
  .faq-item__head { padding: 16px 18px; font-size: 15.5px; gap: 12px; }
  .faq-item__icon { width: 24px; height: 24px; }
  .faq-item--open .faq-item__body { max-height: 320px; padding: 0 18px 18px; }
  .faq-item__body p { font-size: 15px; }

  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 22px;
    gap: 24px;
    border-radius: 16px;
  }
  .guarantee__seal { width: 80px; height: 80px; margin: 0 auto; }
  .guarantee__seal svg { width: 36px; height: 36px; }
  .guarantee__text { font-size: 22px; }
  .guarantee__sub { font-size: 14px; }
  .guarantee .btn { width: 100%; justify-content: center; }

  /* Inline style="padding:0" on the wrapper container is overridden so CTA card has breathing room */
  #cta-final > .container[style] { padding: 0 18px !important; }
  .cta-final {
    padding: 48px 22px;
    border-radius: 16px;
  }
  .cta-final h2 { font-size: clamp(26px, 7.5vw, 36px); margin-bottom: 14px; }
  .cta-final p { font-size: 16px; margin-bottom: 26px; }
  .cta-final .btn { width: 100%; justify-content: center; }
  .cta-final__meta {
    gap: 12px;
    font-size: 12.5px;
    flex-direction: column;
    align-items: center;
  }

  .footer { padding: 56px 0 32px; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    margin-bottom: 36px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand img { height: 24px; }
  .footer__brand p { font-size: 13.5px; }
  .footer__col h2,
  .footer__col h5 { font-size: 11px; margin-bottom: 12px; }
  .footer__col a { font-size: 13.5px; }
  .footer__base { font-size: 12px; padding-top: 24px; }
}

/* Very small (≤380px) */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .h-display { font-size: clamp(26px, 9vw, 38px); }
  .hero__title { hyphens: auto; word-break: break-word; }
  .site-header__logo img { height: 20px; }
  .site-header__actions .btn { padding: 9px 12px !important; font-size: 12.5px !important; }
  .benefit-card__text { font-size: 13.5px; }
  .cta-final { padding: 40px 18px; }
  .guarantee { padding: 28px 18px; }
}

/* Prevent any image / SVG / iframe from bursting container */
img, svg, iframe, video { max-width: 100%; height: auto; }
.hero__visual svg, .problem__visual svg, .video-thumb svg { height: 100%; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
