@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500&display=swap');

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --brand-primary:       #3D3D3D;  /* charcoal from logo swirl */
  --brand-primary-light: #525252;
  --accent-cta:          #FFD100;  /* yellow from logo */
  --accent-cta-hover:    #E6C800;
  --brand-yellow:        #FFD100;
  --bg-white:            #FFFFFF;
  --bg-cream:            #EBE8D8;
  --bg-gray:             #F6F5F2;
  --text-primary:        #1A1A1A;
  --text-secondary:      #6B6B6B;
  --text-on-dark:        #FFFFFF;
  --text-on-dark-muted:  rgba(255,255,255,0.70);
  --border-subtle:       rgba(0,0,0,0.08);
  --shadow-card:         0 2px 16px rgba(0,0,0,0.06);
  --shadow-elevated:     0 8px 32px rgba(0,0,0,0.10);
  --font-display:        'Plus Jakarta Sans', sans-serif;
  --font-body:           'Inter', sans-serif;
  --container-max:       1160px;
  --grid-gap:            32px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill:999px;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }
h1 { font-size: clamp(36px, 5vw, 56px);   font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
h3 { font-size: 18px; font-weight: 600; line-height: 1.3; }
h4 { font-size: 13px; font-weight: 700; }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}
.section-padding { padding: clamp(64px, 10vw, 120px) 0; }

/* ─── Utilities ──────────────────────────────────────────── */
.text-white     { color: var(--text-on-dark); }
.text-muted     { color: var(--text-on-dark-muted); }
.text-secondary { color: var(--text-secondary); }

/* ─── Chip Labels ────────────────────────────────────────── */
.chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.chip--dark  { background: rgba(61,61,61,0.08);   color: var(--brand-primary); }
.chip--light { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); }

/* ─── Icon Boxes ─────────────────────────────────────────── */
.icon-box {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 20px; height: 20px; color: white; }
.icon-box--accent { background: var(--accent-cta); }
.icon-box--sm { width: 36px; height: 36px; border-radius: 10px; }
.icon-box--sm svg { width: 16px; height: 16px; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  border: none; border-radius: var(--r-pill);
  white-space: nowrap;
  transition: all 0.2s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--accent-cta);
  color: var(--text-primary); padding: 14px 28px;
  font-weight: 700;
}
.btn--primary:hover {
  background: var(--accent-cta-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-elevated);
}
.btn--compact { padding: 10px 20px; font-size: 14px; }
.btn--lg      { padding: 18px 40px; font-size: 16px; }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.card--glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 28px;
}
.card--glass h3  { margin: 20px 0 12px; }
.card--glass p   { font-size: 15px; line-height: 1.65; }

/* ─── Top Bar ────────────────────────────────────────────── */
.topbar { background: var(--brand-yellow); padding: 9px 0; text-align: center; }
.topbar__inner {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--text-primary);
}
.topbar__icon { width: 15px; height: 15px; flex-shrink: 0; }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  height: 64px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky; top: 0; z-index: 200;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}
.navbar__inner {
  height: 100%;
  display: flex; justify-content: space-between; align-items: center;
}
.navbar__logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.navbar__logo-img { height: 40px; width: auto; display: block; }
.navbar__links {
  display: flex; align-items: center; gap: 28px;
}
.navbar__links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--brand-primary); }
.navbar__hamburger {
  display: none;
  background: none; border: none;
  padding: 8px; color: var(--text-primary);
}
.navbar__hamburger svg { width: 22px; height: 22px; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero { background: var(--bg-white); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center; gap: 60px;
}
.hero__content h1    { margin-bottom: 20px; }
.hero__subline {
  font-size: 16px; font-weight: 500;
  color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px;
}
.hero__subline strong { color: var(--brand-primary); font-weight: 700; }
.hero__body {
  font-size: 18px; line-height: 1.65;
  color: var(--text-secondary); margin-bottom: 40px;
}
.hero__actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.hero__trust {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-secondary);
}
.hero__trust svg { width: 14px; height: 14px; color: var(--brand-primary); }
.hero__image   { position: relative; }
.hero__glow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(255,209,0,0.18) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero__image img {
  position: relative; z-index: 1;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}

/* ─── Authority Bar ──────────────────────────────────────── */
.authority {
  background: var(--bg-gray);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
}
.authority__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.authority__item {
  display: flex; align-items: center; gap: 14px;
}
.authority__item span {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600; line-height: 1.35;
}

