:root {
  --navy: #0e4a73;
  --blue: #dceeff;
  --accent: #39b9d6;
  --text: #0f172a;
  --muted: #667085;
  --soft: #f6fbff;
  --line: rgba(14, 74, 115, .14);
  --shadow: 0 24px 70px rgba(14, 74, 115, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Manrope, "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
input, select, textarea { width: 100%; }

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: .9rem 1.1rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(57, 185, 214, .48);
  outline-offset: 3px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}
.section-pad { padding: 92px 0; }
.section-pad-sm { padding: 58px 0; }
.soft { background: var(--soft); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 0;
  right: 0;
  padding: 0 16px;
}
.nav {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 50px rgba(14, 74, 115, .12);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(14, 74, 115, .22);
}
.brand strong { display: block; font-size: 1rem; line-height: 1; }
.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(14, 74, 115, .72);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.nav-menu {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-menu a,
.nav-cta {
  padding: 12px 15px;
  border-radius: 999px;
  color: rgba(15, 23, 42, .72);
  font-size: .92rem;
  font-weight: 800;
  transition: .25s ease;
}
.nav-menu a:hover { background: rgba(220, 238, 255, .72); color: var(--navy); }
.nav-cta {
  display: none;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 30px rgba(14, 74, 115, .22);
}
.nav-toggle {
  display: inline-grid;
  gap: 4px;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
}
.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
}

.hero {
  min-height: auto;
  padding-top: 138px;
  padding-bottom: 64px;
  background:
    linear-gradient(135deg, rgba(220, 238, 255, .82), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(57, 185, 214, .10), transparent 52%);
}
.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(3rem, 12vw, 6.6rem);
  line-height: .98;
  letter-spacing: -0.04em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 7vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
h3 { margin-bottom: 12px; font-size: 1.35rem; }
.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 42px rgba(14, 74, 115, .25);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  color: var(--navy);
  box-shadow: 0 12px 34px rgba(14, 74, 115, .09);
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.hero-proof span,
.hero-proof a {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 900;
  transition: transform .22s ease, border .22s ease, box-shadow .22s ease, background .22s ease;
}
.hero-proof a:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 185, 214, .55);
  background: #fff;
  box-shadow: 0 12px 28px rgba(14, 74, 115, .12);
}
.hero-photo {
  position: relative;
  overflow: hidden;
  border: 12px solid #fff;
  border-radius: 42px;
  box-shadow: var(--shadow);
  background: #fff;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.glass-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 26px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 50px rgba(14, 74, 115, .16);
  backdrop-filter: blur(16px);
}
.glass-card strong,
.glass-card span { display: block; }
.glass-card strong { color: var(--navy); font-size: 1.25rem; }
.glass-card span { margin-top: 5px; color: var(--muted); }

