/* =========================================================
   INGRESALO — Importadora general
   Sistema de diseño: azul corporativo + blanco + acento cian
   ========================================================= */

:root{
  /* --- color --- */
  --bg:            #FFFFFF;
  --bg-soft:       #F4F8FE;
  --bg-alt:        #EEF3FC;
  --surface:       #FFFFFF;
  --surface-2:     #F6F9FF;
  --line:          rgba(15,32,66,0.10);
  --line-strong:   rgba(15,32,66,0.18);

  --ink:           #0E1B33;
  --text:          #16233F;
  --text-muted:    #55648A;
  --text-faint:    #8895B8;

  --navy:          #0E2A5C;
  --navy-deep:     #081A3B;
  --blue:          #2059E8;
  --blue-dim:      #16409E;
  --cyan:          #12B4D6;
  --cyan-soft:     #D6F4FA;

  --wa:            #25D366;
  --wa-dark:       #1DA851;

  /* --- type --- */
  --f-display: 'Sora', 'Arial', sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* --- layout --- */
  --wrap: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-lift: 0 20px 50px -20px rgba(14,42,92,0.35);
  --shadow-soft: 0 12px 30px -14px rgba(14,42,92,0.22);
}

/* =============== RESET =============== */
*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img, svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,p,dl,dd{ margin:0; }
button{ font:inherit; cursor:pointer; border:none; background:none; color:inherit; }

.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 28px; }

/* =============== BOTONES =============== */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--f-body); font-weight:600; font-size:15px;
  padding:14px 24px;
  border-radius:999px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn .ico{ width:18px; height:18px; flex-shrink:0; }
