:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #edf3f8;
  --ink: #111827;
  --muted: #5f6d82;
  --line: #d9e2ee;
  --navy: #07111f;
  --navy-2: #101a2e;
  --purple: #7540d8;
  --blue: #2584ff;
  --cyan: #16c7d9;
  --green: #1fae79;
  --amber: #e89a32;
  --danger: #d95763;
  --accent: #16a8c5;
  --accent-2: #1fae79;
  --accent-soft: #e6f8f8;
  --accent-ink: #07677a;
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.theme-pharma {
  --accent: #1ba782;
  --accent-2: #2778e8;
  --accent-soft: #e7f8f2;
  --accent-ink: #0b6f59;
}

body.theme-industry {
  --accent: #e89a32;
  --accent-2: #2778e8;
  --accent-soft: #fff3df;
  --accent-ink: #92570d;
}

body.theme-legal {
  --accent: #2778e8;
  --accent-2: #7540d8;
  --accent-soft: #eaf2ff;
  --accent-ink: #185ab1;
}

body.theme-hotel {
  --accent: #138f8b;
  --accent-2: #d49a3a;
  --accent-soft: #e4f6f5;
  --accent-ink: #0b6663;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 226, 238, 0.95);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--container);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 198px;
  display: inline-flex;
  align-items: center;
}

.brand img { width: 202px; height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #263247;
  font-size: 0.92rem;
  font-weight: 760;
}

.nav a {
  min-height: 40px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
}

.nav a:hover,
.nav a.active {
  color: var(--purple);
  background: #f1ebff;
}

.nav .nav-cta {
  margin-left: 4px;
  color: #fff;
  background: var(--purple);
}

