:root {
  --bg: #07111f;
  --bg-soft: #0b1728;
  --surface: #0f1d31;
  --surface-2: #13243b;
  --text: #ecf4ff;
  --muted: #9fb0c7;
  --ink: #0c1725;
  --ink-soft: #526071;
  --light: #f6f9fc;
  --white: #ffffff;
  --accent: #67f5a8;
  --accent-2: #71d6ff;
  --accent-3: #a789ff;
  --border: rgba(255,255,255,.12);
  --border-dark: rgba(12,23,37,.12);
  --shadow: 0 24px 70px rgba(2, 11, 25, .22);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-light {
  background: var(--light);
  color: var(--ink);
}

.section-dark {
  background:
    radial-gradient(circle at 20% 0%, rgba(103,245,168,.10), transparent 30%),
    radial-gradient(circle at 95% 30%, rgba(113,214,255,.10), transparent 28%),
    #07111f;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,17,31,.76);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px rgba(2, 11, 25, .18);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 19px);
  gap: 3px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 11px;
  background: rgba(255,255,255,.04);
}

.cell {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
}

.cell-a {
  color: #07111f;
  background: var(--accent);
}

.cell-x {
  color: #07111f;
  background: var(--accent-2);
}

.brand-text {
  display: flex;
  gap: 4px;
  letter-spacing: -.03em;
  font-size: 18px;
}

.brand-text strong {
  font-weight: 850;
}

.brand-text span {
  color: var(--accent);
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #cbd7e7;
  font-weight: 650;
  font-size: 14px;
  transition: .2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav .nav-cta {
  padding: 11px 17px;
  color: #06111d;
  background: var(--accent);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--white);
}

.hero {
  min-height: 820px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,17,31,.05), var(--bg) 92%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-one {
  width: 560px;
  height: 560px;
  top: -210px;
  right: -100px;
  background: radial-gradient(circle, rgba(113,214,255,.18), transparent 66%);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  left: -200px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(103,245,168,.15), transparent 66%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow {
  color: #c7d6e8;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(103,245,168,.12);
}

.section-kicker {
  color: #168c55;
}

.section-dark .section-kicker,
.contact-section .section-kicker {
  color: var(--accent);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: #b4c4d9;
  font-size: 19px;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #06111d;
  background: var(--accent);
  box-shadow: 0 16px 36px rgba(103,245,168,.18);
}

.button-primary:hover {
  box-shadow: 0 18px 46px rgba(103,245,168,.26);
}

.button-secondary {
  color: var(--white);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.045);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.full-width {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: #9fb1c8;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.dashboard-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(19,36,59,.96), rgba(10,25,43,.96));
  box-shadow: 0 48px 120px rgba(0,0,0,.38);
  transform: perspective(1100px) rotateY(-6deg) rotateX(2deg);
}

.window-top {
  height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.window-title {
  color: #c7d4e4;
  font-size: 12px;
  font-weight: 750;
}

.window-status {
  justify-self: end;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.sheet-grid {
  min-height: 442px;
  display: grid;
  grid-template-columns: 38px 1fr;
}

.sheet-sidebar {
  padding-top: 38px;
  border-right: 1px solid rgba(255,255,255,.06);
}

.sheet-sidebar span,
.sheet-head span {
  min-height: 44px;
  display: grid;
  place-items: center;
  color: #6f8198;
  font-size: 10px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.sheet-content {
  padding: 0 0 22px;
}

.sheet-head,
.sheet-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr .7fr 1fr;
}

.sheet-head {
  background: rgba(255,255,255,.025);
}

.sheet-row span {
  min-width: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #d7e3f2;
  font-size: 11px;
  border-right: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.sheet-row:first-of-type span {
  color: #94a7bf;
  font-weight: 800;
}

.muted-row span {
  color: #9db0c8;
}

.active-row {
  background: rgba(103,245,168,.06);
}

.status-ok {
  color: var(--accent) !important;
  font-weight: 800;
}

.status-run {
  color: var(--accent-2) !important;
  font-weight: 800;
}

.automation-card {
  margin: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px;
  border: 1px solid rgba(103,245,168,.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(103,245,168,.09), rgba(113,214,255,.06));
}

.automation-card strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.mini-label {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.automation-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #06111d;
  background: var(--accent);
  font-size: 23px;
}

.floating-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  color: #eaf6ff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(10,25,43,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  font-size: 12px;
  font-weight: 750;
}

.pill-one {
  left: -34px;
  bottom: 90px;
}

.pill-two {
  right: -28px;
  top: 88px;
}

.pill-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07111f;
  background: var(--accent);
}

.proof-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #081421;
}

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

.proof-grid div {
  padding: 27px 24px;
  border-right: 1px solid var(--border);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.proof-grid span {
  color: var(--muted);
  font-size: 12px;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.process-copy > p,
.calculator-copy p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading.light p,
.section-dark p {
  color: #aebed1;
}

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

.pain-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(20,39,62,.06);
}

.pain-number {
  margin-bottom: auto;
  color: #16a363;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pain-card p {
  margin-bottom: 0;
  color: #617083;
}

.services-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(113,214,255,.12), transparent 26%),
    radial-gradient(circle at 15% 85%, rgba(167,137,255,.09), transparent 28%),
    #091521;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 385px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  box-shadow: 0 24px 70px rgba(2, 11, 25, .13);
}

.service-card.featured {
  border-color: rgba(103,245,168,.30);
  background: linear-gradient(145deg, rgba(103,245,168,.10), rgba(255,255,255,.04));
}

.service-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #06111d;
  background: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--accent);
  border: 1px solid rgba(103,245,168,.20);
  border-radius: 17px;
  background: rgba(103,245,168,.08);
  font-size: 17px;
  font-weight: 900;
}