.btn-primary{ background:var(--blue); color:#fff; box-shadow:var(--shadow-soft); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 34px -14px rgba(32,89,232,0.5); }
.btn-outline{ background:transparent; color:var(--navy); border:1.5px solid var(--line-strong); }
.btn-outline:hover{ border-color:var(--blue); color:var(--blue); }
.btn-wa{ background:var(--wa); color:#fff; }
.btn-wa:hover{ background:var(--wa-dark); transform:translateY(-2px); }
.btn-small{ padding:10px 18px; font-size:13.5px; }
.btn-large{ padding:17px 32px; font-size:16.5px; }
.btn-light{ background:rgba(255,255,255,0.14); color:#fff; border:1.5px solid rgba(255,255,255,0.35); }
.btn-light:hover{ background:rgba(255,255,255,0.24); }

/* =============== HEADER =============== */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-row{ display:flex; align-items:center; justify-content:space-between; height:78px; gap:24px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{ width:36px; height:36px; }
.brand-word{
  font-family:var(--f-display); font-weight:800; font-size:21px;
  letter-spacing:-0.01em; color:var(--navy);
}
.brand-word.small{ font-size:18px; }
.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-size:14.5px; font-weight:600; color:var(--text-muted);
  transition:color .15s ease;
}
.main-nav a:hover{ color:var(--blue); }
.header-cta{ display:flex; align-items:center; gap:10px; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px;
  width:40px; height:40px; align-items:center; justify-content:center;
}
.nav-toggle span{ width:22px; height:2px; background:var(--navy); border-radius:2px; }

/* =============== MINI BAR =============== */
.mini-bar{ background:var(--navy); color:rgba(255,255,255,0.9); }
.mini-bar-row{ display:flex; align-items:center; gap:8px; padding:9px 0; font-size:13px; }
.mini-dot{ width:6px; height:6px; border-radius:50%; background:var(--cyan); flex-shrink:0; }
.mini-bar-row strong{ color:#fff; }

/* =============== HERO =============== */
.hero{ padding:76px 0 64px; background:linear-gradient(180deg, var(--bg-soft), var(--bg) 65%); position:relative; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center; }
.eyebrow{
  font-family:var(--f-mono); font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--blue); font-weight:600; margin-bottom:16px;
}
.hero h1{
  font-family:var(--f-display); font-weight:800; font-size:52px; line-height:1.06;
  letter-spacing:-0.015em; color:var(--navy-deep);
}
.text-accent{ color:var(--blue); }
.hero-lede{ margin-top:20px; font-size:17.5px; color:var(--text-muted); max-width:520px; line-height:1.65; }
.hero-actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }

.hero-stats{ display:flex; gap:34px; margin-top:44px; flex-wrap:wrap; }
.hero-stats dt{
  font-family:var(--f-mono); font-size:10.5px; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--text-faint); margin-bottom:6px;
}
.hero-stats dd{ font-family:var(--f-display); font-weight:700; font-size:16px; color:var(--navy); }

.hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
.hero-visual svg{ width:100%; max-width:440px; }

/* =============== TRUST STRIP =============== */
.trust-strip{ background:var(--navy); padding:20px 0; }
.trust-strip-row{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.trust-claim{ color:rgba(255,255,255,0.92); font-weight:600; font-size:14.5px; }
.trust-chip-list{ display:flex; gap:10px; flex-wrap:wrap; }
.trust-chip{
  font-family:var(--f-mono); font-size:11.5px; letter-spacing:0.04em;
  padding:7px 14px; border-radius:999px;
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
  color:#fff;
}

/* =============== SECTIONS =============== */
.section{ padding:88px 0; }
.section-alt{ background:var(--bg-soft); }
.section-eyebrow{
  font-family:var(--f-mono); font-size:12px; letter-spacing:0.09em; text-transform:uppercase;
  color:var(--blue); font-weight:600; margin-bottom:12px;
}
.section-title{
  font-family:var(--f-display); font-weight:800; font-size:34px;
  letter-spacing:-0.01em; color:var(--navy-deep); max-width:680px;
}
.section-lede{ margin-top:14px; font-size:16px; color:var(--text-muted); max-width:640px; line-height:1.65; }

/* =============== VALUE PROPS =============== */
.value-grid{
  margin-top:44px; display:grid; grid-template-columns:repeat(4, 1fr); gap:20px;
}
.value-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px 24px; transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.value-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-soft); border-color:var(--line-strong); }
.value-icon{
  width:48px; height:48px; border-radius:14px;
  background:var(--cyan-soft); color:var(--blue);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.value-icon svg{ width:24px; height:24px; }
.value-card h3{ font-family:var(--f-display); font-size:17px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.value-card p{ font-size:14.5px; color:var(--text-muted); line-height:1.6; }

/* =============== CATEGORÍAS =============== */
.category-grid{
  margin-top:44px; display:grid; grid-template-columns:repeat(3, 1fr); gap:22px;
}
.category-card{
  display:flex; flex-direction:column;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:30px 26px; transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position:relative; overflow:hidden;
}
.category-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-lift); border-color:var(--blue); }
.category-tag{
  align-self:flex-start;
  font-family:var(--f-mono); font-size:10.5px; letter-spacing:0.06em; text-transform:uppercase;
  padding:5px 11px; border-radius:999px; margin-bottom:18px;
}
.category-tag.tag-catalogo{ background:var(--cyan-soft); color:var(--blue-dim); }
.category-tag.tag-cotizacion{ background:var(--bg-alt); color:var(--text-muted); }
.category-icon{
  width:52px; height:52px; border-radius:14px;
  background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.category-icon svg{ width:26px; height:26px; }
.category-card h3{ font-family:var(--f-display); font-size:19px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.category-card p{ font-size:14.5px; color:var(--text-muted); line-height:1.6; flex-grow:1; }
.category-link{
  margin-top:20px; display:inline-flex; align-items:center; gap:6px;
  font-size:14px; font-weight:700; color:var(--blue);
}
.category-link svg{ width:15px; height:15px; transition:transform .15s ease; }
.category-card:hover .category-link svg{ transform:translateX(3px); }

/* =============== CÓMO FUNCIONA =============== */
.steps{ margin-top:48px; display:grid; grid-template-columns:repeat(4, 1fr); gap:0; position:relative; }
.step{ position:relative; padding:0 20px 0 0; }
.step-num{
  font-family:var(--f-display); font-weight:800; font-size:15px;
  width:38px; height:38px; border-radius:50%;
  background:var(--blue); color:#fff;
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.step h3{ font-family:var(--f-display); font-size:16.5px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.step p{ font-size:14px; color:var(--text-muted); line-height:1.6; }
.step-line{
  position:absolute; top:19px; left:38px; right:-20px; height:2px;
  background:repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}
.step:last-child .step-line{ display:none; }

/* =============== VÍA AÉREA (comparación) =============== */
.compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; margin-top:44px; }
.compare-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px;
}
.compare-card.is-highlight{ border-color:var(--blue); box-shadow:var(--shadow-soft); }
.compare-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.compare-head h4{ font-family:var(--f-display); font-size:16px; font-weight:700; color:var(--navy); }
.compare-badge{
  font-family:var(--f-mono); font-size:10.5px; letter-spacing:0.05em; text-transform:uppercase;
  padding:4px 10px; border-radius:999px; background:var(--cyan-soft); color:var(--blue-dim);
}
.compare-list li{
  display:flex; align-items:flex-start; gap:10px;
  font-size:14px; color:var(--text-muted); padding:8px 0;
  border-bottom:1px solid var(--line);
}
.compare-list li:last-child{ border-bottom:0; }
.compare-list svg{ width:16px; height:16px; flex-shrink:0; margin-top:2px; }
.compare-list.is-yes svg{ color:var(--blue); }
.compare-list.is-no svg{ color:var(--text-faint); }

/* =============== CTA BAND =============== */
.section-ctaband{ background:linear-gradient(135deg, var(--navy-deep), var(--navy)); position:relative; overflow:hidden; }
.ctaband-row{ display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.ctaband-row h2{ font-family:var(--f-display); font-size:30px; font-weight:800; color:#fff; letter-spacing:-0.01em; max-width:560px; }
.ctaband-row p{ margin-top:10px; color:rgba(255,255,255,0.72); max-width:520px; }

/* =============== CONTACTO =============== */
.contact-wrap{ text-align:center; max-width:640px; margin:0 auto; }
.contact-wrap .section-title, .contact-wrap .section-lede{ margin-left:auto; margin-right:auto; }
.contact-wrap .btn{ margin-top:30px; }

/* =============== FOOTER =============== */
.site-footer{ background:var(--navy-deep); color:rgba(255,255,255,0.7); padding:64px 0 0; }
.footer-row{ display:flex; justify-content:space-between; gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.1); flex-wrap:wrap; }
.footer-brand p{ margin-top:12px; max-width:280px; font-size:14px; line-height:1.6; color:rgba(255,255,255,0.55); }
.footer-cols{ display:flex; gap:56px; flex-wrap:wrap; }
.footer-heading{ font-family:var(--f-mono); font-size:11px; letter-spacing:0.07em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:14px; }
.footer-cols a{ display:block; font-size:14.5px; color:rgba(255,255,255,0.75); padding:6px 0; transition:color .15s ease; }
.footer-cols a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; padding:22px 0; font-size:12.5px; color:rgba(255,255,255,0.4); flex-wrap:wrap; gap:8px; }

/* =============== WHATSAPP FLOTANTE =============== */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:60;
  width:58px; height:58px; border-radius:50%;
  background:var(--wa); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px rgba(37,211,102,0.55);
  animation:floatPulse 2.6s ease-in-out infinite;
}
.wa-float .ico{ width:28px; height:28px; }
.wa-float:hover{ transform:scale(1.06); }
@keyframes floatPulse{
  0%,100%{ box-shadow:0 12px 28px -8px rgba(37,211,102,0.55); }
  50%{ box-shadow:0 12px 34px -6px rgba(37,211,102,0.8); }
}

/* =============== PÁGINA DE CATEGORÍA (cotización) =============== */
.cat-hero{ padding:60px 0 56px; background:linear-gradient(180deg, var(--bg-soft), var(--bg) 70%); }
.breadcrumb{ display:flex; align-items:center; gap:8px; font-size:13px; color:var(--text-faint); margin-bottom:22px; }
.breadcrumb a{ color:var(--blue); font-weight:600; }
.cat-hero-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center; }
.cat-hero h1{ font-family:var(--f-display); font-weight:800; font-size:40px; letter-spacing:-0.01em; color:var(--navy-deep); line-height:1.12; }
.cat-hero-lede{ margin-top:16px; font-size:16.5px; color:var(--text-muted); max-width:480px; line-height:1.65; }
.cat-hero-actions{ display:flex; gap:14px; margin-top:28px; flex-wrap:wrap; }
.cat-visual{ display:flex; align-items:center; justify-content:center; }
.cat-visual svg{ width:100%; max-width:340px; }

