:root {
  --bg: #edf3ef;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --ink: #102033;
  --muted: #5c6672;
  --line: rgba(16, 32, 51, 0.12);
  --brand: #1faa54;
  --brand-dark: #8f4616;
  --accent: #0d1b2a;
  --accent-soft: #dae4ee;
  --shadow: 0 18px 60px rgba(16, 32, 51, 0.1);
  --shadow-soft: 0 24px 48px rgba(16, 32, 51, 0.08);
  --radius: 24px;
  --container: 1160px;
  --green-primary: #22c55e;
  --green-light: #dcfce7;
  --green-dark: #166534;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --bg-light: #f5f5f5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(13, 27, 42, 0.09), transparent 22%),
    linear-gradient(180deg, #f8fbf7 0%, var(--bg-light) 42%, #eef4f0 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin: 0 auto;
}

.hero {
  padding: 1rem 0 3.75rem;
}

.topbar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 1.25rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  z-index: 3;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 0.15rem;
}

.brand small,
.section-label,
.eyebrow,
.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: #22c55e;
  font-weight: 800;
}

.nav-shell,
.nav-menu,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-shell {
  justify-content: space-between;
  gap: 1.25rem;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.35rem;
  justify-content: center;
}

.nav-menu li {
  position: relative;
}

.nav-link,
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0 0.95rem;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-parent:hover,
.has-menu:hover > .nav-parent,
.has-menu:focus-within > .nav-parent {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green-dark);
}

.nav-chevron {
  font-size: 0.65rem;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 220px;
  padding: 0.55rem;
  display: grid;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown a {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  color: var(--text-dark);
  font-size: 0.92rem;
}

.nav-dropdown a:hover {
  background: rgba(34, 197, 94, 0.08);
  color: var(--green-dark);
}

.has-menu:hover > .nav-dropdown,
.has-menu:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-actions {
  gap: 0.7rem;
}

.phone {
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-cta {
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 1.2rem;
  background: var(--green-primary);
  color: #fff;
  box-shadow: none;
}

.nav-cta:hover {
  background: #1faa54;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-dark);
}

.hero-grid,
.intro-grid,
.split,
.area-grid,
.cta-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.intro-grid > *,
.split > *,
.area-grid > *,
.cta-grid > * {
  min-width: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  max-width: 20ch;
}

h3 {
  font-size: 1.3rem;
}

p,
li,
dd,
dt,
summary {
  font-size: 1rem;
}

.lead {
  max-width: 46ch;
  font-size: 1rem;
  color: rgba(220, 252, 231, 0.94);
}

.hero-card,
.card,
.local-box,
.contact-card,
.faq-list details,
.quote-grid blockquote {
  backdrop-filter: blur(16px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  z-index: 2;
  min-height: 100%;
  height: 100%;
  border: none;
  box-shadow: 0 22px 40px rgba(17, 24, 39, 0.14);
  color: #fff;
  overflow: hidden;
}

.hero-panel {
  padding: 2.5rem;
  background: linear-gradient(145deg, #27cf63 0%, #1faa54 100%);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(34, 197, 94, 0.18);
}

.hero-panel .eyebrow {
  margin: 0 0 1rem;
  display: none;
  color: rgba(209, 250, 229, 0.96);
}

.hero-panel h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-panel .lead {
  margin: 0;
}

.hero-stats {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 2rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.hero-stats div {
  flex: 1;
}

.hero-stats dt,
.hero-stats dd {
  margin: 0;
}

.hero-stats dt {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
}

.hero-stats dd {
  margin-top: 0.25rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.stats {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.stats div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

dt {
  font-weight: 800;
}

dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary,
.btn-outline {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.btn-full {
  width: 100%;
}

.hero-cta,
.hero-points,
.checklist,
.local-box ul {
  display: flex;
  gap: 0.9rem;
}

.hero-cta {
  margin: 1.75rem 0 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-panel .btn-primary {
  background: #fff;
  color: var(--green-dark);
}

.hero-panel .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: #fff;
}

.hero-panel .btn-primary:hover {
  background: #f0fdf4;
}

.hero-panel .btn-secondary:hover {
  background: #fff;
  color: var(--green-dark);
}

.hero-points,
.checklist,
.local-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
}

.hero-points li,
.checklist li,
.local-box li {
  position: relative;
  padding-left: 1.4rem;
}

.hero-points li::before,
.checklist li::before,
.local-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--brand);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-stack,
.hero-main-card {
  width: min(100%, 540px);
  border-radius: 24px;
}

.hero-main-card {
  position: relative;
  z-index: 3;
  height: 540px;
}

.hero-stack {
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto 0;
  height: 500px;
  overflow: hidden;
  background: #d1d5db;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.hero-stack-back {
  transform: translate(64px, 6px) scale(0.9);
  opacity: 0.42;
  z-index: 1;
}

.hero-stack-mid {
  transform: translate(34px, 2px) scale(0.95);
  opacity: 0.68;
  z-index: 2;
}

.hero-stack-content {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  gap: 0.25rem;
  color: var(--text-dark);
}

.hero-stack-content strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
  max-width: 12ch;
}

.hero-card-image,
.hero-stack-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stack::before,
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-stack::before {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.06), rgba(17, 24, 39, 0.18));
}

.hero-card::before {
  inset: auto 0 0 0;
  height: 64%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 24, 39, 0.82) 26%, rgba(17, 24, 39, 0.62) 48%, rgba(17, 24, 39, 0.3) 72%, rgba(17, 24, 39, 0) 100%);
}

.hero-card-image {
  position: absolute;
  inset: 0;
}

.hero-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient( 0.5deg, rgba(8, 10, 16, 0.92) 0%, rgba(8, 10, 16, 0.7) 25%, rgba(8, 10, 16, 0) 45% );
}

