:root {
  --color-chocolate-950: #120c08;
  --color-chocolate-900: #1b100a;
  --color-chocolate-850: #24160f;
  --color-chocolate-800: #2f1d13;
  --color-hamster-gold: #f59e0b;
  --color-hamster-gold-bright: #ffb21a;
  --color-fur-brown: #b97942;
  --color-sage: #3d6b5b;
  --color-cream-50: #fffdf8;
  --color-cream-100: #fff7e8;
  --color-cream-150: #f9ebd2;
  --color-text-dark: #24160f;
  --color-text-muted: #6d5b4f;
  --color-text-light: #fff8ed;
  --color-text-light-muted: rgba(255, 248, 237, 0.78);
  --color-border-light: rgba(36, 22, 15, 0.12);
  --color-border-dark: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 18px 40px rgba(36, 22, 15, 0.14);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-pill: 999px;
  --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(--color-text-dark);
  background: var(--color-cream-100);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--color-hamster-gold-bright);
  color: var(--color-chocolate-950);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 900;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(18, 12, 8, 0.94);
  color: var(--color-text-light);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border-dark);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo {
  font-size: 1.24rem;
  font-weight: 950;
  text-decoration: none;
  color: var(--color-text-light);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  font-weight: 800;
  color: var(--color-text-light-muted);
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  color: var(--color-hamster-gold-bright);
}

.nav-toggle {
  display: none;
}

/* Municipality Grid Links */
.municipality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates the 3-column layout */
  gap: 15px; /* Adjust spacing between buttons as needed */
}

.municipality-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff; /* White background */
  color: #2b1f1a; /* Dark brown/black text to match your theme */
  text-decoration: none; /* Removes the underline */
  padding: 15px 10px;
  border-radius: 6px; /* Rounded corners */
  font-weight: 800; /* Bold text */
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Optional hover effect to make them feel interactive */
.municipality-btn:hover {
  background-color: #fdfdfd;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
  .municipality-grid {
    grid-template-columns: repeat(2, 1fr); /* Changes to 2 columns on mobile */
  }
}

@media (max-width: 480px) {
  .municipality-grid {
    grid-template-columns: 1fr; /* Changes to 1 column on very small screens */
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-primary {
  background: var(--color-hamster-gold-bright);
  color: var(--color-chocolate-950);
  border-color: var(--color-hamster-gold-bright);
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.28);
}

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

.button:focus,
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(255, 178, 26, 0.62);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--color-text-light);
  background: var(--color-chocolate-950);
  display: grid;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
  transform-origin: 62% 46%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.92), rgba(18, 12, 8, 0.58), rgba(18, 12, 8, 0.28)),
    linear-gradient(180deg, rgba(18, 12, 8, 0.1), rgba(18, 12, 8, 0.58));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 140px 110px;
  max-width: 760px;
  margin-inline: max(calc((100% - var(--container)) / 2), 20px) auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-hamster-gold-bright);
  font-size: 0.84rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7.4vw, 7.1rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 950;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-lede {
  max-width: 690px;
  margin: 24px 0 12px;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  color: var(--color-text-light);
}

.hero-support {
  color: var(--color-text-light-muted);
  font-weight: 850;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button-row.centered {
  justify-content: center;
}

.wheel-accent {
  position: absolute;
  right: clamp(26px, 5vw, 84px);
  bottom: clamp(28px, 6vw, 88px);
  width: 112px;
  aspect-ratio: 1;
  border: 3px solid rgba(255, 178, 26, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 44px rgba(255, 178, 26, 0.24);
  animation: wheelPulse 3.6s ease-in-out infinite;
}

.wheel-accent::before,
.wheel-accent::after {
  content: "";
  position: absolute;
  inset: 50% 10px auto;
  height: 3px;
  background: rgba(255, 178, 26, 0.62);
  transform-origin: center;
}

.wheel-accent::after {
  transform: rotate(90deg);
}

section {
  padding-block: 92px;
}

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

.section-cream {
  background: var(--color-cream-150);
}

.section-dark,
.final-cta,
.page-hero {
  background: radial-gradient(circle at 78% 20%, rgba(61, 107, 91, 0.26), transparent 28rem), var(--color-chocolate-950);
  color: var(--color-text-light);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--color-text-muted);
}

.tight-section {
  padding-block: 34px 76px;
}

.platform-grid,
.pricing-grid,
.process-grid,
.compare-grid,
.included-grid,
.contact-grid,
.split-grid,
.local-scenarios {
  display: grid;
  gap: 24px;
}

.platform-grid,
.pricing-grid,
.local-scenarios {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.compare-grid,
.contact-grid,
.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.card,
.form-card,
.process-grid article {
  background: var(--color-cream-50);
  color: var(--color-text-dark);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 3vw, 32px);
}

.section-dark .process-grid article {
  background: linear-gradient(135deg, rgba(47, 29, 19, 0.95), rgba(18, 12, 8, 0.95));
  color: var(--color-text-light);
  border-color: var(--color-border-dark);
  box-shadow: var(--shadow-strong);
}

.service-card,
.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card .button {
  margin-top: auto;
}

.card:hover {
  transform: translateY(-4px);
}

.card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.icon-dot,
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-hamster-gold-bright);
  color: var(--color-chocolate-950);
  font-weight: 950;
}