.examples-grid{ margin-top:40px; display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; }
.example-card{
  border:1px solid var(--line); border-radius:var(--radius-md);
  padding:20px; background:var(--surface);
}
.example-card span{ font-family:var(--f-mono); font-size:11px; color:var(--blue); text-transform:uppercase; letter-spacing:0.05em; }
.example-card p{ margin-top:8px; font-size:14px; color:var(--text-muted); line-height:1.55; }

.process-note{
  margin-top:20px; padding:18px 20px; border-radius:var(--radius-md);
  background:var(--cyan-soft); border:1px solid rgba(18,180,214,0.25);
  font-size:14px; color:var(--blue-dim); line-height:1.6;
}

/* =============== ANIMACIONES / PREMIUM =============== */
@keyframes floatY{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
@keyframes floatSlow{ 0%,100%{ transform:translateY(0) rotate(0deg); } 50%{ transform:translateY(-9px) rotate(3deg); } }
@keyframes pulseGlow{ 0%,100%{ opacity:1; } 50%{ opacity:.55; } }
@keyframes shadowPulse{ 0%,100%{ transform:scale(1); opacity:1; } 50%{ transform:scale(.82); opacity:.5; } }
@keyframes blobMove{ 0%,100%{ transform:translate(0,0) scale(1); } 33%{ transform:translate(22px,-16px) scale(1.06); } 66%{ transform:translate(-16px,12px) scale(.96); } }

.blob{ position:absolute; border-radius:50%; filter:blur(64px); opacity:.32; pointer-events:none; z-index:0; }
.blob-a{ width:360px; height:360px; background:var(--blue); top:-120px; left:-90px; animation:blobMove 15s ease-in-out infinite; }
.blob-b{ width:300px; height:300px; background:var(--cyan); bottom:-90px; right:-70px; animation:blobMove 19s ease-in-out infinite reverse; }

/* elementos del hero: la posición va en un <g> con transform de SVG,
   la animación va en un <g>/elemento hijo SIN transform propio —
   si se anima el mismo nodo que tiene el transform de posición, el
   transform CSS lo pisa y el objeto "salta" a otro lugar. */
.hero-visual .float-box{ animation:floatY 4.6s ease-in-out infinite; transform-origin:center; transform-box:fill-box; }
.hero-visual .float-crate{ animation:floatY 3.8s ease-in-out infinite; animation-delay:.3s; transform-origin:center; transform-box:fill-box; }
.hero-visual .float-ship{ animation:floatSlow 4.2s ease-in-out infinite; animation-delay:.15s; transform-origin:center; transform-box:fill-box; }
.hero-visual .float-dot{ animation:floatSlow 5s ease-in-out infinite; transform-origin:center; transform-box:fill-box; }
.hero-visual .float-shadow{ animation:shadowPulse 4.6s ease-in-out infinite; transform-origin:center; transform-box:fill-box; }
.hero-visual .float-shadow-sm{ animation:shadowPulse 3.8s ease-in-out infinite; animation-delay:.3s; transform-origin:center; transform-box:fill-box; }
.hero-visual .pulse-glow{ animation:pulseGlow 3.8s ease-in-out infinite; }
.hero-visual{ transition:transform .2s ease-out; }
.cat-visual svg{ animation:floatY 5s ease-in-out infinite; }

/* pequeño "wiggle" del ícono al pasar el mouse por la tarjeta */
.category-icon, .value-icon{ transition:transform .3s cubic-bezier(.16,.84,.44,1); }
.tilt-card:hover .category-icon{ transform:scale(1.08) rotate(-4deg); }
.tilt-card:hover .value-icon{ transform:scale(1.08) rotate(-4deg); }

/* reveal on scroll */
.reveal{
  opacity:0; transform:translateY(28px);
  transition:opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

.stagger > *{
  opacity:0; transform:translateY(26px);
  transition:opacity .6s ease, transform .6s cubic-bezier(.16,.84,.44,1);
}
.stagger.is-visible > *{ opacity:1; transform:translateY(0); }
.stagger > *:nth-child(1){ transition-delay:.02s; }
.stagger > *:nth-child(2){ transition-delay:.09s; }
.stagger > *:nth-child(3){ transition-delay:.16s; }
.stagger > *:nth-child(4){ transition-delay:.23s; }
.stagger > *:nth-child(5){ transition-delay:.30s; }
.stagger > *:nth-child(6){ transition-delay:.37s; }

/* tilt 3D en tarjetas */
.tilt-card{
  transition:transform .25s cubic-bezier(.16,.84,.44,1), box-shadow .25s ease, border-color .25s ease;
  will-change:transform;
}

/* botones: brillo al pasar el mouse */
.btn{ position:relative; overflow:hidden; }
.btn::after{
  content:""; position:absolute; top:0; left:-60%; width:36%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform:skewX(-20deg); transition:left .55s ease; pointer-events:none;
}
.btn:hover::after{ left:120%; }

/* header con sombra al scrollear */
.site-header{ transition:box-shadow .25s ease; }
.site-header.is-scrolled{ box-shadow:0 10px 26px -16px rgba(14,42,92,0.22); }

/* =============== FAQ =============== */
.faq-list{ margin-top:40px; display:flex; flex-direction:column; gap:12px; max-width:760px; }
.faq-item{
  border:1px solid var(--line); border-radius:var(--radius-md);
  background:var(--surface); overflow:hidden;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.faq-item.is-open{ border-color:var(--blue); box-shadow:var(--shadow-soft); }
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 22px; text-align:left;
  font-family:var(--f-display); font-weight:700; font-size:15.5px; color:var(--navy);
}
.faq-icon{ width:22px; height:22px; flex-shrink:0; color:var(--blue); transition:transform .3s cubic-bezier(.16,.84,.44,1); }
.faq-item.is-open .faq-icon{ transform:rotate(45deg); }
.faq-answer{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .35s cubic-bezier(.16,.84,.44,1); }
.faq-answer-inner{ overflow:hidden; min-height:0; }
.faq-answer-inner p{ padding:0 22px 20px; font-size:14.5px; color:var(--text-muted); line-height:1.65; }
.faq-item.is-open .faq-answer{ grid-template-rows:1fr; }

@media (prefers-reduced-motion: reduce){
  .reveal, .stagger > *{ opacity:1 !important; transform:none !important; transition:none !important; }
  .hero-visual .float-box, .hero-visual .float-plane, .hero-visual .pulse-glow, .cat-visual svg, .blob{ animation:none !important; }
}

/* =============== RESPONSIVE =============== */
@media (max-width: 980px){
  .hero-grid, .cat-hero-grid, .compare-grid{ grid-template-columns:1fr; }
  .hero-visual, .cat-visual{ order:-1; max-width:320px; margin:0 auto 12px; }
  .value-grid{ grid-template-columns:repeat(2, 1fr); }
  .category-grid{ grid-template-columns:repeat(2, 1fr); }
  .steps{ grid-template-columns:repeat(2, 1fr); gap:32px 20px; }
  .step-line{ display:none; }
  .examples-grid{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width: 760px){
  .main-nav{
    position:fixed; top:78px; left:0; right:0; bottom:0;
    background:var(--bg);
    flex-direction:column; align-items:flex-start;
    padding:30px 28px; gap:22px;
    transform:translateX(100%);
    transition:transform .25s ease;
    z-index:39;
  }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav a{ font-size:18px; }
  .nav-toggle{ display:flex; }
  .header-cta .btn span{ display:none; }
  .header-cta .btn{ padding:12px; }
  .header-cta .btn .ico{ margin:0; }
  .trust-strip-row{ flex-direction:column; align-items:flex-start; }
  .hero{ padding:44px 0 36px; }
  .hero h1{ font-size:36px; }
  .ctaband-row{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 560px){
  .section{ padding:56px 0; }
  .wrap{ padding:0 18px; }
  .value-grid, .category-grid, .steps, .examples-grid{ grid-template-columns:1fr; }
  .footer-row{ flex-direction:column; gap:32px; }
  .blob{ display:none; }
  .faq-question{ padding:16px 18px; font-size:14.5px; }
  .faq-answer-inner p{ padding:0 18px 16px; }
}
