/* ── Reset & base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:      #7C5C3E;
  --brown-dim:  #6B4F35;
  --caramel:    #C4956A;
  --caramel-lt: #E8C9A0;
  --bg:         #FAFAF8;
  --bg2:        #F4EFE8;
  --surface:    #FFFFFF;
  --border:     #E8E2D9;
  --border-dk:  #D4C9B8;
  --text:       #1A1612;
  --muted:      #8A7968;
  --muted-lt:   #B5A99A;
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.accent { color: var(--brown); }

/* ── Dot grid ──────────────────────────────────────────────────────────────── */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #C4956A22 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

/* ── Reveal ────────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.01em;
  transition: all 0.2s ease; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--brown); color: #fff; }
.btn-primary:hover { background: var(--brown-dim); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,92,62,0.25); }
.btn-outline { background: transparent; color: var(--brown); border-color: var(--border-dk); }
.btn-outline:hover { border-color: var(--brown); background: var(--bg2); transform: translateY(-2px); }
.btn-large { padding: 18px 40px; font-size: 17px; }
.btn-wa-large {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px; background: #128C7E; color: #fff;
  border-radius: 8px; font-size: 17px; font-weight: 700; transition: all 0.2s ease;
}
.btn-wa-large:hover { background: #075E54; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18,140,126,0.3); }

/* ── Nav ───────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px;
  background: rgba(250,250,248,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#nav.scrolled { border-bottom-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { font-size: 22px; color: var(--brown); }
.logo-text { font-size: 16px; color: var(--text); letter-spacing: -0.01em; }
.logo-text strong { color: var(--brown); }
.nav-links { list-style: none; display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-wa { display: flex; align-items: center; gap: 6px; color: #128C7E !important; font-weight: 600 !important; }
.nav-wa:hover { color: #075E54 !important; }
.nav-cta {
  background: var(--brown) !important; color: #fff !important;
  padding: 9px 20px; border-radius: 6px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--brown-dim) !important; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 40px 80px; position: relative; overflow: hidden;
  background: var(--bg);
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brown);
  clip-path: polygon(58% 0%, 100% 0%, 100% 100%, 47% 100%);
  z-index: 0;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 2;
}
.hero-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--caramel); margin-bottom: 20px; }
.hero-headline { font-size: clamp(44px, 6vw, 72px); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; max-width: 420px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-n { font-size: 22px; font-weight: 800; color: var(--brown); line-height: 1; }
.stat-l { font-size: 12px; color: var(--muted); }
.stat-div { width: 1px; height: 32px; background: var(--border); }

/* ── Dashboard card ────────────────────────────────────────────────────────── */
.dashboard-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(124,92,62,0.1), 0 4px 16px rgba(0,0,0,0.06);
}
.dash-topbar {
  display: flex; align-items: center; padding: 14px 18px;
  background: var(--bg2); border-bottom: 1px solid var(--border); gap: 12px;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-dk); }
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FEBC2E; }
.dash-dots span:nth-child(3) { background: #28C840; }
.dash-title { flex: 1; font-size: 13px; font-weight: 600; text-align: center; }
.dash-status { font-size: 11px; color: #28C840; font-weight: 600; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.dash-cell { background: var(--surface); padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.dash-wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 12px; }
.dash-icon { font-size: 22px; }
.dash-info { flex: 1; }
.dash-name { font-size: 11px; color: var(--muted); font-weight: 500; }
.dash-val  { font-size: 13px; font-weight: 700; }
.accent-text { color: var(--brown) !important; }
.dash-toggle { width: 36px; height: 20px; border-radius: 10px; background: var(--border); position: relative; }
.dash-toggle::after { content: ''; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: white; top: 3px; left: 3px; transition: left 0.2s; }
.dash-toggle.on { background: var(--brown); }
.dash-toggle.on::after { left: 19px; }
.dash-footer { padding: 12px 18px; background: var(--bg2); border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); }

/* ── Hero image ────────────────────────────────────────────────────────────── */
.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.2);
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover .hero-img { transform: scale(1.02); }
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #28C840;
  animation: blink 2s infinite;
}

