:root {
  color-scheme: light;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-soft: #EEF6FF;
  --text: #0F172A;
  --muted: #475569;
  --line: #E2E8F0;
  --primary: #0F172A;
  --secondary: #2563EB;
  --accent: #38BDF8;
  --success: #10B981;
  --shadow: 0 24px 70px rgba(15, 23, 42, .11);
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, .08);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 72px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #080E1C;
  --surface: #101827;
  --surface-soft: #121F33;
  --text: #F8FAFC;
  --muted: #B6C3D4;
  --line: rgba(226, 232, 240, .16);
  --primary: #F8FAFC;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, .25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 6%, rgba(56, 189, 248, .16), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .96rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--secondary);
  color: #fff;
  padding: 10px 16px;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 78px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(248, 250, 252, .72);
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

[data-theme="dark"] .site-header {
  background: rgba(8, 14, 28, .76);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
  font-size: 1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 10px 24px rgba(37, 99, 235, .26);
}

.brand-mark svg {
  width: 21px;
  height: 21px;
  fill: #fff;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.nav-panel a {
  border-radius: 999px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  padding: 8px 11px;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.mobile-menu-link {
  display: none;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: rgba(37, 99, 235, .09);
  color: var(--secondary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle,
.theme-toggle,
.back-to-top {
  border: 0;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
}

.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--text);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform .2s ease, background .2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.theme-toggle svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.theme-toggle .moon,
[data-theme="dark"] .theme-toggle .sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon {
  display: block;
}

.btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #1D4ED8);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, .28);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}

.btn-ghost {
  color: var(--muted);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-light {
  background: #fff;
  color: #0F172A;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .18);
}

.btn-whatsapp {
  background: #16A34A;
  color: #fff;
  box-shadow: 0 16px 34px rgba(22, 163, 74, .24);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  color: #fff;
  background: #15803D;
}

.btn-large {
  min-height: 47px;
  padding: 12px 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 120px 0 auto;
  height: 440px;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(37, 99, 235, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, .12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.02rem;
}

p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.trust-row {
  margin-top: 20px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-visual {
  min-width: 0;
}

.dashboard-hero {
  width: 100%;
  filter: saturate(1.08);
}

.stats-band {
  padding: 10px 0 36px;
}

.stats-grid,
.feature-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card,
.feature-card,
.testimonial-card,
.price-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

[data-theme="dark"] .stat-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .price-card {
  background: rgba(16, 24, 39, .78);
}

.stat-card {
  border-radius: var(--radius-sm);
  padding: 20px;
}

.stat-card strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1;
}

.stat-card span:last-child {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p {
  max-width: 660px;
  margin-inline: auto;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.section-heading.align-left p {
  margin-inline: 0;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 218px;
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -70px auto;
  width: 130px;
  height: 130px;
  border-radius: 42px;
  background: rgba(56, 189, 248, .12);
  transform: rotate(18deg);
}

.feature-card:hover {
  border-color: rgba(37, 99, 235, .35);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(56, 189, 248, .22));
}

.icon-chip::before {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--secondary);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.finance::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 19h16v2H4v-2Zm2-7h3v5H6v-5Zm5-8h3v13h-3V4Zm5 5h3v8h-3V9Z'/%3E%3C/svg%3E"); }
.crm::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm-8 9a8 8 0 1 1 16 0H4Z'/%3E%3C/svg%3E"); }
.stock::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 2 9 5v10l-9 5-9-5V7l9-5Zm0 2.3L5.3 8 12 11.7 18.7 8 12 4.3ZM5 9.8v6l6 3.4v-6L5 9.8Zm8 9.4 6-3.4v-6l-6 3.4v6Z'/%3E%3C/svg%3E"); }
.os::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10v4h4v16H3V6h4V2Zm2 4h6V4H9v2Zm-2 6h10v2H7v-2Zm0 4h7v2H7v-2Z'/%3E%3C/svg%3E"); }
.pdv::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 3h14v10H5V3Zm2 2v6h10V5H7Zm-3 10h16v6H4v-6Zm3 2v2h2v-2H7Zm4 0v2h2v-2h-2Zm4 0v2h2v-2h-2Z'/%3E%3C/svg%3E"); }
.compras::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4h14l-2 9H8.4L9 16h10v2H7.4L4.9 6H3V4h3l.4 2H18.5l.4-2H7Zm2 16a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm8 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3C/svg%3E"); }
.fiscal::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2h9l5 5v15H6V2Zm8 1.5V8h4.5L14 3.5ZM9 12h8v2H9v-2Zm0 4h8v2H9v-2Z'/%3E%3C/svg%3E"); }
.dash::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 13h8V3H3v10Zm0 8h8v-6H3v6Zm10 0h8V11h-8v10Zm0-18v6h8V3h-8Z'/%3E%3C/svg%3E"); }

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.audience-section {
  background:
    linear-gradient(180deg, rgba(16, 185, 129, .05), transparent 68%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.audience-card::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .16), rgba(16, 185, 129, .22));
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .08);
}

.audience-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.audience-card p {
  margin: 10px 0 0;
  font-size: .94rem;
}

.module-section {
  background:
    linear-gradient(180deg, transparent, rgba(37, 99, 235, .05), transparent);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.module-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  font-size: .95rem;
  font-weight: 800;
  padding: 13px 15px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.module-grid i {
  width: 12px;
  height: 12px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .09);
}

.dashboard-grid,
.benefits-grid,
.pricing-grid {
  display: grid;
  align-items: center;
  gap: 42px;
}

.dashboard-grid {
  grid-template-columns: .72fr 1.28fr;
}

.screen-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.screen-frame svg {
  width: 100%;
}

.benefits-grid {
  grid-template-columns: .86fr 1.14fr;
}

.benefit-copy p {
  max-width: 540px;
  font-size: 1rem;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit-list span {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  font-size: .95rem;
  font-weight: 800;
  padding: 14px 16px 14px 46px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}

.benefit-list span::before {
  content: "";
  position: absolute;
  left: 17px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--success);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m9 16.2-3.5-3.5L4 14.2 9 19 20 8l-1.5-1.5L9 16.2Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.timeline-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -26px;
  width: 34px;
  height: 12px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  clip-path: polygon(0 35%, 72% 35%, 72% 0, 100% 50%, 72% 100%, 72% 65%, 0 65%);
  z-index: 2;
}

.timeline-step strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  font-size: 1rem;
}

.pricing {
  background: linear-gradient(180deg, transparent, rgba(16, 185, 129, .06), transparent);
}

.pricing-grid {
  grid-template-columns: 1fr 390px;
}

.price-card {
  border-radius: 22px;
  padding: 28px;
}

.price-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}

.price-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(1.9rem, 3vw, 2.25rem);
  line-height: 1;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  border-radius: var(--radius);
  padding: 24px;
}