/* ─── Section Header ─────────────────────────────────────── */
.section-header__sub { font-size: 18px; margin-top: 20px; line-height: 1.65; }
.section-header--centered { text-align: center; max-width: 720px; margin-inline: auto; }

/* ─── Problems Section ───────────────────────────────────── */
.problems-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: var(--grid-gap); margin-top: 64px;
}

/* ─── Specs & Offer ──────────────────────────────────────── */
.specs-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px; align-items: start;
}
.specs-body {
  font-size: 18px; color: var(--text-secondary);
  line-height: 1.65; margin: 24px 0 36px;
}
.checklist { display: flex; flex-direction: column; gap: 16px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; font-weight: 500; line-height: 1.5;
}
.checklist li svg { width: 20px; height: 20px; color: var(--brand-primary); flex-shrink: 0; margin-top: 1px; }
.note-box {
  display: flex; gap: 12px; margin-top: 36px;
  padding: 20px 24px;
  background: rgba(255,209,0,0.12);
  border-left: 3px solid var(--brand-yellow);
  border-radius: var(--r-md);
}
.note-box svg { width: 18px; height: 18px; color: #7A6300; flex-shrink: 0; margin-top: 2px; }
.note-box p   { font-size: 14px; font-weight: 600; line-height: 1.55; }
.specs-form   { padding: 36px !important; }
.specs-form h3       { font-size: 22px; margin-bottom: 8px; }
.specs-form > p      { font-size: 14px; margin-bottom: 28px; }
.form { display: flex; flex-direction: column; gap: 12px; }
.form__field input,
.form__field select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--r-md);
  font-size: 14px; font-family: var(--font-body);
  color: var(--text-primary); background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; appearance: none;
}
.form__field input:focus,
.form__field select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(61,61,61,0.10);
}
.form__field input::placeholder { color: var(--text-secondary); }
.form .btn { margin-top: 8px; }
.form__privacy {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-secondary);
  justify-content: center; margin-top: 12px;
}
.form__privacy svg { width: 12px; height: 12px; }

/* ─── About / Why Tecmund ────────────────────────────────── */
.section--cream {
  background: var(--bg-cream);
  position: relative; overflow: hidden;
}
.section--cream::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  pointer-events: none; z-index: 0;
}
.section--cream > * { position: relative; z-index: 1; }
.about-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px; align-items: center;
}
.about-body {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 16px;
}
.about-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-card__label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--text-secondary); line-height: 1.4;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }
.faq-item { padding: 0 !important; overflow: hidden; }
.faq-item__toggle {
  width: 100%; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 28px;
  background: none; border: none;
  text-align: left; font-size: 16px; font-weight: 600;
  color: var(--text-primary); font-family: var(--font-display);
  transition: color 0.2s;
}
.faq-item__toggle:hover { color: var(--brand-primary); }
.faq-item__chevron {
  width: 18px !important; height: 18px !important;
  flex-shrink: 0; color: var(--text-secondary);
  transition: transform 0.35s var(--ease);
}
.faq-item.open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-item__body { max-height: 400px; }
.faq-item__body p {
  padding: 0 28px 24px;
  font-size: 15px; line-height: 1.7;
  color: var(--text-secondary);
}

/* ─── Final CTA ──────────────────────────────────────────── */
.cta-section { text-align: center; }
.cta-inner   { max-width: 680px; margin: 0 auto; }
.cta-body    { font-size: 18px; margin: 24px 0 36px; line-height: 1.65; }
.cta-checklist {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; margin-bottom: 40px;
}
.cta-checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.cta-checklist li svg { width: 18px; height: 18px; color: #7FD4A8; }
.cta-note { font-size: 13px; margin-top: 24px; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-gray);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-subtle);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px; margin-bottom: 48px;
}
.footer__logo-img { height: 52px; width: auto; display: block; margin-bottom: 14px; }
.footer__tagline { font-size: 14px; color: var(--text-secondary); }
.footer__col h4  { margin-bottom: 20px; }
.footer__col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer__col a   { font-size: 14px; color: var(--text-secondary); transition: color 0.2s; }
.footer__col a:hover { color: var(--brand-primary); }
.footer__bottom {
  border-top: 1px solid var(--border-subtle); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-secondary);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: inherit; transition: color 0.2s; }
.footer__legal a:hover { color: var(--brand-primary); }

/* ─── WhatsApp Float Button ─────────────────────────────── */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  animation: wppPop 0.5s var(--ease) 1s both;
}
.wpp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
@keyframes wppPop {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ─── Hero Editorial ─────────────────────────────────────── */
.hero-ed {
  background: #fff;
  padding-top: clamp(40px, 6vw, 72px);
  overflow: hidden;
}

/* Eyebrow */
.hero-ed__eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
  opacity: 0;
  animation: herofadeup 0.6s var(--ease) 0.1s forwards;
}