.hero-card .card-kicker {
  margin: 0 0 0.9rem;
  color: rgba(220, 252, 231, 0.92);
}

.hero-card h2 {
  max-width: 11ch;
  margin-bottom: 0.9rem;
  color: #fff;
}

.hero-card p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.88);
  display: none;
}

.hero-card .hero-points {
  margin-top: 1.4rem;
  gap: 0.7rem;
}

.hero-card .hero-points li {
  color: rgba(255, 255, 255, 0.92);
}

.hero-card .hero-points li::before {
  background: #23bd5c;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
}

.hero-nav-prev {
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
}

.hero-nav-next {
  right: 1rem;
  background: var(--green-primary);
  color: #fff;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 1.5rem auto auto 50%;
  width: min(92vw, 1180px);
  height: calc(100% - 3rem);
  transform: translateX(-50%);
  border-radius: 36px;
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.intro {
  padding-top: 1rem;
}

.intro-grid,
.split,
.area-grid,
.cta-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head p,
.area-grid p,
.contrast-copy p,
.contact-card p,
.footer p,
.card p,
.steps p,
.faq-list p,
.quote-grid p {
  color: var(--muted);
}

.cards,
.steps,
.quote-grid {
  display: grid;
  gap: 1.2rem;
}

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

.card {
  position: relative;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  border: none;
  box-shadow: 0 24px 42px rgba(17, 24, 39, 0.16);
}

.card::before,
.steps article::before,
.local-box::before,
.contact-card::before,
.quote-grid blockquote::before,
.faq-list details::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.95), rgba(200, 107, 42, 0.78));
}

.card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 22, 0.08) 0%, rgba(10, 14, 22, 0.22) 24%, rgba(10, 14, 22, 0.72) 64%, rgba(8, 10, 16, 0.94) 100%);
}

.card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 78%;
  padding: 1.6rem;
  background: linear-gradient(0deg, rgba(8, 10, 16, 0.94) 0%, rgba(8, 10, 16, 0.76) 36%, rgba(8, 10, 16, 0.08) 100%);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 2rem;
  margin-bottom: 1rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.card .card-kicker,
.quote-grid .card-kicker,
.local-box .card-kicker {
  display: block;
  margin: 0 0 0.75rem;
}

.card h3,
.steps h3,
.local-box h3,
.contact-card .big-phone,
.quote-grid p {
  position: relative;
  z-index: 1;
}

.card .card-kicker {
  color: rgba(220, 252, 231, 0.92);
}

.card h3 {
  color: #fff;
  max-width: 12ch;
  margin-bottom: 0.85rem;
}

.card p {
  position: relative;
  z-index: 1;
}

.card p:last-child {
  color: rgba(255, 255, 255, 0.86);
}

.card p:last-child {
  margin-bottom: 0;
}

.intro-grid {
  gap: 3.5rem;
  align-items: center;
}

.intro-media {
  width: 100%;
  height: clamp(420px, 44vw, 520px);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #dfe8e2;
}

.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 220ms ease;
}

.intro-media:hover .intro-image {
  transform: scale(1.03);
}

.intro-content {
  max-width: 520px;
}

.intro-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
}


