/* ------------------------------------------------------------------
   Bielta — Landing styles
   Inspired by AssetHand. Red (#dc2626) on CTAs + accents.
------------------------------------------------------------------ */
:root {
  --brand:       #dc2626;
  --brand-dark:  #b91c1c;
  --brand-soft:  #fef2f2;

  --bg:          #ffffff;
  --bg-soft:     #f8f9fb;
  --bg-section:  #fbfbfa;
  --line:        #e6e7ea;
  --line-soft:   #eef0f3;
  --ink:         #0f1419;
  --ink-2:       #3c4149;
  --muted:       #6b7280;
  --muted-2:     #9aa0a6;

  --green:       #137333;
  --green-bg:    #e6f4ea;
  --red:         #b3261e;
  --red-bg:      #fce8e6;
  --amber:       #a16207;
  --amber-bg:    #fef3c7;

  --radius:      16px;
  --radius-sm:   10px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.04);
  --shadow-2: 0 8px 24px rgba(16,24,40,.06);
  --shadow-3: 0 24px 60px rgba(16,24,40,.10);

  --container: 1200px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; color: var(--ink); letter-spacing: -0.02em; }
h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 em {
  font-style: italic;
  color: var(--ink);
  position: relative;
  white-space: nowrap;
}
h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.18em;
  background: var(--brand-soft);
  z-index: -1;
  border-radius: 2px;
}
h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h3 { font-size: 18px; font-weight: 600; }
p { margin: 0; color: var(--ink-2); }

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  transition: background .15s, border-color .15s, transform .04s, box-shadow .15s;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-lg { height: 52px; padding: 0 26px; font-size: 16px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 1px 2px rgba(220,38,38,.18); }
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 4px 12px rgba(220,38,38,.25); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-block { display: flex; width: 100%; }
.link-muted { color: var(--ink-2); font-weight: 500; font-size: 14.5px; padding: 8px 12px; border-radius: 8px; }
.link-muted:hover { background: var(--bg-soft); color: var(--ink); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; height: 68px; gap: 28px; }
.brand img { height: 26px; width: auto; }
.nav-links { display: flex; gap: 6px; margin-left: 28px; }
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: 14.5px; padding: 8px 14px; border-radius: 8px; }
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-toggle {
  display: none; margin-left: auto;
  border: 1px solid var(--line); background: #fff;
  border-radius: 10px; width: 40px; height: 40px;
  align-items: center; justify-content: center;
}

