:root {
  color-scheme: dark;
  --bg: #08090b;
  --panel: #111418;
  --panel-2: #171b20;
  --text: #f4f6f8;
  --muted: #a9b0ba;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e4252a;
  --red-2: #ff454b;
  --cyan: #28d6d0;
  --green: #5fd17b;
  --amber: #f5c04d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 32px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

body.loader-active {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(228,37,42,0.16), transparent 34%),
    linear-gradient(145deg, #050608 0%, #0b0e12 52%, #11161b 100%);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.page-loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-core {
  position: relative;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-top-color: var(--red);
  border-right-color: var(--cyan);
  border-radius: 50%;
  animation: loaderSpin 1100ms linear infinite;
  box-shadow: 0 0 42px rgba(40,214,208,0.1), inset 0 0 32px rgba(228,37,42,0.08);
}

.loader-ring::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom-color: rgba(228,37,42,0.78);
  border-radius: 50%;
  animation: loaderSpin 1500ms linear infinite reverse;
}

.loader-scan {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--red), transparent);
  box-shadow: 0 0 18px rgba(40,214,208,0.5);
  animation: loaderScan 1500ms ease-in-out infinite;
}

.loader-core img {
  width: 142px;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.45));
  animation: loaderPulse 1500ms ease-in-out infinite;
}

.loader-core span {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  color: #d7dce2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderScan {
  0%, 100% { transform: translateY(-56px); opacity: 0.35; }
  50% { transform: translateY(56px); opacity: 1; }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.82; }
  50% { transform: scale(1); opacity: 1; }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(228, 37, 42, 0.1), transparent 28%),
    linear-gradient(240deg, rgba(40, 214, 208, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 92px);
  opacity: 0.7;
  z-index: -2;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 50;
  padding: 10px 0;
  background: transparent;
  border-bottom: 0;
}

.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(9, 11, 14, 0.76);
  box-shadow: 0 18px 60px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 136px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-logo {
  width: 132px;
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(228,37,42,0.18));
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red), #8b1115);
  box-shadow: 0 12px 32px rgba(228, 37, 42, 0.28);
}

.brand-small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: #dce1e7;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 13px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a:last-child {
  margin-left: 4px;
  background: linear-gradient(135deg, var(--red), #a81418);
  color: #fff;
  box-shadow: 0 10px 24px rgba(228,37,42,0.26);
}

.nav-links a:last-child:hover,
.nav-links a:last-child:focus-visible,
.nav-links a:last-child.active {
  background: linear-gradient(135deg, var(--red-2), var(--red));
  box-shadow: 0 14px 30px rgba(228,37,42,0.36);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--red), #a81418);
  color: #fff;
  box-shadow: 0 18px 40px rgba(228, 37, 42, 0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: var(--line);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 710px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,11,0.96) 0%, rgba(8,9,11,0.76) 38%, rgba(8,9,11,0.32) 100%),
    linear-gradient(0deg, #08090b 0%, rgba(8,9,11,0.08) 34%, transparent 100%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.55;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 670px) minmax(320px, 1fr);
  gap: 48px;
  align-items: end;
  padding: 76px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--cyan);
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  max-width: 760px;
  margin-top: 16px;
  font-size: 76px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 24px;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #d7dce2;
  font-size: 20px;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.trust-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.07);
  padding: 16px;
  border-radius: var(--radius);
}

.trust-item strong {
  display: block;
  font-size: 26px;
  color: #fff;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(150deg, rgba(18, 22, 27, 0.94), rgba(8, 10, 13, 0.82)),
    rgba(15, 18, 22, 0.86);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(40,214,208,0.22), transparent 34%, rgba(228,37,42,0.18)),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 26%);
  opacity: 0.78;
}

.remap-card > * {
  position: relative;
  z-index: 1;
}

.logo-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.remap-head .api-status {
  margin-bottom: 14px;
}

.remap-head h2 {
  max-width: 420px;
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.remap-head p {
  margin: 14px 0 0;
  color: #c8d0d8;
}

.remap-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.remap-metrics div {
  min-width: 0;
  padding: 16px;
  background: rgba(8, 10, 13, 0.55);
}

.remap-metrics span,
.remap-flow p,
.remap-cta span {
  color: var(--muted);
}

.remap-metrics span {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.remap-metrics strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}

.remap-flow {
  display: grid;
  gap: 14px;
}

.remap-flow > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.remap-flow > div > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(40,214,208,0.38);
  border-radius: 12px;
  background: rgba(40,214,208,0.1);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.remap-flow strong {
  color: #fff;
  font-size: 16px;
}

.remap-flow p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.remap-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.remap-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(228,37,42,0.28);
}

.remap-cta a:hover {
  transform: translateY(-1px);
  background: #ff3036;
}

.remap-cta span {
  max-width: 150px;
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}

.section {
  padding: 86px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.section.alt {
  background: #0d0f12;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.card,
.service-card,
.result-card,
.step {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
}

.service-card {
  position: relative;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::before {
  content: attr(data-number);
  position: absolute;
  right: 18px;
  top: 10px;
  color: rgba(255,255,255,0.06);
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228,37,42,0.55);
  background: #14181d;
}

.service-card p,
.card p,
.step p {
  color: var(--muted);
}

.service-card ul,
.content-list {
  padding-left: 20px;
  color: #d7dce2;
}

.service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cyan);
  font-weight: 800;
}

