:root {
  --blue: #1267d6;
  --blue-dark: #07458f;
  --green: #14a960;
  --green-dark: #087844;
  --ink: #102033;
  --muted: #5f6f85;
  --line: #dce8f4;
  --soft: #f4f9fd;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 76, 130, .12);
  --shadow-soft: 0 10px 28px rgba(16, 32, 51, .08);
  --radius: 8px;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.container {
  width: min(calc(100% - 36px), var(--max));
  max-width: 100%;
  margin: 0 auto;
}

.wrapper,
section {
  max-width: 100%;
}

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

.hero {
  position: relative;
  max-width: 100%;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 16%, rgba(20, 169, 96, .12), transparent 34%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 54%, #f3fbf6 100%);
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-bg-one {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 90px;
  background: rgba(18, 103, 214, .08);
}

.hero-bg-two {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: 70px;
  background: rgba(20, 169, 96, .08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 56px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 220px;
  margin-bottom: 42px;
}

.brand img {
  width: auto;
  height: 68px;
  max-width: min(320px, 100%);
  object-fit: contain;
}

.logo img,
.brand-logo,
.site-logo,
.header-logo,
.hero-logo {
  display: block;
  width: auto;
  max-width: 190px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.logo,
.site-brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 220px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

h1 span {
  color: var(--blue);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-price {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 800;
}

.hero-line,
.section-copy {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.trust-pills span {
  border: 1px solid rgba(18, 103, 214, .14);
  border-radius: 999px;
  padding: 9px 13px;
  color: #30445d;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 18px rgba(18, 76, 130, .06);
  font-size: 14px;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-row.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 15px 20px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 16px 30px rgba(15, 134, 129, .28);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(15, 134, 129, .36);
}

.btn-secondary {
  color: var(--blue-dark);
  background: white;
  border-color: rgba(18, 103, 214, .2);
  box-shadow: var(--shadow-soft);
}

.btn-light {
  color: var(--blue-dark);
  background: white;
  box-shadow: 0 16px 34px rgba(4, 49, 87, .18);
}

.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .12);
}

.btn.compact {
  margin-top: 18px;
}

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  color: #40566e;
  font-size: 14px;
  font-weight: 750;
}

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

.micro-trust svg {
  width: 17px;
  height: 17px;
  fill: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.dashboard-shell,
.proof-card,
.pricing-card,
.check-card,
.management-card,
.business-card,
.gbp-card,
.local-proof-card,
.info-card {
  border: 1px solid rgba(18, 103, 214, .11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.dashboard-shell {
  position: absolute;
  inset: 52px 10px auto 34px;
  min-height: 390px;
  padding: 18px;
  transform: rotate(-1.2deg);
}

.browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 18px;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff6b6b;
}

.browser-bar span:nth-child(2) {
  background: #ffd166;
}

.browser-bar span:nth-child(3) {
  background: var(--green);
}

.browser-bar strong {
  margin-left: 8px;
  color: #59708b;
  font-size: 13px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-row div {
  padding: 15px;
  border-radius: var(--radius);
  background: #f6fbff;
  border: 1px solid var(--line);
}

.metric-row small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.metric-row b {
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.15;
}

.chart-card {
  position: relative;
  height: 180px;
  margin-top: 14px;
  padding: 20px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f4fbf8);
  border: 1px solid var(--line);
}

.chart-line {
  position: absolute;
  inset: 28px 20px 50px;
  border-bottom: 4px solid rgba(18, 103, 214, .52);
  border-radius: 55% 40% 45% 35%;
  transform: skewY(-9deg);
}

.chart-bars {
  position: absolute;
  inset: auto 22px 18px;
  display: flex;
  height: 90px;
  gap: 12px;
  align-items: end;
}

.chart-bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--green), rgba(20, 169, 96, .2));
}

.campaign-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.campaign-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #fbfdff;
  border: 1px solid var(--line);
  color: #465c75;
  font-weight: 700;
}

.campaign-list span {
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.campaign-list b {
  color: var(--green-dark);
  font-size: 13px;
}

.float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(18, 103, 214, .12);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #203a56;
  background: white;
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 850;
  animation: float 5s ease-in-out infinite;
}

.float-card svg {
  width: 20px;
  height: 20px;
  fill: var(--blue);
}

.card-a {
  top: 14px;
  left: 0;
}

.card-b {
  top: 132px;
  right: -2px;
  animation-delay: .8s;
}

.card-c {
  left: 8px;
  bottom: 90px;
  animation-delay: 1.4s;
}

.card-d {
  right: 26px;
  bottom: 22px;
  animation-delay: .4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

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

.trust-grid div,
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  border: 1px solid rgba(18, 103, 214, .11);
  border-radius: var(--radius);
  padding: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.trust-grid svg,
.feature svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: var(--green);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 8px;
}

.section-head .section-copy {
  margin: 10px auto 0;
}

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

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

.info-card {
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.info-card:hover,
.feature:hover,
.management-card:hover,
.business-card:hover,
.gbp-card:hover,
.local-proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 169, 96, .24);
  box-shadow: 0 22px 55px rgba(18, 76, 130, .14);
}