/* ---------- Hero ---------- */
.hero { padding: 88px 0 0; background: var(--bg); position: relative; overflow: hidden; }
.hero-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px; color: var(--ink-2); font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.lead { margin: 22px auto 0; max-width: 640px; font-size: clamp(17px,1.6vw,19px); color: var(--muted); line-height: 1.6; }
.hero-cta { display: flex; justify-content: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-fineprint { margin-top: 18px; font-size: 13.5px; color: var(--muted-2); }

/* hero mock — browser frame */
.hero-mock-wrap { margin-top: 64px; padding-bottom: 100px; }
.browser {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow-3);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 14px;
  background: #f6f7f9; border-bottom: 1px solid var(--line);
}
.tl { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.tl.r { background: #fb6058; } .tl.y { background: #fcc02d; } .tl.g { background: #2ac949; }
.browser-url {
  margin-left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 12px; font-size: 12px; color: var(--muted); min-width: 240px;
}
.browser-url svg { color: var(--green); }
.browser-body { display: grid; grid-template-columns: 190px 1fr; min-height: 440px; }

/* mock sidebar */
.mock-sidebar { background: #fbfbfa; border-right: 1px solid var(--line); padding: 14px 10px; font-size: 12.5px; }
.mock-brand img { height: 13px; }
.mock-cta {
  display: flex; align-items: center; gap: 8px;
  margin: 12px 4px; background: var(--brand); color: #fff;
  padding: 7px 10px; border-radius: 999px; font-weight: 600; font-size: 12px;
}
.mock-cta-ico { width: 14px; height: 14px; display: grid; place-items: center; background: rgba(255,255,255,.18); border-radius: 50%; }
.mock-nav-section { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); padding: 12px 10px 6px; font-weight: 700; }
.mock-nav-item { display: flex; align-items: center; gap: 10px; padding: 6px 10px; border-radius: 999px; color: var(--ink-2); font-weight: 500; }
.mock-nav-item.active { background: var(--brand-soft); color: var(--brand-dark); }
.mock-ni-ico { width: 12px; height: 12px; background: #d8dadf; border-radius: 3px; flex-shrink: 0; }
.mock-nav-item.active .mock-ni-ico { background: var(--brand-dark); }
.mock-badge { margin-left: auto; background: #fff; border: 1px solid var(--line); font-size: 10px; padding: 1px 7px; border-radius: 999px; color: var(--muted); font-weight: 700; }

/* mock main */
.mock-main { padding: 14px 18px; min-width: 0; overflow: hidden; }
.mock-topbar { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); margin-bottom: 14px; }
.mock-search { flex: 1; min-width: 0; display: flex; align-items: center; gap: 8px; background: var(--bg-soft); border-radius: 999px; padding: 6px 12px; font-size: 11px; color: var(--muted); }
.mock-chips { display: flex; gap: 4px; }
.mock-chip { background: var(--bg-soft); border-radius: 999px; padding: 4px 10px; font-size: 10.5px; color: var(--ink-2); font-weight: 500; white-space: nowrap; }
.mock-avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 10px; font-weight: 700; }
.mock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mock-h1 { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.mock-h-sub { font-size: 11px; color: var(--muted); }
.mock-cta-btn { background: var(--brand); color: #fff; padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 600; }

.mock-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.mock-kpi { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; display: flex; flex-direction: column; gap: 3px; }
.mock-k-label { font-size: 10px; color: var(--muted); }
.mock-k-value { font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; }
.mock-k-delta { font-size: 10px; font-weight: 600; padding: 1px 7px; border-radius: 999px; width: max-content; }
.mock-k-delta.up { color: var(--green); background: var(--green-bg); }
.mock-k-delta.down { color: var(--red); background: var(--red-bg); }
.mock-k-delta.warn { color: var(--amber); background: var(--amber-bg); }

.mock-grid2 { display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px; }
.mock-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.mock-card.lift { box-shadow: var(--shadow-2); }
.mock-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; font-size: 12px; font-weight: 700; color: var(--ink); }
.mock-mini-chips { display: inline-flex; gap: 2px; background: var(--bg-soft); padding: 2px; border-radius: 999px; }
.mock-mini-chips span { padding: 3px 9px; font-size: 9.5px; font-weight: 600; color: var(--muted); border-radius: 999px; }
.mock-mini-chips span.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-1); }
.mock-chart { width: 100%; height: 110px; }
.mock-chart svg { width: 100%; height: 100%; }

/* Kanban mini preview */
.mock-kanban { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.mock-col { background: var(--bg-soft); border-radius: 8px; padding: 8px; }
.mock-col-head { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 6px; display: flex; align-items: center; justify-content: space-between; }
.mock-col-head span.cnt { background: var(--line); border-radius: 999px; padding: 0 5px; font-size: 9px; color: var(--ink-2); }
.mock-ticket { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 7px 8px; margin-bottom: 5px; font-size: 10px; }
.mock-ticket b { display: block; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.mock-ticket span { color: var(--muted); }
.mock-pill { display: inline-block; border-radius: 999px; padding: 2px 7px; font-size: 9.5px; font-weight: 600; }
.mock-pill.green { background: var(--green-bg); color: var(--green); }
.mock-pill.amber { background: var(--amber-bg); color: var(--amber); }
.mock-pill.red { background: var(--red-bg); color: var(--red); }
.mock-pill.brand { background: var(--brand-soft); color: var(--brand-dark); }

/* ---------- Trust strip ---------- */
.trust { padding: 64px 0; background: var(--bg-section); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-label { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 28px; letter-spacing: .02em; }
.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-stats > div { display: flex; flex-direction: column; gap: 6px; }
.trust-stats .num { font-family: 'Inter', system-ui, sans-serif; font-size: 52px; font-weight: 500; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.trust-stats .lbl { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ---------- Problem ---------- */
.problem { padding: 110px 0; }
.problem h2 { margin-bottom: 24px; }
.problem p { font-size: 18px; margin-bottom: 16px; }
.problem b { color: var(--ink); font-weight: 600; }

/* ---------- Features grid ---------- */
.features-grid { padding: 110px 0; background: var(--bg-section); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features-grid h2 { margin-bottom: 56px; }
.fg-cards {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.fg-card { background: #fff; padding: 28px 24px; }
.fg-card:hover { background: var(--bg-soft); }
.fg-ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 16px; }
.fg-ico.brand-ico { background: var(--brand-soft); color: var(--brand-dark); }
.fg-ico.neutral-ico { background: var(--bg-soft); color: var(--ink-2); }
.fg-ico svg { width: 20px; height: 20px; }
.fg-card h3 { margin-bottom: 6px; font-size: 16px; }
.fg-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ---------- Feature detail ---------- */
.feature-detail { padding: 110px 0; }
.feature-detail.alt { background: var(--bg-section); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fd-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
.fd-grid.reverse { grid-template-columns: 1.15fr 1fr; }
.fd-grid.reverse .fd-copy { order: 2; }
.fd-grid.reverse .fd-visual { order: 1; }
.fd-copy h2 { margin-bottom: 22px; }
.fd-copy p { font-size: 17.5px; margin-bottom: 24px; }
.fd-check { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.fd-check li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-2); }
.fd-check .ck { width: 18px; height: 18px; border-radius: 50%; background: var(--brand-soft); position: relative; flex-shrink: 0; margin-top: 3px; }
.fd-check .ck::after { content: ''; position: absolute; left: 5px; top: 3px; width: 5px; height: 9px; border: solid var(--brand-dark); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* Fact table (recepciones) */
.mock-ot-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.mock-ot-table th, .mock-ot-table td { padding: 8px 10px; text-align: left; border-bottom: 1px solid var(--line-soft); white-space: nowrap; }
.mock-ot-table th { font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: var(--bg-soft); font-weight: 700; }
.mock-ot-table td { color: var(--ink-2); font-size: 11.5px; }
.mock-ot-table td:first-child { color: var(--ink); font-weight: 600; }

/* Factura detail */
.mock-factura { font-size: 12px; }
.mock-factura .fac-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); }
.mock-factura .fac-title { font-weight: 700; font-size: 15px; color: var(--ink); }
.mock-factura .fac-sub { font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.fac-lines { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.fac-lines th, .fac-lines td { padding: 6px 8px; font-size: 11px; border-bottom: 1px solid var(--line-soft); }
.fac-lines th { color: var(--muted); font-weight: 600; text-align: left; font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }
.fac-lines td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.fac-total { display: flex; justify-content: space-between; padding: 10px 8px; background: var(--brand-soft); border-radius: 8px; font-weight: 700; font-size: 13px; color: var(--ink); }

/* ---------- Pricing ---------- */
.pricing { padding: 110px 0; }
.pricing-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.pricing-head h2 { margin-bottom: 16px; }
.pricing-head p { font-size: 18px; color: var(--muted); }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; max-width: 780px; margin: 0 auto; }
.plan { border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 28px; }
.plan.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand); }
.plan-head { display: flex; flex-direction: column; gap: 6px; }
.plan-head h3 { font-size: 22px; font-weight: 700; }
.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-price .amount { font-family: 'Inter', system-ui, sans-serif; font-size: 48px; font-weight: 500; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.plan-price .period { font-size: 15px; color: var(--muted); }
.plan-price .custom { font-size: 22px; font-weight: 700; color: var(--ink); }
.plan-sub { font-size: 14px; color: var(--muted); }
.plan-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.plan-feats li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-2); }
.plan-feats li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: var(--brand-soft); position: relative; flex-shrink: 0; display: grid; place-items: center; }
.plan-feats li.check::before { background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23fef2f2'/%3E%3Cpath d='M4.5 8L7 10.5L11.5 6' stroke='%23b91c1c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.plan-badge { display: inline-flex; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; width: max-content; }

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; background: var(--bg-section); border-top: 1px solid var(--line); }
.faq-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.faq-head h2 { margin-bottom: 12px; }
.faq-head p { color: var(--muted); }
.faq-list {
  max-width: 820px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: #fff;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; cursor: pointer; width: 100%;
  font-size: 17px; font-weight: 500; color: var(--ink);
  gap: 16px; background: none; border: none; text-align: left;
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q svg { flex-shrink: 0; color: var(--muted-2); transition: transform .2s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { font-size: 15.5px; color: var(--muted); line-height: 1.65; padding: 0 28px 22px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 110px 0; text-align: center; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: var(--muted); margin-bottom: 36px; }
.final-cta .hero-cta { margin-top: 0; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0; background: var(--bg-soft); }
.foot-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
.foot-brand img { height: 28px; width: auto; margin-bottom: 10px; }
.foot-brand p { font-size: 15px; color: var(--muted); max-width: 240px; }
.foot-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.foot-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 15px; color: var(--muted); margin-bottom: 10px; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted-2); display: flex; justify-content: space-between; align-items: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav.menu-open { border-bottom-color: var(--line); }
  .nav-mobile { display: flex; flex-direction: column; gap: 4px; padding: 12px 16px 20px; border-top: 1px solid var(--line); }
  .nav-mobile a { padding: 10px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--ink-2); }
  .nav-mobile a:hover { background: var(--bg-soft); }
  .nav-mobile .btn { margin-top: 4px; justify-content: center; }
  h1 { font-size: clamp(34px,8vw,56px); }
  h2 { font-size: clamp(24px,5vw,36px); }
  .fg-cards { grid-template-columns: repeat(2,1fr); }
  .fd-grid, .fd-grid.reverse { grid-template-columns: 1fr; gap: 40px; }
  .fd-grid.reverse .fd-copy { order: 0; }
  .fd-grid.reverse .fd-visual { order: 0; }
  .trust-stats { grid-template-columns: repeat(2,1fr); }
  .plans { grid-template-columns: 1fr; max-width: 440px; }
  .browser-body { grid-template-columns: 140px 1fr; }
  .mock-kpis { grid-template-columns: repeat(2,1fr); }
  .mock-grid2 { grid-template-columns: 1fr; }
  .mock-kanban { grid-template-columns: repeat(2,1fr); }
  .foot-inner { flex-direction: column; gap: 32px; }
  .foot-cols { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 540px) {
  .hero { padding: 56px 0 0; }
  .feature-detail, .features-grid, .problem, .pricing, .faq, .final-cta { padding: 72px 0; }
  .fg-cards { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: repeat(2,1fr); }
  .trust-stats .num { font-size: 40px; }
  .browser-body { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .hero-mock-wrap { margin-top: 40px; padding-bottom: 60px; }
}