.trust-grid,
.service-grid,
.area-grid,
.steps,
.gallery {
  display: grid;
  gap: 18px;
}
.mini-card,
.service-card,
.area-card,
.step,
.ba-card,
.review-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(14, 74, 115, .08);
}
.mini-card,
.service-card,
.area-card,
.step,
.ba-card { padding: 26px; }
.service-card span,
.step b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 17px;
  background: var(--blue);
  color: var(--navy);
  font-weight: 900;
}
.website-service-icon {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 18px;
}
.mini-card p,
.service-card p,
.step p,
.section-head p,
.about p,
.trustpilot p,
.contact-copy p,
.simple-card p {
  color: var(--muted);
  line-height: 1.75;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.gallery { grid-template-columns: 1fr; }
.offer-gallery .ba-card {
  padding: 12px;
}
.offer-gallery .ba-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  object-fit: cover;
  background: var(--soft);
}
.ba-card h3 { padding-left: 4px; }
.ba-slider {
  --pos: 52%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--soft);
  aspect-ratio: 3 / 4;
  user-select: none;
  touch-action: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after-wrap {
  position: absolute;
  inset: 0;
  width: var(--pos);
  overflow: hidden;
}
.ba-after { width: calc(100% / (var(--pos-number, .52))); max-width: none; }
.ba-slider::before,
.ba-slider::after {
  position: absolute;
  z-index: 2;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
}
.ba-slider::before { content: "Efter"; left: 14px; background: #fff; color: var(--navy); }
.ba-slider::after { content: "Før"; right: 14px; background: rgba(15, 23, 42, .72); color: #fff; }
.ba-handle {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(14, 74, 115, .2);
  cursor: ew-resize;
}
.ba-handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 14px 38px rgba(14, 74, 115, .24);
  font-weight: 900;
}

.process { background: #fff; }
.step b { background: var(--navy); color: #fff; }
.about-grid,
.contact-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.about-photo {
  overflow: hidden;
  border: 12px solid #fff;
  border-radius: 38px;
  box-shadow: var(--shadow);
  background: #fff;
}
.about-photo img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}
.area-card {
  background: linear-gradient(135deg, #fff, rgba(220, 238, 255, .72));
}
.area-card p {
  color: var(--muted);
  line-height: 1.75;
}
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}
.area-links a {
  padding: 11px 15px;
  border: 1px solid rgba(14, 74, 115, .12);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  transition: transform .22s ease, border .22s ease, box-shadow .22s ease, background .22s ease;
}
.area-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 185, 214, .55);
  background: rgba(220, 238, 255, .72);
  box-shadow: 0 12px 28px rgba(14, 74, 115, .10);
}
.area-links a.priority-link {
  border-color: rgba(57, 185, 214, .48);
  background: linear-gradient(135deg, var(--blue), #fff);
  box-shadow: 0 10px 24px rgba(14, 74, 115, .08);
}
.area-cta {
  margin-top: 32px;
  text-align: center;
}
.trustpilot {
  background:
    linear-gradient(135deg, rgba(220, 238, 255, .82), rgba(255, 255, 255, 0) 38%),
    #fff;
}
.review-grid {
  display: grid;
  gap: 18px;
}
.review-card {
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 68px rgba(14, 74, 115, .13);
}
.stars {
  margin-bottom: 18px;
  color: #f5b301;
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: .08em;
}
.review-card p {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.7;
}
.trustpilot-cta {
  margin-top: 32px;
  text-align: center;
}
.trustpilot-cta p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .96rem;
}

.contact {
  background: #0f172a;
  color: #fff;
}
.contact-copy p { color: rgba(255, 255, 255, .72); }
.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-links a {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 900;
}
.lead-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  color: var(--text);
}
.form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: .92rem;
  font-weight: 900;
}
.form-row label span { color: var(--muted); font-weight: 700; }
.form-row input,
.form-row select,
.form-row textarea {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--text);
  transition: border .2s ease, box-shadow .2s ease;
}
.form-row textarea { min-height: 132px; resize: vertical; }
.service-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.service-choice-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 30px rgba(14, 74, 115, .06);
}
.service-choice-grid input {
  width: 18px;
  height: 18px;
  min-height: 0;
  padding: 0;
  accent-color: var(--primary);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(57, 185, 214, .7);
  box-shadow: 0 0 0 4px rgba(57, 185, 214, .14);
  outline: 0;
}
.form-submit { width: 100%; min-height: 58px; }
.lead-form.requires-customer-type:not(.has-customer-type) [data-customer-type-step] ~ :not(.hp-field) {
  display: none !important;
}
.contact-choice-cards,
.compact-service-grid,
.individual-service-list {
  display: grid;
  gap: 12px;
}
.contact-choice-cards { grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr)); }
.contact-choice-cards label,
.compact-service-grid label,
.individual-service-row {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(220, 238, 255, .86);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  cursor: pointer;
}
.contact-choice-cards input,
.compact-service-grid input,
.inline-choice input,
.individual-service-row input {
  width: auto;
  min-height: auto;
}
.contact-choice-cards input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-choice-cards label:focus-within {
  border-color: rgba(57, 185, 214, .82);
  box-shadow: 0 0 0 4px rgba(57, 185, 214, .14);
}
.contact-choice-cards span,
.compact-service-grid span {
  display: grid;
  gap: 5px;
}
.contact-choice-cards strong,
.compact-service-grid strong,
.individual-service-row strong {
  line-height: 1.22;
  overflow-wrap: anywhere;
}
.contact-choice-cards small,
.compact-service-grid small {
  color: rgba(15, 23, 42, .62);
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-choice-cards label:has(input:checked),
.compact-service-grid label:has(input:checked) {
  border-color: rgba(57, 185, 214, .82);
  box-shadow: 0 16px 38px rgba(14, 74, 115, .12);
}
.compact-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.compact-service-grid label[hidden],
[data-business-field][hidden],
[data-service-catalog][hidden],
[data-main-interval-row][hidden],
[data-individual-intervals][hidden],
.individual-service-list[hidden],
[data-service-repeat][hidden] {
  display: none !important;
}
.inline-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.inline-choice label,
.individual-service-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.individual-service-row {
  cursor: default;
}
.field-hint {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 750;
}
.seo-page .section {
  padding: 72px 0;
}
.seo-hero {
  padding: 96px 0 52px;
  background:
    linear-gradient(135deg, rgba(220, 238, 255, .92), rgba(255, 255, 255, 0) 46%),
    #fff;
}
.seo-hero-grid,
.seo-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 36px;
  align-items: center;
}
.seo-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: .94;
}
.seo-hero-card,
.seo-contact-card,
.seo-section-stack,
.seo-area-panel,
.seo-section-stack details {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(14, 74, 115, .08);
}
.seo-hero-card {
  display: grid;
  gap: 8px;
  min-height: 220px;
  align-content: end;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(220, 238, 255, .72), rgba(255, 255, 255, .88)),
    url("../img/hero-rentvand.jpg") center/cover;
  overflow: hidden;
}
.seo-hero-card strong {
  color: var(--navy);
  font-size: 1.45rem;
}
.seo-hero-card span {
  color: var(--text);
  font-weight: 850;
}
.seo-intro {
  background: var(--soft);
}
.seo-two-column {
  align-items: start;
}
.seo-two-column article:first-child p,
.seo-section-stack p {
  color: var(--muted);
  line-height: 1.75;
}
.seo-contact-card,
.seo-section-stack {
  padding: 28px;
}
.seo-contact-card h2 {
  margin-top: 0;
}
.seo-lead-form {
  margin-top: 18px;
  border-radius: 24px;
  box-shadow: none;
}
.seo-section-stack {
  display: grid;
  gap: 22px;
}
.local-services {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--text);
  font-weight: 760;
  line-height: 1.6;
}
.local-intervals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.local-intervals span {
  padding: 11px 15px;
  border: 1px solid rgba(14, 74, 115, .12);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}