/* Stage: big display text + overlapping product */
.hero-ed__stage {
  position: relative;
  text-align: center;
  /* padding-bottom reserves space so the floating image extends below the text */
  padding-bottom: clamp(140px, 20vw, 280px);
  margin-bottom: 0;
}

.hero-ed__display {
  font-family: 'Syne', sans-serif;
  /* "Transformador" (13 chars × ~0.60 ratio × font-size) must fit inside the ~1000px content area.
     At 1440px viewport: 8vw = 115px → span ≈ 898px ✓
     At  960px viewport: 8vw =  77px → span ≈ 600px ✓  */
  font-size: clamp(46px, 8vw, 116px);
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.045em;
  line-height: 0.88;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: herofadeup 0.8s var(--ease) 0.25s forwards;
}

/* Floating product: outer = centering, inner = animation */
.hero-ed__float-outer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: clamp(220px, 28vw, 440px);
}

.hero-ed__float-inner {
  animation:
    heroEntry 1s var(--ease) 0.4s both,
    heroFloat 6s ease-in-out 1.5s infinite;
}

.hero-ed__product-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.18));
}

/* Bottom row */
.hero-ed__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  padding: 40px 0 clamp(56px, 8vw, 88px);
  border-top: 1px solid var(--border-subtle);
  opacity: 0;
  animation: herofadeup 0.7s var(--ease) 0.75s forwards;
}

/* Left column */
.hero-ed__left { flex: 1; max-width: 420px; }

.hero-ed__desc {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 24px;
}

.hero-ed__pills { display: flex; flex-wrap: wrap; gap: 8px; }

.pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1.5px solid #1A1A1A;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  color: #1A1A1A;
  cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}
.pill-tag:hover {
  background: #1A1A1A;
  color: #fff;
  transform: translateY(-2px);
}

/* Right info card */
.hero-ed__card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F2F2F2;
  border-radius: 20px;
  padding: 20px;
  min-width: 300px;
  max-width: 360px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hero-ed__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.hero-ed__card-img {
  width: 90px; height: 90px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e2e2e2;
}
.hero-ed__card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.hero-ed__card-title {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: #1A1A1A; margin-bottom: 6px;
}
.hero-ed__card-sub {
  font-size: 12px; color: var(--text-secondary);
  line-height: 1.6;
}

/* Keyframes */
@keyframes herofadeup {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroEntry {
  from { opacity: 0; transform: scale(0.90); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__grid   { grid-template-columns: 1fr; gap: 40px; }
  .hero__image  { order: -1; max-width: 420px; margin: 0 auto; }
  .authority__grid { grid-template-columns: repeat(2,1fr); }
  .problems-grid   { grid-template-columns: 1fr; margin-top: 40px; }
  .specs-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  /* Hero editorial tablet */
  .hero-ed__display { white-space: normal; text-align: center; }
  .hero-ed__bottom  { flex-direction: column; align-items: stretch; gap: 32px; }
  .hero-ed__left    { max-width: unset; }
  .hero-ed__card    { min-width: unset; max-width: unset; }
}

@media (max-width: 640px) {
  .topbar__inner { font-size: 11px; flex-wrap: wrap; gap: 4px; }
  .navbar__hamburger { display: flex; }
  .navbar__links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: white;
    flex-direction: column; padding: 20px;
    gap: 16px; align-items: stretch;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .navbar__links.open { display: flex; }
  .navbar__links .btn { justify-content: center; }
  /* Hero editorial mobile */
  .hero-ed__display {
    font-size: clamp(44px, 15vw, 80px);
    white-space: normal;
    word-break: break-word;
  }
  .hero-ed__stage {
    padding-bottom: clamp(100px, 30vw, 180px);
  }
  .hero-ed__float-outer { width: clamp(160px, 52vw, 280px); }
  .hero-ed__bottom { padding-top: 32px; }
  .hero-ed__pills { gap: 6px; }
  .pill-tag { font-size: 10px; padding: 8px 14px; }
  /* Other mobile */
  .authority__grid { grid-template-columns: 1fr 1fr; }
  .authority__item span { font-size: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 24px 16px; }
  .faq-item__toggle { font-size: 14px; padding: 18px 20px; }
  .faq-item__body p { padding: 0 20px 20px; }
  .cta-checklist { align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
