:root {
  --ink: #111318;
  --ink-soft: #3b414d;
  --muted: #697180;
  --line: #dde2ea;
  --paper: #ffffff;
  --soft: #f4f6f9;
  --soft-2: #eef7f3;
  --dark: #0d1117;
  --dark-2: #151b24;
  --violet: #b91ed9;
  --violet-dark: #7d1aa7;
  --green: #16c784;
  --green-dark: #0c8f62;
  --amber: #f4b63f;
  --danger: #ef5a5a;
  --shadow: 0 18px 45px rgba(17, 19, 24, 0.12);
  --shadow-soft: 0 10px 28px rgba(17, 19, 24, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

body,
button,
input {
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(221, 226, 234, 0.86);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 148px;
  height: 56px;
  object-fit: contain;
}

.main-nav {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 148px;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 246, 249, 0.96), rgba(238, 247, 243, 0.88)),
    linear-gradient(90deg, rgba(185, 30, 217, 0.08), rgba(22, 199, 132, 0.08));
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
  min-width: 0;
}

.hero-copy > * {
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8ff0c6;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 2.55rem;
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.05rem;
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 900;
}

.hero-text,
.split-head > p,
.diagnostic-copy > p,
.final-box p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  border: 1px solid var(--green);
  background: var(--green);
  color: #07140f;
  box-shadow: 0 12px 24px rgba(22, 199, 132, 0.26);
}

.btn-primary:hover {
  background: #21d893;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--ink);
}

.system-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.system-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  flex: 1 1 148px;
}

.system-strip span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--violet);
}

.commercial-dashboard {
  display: block;
  position: relative;
  width: min(100%, 520px);
  min-height: 602px;
  margin-inline: auto;
  min-width: 0;
}

.commercial-dashboard > * {
  position: absolute;
}

.visual-card,
.compare-card,
.pillar-card,
.service-card,
.process-step,
.metric-card,
.business-grid article,
.lead-form,
.final-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.search-card {
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 14px;
}

.search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

.magnifier {
  width: 16px;
  height: 16px;
  border: 3px solid var(--green-dark);
  border-radius: 999px;
  position: relative;
  flex: 0 0 auto;
}

.magnifier::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 3px;
  border-radius: 3px;
  background: var(--green-dark);
  transform: rotate(45deg);
}

.search-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #d8efe4;
  border-radius: var(--radius);
  background: var(--soft-2);
}

.search-result strong,
.business-sheet strong,
.website-mockup strong,
.ad-card strong,
.whatsapp-card strong,
.diagnostic-preview strong {
  display: block;
  color: var(--ink);
  line-height: 1.2;
}

.search-result small,
.business-sheet small,
.website-mockup small,
.ad-card small,
.whatsapp-card small,
.diagnostic-preview small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.pin-dot,
.map-pin,
.preview-pin {
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 999px 999px 999px 2px;
  background: var(--violet);
  box-shadow: 0 6px 12px rgba(125, 26, 167, 0.25);
  transform: rotate(-45deg);
  flex: 0 0 auto;
}

.phone-mockup {
  left: 50%;
  top: 94px;
  width: min(76vw, 280px);
  margin-inline: auto;
  padding: 12px;
  border: 1px solid #202633;
  border-radius: 24px;
  background: #111722;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  z-index: 1;
}

.phone-top {
  width: 72px;
  height: 6px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #303746;
}

.phone-screen {
  min-height: 382px;
  overflow: hidden;
  border-radius: 16px;
  background: #eef2f6;
}

.mini-map {
  position: relative;
  height: 235px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.85) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.85) 50%, transparent 51%),
    #dce8ef;
  background-size: 74px 74px;
}

.map-pin {
  position: absolute;
}

.pin-a {
  left: 48%;
  top: 34%;
}

.pin-b {
  left: 22%;
  top: 58%;
  background: var(--green);
}

.pin-c {
  right: 18%;
  top: 62%;
  background: var(--amber);
}