.info-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: var(--radius);
  fill: var(--blue);
  background: #eef6ff;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.soft-section {
  background: linear-gradient(180deg, #f7fbff, #f4fbf8);
}

.split-grid,
.two-card-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.check-card {
  padding: 28px;
}

.check-card ul,
.pricing-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-card li,
.pricing-card li {
  position: relative;
  padding-left: 30px;
  color: #344a63;
  font-weight: 730;
}

.check-card li::before,
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .35);
}

.proof-section {
  background: #fff;
}

.proof-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
}

.proof-card img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbff;
}

.proof-card figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

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

.pricing-wrap {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 30px;
  align-items: center;
}

.price-text {
  color: var(--muted);
  font-size: 21px;
}

.price-text strong {
  color: var(--blue-dark);
  font-size: clamp(28px, 4vw, 42px);
}

.pricing-card {
  padding: 30px;
}

.pricing-card .btn {
  margin-top: 24px;
}

.two-card-grid {
  align-items: stretch;
}

.management-card,
.business-card {
  padding: 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.management-card p {
  color: var(--muted);
}

.management-card small {
  color: var(--muted);
  font-weight: 700;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: #f5fbff;
  border: 1px solid var(--line);
}

.mini-dashboard span {
  height: 86px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--blue), rgba(18, 103, 214, .12));
}

.mini-dashboard span:nth-child(2) {
  height: 118px;
  background: linear-gradient(180deg, var(--green), rgba(20, 169, 96, .12));
}

.mini-dashboard span:nth-child(3) {
  height: 64px;
}

.business-card dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
}

.business-card dl div {
  padding: 13px 14px;
  border-radius: var(--radius);
  background: #f8fbff;
  border: 1px solid var(--line);
}

.business-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.business-card dd {
  margin: 2px 0 0;
  color: #263d57;
  font-weight: 800;
}

.business-name {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 850;
}

.presence-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(20, 169, 96, .08), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(18, 103, 214, .08), transparent 30%),
    #ffffff;
}

.presence-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.gbp-card,
.local-proof-card {
  padding: 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.profile-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.profile-mark {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 12px 26px rgba(18, 103, 214, .18);
  font-weight: 900;
}

.profile-label {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.profile-top h3,
.local-proof-card h3 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 24px;
}

.business-category {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.map-preview {
  position: relative;
  display: grid;
  min-height: 118px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background:
    linear-gradient(90deg, rgba(18, 103, 214, .05) 1px, transparent 1px),
    linear-gradient(rgba(18, 103, 214, .05) 1px, transparent 1px),
    linear-gradient(135deg, #f7fbff, #effaf5);
  background-size: 28px 28px, 28px 28px, auto;
}

.map-preview strong {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  font-size: 16px;
}

.map-pin {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 22px;
  height: 22px;
  border: 5px solid white;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(20, 169, 96, .26);
  transform: translateX(-50%) rotate(-45deg);
  animation: pinPulse 2.8s ease-out infinite;
}

@keyframes pinPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(20, 169, 96, .24);
  }
  55% {
    box-shadow: 0 0 0 14px rgba(20, 169, 96, 0);
  }
}

.presence-contact {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.presence-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #30465f;
  background: #fbfdff;
  font-weight: 780;
}

.presence-contact svg,
.trust-point svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: var(--blue);
}

.presence-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.presence-badges span {
  border: 1px solid rgba(20, 169, 96, .16);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--green-dark);
  background: #f4fbf8;
  font-size: 13px;
  font-weight: 850;
}