ul {
  padding-left: 1.2rem;
}

.text-link {
  margin-top: auto;
  color: var(--color-chocolate-950);
  font-weight: 950;
  text-decoration-color: var(--color-hamster-gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

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

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

.problem-grid span,
.municipality-grid span,
.included-grid span {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-cream-50);
  border: 1px solid var(--color-border-light);
  font-weight: 900;
  text-align: center;
}

.section-dark .included-grid span {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-border-dark);
  color: var(--color-text-light);
}

.centered-action {
  margin-top: 32px;
  text-align: center;
}

.price-label {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(61, 107, 91, 0.12);
  color: var(--color-sage);
  font-size: 0.9rem;
  font-weight: 950;
}

.note-band {
  margin-bottom: 24px;
  padding: 18px 22px;
  border-left: 5px solid var(--color-hamster-gold);
  border-radius: var(--radius-sm);
  background: var(--color-cream-50);
  box-shadow: var(--shadow-soft);
}

.note-band p {
  margin: 0;
}

.featured {
  border: 3px solid var(--color-hamster-gold);
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
}

.check-list li::before {
  position: absolute;
  left: 0;
  font-weight: 950;
}

.check-list.after li::before {
  content: "+";
  color: var(--color-sage);
}

.check-list.before li::before {
  content: "!";
  color: #a34718;
}

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

details {
  background: var(--color-cream-50);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  font-weight: 950;
}

.final-cta {
  text-align: center;
}

.final-cta .container {
  max-width: 820px;
}

.map-section {
  background: var(--color-cream-100);
}

.map-frame {
  width: min(100%, 1180px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-soft);
  background: var(--color-cream-50);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(420px, 56vw, 560px);
  min-height: 420px;
  border: 0;
}

.visibility-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(61, 107, 91, 0.18), transparent 24rem),
    var(--color-cream-150);
}

.visibility-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
  gap: clamp(26px, 5vw, 58px);
}

.visibility-copy {
  position: sticky;
  top: 110px;
}

.visibility-widget {
  background: var(--color-cream-50);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 4vw, 34px);
}

.thv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.thv-step {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--color-cream-150);
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.thv-step.active,
.thv-step.done {
  background: var(--color-hamster-gold-bright);
  color: var(--color-chocolate-950);
}

.thv-panel {
  display: none;
}

.thv-panel.active {
  display: grid;
  gap: 16px;
}

.thv-panel h3 {
  margin-top: 0;
}

.thv-panel p {
  margin: 0;
  color: var(--color-text-muted);
}

.thv-limit-note {
  margin: -4px 0 0 !important;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.thv-panel select {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  border: 2px solid rgba(36, 22, 15, 0.14);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  color: var(--color-text-dark);
  background: #ffffff;
}

.optional {
  color: var(--color-text-muted);
  font-weight: 700;
}

.visibility-consent {
  align-items: flex-start;
}

.thv-error {
  display: none;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: #fff0e7;
  color: #9f3412 !important;
  font-weight: 850;
}

.thv-error.is-visible {
  display: block;
}

.thv-progress {
  height: 10px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--color-cream-150);
}

.thv-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-hamster-gold), var(--color-sage));
  transition: width 240ms ease;
}

.thv-result-head {
  text-align: center;
}

.thv-grade {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--color-hamster-gold-bright);
  color: var(--color-chocolate-950);
  font-size: 2.2rem;
  font-weight: 950;
}

.thv-map {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: var(--radius-sm);
}

.thv-score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thv-score-grid div {
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--color-cream-150);
  text-align: center;
}

.thv-score-grid strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
}

.thv-score-grid span,
.thv-score-grid small {
  display: block;
  color: var(--color-text-muted);
  font-weight: 800;
}

.thv-recommendations {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--color-cream-150);
}

.thv-recommendations h4 {
  margin: 0 0 8px;
}

.thv-recommendations ul {
  margin-bottom: 0;
}

.thv-email-note {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(61, 107, 91, 0.12);
  color: var(--color-sage);
  font-weight: 850;
}

.page-hero {
  padding-block: 120px 82px;
}

.page-hero .container {
  max-width: 900px;
}

.page-hero p:not(.eyebrow),
.final-cta p,
.section-dark p {
  color: var(--color-text-light-muted);
}