.route-line {
  position: absolute;
  height: 12px;
  border-radius: 999px;
  background: rgba(22, 199, 132, 0.32);
}

.route-one {
  left: 17%;
  top: 44%;
  width: 70%;
  transform: rotate(-16deg);
}

.route-two {
  left: 20%;
  bottom: 34%;
  width: 52%;
  transform: rotate(28deg);
}

.business-sheet {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  margin: -26px 12px 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 28px rgba(17, 19, 24, 0.12);
}

.business-image {
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(185, 30, 217, 0.9), rgba(22, 199, 132, 0.85)),
    #dfe6ef;
}

.business-sheet span {
  display: block;
  margin-top: 6px;
  color: var(--amber);
  font-weight: 900;
}

.website-mockup,
.ad-card,
.whatsapp-card {
  padding: 16px;
}

.website-mockup {
  top: 272px;
  right: 0;
  width: min(210px, 64%);
  z-index: 3;
}

.ad-card {
  left: 0;
  bottom: 0;
  width: min(184px, 54%);
  z-index: 3;
}

.whatsapp-card {
  right: 0;
  bottom: 74px;
  width: min(258px, 78%);
  z-index: 4;
}

.browser-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c6ceda;
}

.web-hero-line {
  height: 46px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(185, 30, 217, 0.9), rgba(22, 199, 132, 0.78));
}

.web-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 10px 0 14px;
}

.web-grid span {
  height: 34px;
  border-radius: 6px;
  background: var(--soft);
}

.ad-card {
  background: #111722;
  color: #fff;
}

.ad-card strong {
  margin-top: 5px;
  color: #fff;
  font-size: 1.7rem;
}

.ad-card small {
  color: #a9b3c3;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 80px;
  margin-top: 16px;
}

.chart-bars span {
  flex: 1;
  min-width: 28px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--green), #0a6b4c);
}

.chart-bars span:nth-child(1) {
  height: 38%;
}

.chart-bars span:nth-child(2) {
  height: 54%;
}

.chart-bars span:nth-child(3) {
  height: 72%;
}

.chart-bars span:nth-child(4) {
  height: 92%;
}

.whatsapp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-color: #cdeee0;
  background: #effbf5;
}

.wa-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #06140e;
  font-weight: 900;
  flex: 0 0 auto;
}

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

.split-head {
  display: grid;
  gap: 16px;
  align-items: end;
  margin-bottom: 28px;
}

.before-after {
  display: grid;
  gap: 16px;
}

.compare-card {
  padding: 18px;
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--danger);
}

.after .status-dot {
  background: var(--green);
}

.compare-visual {
  min-height: 180px;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.profile-line {
  height: 16px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #d9dee7;
}

.profile-line.short {
  width: 56%;
}

.rating-muted {
  margin: 18px 0;
  color: #a5adba;
  font-weight: 900;
}

.empty-web {
  display: inline-flex;
  padding: 9px 11px;
  border-radius: var(--radius);
  background: #fff1f1;
  color: #a33232;
  font-weight: 800;
}

.map-card-mini {
  position: relative;
  min-height: 88px;
  padding: 16px 16px 16px 46px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.82) 50%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.82) 50%, transparent 52%),
    #dcebe5;
  background-size: 48px 48px;
}

.map-card-mini .map-pin {
  left: 16px;
  top: 22px;
}

.rating-live {
  margin: 14px 0;
  color: var(--amber);
  font-weight: 900;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-pills span {
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.compare-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  line-height: 1.45;
  font-weight: 700;
}

.compare-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

.section-title {
  max-width: 770px;
  margin-bottom: 32px;
  text-align: left;
}

.pillars-grid,
.services-grid,
.business-grid {
  display: grid;
  gap: 16px;
}

.pillar-card {
  padding: 18px;
}

.pillar-card p,
.service-card p,
.process-step p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.pillar-visual {
  min-height: 220px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
  position: relative;
}

.map-surface {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.82) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.82) 50%, transparent 51%),
    #dbe8ef;
  background-size: 68px 68px;
}