.trust-proof-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.trust-point {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.trust-point h4 {
  margin: 0 0 4px;
  color: #263d57;
  font-size: 16px;
}

.trust-point p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.presence-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(18, 103, 214, .12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fbff, #f4fbf8);
  box-shadow: var(--shadow-soft);
}

.presence-cta p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

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

.feature {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.faq-container {
  max-width: 820px;
}

.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-item {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
  color: var(--ink);
  background: white;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: var(--blue);
  transition: transform .2s ease;
}

.faq-item[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
  transition: max-height .25s ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.final-cta {
  padding-top: 70px;
}

.final-cta-inner {
  border-radius: var(--radius);
  padding: clamp(34px, 6vw, 64px);
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .2), transparent 30%),
    linear-gradient(135deg, var(--green-dark), var(--blue));
  box-shadow: 0 24px 70px rgba(18, 76, 130, .22);
}

.final-cta-inner p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}

.footer {
  padding: 48px 0 92px;
  background: #071a2e;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: start;
}

.footer p {
  max-width: 470px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
}

.footer-logo {
  width: auto;
  height: 52px;
  max-width: min(260px, 100%);
  object-fit: contain;
}

.footer address {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, .82);
  font-style: normal;
}

.footer address a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.mobile-sticky-cta {
  display: none;
}

.icon-sprite {
  display: none;
}

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

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

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

  .hero-grid,
  .split-grid,
  .pricing-wrap,
  .two-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 4px;
  }

  .dashboard-shell {
    left: 44px;
    right: 44px;
  }

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

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

  .presence-grid,
  .presence-cta {
    grid-template-columns: 1fr;
  }

  .presence-grid {
    display: grid;
  }

  .presence-cta {
    display: grid;
  }
}

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

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

  .hero {
    padding-top: 34px;
  }

  .brand {
    margin-bottom: 28px;
  }

  .brand img {
    height: 54px;
    max-width: min(250px, 100%);
  }

  .logo img,
  .brand-logo,
  .site-logo,
  .header-logo,
  .hero-logo {
    max-width: 150px;
    max-height: 54px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero-line,
  .section-copy {
    font-size: 16px;
  }

  .trust-pills {
    gap: 8px;
  }

  .trust-pills span {
    font-size: 13px;
  }

  .cta-row {
    align-items: stretch;
  }

  .btn {
    width: 100%;
    padding-inline: 16px;
  }

  .micro-trust {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .dashboard-shell {
    inset: 48px 0 auto 0;
    min-height: 330px;
    padding: 14px;
    transform: none;
  }

  .metric-row {
    gap: 8px;
  }

  .metric-row div {
    padding: 11px;
  }

  .metric-row b {
    font-size: 22px;
  }

  .chart-card {
    height: 136px;
  }

  .campaign-list p {
    font-size: 12px;
  }

  .float-card {
    padding: 10px 11px;
    font-size: 12px;
  }

  .card-a {
    left: 4px;
    top: 10px;
  }

  .card-b {
    top: 90px;
    right: 0;
  }

  .card-c {
    left: 6px;
    bottom: 52px;
  }

  .card-d {
    right: 4px;
    bottom: 4px;
  }

  .trust-strip {
    margin-top: -16px;
  }

  .trust-grid,
  .system-grid,
  .feature-grid,
  .three-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 28px;
    text-align: left;
  }

  .pricing-card,
  .check-card,
  .management-card,
  .business-card,
  .gbp-card,
  .local-proof-card {
    padding: 22px;
  }

  .presence-intro p {
    margin: 0;
  }

  .profile-top {
    gap: 13px;
  }

  .profile-mark {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    font-size: 14px;
  }

  .profile-top h3,
  .local-proof-card h3 {
    font-size: 21px;
  }

  .presence-contact a {
    align-items: flex-start;
  }

  .presence-contact span {
    overflow-wrap: anywhere;
  }

  .presence-cta .cta-row {
    width: 100%;
  }

  .footer {
    padding-bottom: 104px;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 50;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(18, 103, 214, .13);
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 16px 36px rgba(7, 26, 46, .18);
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-cta a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius);
    color: white;
    background: var(--green);
    font-weight: 850;
  }

  .mobile-sticky-cta a:last-child {
    background: var(--blue);
  }

  .mobile-sticky-cta svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
  }
}

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