/* ── Privacy image ─────────────────────────────────────────────────────────── */
.privacy-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(124,92,62,0.12);
}
.privacy-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── Service card image ────────────────────────────────────────────────────── */
.service-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 180px;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.04); }

/* ── Trust strip ───────────────────────────────────────────────────────────── */
#trust { background: var(--brown); padding: 16px 40px; }
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.trust-item { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.trust-sep  { color: rgba(255,255,255,0.4); }

/* ── Reassurance banner ────────────────────────────────────────────────────── */
#tranquilidad { padding: 20px 40px; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reassurance-banner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 20px 28px; background: var(--surface); border: 1px solid var(--border-dk);
  border-radius: 14px; border-left: 4px solid var(--caramel);
}
.reassure-icon { font-size: 28px; flex-shrink: 0; }
.reassure-text { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 2px; }
.reassure-text strong { font-size: 15px; color: var(--text); }
.reassure-text span  { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── Shared section ────────────────────────────────────────────────────────── */
.section-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--caramel); margin-bottom: 14px; }
.section-title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 56px; }

/* ── Services ──────────────────────────────────────────────────────────────── */
#servicios { padding: 100px 40px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { border-color: var(--caramel); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(124,92,62,0.1); }
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── No necesitas cambiar nada ─────────────────────────────────────────────── */
#no-cambies { padding: 100px 40px; background: var(--bg2); border-top: 1px solid var(--border); }

.nocambies-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.nocambies-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
}
.nocambies-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.relay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s, transform 0.2s;
}
.relay-card:hover {
  border-color: var(--caramel);
  transform: translateX(4px);
}
.relay-card-highlight {
  border-color: var(--caramel-lt);
  background: linear-gradient(135deg, #FFF8F0 0%, #FAFAF8 100%);
}
.relay-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.relay-info { flex: 1; }
.relay-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.relay-info p  { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 8px; }
.relay-tag {
  display: inline-block;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brown);
}

@media (max-width: 1000px) {
  .nocambies-inner { grid-template-columns: 1fr; gap: 48px; }
  .nocambies-sub { max-width: 100%; }
}

/* ── Privacy banner ────────────────────────────────────────────────────────── */
#privacidad { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 100px 40px; }
.privacy-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.privacy-text h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.02em; }
.privacy-text p  { font-size: 15px; color: var(--muted); line-height: 1.75; }
.privacy-features { display: flex; flex-direction: column; gap: 16px; }
.priv-feat { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; transition: border-color 0.2s; }
.priv-feat:hover { border-color: var(--caramel); }
.priv-icon { font-size: 22px; flex-shrink: 0; }
.priv-feat h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.priv-feat p  { font-size: 13px; color: var(--muted); }

/* ── Sin internet section ──────────────────────────────────────────────────── */
#sin-internet { padding: 100px 40px; background: var(--bg); }