.service-card p {
  color: #aebed1;
}

.service-card ul {
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  margin: 10px 0;
  padding-left: 20px;
  color: #cfdae8;
  font-size: 14px;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}

.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.case-tag {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.case-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.case-flow {
  margin-top: 28px;
}

.case-flow > div:not(.flow-line) {
  padding: 17px;
  border-radius: 15px;
  background: rgba(255,255,255,.035);
}

.case-flow span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.case-flow p {
  margin-bottom: 0;
  font-size: 14px;
}

.flow-line {
  width: 2px;
  height: 24px;
  margin-left: 28px;
  background: linear-gradient(var(--accent), var(--accent-2));
}

.result-callout {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  border: 1px solid rgba(103,245,168,.18);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(103,245,168,.10), rgba(113,214,255,.06));
}

.result-callout h3 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.process-grid,
.calculator-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 120px;
}

.process-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.process-points div {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 12px;
  align-items: start;
}

.process-points span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0b6f43;
  background: #dff8eb;
  font-weight: 900;
}

.process-points p {
  margin: 0;
  color: #5b697a;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 0 0 38px;
}

.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 64px;
  width: 2px;
  height: calc(100% - 40px);
  background: linear-gradient(#29c979, #d7e5dd);
}

.timeline-number {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid #bcdccb;
  border-radius: 22px;
  color: #0d8b55;
  background: #edfbf4;
  font-size: 22px;
  font-weight: 900;
}

.timeline p {
  color: #657386;
}

.calculator-section {
  background:
    linear-gradient(120deg, rgba(103,245,168,.06), transparent 40%),
    var(--bg-soft);
}

.calculator-grid {
  align-items: center;
}

.calculator-copy p {
  color: #aebed1;
}

.calculator-card,
.lead-form {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow);
}

.calculator-card label,
.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  color: #d8e3f2;
  font-size: 13px;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  outline: none;
  color: var(--white);
  background: rgba(6,17,29,.68);
  transition: border .2s ease, box-shadow .2s ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  padding: 14px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(103,245,168,.65);
  box-shadow: 0 0 0 4px rgba(103,245,168,.10);
}

.calculator-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(103,245,168,.18);
  border-radius: 16px;
  background: rgba(103,245,168,.07);
}

.calculator-result span {
  color: #aebed1;
  font-size: 12px;
}

.calculator-result strong {
  color: var(--accent);
  font-size: 22px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  background: var(--white);
}

.accordion summary {
  position: relative;
  padding: 20px 55px 20px 20px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translateY(-50%);
  color: #0d8b55;
  background: #e7f9f0;
}

.accordion details[open] summary::after {
  content: "–";
}

.accordion p {
  margin: 0;
  padding: 0 20px 20px;
  color: #647285;
}

.contact-section {
  background:
    radial-gradient(circle at 5% 20%, rgba(103,245,168,.12), transparent 25%),
    radial-gradient(circle at 95% 90%, rgba(167,137,255,.10), transparent 30%),
    #081421;
}

.contact-benefits {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: #c5d4e5;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  margin: 13px 0 0;
  color: #8497ad;
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding: 70px 0 22px;
  border-top: 1px solid var(--border);
  background: #050c15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: #8fa2b9;
  font-size: 13px;
}

.footer-grid strong {
  margin-bottom: 5px;
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #6f8299;
  border-top: 1px solid var(--border);
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 999px;
  color: #06111d;
  background: var(--accent);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  font-weight: 900;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .process-grid,
  .calculator-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    max-width: 740px;
  }

  .process-copy {
    position: static;
  }

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

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

  .proof-grid div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid div:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 780px) {
  .section {
    padding: 82px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 76px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(7,17,31,.97);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
  }

  .main-nav .nav-cta {
    text-align: center;
  }

  h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .hero-grid {
    gap: 48px;
  }

  .dashboard-window {
    transform: none;
  }

  .pill-one {
    left: 8px;
    bottom: -18px;
  }

  .pill-two {
    right: 8px;
    top: -18px;
  }

  .services-grid,
  .case-list,
  .pain-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .result-callout,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sheet-row span,
  .sheet-head span {
    padding-inline: 8px;
    font-size: 9px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .dashboard-window {
    border-radius: 18px;
  }

  .sheet-grid {
    grid-template-columns: 28px 1fr;
  }

  .sheet-row,
  .sheet-head {
    grid-template-columns: .8fr 1fr .9fr .55fr .9fr;
  }

  .window-title {
    display: none;
  }

  .window-top {
    grid-template-columns: 1fr 1fr;
  }

  .service-card,
  .case-card,
  .pain-card,
  .calculator-card,
  .lead-form {
    padding: 22px;
  }

  .timeline li {
    grid-template-columns: 58px 1fr;
  }

  .timeline-number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .timeline li:not(:last-child)::after {
    left: 28px;
    top: 56px;
  }

  .calculator-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}