.feature-list {
  background: var(--color-cream-50);
  color: var(--color-text-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px 28px 28px 48px;
}

.service-example {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.image-placeholder,
.service-image {
  display: grid;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.image-placeholder {
  place-items: center;
  border: 2px dashed rgba(36, 22, 15, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 178, 26, 0.12), rgba(61, 107, 91, 0.12)),
    var(--color-cream-50);
  color: var(--color-text-muted);
  font-weight: 950;
}

.service-image {
  object-fit: cover;
  border: 1px solid var(--color-border-light);
  background: var(--color-cream-50);
}

.detailed .price-card {
  align-items: flex-start;
}

form {
  display: grid;
  gap: 20px;
}

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

label,
legend {
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  border: 2px solid rgba(36, 22, 15, 0.14);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  color: var(--color-text-dark);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 2px solid rgba(36, 22, 15, 0.14);
  border-radius: var(--radius-sm);
}

.form-note {
  margin: -6px 0 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.check-field {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 750;
}

.check-field input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  background: var(--color-chocolate-950);
  color: var(--color-text-light);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
  gap: 28px;
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.site-footer a:not(.button):not(.logo) {
  display: block;
  color: var(--color-text-light-muted);
  text-decoration: none;
  margin: 6px 0;
}

.site-footer p {
  color: var(--color-text-light-muted);
}

.copyright {
  width: min(var(--container), calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-dark);
  font-size: 0.95rem;
}

.response-page .final-cta {
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.trap-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 178, 26, 0.18), transparent 26rem),
    radial-gradient(circle at 15% 80%, rgba(61, 107, 91, 0.22), transparent 24rem),
    var(--color-chocolate-950);
  color: var(--color-text-light);
}

.trap-hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.trap-card {
  width: min(760px, 100%);
  text-align: center;
  padding: clamp(30px, 6vw, 64px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-dark);
  background: linear-gradient(135deg, rgba(47, 29, 19, 0.94), rgba(18, 12, 8, 0.96));
  box-shadow: var(--shadow-strong);
}

.trap-card h1 {
  font-size: clamp(2.8rem, 7vw, 6.4rem);
}

.trap-card p:not(.eyebrow) {
  color: var(--color-text-light-muted);
}

.trap-wheel {
  width: clamp(96px, 18vw, 156px);
  aspect-ratio: 1;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 5px solid var(--color-hamster-gold-bright);
  box-shadow: 0 0 42px rgba(255, 178, 26, 0.28);
  position: relative;
  animation: wheelPulse 3.6s ease-in-out infinite;
}

.trap-wheel::before,
.trap-wheel::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 4px;
  background: rgba(255, 248, 237, 0.75);
}

.trap-wheel::after {
  transform: rotate(90deg);
}

.thank-you-steps {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.thank-you-steps span {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border-dark);
  color: var(--color-text-light);
  font-weight: 850;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.8%, -1.2%, 0);
  }
}

@keyframes wheelPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: rotate(0deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: rotate(8deg) scale(1.04);
  }
}

@media (max-width: 1023px) {
  section {
    padding-block: 76px;
  }

  .platform-grid,
  .pricing-grid,
  .process-grid,
  .compare-grid,
  .contact-grid,
  .split-grid,
  .footer-grid,
  .local-scenarios {
    grid-template-columns: 1fr 1fr;
  }

  .visibility-layout {
    grid-template-columns: 1fr;
  }

  .visibility-copy {
    position: static;
  }

  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-example {
    grid-template-columns: 1fr;
  }

  .image-placeholder,
  .service-image {
    width: min(300px, 100%);
  }

  .header-cta {
    display: none;
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    font-weight: 900;
  }

  .site-nav {
    position: absolute;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: var(--color-chocolate-900);
    border: 1px solid var(--color-border-dark);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    padding-block: 100px 78px;
  }

  .wheel-accent {
    width: 78px;
  }

  section {
    padding-block: 58px;
  }

  .platform-grid,
  .pricing-grid,
  .process-grid,
  .compare-grid,
  .contact-grid,
  .split-grid,
  .footer-grid,
  .local-scenarios,
  .field-grid,
  fieldset,
  .problem-grid,
  .municipality-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .thv-steps,
  .thv-score-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
/* Responsive adjustments for the longer header CTA */
.header-cta {
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap; /* Keeps the text on one line for desktop/tablet */
}

@media (max-width: 850px) {
  .header-cta {
    font-size: 0.9rem; /* Shrinks the font slightly to fit medium screens */
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .header-cta {
    font-size: 0.85rem;
    padding: 8px 12px;
    white-space: normal; /* Allows the text to stack on very small screens */
    line-height: 1.2;
    max-width: 140px; /* Forces a clean, two-line wrap if needed */
  }
}
/* =========================================
   Mobile Sticky Bottom CTA Bar
   ========================================= */

/* Hide by default on desktop/larger screens */
.mobile-bottom-bar {
  display: none; 
}

/* Activate only on mobile and small tablet screens */
@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff; /* Solid white background */
    padding: 12px 15px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1); /* Soft drop shadow above the bar */
    z-index: 9999; /* Ensures it stays on top of all other page content */
  }

  .mobile-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1.05rem;
    font-weight: 800;
    box-sizing: border-box;
    margin: 0;
  }

  /* Add padding to the bottom of the body so the footer isn't permanently covered */
  body {
    padding-bottom: 80px; 
  }

  /* Hide the original header CTA on mobile so we don't have two buttons competing */
  .site-header .header-cta {
    display: none;
  }
}