.nointernet-header { margin-bottom: 56px; }
.nointernet-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: -24px;
}
.nointernet-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}
.nointernet-hero-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.alexa-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}
.alexa-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(220, 38, 38, 0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
@media (max-width: 1000px) {
  .nointernet-hero { grid-template-columns: 1fr; gap: 32px; }
}

.nointernet-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 48px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-col { padding: 32px; }
.compare-bad  { background: #FFF8F8; }
.compare-good { background: #F6FBF6; }
.compare-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.compare-icon { font-size: 24px; }
.compare-header h4 { font-size: 16px; font-weight: 700; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare-col ul li { font-size: 14px; color: var(--muted); line-height: 1.5; }
.compare-vs {
  padding: 0 24px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted-lt);
  letter-spacing: 0.08em;
  background: var(--bg2);
  align-self: stretch;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.nointernet-tagline {
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  font-style: italic;
  text-align: center;
  margin-bottom: 56px;
  padding: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.component-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.component-card:hover {
  border-color: var(--caramel);
  transform: translateY(-3px);
}
.component-icon { font-size: 28px; margin-bottom: 12px; }
.component-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.component-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

@media (max-width: 1000px) {
  .components-grid { grid-template-columns: repeat(2, 1fr); }
  .nointernet-compare { grid-template-columns: 1fr; }
  .compare-vs { padding: 16px 24px; border-left: none; border-right: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); justify-content: center; }
}
@media (max-width: 600px) {
  .components-grid { grid-template-columns: 1fr; }
}

/* ── Ecosystem ─────────────────────────────────────────────────────────────── */
#ecosystem { padding: 60px 40px; }
.eco-section { text-align: center; }
.eco-track { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 4px; }
.eco-pill { background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: var(--muted); transition: all 0.2s; }
.eco-pill:hover { border-color: var(--brown); color: var(--brown); background: var(--bg2); }

/* ── Proceso ───────────────────────────────────────────────────────────────── */
#proceso { padding: 100px 40px; background: var(--bg2); }
.steps { display: flex; align-items: center; }
.step { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; transition: border-color 0.3s, box-shadow 0.3s; }
.step:hover { border-color: var(--caramel); box-shadow: 0 8px 32px rgba(124,92,62,0.1); }
.step-num { font-size: 32px; font-weight: 900; color: var(--border-dk); line-height: 1; margin-bottom: 10px; }
.step-icon { font-size: 24px; margin-bottom: 12px; }
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step-line { width: 32px; flex-shrink: 0; height: 2px; background: var(--border-dk); position: relative; }
.step-line::after { content: '›'; position: absolute; right: -6px; top: -10px; color: var(--border-dk); font-size: 18px; }

/* ── Nosotros ──────────────────────────────────────────────────────────────── */
#nosotros { padding: 100px 40px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px 22px; transition: border-color 0.3s, transform 0.3s; }
.why-card:hover { border-color: var(--caramel); transform: translateY(-3px); }
.why-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.why-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Contact ───────────────────────────────────────────────────────────────── */
#contacto { background: linear-gradient(160deg, var(--bg2) 0%, #EDE3D5 100%); border-top: 1px solid var(--border); padding: 100px 40px; }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-text h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.15; margin: 12px 0 16px; letter-spacing: -0.02em; }
.contact-text p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.contact-actions { display: flex; flex-direction: column; gap: 14px; }
.contact-note { font-size: 13px; color: var(--muted-lt); margin-top: 4px; }
.contact-note a { color: var(--brown); text-decoration: underline; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer { padding: 24px 40px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { font-size: 14px; font-weight: 700; color: var(--brown); }
.footer-copy  { font-size: 13px; color: var(--muted); }
.footer-copy a { color: var(--brown); }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  #hero { background: linear-gradient(160deg, #FAFAF8 60%, #F4EFE8 100%); }
  #hero::before { display: none; }
  .hero-img-wrap { box-shadow: 0 24px 64px rgba(124,92,62,0.18), 0 4px 16px rgba(0,0,0,0.08); }
  .hero-inner    { grid-template-columns: 1fr; gap: 48px; }
  .hero-img { height: 320px; }
  .privacy-inner { grid-template-columns: 1fr; gap: 48px; }
  .privacy-img { height: 280px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .steps         { flex-direction: column; align-items: stretch; }
  .step-line     { width: 2px; height: 24px; margin: 0 auto; }
  .step-line::after { content: '↓'; right: -8px; top: auto; bottom: -14px; }
}
@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
  #hero, #servicios, #proceso, #nosotros, #contacto, #privacidad, #ecosystem { padding-left: 20px; padding-right: 20px; }
  #hero { background: linear-gradient(160deg, #FAFAF8 60%, #F4EFE8 100%); }
  #hero::before { display: none; }
  .hero-img-wrap { box-shadow: 0 24px 64px rgba(124,92,62,0.18), 0 4px 16px rgba(0,0,0,0.08); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .hero-ctas     { flex-direction: column; }
  .trust-inner   { gap: 12px; }
}
@media (max-width: 480px) {
  .why-grid      { grid-template-columns: 1fr; }
  .hero-headline { font-size: 38px; }
  .hero-stats    { flex-wrap: wrap; gap: 16px; }
  .trust-sep     { display: none; }
  .trust-inner   { flex-direction: column; gap: 8px; }
}