.calculator {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}

.api-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.api-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 16px rgba(245, 192, 77, 0.55);
}

.api-status.ready::before {
  background: var(--green);
  box-shadow: 0 0 16px rgba(95, 209, 123, 0.55);
}

.api-status.error::before {
  background: var(--red);
  box-shadow: 0 0 16px rgba(228, 37, 42, 0.55);
}

.calc-form,
.calc-results {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #dfe4ea;
  font-size: 13px;
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: #090b0e;
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.stage-tabs {
  display: flex;
  gap: 8px;
  margin: 18px 0 0;
}

.stage-tab {
  flex: 1;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.stage-tab.active {
  background: var(--red);
  border-color: var(--red);
}

.results-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.result-card {
  padding: 18px;
}

.result-card > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.result-card strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
}

.gain {
  color: var(--green);
}

.bars {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  color: #dfe4ea;
  font-weight: 800;
  font-size: 14px;
}

.bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.09);
}

.bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--red-2));
  transition: width 600ms ease;
}

.calc-note {
  color: var(--muted);
  font-size: 14px;
}

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

.modern-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.dyno-panel,
.platform-panel,
.tool-card,
.audit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
  overflow: hidden;
}

.dyno-chart {
  height: 280px;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  position: relative;
}

.dyno-line {
  position: absolute;
  inset: 28px 24px;
}

.dyno-line::before,
.dyno-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  transform-origin: left center;
}

.dyno-line::before {
  top: 58%;
  background: linear-gradient(90deg, rgba(255,255,255,0.35), rgba(255,255,255,0.9));
  transform: rotate(-8deg);
}

.dyno-line::after {
  top: 42%;
  background: linear-gradient(90deg, var(--cyan), var(--red));
  transform: rotate(-13deg);
  box-shadow: 0 0 24px rgba(228,37,42,0.35);
}

.dyno-legend,
.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: #dfe4ea;
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  font-weight: 800;
}

.platform-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.platform-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: var(--muted);
}

.platform-row strong {
  color: #fff;
}

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

.audit-card strong {
  display: block;
  font-size: 18px;
}

.audit-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.step {
  padding: 20px;
}

.step strong {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(228,37,42,0.18);
  color: var(--red-2);
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.media-frame {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #101318;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.spec-list strong {
  color: #fff;
}

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

.google-review-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
}

.google-review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.google-review-head h3 {
  margin-top: 6px;
}

.google-review-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
}

.google-review-summary strong {
  color: var(--amber);
  font-size: 24px;
}

.google-review-summary span {
  color: var(--muted);
  font-weight: 800;
}

.google-review-list:empty {
  display: none;
}

.review {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.review p {
  color: #d7dce2;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255,255,255,0.08);
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta span {
  color: var(--muted);
  font-size: 13px;
}

.stars {
  color: var(--amber);
  font-weight: 900;
}

.cta-band {
  padding: 72px 0;
  background: linear-gradient(135deg, #14171b, #0b0c0f);
  border-top: 1px solid var(--line);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer {
  padding: 44px 0;
  background: #060708;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #d7dce2;
}

.page-hero {
  padding: 92px 0 54px;
  background: linear-gradient(135deg, rgba(228,37,42,0.16), transparent 42%), #0d0f12;
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--cyan);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.article {
  color: #d7dce2;
}

.article h2 {
  margin-top: 36px;
  font-size: 34px;
}

.article p {
  color: #c6ccd4;
}

.side-panel {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px;
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px;
}

.faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.12) contrast(1.04);
}

.map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.map-actions strong {
  color: #fff;
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 980px) {
  .topbar {
    top: 0;
    padding: 8px 0;
  }

  .nav {
    min-height: 62px;
    border-radius: 18px;
    padding: 8px 10px 8px 14px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    background: rgba(10, 12, 15, 0.96);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.48);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

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

  .nav-links a {
    min-height: 48px;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
  }

  .nav-links a::after {
    content: "›";
    color: var(--muted);
    font-size: 18px;
  }

  .nav-links a:last-child {
    margin-left: 0;
  }

  .hero-grid,
  .calculator,
  .split,
  .service-layout,
  .contact-grid,
  .cta-inner,
  .modern-grid {
    grid-template-columns: 1fr;
  }

  .google-review-head {
    align-items: stretch;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel,
  .side-panel {
    position: static;
  }

  .remap-head h2 {
    max-width: none;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .grid-3,
  .review-strip,
  .process,
  .footer-grid,
  .audit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 22px, 1180px);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-grid {
    padding: 56px 0 66px;
  }

  .trust-row,
  .grid-3,
  .grid-2,
  .review-strip,
  .process,
  .footer-grid,
  .form-grid,
  .results-top {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 16px;
  }

  .brand-small {
    display: none;
  }

  .brand-logo {
    width: 106px;
    max-height: 40px;
  }

  .btn {
    width: 100%;
  }

  .map-card iframe {
    min-height: 320px;
  }

  .map-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .remap-metrics {
    grid-template-columns: 1fr;
  }

  .remap-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .remap-cta span {
    max-width: none;
    text-align: left;
  }
}