.seo-area-accordion {
  display: grid;
  gap: 14px;
}
.seo-area-panel {
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(14, 74, 115, .06);
}
.seo-area-panel button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: linear-gradient(135deg, #fff, rgba(220, 238, 255, .72));
  color: var(--navy);
  cursor: pointer;
}
.seo-area-panel button span {
  font-size: 1.12rem;
  font-weight: 950;
}
.seo-area-panel button strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: .88rem;
}
.seo-area-panel .area-links {
  display: none;
  margin: 0;
  padding: 0 20px 20px;
}
.seo-area-panel.is-open .area-links {
  display: flex;
}
.seo-section-stack details {
  padding: 18px 20px;
  box-shadow: none;
}
.seo-section-stack summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 950;
}
.seo-section-stack details p {
  margin-bottom: 0;
}
.hp-field {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.footer {
  padding: 58px 0 104px;
  background:
    linear-gradient(135deg, rgba(220, 238, 255, .68), rgba(255, 255, 255, 0) 42%),
    #fff;
  border-top: 1px solid rgba(14, 74, 115, .10);
}
.footer-columns {
  display: grid;
  gap: 30px;
}
.footer-brand p {
  max-width: 360px;
  margin: 20px 0;
  color: var(--muted);
  line-height: 1.7;
}
.footer-contact,
.footer-nav {
  display: grid;
  gap: 12px;
}
.footer-contact a,
.footer-nav a {
  color: var(--muted);
  font-weight: 800;
  transition: color .2s ease, transform .2s ease;
}
.footer-contact a {
  color: var(--navy);
}
.footer-nav h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-nav a:hover,
.footer-contact a:hover,
.footer-nav a.is-active {
  color: var(--navy);
  transform: translateX(2px);
}
.form-consent {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
}
.form-consent a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.floating-actions {
  position: fixed;
  z-index: 60;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.floating-actions a {
  display: grid;
  min-height: 52px;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(14, 74, 115, .22);
}
.float-call { background: #fff; color: var(--navy); }
.float-offer { background: var(--navy); color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(135deg, var(--blue), #fff 45%, rgba(57, 185, 214, .16));
}
.simple-card {
  width: min(760px, 100%);
  padding: clamp(28px, 7vw, 58px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}
.simple-card img { border-radius: 22px; margin-bottom: 22px; }
.simple-card h1 {
  max-width: 620px;
  font-size: clamp(2.2rem, 8vw, 4.4rem);
  line-height: 1.02;
}
.simple-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}
.text-page p { font-size: 1.06rem; }
.text-page a:not(.btn) { color: var(--navy); font-weight: 900; text-decoration: underline; }

.legal-page {
  background:
    linear-gradient(135deg, rgba(220, 238, 255, .82), rgba(255, 255, 255, 0) 34%),
    #fff;
}
.legal-hero {
  padding: 142px 0 48px;
}
.legal-shell {
  width: min(850px, calc(100% - 32px));
  max-width: 850px;
  margin-inline: auto;
}
.legal-hero h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
}
.legal-section {
  padding: 0 0 88px;
}
.legal-card {
  padding: clamp(26px, 5vw, 54px);
}
.legal-meta {
  margin-bottom: 34px;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 900;
}
.legal-card h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}
.legal-card h2:first-of-type {
  margin-top: 0;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.82;
}
.legal-card ul {
  padding-left: 1.2rem;
  margin: 0 0 20px;
}
.legal-card a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.local-services {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}
.local-services li {
  list-style: none;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(220, 238, 255, .38);
  color: var(--navy);
  font-weight: 900;
}
.local-intervals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px;
}
.local-intervals span {
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--navy);
  font-weight: 900;
}
.local-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.local-page {
  background: #fff;
}
.local-container {
  width: min(1000px, calc(100% - 32px));
  margin-inline: auto;
}
.local-hero {
  padding: 138px 0 56px;
  background:
    linear-gradient(135deg, rgba(220, 238, 255, .82), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(57, 185, 214, .10), transparent 60%);
}
.local-hero-grid,
.local-content-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}
.breadcrumb a {
  color: var(--navy);
}
.local-hero h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
}
.local-hero-media {
  overflow: hidden;
  border: 12px solid #fff;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow);
}
.local-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.local-panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(14, 74, 115, .08);
}
.local-panel {
  padding: clamp(24px, 4vw, 38px);
}
.local-panel h2,
.faq-item h3 {
  letter-spacing: -0.02em;
}
.local-panel h2 {
  font-size: clamp(1.75rem, 4vw, 2.55rem);
}
.local-panel p,
.faq-item p {
  color: var(--muted);
  line-height: 1.82;
}
.local-sidecard {
  align-self: stretch;
}
.local-links {
  justify-content: center;
}
.local-before-after {
  overflow: hidden;
  margin-top: 22px;
  border-radius: 24px;
  background: var(--soft);
}
.local-before-after img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.faq-list {
  display: grid;
  gap: 16px;
}
.faq-item {
  padding: 24px;
}
.faq-item h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.12rem;
}
.faq-item p {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .lead-form { grid-template-columns: repeat(2, 1fr); padding: 32px; }
  .service-choice-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wide, .form-submit { grid-column: 1 / -1; }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-columns { grid-template-columns: 1.4fr .85fr .85fr .85fr; }
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .nav-menu { display: flex; }
  .nav-cta { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.04fr .86fr; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .area-grid.area-grid-three { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery .ba-card { max-width: 560px; }
  .gallery .ba-card:nth-child(odd):last-child { justify-self: center; }
  .about-grid { grid-template-columns: .82fr 1.18fr; }
  .contact-grid { grid-template-columns: .82fr 1.18fr; }
  .local-hero-grid { grid-template-columns: 1.05fr .95fr; }
  .local-content-grid { grid-template-columns: 1.15fr .85fr; }
  .floating-actions {
    left: auto;
    grid-template-columns: 1fr;
    width: 154px;
  }
  .footer { padding-bottom: 58px; }
}

@media (max-width: 979px) {
  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: grid; }
  .nav-menu a { padding: 14px 16px; }
  .seo-hero-grid,
  .seo-two-column {
    grid-template-columns: 1fr;
  }
  .contact-choice-cards,
  .compact-service-grid {
    grid-template-columns: 1fr;
  }
  .website-service-icon {
    width: 112px;
    height: 112px;
  }
}

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