.nav .nav-cta:hover { color: #fff; background: #6330c4; }

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle::before { transform: translateY(-7px); }
.menu-toggle::after { transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

.btn {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 840;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(72, 52, 160, 0.24); }
.btn.accent { background: var(--accent); border-color: var(--accent); }
.btn.light { color: var(--ink); background: #fff; border-color: #fff; }
.btn.outline { color: var(--ink); background: #fff; border-color: var(--line); }
.btn.small { min-height: 42px; padding: 0 15px; font-size: 0.86rem; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  width: 100%;
  min-height: calc(100vh - 118px);
  padding: 48px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 58px;
  color: #fff;
  background: #081323;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 3.85rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span,
.page-hero h1 span { color: #b78cff; }

.hero-copy,
.page-hero p {
  max-width: 700px;
  margin: 24px 0 0;
  color: #d4deed;
  font-size: 1.08rem;
}

.hero-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

.hero-points {
  margin: 24px 0 0;
  padding: 0;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.hero-points li {
  min-height: 76px;
  padding: 12px;
  color: #bdc9da;
  background: #111f33;
  border: 1px solid #293850;
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  font-size: 0.83rem;
}

.hero-points strong { display: block; margin-bottom: 5px; color: #fff; font-size: 1.02rem; }

.console-window {
  overflow: hidden;
  color: var(--ink);
  background: #eaf0f7;
  border: 1px solid #334156;
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
}

.console-bar {
  min-height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #dbe7f6;
  background: #111e32;
  border-bottom: 1px solid #2d3b51;
  font-size: 0.8rem;
  font-weight: 780;
}

.console-brand { display: flex; align-items: center; gap: 9px; }
.console-brand i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,255,255,.08); }
.live { color: #80e1bc; }

.console-body { padding: 14px; display: grid; gap: 12px; }
.console-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }

.mini-kpi {
  min-height: 82px;
  padding: 12px;
  background: #fff;
  border: 1px solid #dce4ef;
  border-top: 3px solid var(--accent);
  border-radius: 7px;
}

.mini-kpi span { display: block; color: var(--muted); font-size: 0.68rem; font-weight: 720; }
.mini-kpi strong { display: block; margin-top: 6px; color: #172033; font-size: 1.18rem; line-height: 1; }
.mini-kpi small { color: var(--accent-ink); font-size: 0.64rem; font-weight: 800; }

.console-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 10px; }

.console-card {
  min-width: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid #dce4ef;
  border-radius: 7px;
}

.console-card h3 { margin: 0; font-size: 0.83rem; }
.console-card > p { margin: 4px 0 12px; color: var(--muted); font-size: 0.66rem; }

.chart {
  height: 122px;
  padding: 12px 8px 6px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  border-left: 1px solid #dfe6ef;
  border-bottom: 1px solid #dfe6ef;
}

.chart i {
  flex: 1;
  min-width: 8px;
  height: var(--h, 50%);
  display: block;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  opacity: var(--o, 0.72);
}

.signal-list { display: grid; gap: 8px; }
.signal {
  padding: 9px 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e8f1;
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 0.68rem;
}
.signal i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.signal strong { min-width: 0; line-height: 1.25; }
.signal small { color: var(--muted); }

.console-footer {
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #69768a;
  background: #f8fafc;
  border-top: 1px solid #dce4ef;
  font-size: 0.68rem;
}

.proof-strip { background: #fff; border-bottom: 1px solid var(--line); }
.proof-strip-inner {
  width: var(--container);
  min-height: 104px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}
.proof-strip p { margin: 0; color: var(--muted); font-size: 0.86rem; }
.proof-strip strong { display: block; color: var(--ink); font-size: 0.92rem; }
.proof-stat { padding-left: 18px; border-left: 1px solid var(--line); }

.section { padding: 92px 0; }
.section.alt { background: #fff; }
.section.soft { background: #edf3f8; }
.section.dark { color: #fff; background: #0b1627; }
.section.tint { background: var(--accent-soft); }
.section-inner { width: var(--container); margin: 0 auto; }

.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-head h2,
.content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.15rem;
  line-height: 1.05;
  letter-spacing: 0;
}
.section.dark .section-head h2,
.section.dark .content h2 { color: #fff; }
.section-head p,
.content > p { margin: 18px 0 0; color: var(--muted); font-size: 1.06rem; }
.section.dark .section-head p,
.section.dark .content > p { color: #b9c6d8; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

.card {
  min-width: 0;
  padding: 27px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
}
.card.accent-line { border-top: 4px solid var(--accent); }
.card h3 { margin: 0; font-size: 1.18rem; line-height: 1.25; }
.card p { margin: 12px 0 0; color: var(--muted); }
.card .meta { margin-top: 18px; color: var(--accent-ink); font-size: 0.78rem; font-weight: 850; text-transform: uppercase; }

.icon-badge {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, white);
  border-radius: 7px;
  font-size: 1.15rem;
  font-weight: 900;
}
.icon-badge svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: 64px;
}
.feature-split.reverse > :first-child { order: 2; }

.check-list { margin: 28px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.check-list li { position: relative; padding-left: 31px; color: #344157; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--accent-soft);
}
.section.dark .check-list li { color: #cad5e4; }

.flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.flow-step { position: relative; min-height: 190px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.flow-step::after { content: ""; position: absolute; top: 42px; right: -13px; width: 13px; height: 2px; background: var(--accent); }
.flow-step:last-child::after { display: none; }
.flow-step b { color: var(--accent-ink); font-size: 0.78rem; }
.flow-step h3 { margin: 20px 0 0; font-size: 1.1rem; }
.flow-step p { margin: 9px 0 0; color: var(--muted); font-size: 0.93rem; }

.audience-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; }
.audience-panel { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.audience-panel h3 { margin: 0; font-size: 1.45rem; }
.audience-list { margin-top: 24px; display: grid; gap: 10px; }
.audience-item { padding: 14px 16px; display: flex; justify-content: space-between; gap: 18px; background: #f7f9fc; border: 1px solid #e4eaf2; border-radius: 7px; }
.audience-item span { color: var(--muted); font-size: 0.9rem; text-align: right; }

.metric-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; overflow: hidden; background: #24334a; border: 1px solid #24334a; border-radius: 8px; }
.metric-band > div { min-height: 142px; padding: 25px; color: #fff; background: #101d31; }
.metric-band strong { display: block; color: var(--accent); font-size: 1.52rem; }
.metric-band span { display: block; margin-top: 10px; color: #b9c5d6; font-size: 0.9rem; }

.note-box { padding: 22px 24px; color: #3c4a5f; background: var(--accent-soft); border-left: 4px solid var(--accent); border-radius: 7px; }
.note-box strong { color: var(--accent-ink); }

.page-hero {
  padding: 82px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: #081323;
}
.page-hero.compact { padding-top: 66px; padding-bottom: 66px; }
.page-hero h1 { max-width: 980px; font-size: 3.85rem; }

.content-layout { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; }
.content h2 { margin-top: 52px; font-size: 2.65rem; }
.content h2:first-child { margin-top: 0; }
.content h3 { margin: 30px 0 0; font-size: 1.25rem; }
.content p, .content li { color: var(--muted); }
.content ul { padding-left: 20px; }
.side-panel { position: sticky; top: 106px; height: max-content; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.side-panel h3 { margin: 0; font-size: 1.25rem; }
.side-panel p { margin: 10px 0 0; color: var(--muted); }
.side-panel .btn { width: 100%; margin-top: 20px; }

.cta {
  width: var(--container);
  margin: 0 auto;
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  color: #fff;
  background: #111d31;
  border: 1px solid #263852;
  border-left: 6px solid var(--accent);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.cta h2 { margin: 0; font-size: 2.35rem; line-height: 1.08; }
.cta p { max-width: 760px; margin: 12px 0 0; color: #becadc; }

.contact-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 46px; align-items: start; }
.contact-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.contact-card h2 { margin: 0; font-size: 1.55rem; }
.contact-card > p { margin: 10px 0 25px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #273348; font-size: 0.84rem; font-weight: 780; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f9fbfd;
  border: 1px solid #d6dfeb;
  border-radius: 7px;
  outline: none;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-actions { margin-top: 18px; display: flex; align-items: center; gap: 16px; }
.form-status { color: var(--muted); font-size: 0.86rem; }

.demo-page { min-height: 100vh; background: #eef3f8; }
.demo-header { min-height: 68px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #fff; background: #0b1728; }
.demo-header img { width: 172px; }
.demo-header-actions { display: flex; gap: 10px; }
.demo-shell { min-height: calc(100vh - 68px); display: grid; grid-template-columns: 220px minmax(0, 1fr); }
.demo-sidebar { padding: 22px 14px; color: #c5d0df; background: #111d31; }
.demo-sidebar p { margin: 0 10px 12px; color: #728199; font-size: 0.72rem; font-weight: 850; text-transform: uppercase; }
.demo-tab { width: 100%; min-height: 44px; margin-bottom: 6px; padding: 0 12px; display: flex; align-items: center; color: inherit; background: transparent; border: 0; border-radius: 7px; font-weight: 720; text-align: left; cursor: pointer; }
.demo-tab:hover, .demo-tab.active { color: #fff; background: #1b2b45; }
.demo-tab.active { border-left: 3px solid var(--accent); }
.demo-main { min-width: 0; padding: 28px; }
.demo-view { display: none; }
.demo-view.active { display: block; }
.demo-title { margin-bottom: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.demo-title h1 { margin: 0; font-size: 1.8rem; }
.demo-title p { margin: 5px 0 0; color: var(--muted); }
.demo-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.demo-kpi { padding: 20px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: 8px; }
.demo-kpi span { color: var(--muted); font-size: 0.78rem; }
.demo-kpi strong { display: block; margin-top: 6px; font-size: 1.55rem; }
.demo-grid { margin-top: 16px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; }
.demo-card { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.demo-card h2 { margin: 0; font-size: 1.05rem; }
.demo-card > p { margin: 6px 0 20px; color: var(--muted); font-size: 0.86rem; }
.action-row { padding: 14px 0; display: grid; grid-template-columns: 1fr auto; gap: 12px; border-top: 1px solid var(--line); }
.action-row:first-of-type { border-top: 0; }
.action-row strong { display: block; font-size: 0.9rem; }
.action-row span { color: var(--muted); font-size: 0.78rem; }
.risk { align-self: start; padding: 5px 8px; color: #a1444c; background: #ffecef; border-radius: 5px; font-size: 0.68rem; font-weight: 800; }

.site-footer { padding: 54px 0; color: #d5deeb; background: #07111f; }
.footer-inner { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 34px; align-items: start; }
.footer-logo img { width: 190px; }
.footer-small { margin-top: 16px; color: #9daabd; font-size: 0.86rem; line-height: 1.8; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; font-weight: 740; }
.footer-links a:hover { color: #c6a9ff; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 58px;
  height: 58px;
  padding: 7px;
  display: grid;
  place-items: center;
  background: #25d366;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.34);
}
.whatsapp-float img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.whatsapp-float:hover { transform: translateY(-2px); }

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 850;
  max-width: 720px;
  padding: 16px;
  display: none;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.legal-copy { max-width: 860px; }
.legal-copy h2 { margin: 42px 0 0; font-size: 1.55rem; }
.legal-copy p, .legal-copy li { color: var(--muted); }

@media (max-width: 1040px) {
  .menu-toggle { display: inline-flex; position: relative; }
  .nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2100;
    width: 100%;
    height: calc(100dvh - 78px);
    padding: 22px max(20px, calc((100vw - 720px) / 2)) 36px;
    display: none;
    align-content: start;
    overflow-y: auto;
    color: #263247;
    background: #f7f9fc;
    border-top: 1px solid var(--line);
  }
  .menu-toggle[aria-expanded="true"] + .nav,
  .nav.is-open { display: grid; }
  .nav a { width: 100%; min-height: 54px; padding: 0 18px; background: #fff; border: 1px solid #e1e8f1; }
  .nav .nav-cta { margin-left: 0; justify-content: center; }
  .hero { grid-template-columns: 1fr; gap: 46px; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse > :first-child { order: 0; }
  .content-layout { grid-template-columns: 1fr; }
  .side-panel { position: static; }
  .proof-strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 22px 0; }
  .proof-strip-inner > p { grid-column: 1 / -1; }
  .proof-stat { min-height: 52px; }
  .grid-4, .metric-band, .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-step::after { display: none; }
}

@media (max-width: 760px) {
  :root { --container: min(100vw - 28px, 1180px); }
  body { padding-bottom: 76px; }
  .header-inner { min-height: 74px; }
  .nav { top: 74px; height: calc(100dvh - 74px); }
  .brand { min-width: 0; }
  .brand img { width: min(58vw, 178px); }
  .hero { min-height: auto; padding: 32px 14px 24px; gap: 20px; }
  .hero h1, .page-hero h1 { font-size: 2.7rem; line-height: 1.03; overflow-wrap: anywhere; }
  .hero-copy, .page-hero p { font-size: 1rem; line-height: 1.72; }
  .hero-points { display: none; }
  .hero .console-grid,
  .hero .console-footer { display: none; }
  .hero .console-body { padding: 10px; }
  .console-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .console-grid { grid-template-columns: 1fr; }
  .proof-strip-inner, .grid-2, .grid-3, .grid-4, .metric-band, .flow, .audience-grid, .contact-layout, .form-grid, .footer-inner, .cta, .demo-kpis, .demo-grid { grid-template-columns: 1fr; }
  .proof-stat { padding: 14px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2, .content h2 { font-size: 2.25rem; line-height: 1.1; overflow-wrap: anywhere; }
  .card { padding: 23px; }
  .audience-panel { padding: 24px; }
  .audience-item { display: block; }
  .audience-item span { display: block; margin-top: 5px; text-align: left; }
  .page-hero { padding: 58px 14px; }
  .cta { padding: 28px; }
  .cta .btn { width: 100%; }
  .footer-links { justify-content: flex-start; }
  .cookie-banner { right: 14px; left: 14px; bottom: 88px; flex-direction: column; align-items: stretch; }
  .whatsapp-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); width: 54px; height: 54px; }
  .demo-header { padding: 0 14px; }
  .demo-header .btn { display: none; }
  .demo-shell { grid-template-columns: 1fr; }
  .demo-sidebar { padding: 10px 14px; display: flex; gap: 6px; overflow-x: auto; }
  .demo-sidebar p { display: none; }
  .demo-tab { width: auto; min-width: max-content; margin: 0; padding: 0 12px; }
  .demo-main { padding: 18px 14px 90px; }
  .demo-title { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .hero h1,
  .page-hero h1 { font-size: 2.25rem; }
  .section-head h2,
  .content h2 { font-size: 2rem; }
  .btn { width: 100%; min-height: 52px; white-space: normal; text-align: center; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-actions .btn { width: auto; min-height: 62px; padding: 0 10px; font-size: 0.86rem; }
  .console-body { padding: 9px; }
  .mini-kpi { padding: 10px; }
  .console-card { padding: 11px; }
  .signal { grid-template-columns: auto 1fr; }
  .signal small { grid-column: 2; }
  .form-actions { align-items: stretch; flex-direction: column; }
}