.intro-content h2 {
  max-width: 20ch;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.intro-description {
  max-width: 500px;
  margin: 0 0 1.9rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.contrast {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  color: #f7f5ef;
}

.contrast::after {
  content: "";
  position: absolute;
  inset: 1.5rem auto 1.5rem 50%;
  width: min(92vw, 1180px);
  transform: translateX(-50%);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(9, 16, 22, 0.58), rgba(9, 16, 22, 0.74)),
    url("assets/hero-electric-3.jpg") center/cover no-repeat;
  opacity: 0.92;
  pointer-events: none;
  z-index: 0;
}

.contrast .section-label,
.contrast .checklist li::before {
  color: #fff;
  background: #1faa54;
}

.contrast::before {
  background:
    radial-gradient(circle at 0% 10%, rgba(34, 197, 94, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.22);
}

.contrast .split {
  position: relative;
  z-index: 1;
  gap: 2rem;
  align-items: center;
}

.contrast-copy {
  max-width: 40rem;
}

.contrast-copy p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.checklist {
  padding: 1.8rem;
  border-radius: 28px;
  background: rgba(10, 18, 24, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contrast .checklist li {
  color: rgba(255, 255, 255, 0.82);
}

.process-grid {
  display: grid;
  gap: 2rem;
}

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

.steps article {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 246, 0.94));
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: var(--shadow-soft);
}

.steps span {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.local-box,
.contact-card,
.quote-grid blockquote {
  position: relative;
  padding: 1.6rem;
}

.area .area-grid,
.pricing .split,
.cta-band .cta-grid {
  align-items: stretch;
}

.area-copy,
.pricing-copy,
.cta-copy {
  padding: 2rem 0.25rem 2rem 0;
}

.local-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 248, 0.92)),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 34%);
}

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

.quote-grid blockquote {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 34%);
}

.faq {
  background: rgba(255, 255, 255, 0.25);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  position: relative;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.72);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding-right: 2rem;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--green-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

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

.faq-list details p {
  margin-bottom: 0;
}

.cta-band {
  padding-bottom: 6rem;
}

.cta-band::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(34, 197, 94, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(12, 23, 34, 0.98), rgba(15, 39, 56, 0.95)),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.28), transparent 36%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(10, 22, 34, 0.18);
}

.contact-card::before {
  background: linear-gradient(90deg, #23bd5c, #7de59f);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card .btn-primary {
  background: #fff;
  color: var(--green-dark);
}

.big-phone {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  background: rgba(248, 251, 248, 0.72);
  backdrop-filter: blur(14px);
}

.legal {
  max-width: 900px;
}

.legal h1 {
  max-width: none;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-block {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-block h2 {
  max-width: none;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

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

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .split,
  .area-grid,
  .cta-grid,
  .footer-grid,
  .cards,
  .steps,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-shell {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(17, 24, 39, 0.1);
  }

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

  .nav-menu,
  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu {
    gap: 0.2rem;
  }

  .nav-link,
  .nav-parent {
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 16px;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0.35rem 0 0.55rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-menu.is-open > .nav-dropdown {
    display: grid;
  }

  .nav-dropdown a {
    padding: 0.7rem 1rem 0.7rem 1.25rem;
  }

  .phone {
    padding: 0.75rem 1rem 0.2rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-bottom: 3rem;
  }

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

  .hero-main-card {
    height: 460px;
  }

  .hero-stack {
    height: 430px;
  }

  .hero-panel {
    padding: 2rem;
  }

  .hero-stats {
    gap: 1rem;
    padding: 1.1rem 1.2rem;
  }

  .intro-content,
  .area-copy,
  .pricing-copy,
  .cta-copy {
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 0;
  }

  .section::before {
    inset: 1rem auto auto 50%;
    height: calc(100% - 2rem);
    border-radius: 24px;
  }

  .contrast::after {
    inset: 1rem auto 1rem 50%;
    border-radius: 24px;
    opacity: 0.36;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .btn,
  .btn-outline,
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }

  .hero-card,
  .card,
  .local-box,
  .contact-card,
  .steps article,
  .faq-list details,
  .quote-grid blockquote {
    border-radius: 20px;
  }

  .container {
    width: min(var(--container), calc(100% - 2rem));
  }

  .topbar {
    padding: 0.8rem 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-panel {
    padding: 1.6rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .intro-content,
  .checklist,
  .local-box,
  .contact-card,
  .quote-grid blockquote,
  .faq-list details,
  .steps article {
    padding: 1.4rem;
  }

  .intro-grid {
    gap: 2rem;
  }

  .intro-media {
    height: 300px;
    border-radius: 20px;
  }

  .intro-content {
    padding: 0;
  }

  .intro-content h2 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .card {
    min-height: 360px;
    padding: 0;
  }

  .card-overlay {
    padding: 1.4rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.1rem;
  }

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

  .hero-main-card,
  .hero-stack {
    width: 100%;
  }

  .hero-main-card {
    height: 340px;
  }

  .hero-stack {
    height: 300px;
  }

  .hero-stack-back {
    transform: translate(24px, 10px) scale(0.92);
  }

  .hero-stack-mid {
    transform: translate(12px, 4px) scale(0.97);
  }

  .hero-card {
    padding: 0;
  }

  .hero-card-overlay {
    padding: 1.5rem;
  }

  .hero-nav-prev {
    left: 0.6rem;
  }

  .hero-nav-next {
    right: 0.6rem;
  }
}