.main-pin {
  left: 47%;
  top: 32%;
  width: 24px;
  height: 24px;
}

.map-road {
  position: absolute;
  height: 12px;
  border-radius: 999px;
  background: rgba(185, 30, 217, 0.22);
}

.road-a {
  left: 10%;
  top: 38%;
  width: 80%;
  transform: rotate(-18deg);
}

.road-b {
  left: 14%;
  top: 60%;
  width: 72%;
  transform: rotate(22deg);
}

.map-business-card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 13px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.map-business-card span {
  display: block;
  margin-top: 6px;
  color: var(--amber);
  font-weight: 900;
}

.map-business-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.web-visual {
  display: grid;
  place-items: center;
  padding: 18px;
}

.laptop {
  width: min(100%, 250px);
  padding: 10px 10px 18px;
  border-radius: 8px 8px 4px 4px;
  background: #202633;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.laptop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: #596274;
  transform: translateX(-50%);
}

.laptop-screen {
  height: 142px;
  padding: 12px;
  border-radius: 4px;
  background: #fff;
}

.web-band,
.web-text,
.web-button {
  display: block;
  border-radius: 999px;
}

.web-band {
  height: 44px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--violet), var(--green));
}

.web-text {
  width: 78%;
  height: 10px;
  margin-top: 12px;
  background: #d8dee8;
}

.web-text.small {
  width: 55%;
}

.web-button {
  width: 74px;
  height: 18px;
  margin-top: 12px;
  background: var(--green);
}

.small-phone {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: grid;
  gap: 7px;
  width: 68px;
  height: 126px;
  padding: 14px 9px;
  border: 5px solid #111722;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.small-phone span {
  border-radius: 6px;
  background: #dce2ec;
}

.small-phone span:first-child {
  background: var(--green);
}

.ads-visual {
  display: grid;
  grid-template-columns: 1fr 94px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: #111722;
}

.ad-preview {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ad-preview span,
.ad-preview small {
  display: block;
  color: #aeb8c8;
}

.ad-preview strong {
  display: block;
  margin: 12px 0;
  font-size: 1.3rem;
}

.click-chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 148px;
}

.click-chart span {
  flex: 1;
  min-width: 14px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--violet), var(--green));
}

.services-grid {
  grid-template-columns: 1fr;
}

.service-card {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.service-card strong {
  color: var(--ink);
  line-height: 1.45;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: 4px;
  padding: 9px 12px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--soft);
  position: relative;
}

.pin-icon::before,
.search-icon::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 999px 999px 999px 4px;
  background: var(--violet);
  transform: rotate(-45deg);
}

.web-icon::before {
  content: "";
  position: absolute;
  inset: 12px 9px;
  border: 3px solid var(--green-dark);
  border-top-width: 10px;
  border-radius: 5px;
}

.meta-icon::before,
.system-icon::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 8px;
  height: 18px;
  border-radius: 4px 4px 0 0;
  background: var(--violet);
  box-shadow: 13px -8px 0 var(--green), 26px -18px 0 var(--amber);
}

.search-icon::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 12px;
  width: 16px;
  height: 4px;
  border-radius: 999px;
  background: var(--green-dark);
  transform: rotate(45deg);
}

.system-icon {
  background: #111722;
}

.process-section {
  background: #fff;
}

.process-line {
  display: grid;
  gap: 18px;
  position: relative;
}

.process-step {
  padding: 18px;
  position: relative;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.step-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 8px;
  height: 86px;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--soft);
}

.step-visual span {
  border-radius: 6px;
  background: var(--green);
}

.diagnostic-mini span:nth-child(1),
.trust-mini span:nth-child(2),
.attraction-mini span:nth-child(3),
.follow-mini span:nth-child(2) {
  height: 78%;
  background: var(--violet);
}