.testimonial-card p {
  color: var(--text);
  font-size: .98rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--text);
  font-size: 1rem;
}

.testimonial-card span {
  color: var(--muted);
}

.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, .22), transparent 36%),
    linear-gradient(135deg, #1D4ED8, #2563EB 54%, #0F172A);
  color: #fff;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 28px 80px rgba(37, 99, 235, .28);
}

.cta-block .eyebrow,
.cta-block h2,
.cta-block p {
  color: #fff;
}

.cta-block p {
  max-width: 620px;
  opacity: .84;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 30px;
}

.footer-grid p {
  max-width: 360px;
  margin-top: 18px;
}

.footer-grid h3 {
  margin-bottom: 16px;
  font-size: .94rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
}

.footer-grid a:hover {
  color: var(--secondary);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  fill: currentColor;
}

.site-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid,
  .dashboard-grid,
  .benefits-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .feature-grid,
  .audience-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-step:not(:last-child)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-pad {
    padding: 60px 0;
  }

  .navbar {
    justify-content: space-between;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 40px;
    order: 3;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    flex: none;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    padding: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel a {
    padding: 11px 13px;
  }

  .mobile-menu-link {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 32px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    flex: 1 1 210px;
  }

  .module-grid,
  .testimonial-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .cta-block {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.65rem, 8.2vw, 2.05rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(1.45rem, 8vw, 2.05rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .eyebrow {
    max-width: 34ch;
    font-size: .7rem;
    line-height: 1.35;
    white-space: normal;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow-wrap: anywhere;
  }

  .hero-grid {
    gap: 24px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
    inline-size: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy h1,
  .hero-copy p,
  .hero-actions,
  .trust-row,
  .eyebrow {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-copy p {
    max-width: 34ch;
    overflow-wrap: anywhere;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .hero-visual {
    overflow: hidden;
  }

  .dashboard-hero {
    width: 100%;
    max-width: calc(100vw - 28px);
    min-width: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .trust-row {
    display: grid;
    gap: 8px;
  }

  .btn-large {
    min-height: 44px;
    padding: 11px 16px;
  }

  .stats-grid,
  .feature-grid,
  .audience-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .screen-frame,
  .cta-block {
    border-radius: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