.diagnostic-mini span:nth-child(2),
.trust-mini span:nth-child(1),
.attraction-mini span:nth-child(1),
.follow-mini span:nth-child(3) {
  height: 48%;
}

.diagnostic-mini span:nth-child(3),
.trust-mini span:nth-child(3),
.attraction-mini span:nth-child(2),
.follow-mini span:nth-child(1) {
  height: 62%;
  background: var(--amber);
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(185, 30, 217, 0.16), rgba(22, 199, 132, 0.08)),
    var(--dark);
  color: #fff;
}

.metrics-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.dark-section h2 {
  color: #fff;
}

.metrics-compare {
  display: grid;
  gap: 14px;
}

.metric-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.metric-card strong {
  margin-bottom: 4px;
}

.metric-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dce4ef;
  font-weight: 700;
}

.metric-card span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #7c8492;
}

.metric-card.active {
  background: rgba(22, 199, 132, 0.13);
  border-color: rgba(22, 199, 132, 0.42);
}

.metric-card.active span::before {
  background: var(--green);
}

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

.business-grid article {
  display: grid;
  gap: 10px;
  min-height: 120px;
  align-content: center;
  padding: 18px;
}

.business-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.business-grid strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.diagnostic-section {
  background:
    linear-gradient(135deg, rgba(244, 246, 249, 0.98), rgba(238, 247, 243, 0.92)),
    #fff;
}

.diagnostic-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.diagnostic-preview {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid #cfeade;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 800;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.lead-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 199, 132, 0.14);
}

.checks {
  display: grid;
  gap: 10px;
  margin: 2px 0 4px;
}

.check-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  cursor: pointer;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
}

.final-cta {
  padding: 24px 0 72px;
  background: var(--paper);
}

.final-box {
  padding: 26px 18px;
  text-align: center;
}

.final-box .btn {
  margin-top: 10px;
}

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

.footer-grid {
  display: grid;
  gap: 14px;
  align-items: center;
}

.footer-grid img {
  width: 150px;
}

.footer-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.footer-grid a {
  color: var(--green-dark);
  font-weight: 900;
}

.whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #07140f;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(17, 19, 24, 0.28);
}

@media (min-width: 620px) {
  .container {
    width: min(100% - 48px, 1120px);
  }

  .hero-actions,
  .system-strip {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    min-width: 238px;
  }

  .system-strip span {
    flex: 1 1 180px;
  }

  .before-after,
  .metrics-compare {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 820px) {
  .site-header {
    padding-inline: 28px;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 800;
  }

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

  .header-cta {
    max-width: none;
    padding-inline: 18px;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 3rem;
  }

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

  .split-head,
  .diagnostic-grid,
  .metrics-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

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

  .service-wide {
    grid-column: 1 / -1;
  }

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

  .process-line::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 39px;
    height: 2px;
    background: var(--line);
  }

  .process-step {
    z-index: 1;
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }

  .commercial-dashboard {
    position: relative;
    display: block;
    min-height: 640px;
    width: 100%;
    max-width: 560px;
  }

  .commercial-dashboard > * {
    position: absolute;
  }

  .phone-mockup {
    left: 50%;
    top: 32px;
    width: 292px;
    transform: translateX(-50%);
  }

  .search-card {
    left: 0;
    top: 0;
    width: 295px;
    z-index: 2;
  }

  .website-mockup {
    right: 0;
    top: 112px;
    width: 238px;
    z-index: 3;
  }

  .ad-card {
    left: 12px;
    bottom: 38px;
    width: 210px;
    z-index: 3;
  }

  .whatsapp-card {
    right: 0;
    bottom: 84px;
    width: 288px;
    z-index: 4;
  }

  .hero {
    min-height: 820px;
    display: grid;
    align-items: center;
  }

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

  .service-wide {
    grid-column: span 2;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 128px;
  }

  .header-cta {
    max-width: 122px;
    font-size: 0.78rem;
    padding-inline: 9px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }
}
