/* North Country Detail Finder — Design System */
:root {
  --navy-950: #0a0f1a;
  --navy-900: #0f1729;
  --navy-800: #162033;
  --navy-700: #1e2d47;
  --slate-600: #4a5d7a;
  --slate-400: #8fa3bf;
  --slate-200: #d4dce8;
  --gold-500: #d4a853;
  --gold-400: #e8c06a;
  --gold-300: #f5d88a;
  --white: #ffffff;
  --success: #22c55e;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10, 15, 26, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 15, 26, 0.25);
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-sans);
  --max-width: 1200px;
  --header-height: 76px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--max-width));
  max-width: 100%;
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

.text-gold { color: var(--gold-500); }
.text-muted { color: var(--slate-600); }
.text-light { color: var(--slate-400); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold-500);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.75rem;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  min-width: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  flex-shrink: 0;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--slate-200);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-desktop a:hover { color: var(--gold-400); }

.nav-desktop a.btn-primary,
.mobile-nav a.btn-primary {
  color: var(--navy-950);
}

.nav-desktop a.btn-primary:hover,
.mobile-nav a.btn-primary:hover {
  color: var(--navy-950);
}

.nav-cta { margin-left: 0.5rem; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--navy-950);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

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

.mobile-nav a {
  color: var(--slate-200);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--navy-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 15, 26, 0.94) 0%, rgba(10, 15, 26, 0.75) 45%, rgba(10, 15, 26, 0.55) 100%),
    url("../images/hero-detailing.jpg") center/cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--gold-300);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold-400); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--slate-400);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-400);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 0.15rem;
}

/* Lead Form Card */
.lead-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.lead-card h3 {
  margin-bottom: 0.35rem;
  color: var(--navy-900);
}

.lead-card .subtitle {
  color: var(--slate-600);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label,
.form-group-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.35rem;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--slate-600);
  margin: -0.15rem 0 0.65rem;
  line-height: 1.4;
}

.service-check-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.service-check-action {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-500);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-check-action:hover { color: var(--navy-800); }

.service-check-divider {
  color: var(--slate-400);
  font-size: 0.85rem;
}

.service-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  min-width: 0;
}

.service-check {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.75rem;
  text-align: center;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  background: var(--white);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  min-width: 0;
}

.service-check:hover {
  border-color: var(--gold-300);
  background: rgba(212, 168, 83, 0.04);
}

.service-check:has(input:checked) {
  border-color: var(--gold-500);
  background: rgba(212, 168, 83, 0.12);
  box-shadow: 0 0 0 1px rgba(212, 168, 83, 0.25);
}

.service-check:has(input:checked) .service-check-text {
  font-weight: 600;
  color: var(--navy-900);
}

.service-check:has(input:focus-visible) {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

.service-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  min-width: 0;
  max-width: 1px;
  pointer-events: none;
}

.service-check-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1.25;
  overflow-wrap: break-word;
}

.form-group.has-error .service-checkboxes {
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: var(--radius);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.35);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--navy-900);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--slate-600);
}

.form-trust svg { color: var(--success); flex-shrink: 0; }

@media (max-width: 420px) {
  .service-checkboxes { grid-template-columns: 1fr; }
}

/* Trust Bar */
.trust-bar {
  background: var(--navy-900);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--slate-200);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item svg { color: var(--gold-500); }

/* Sections */
.section { padding: 5rem 0; }
.section-dark {
  background: var(--navy-950);
  color: var(--white);
}
.section-alt { background: #f7f9fc; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--slate-600);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.section-dark .section-header p { color: var(--slate-400); }

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 180px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body { padding: 1.5rem; }

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--slate-600); font-size: 0.92rem; margin-bottom: 1rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-link:hover { gap: 0.6rem; }

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-card-image {
  height: 140px;
  overflow: hidden;
}

.step-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.step-card:hover .step-card-image img { transform: scale(1.05); }

.step-card-body { padding: 1.5rem 1.25rem 2rem; }

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.step-card h3 { margin-bottom: 0.5rem; color: var(--white); }
.step-card p { color: var(--slate-400); font-size: 0.9rem; }

/* Areas */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.area-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.area-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}

.area-card:hover .area-card-bg { transform: scale(1.05); }

.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 26, 0.9) 0%, rgba(10, 15, 26, 0.3) 60%, transparent 100%);
}

.area-card-content {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  color: var(--white);
  width: 100%;
}

.area-card h3 { margin-bottom: 0.35rem; }
.area-card p { font-size: 0.88rem; color: var(--slate-400); margin-bottom: 1rem; }

/* Why Choose */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--navy-900);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

.feature-item h3 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.feature-item p { color: var(--slate-600); font-size: 0.9rem; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-photo {
  height: 160px;
  overflow: hidden;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card .stars,
.testimonial-card blockquote,
.testimonial-card .testimonial-author {
  padding: 0 2rem;
}

.testimonial-card .stars { padding-top: 1.5rem; }
.testimonial-card .testimonial-author { padding-bottom: 2rem; }

.stars { color: var(--gold-500); margin-bottom: 1rem; display: flex; gap: 2px; }

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--navy-800);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy-800);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name { font-weight: 600; font-size: 0.9rem; }
.author-loc { font-size: 0.8rem; color: var(--slate-600); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--slate-200);
}

.faq-question {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  text-align: left;
  overflow-wrap: break-word;
}

.faq-question svg { color: var(--gold-500); flex-shrink: 0; transition: transform 0.2s; }

.faq-question-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.logo-text {
  min-width: 0;
  overflow-wrap: anywhere;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p { color: var(--slate-600); font-size: 0.95rem; line-height: 1.7; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 41, 0.92), rgba(22, 32, 51, 0.88));
  z-index: 0;
}

.cta-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.cta-banner h2,
.cta-banner p,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p {
  color: var(--slate-400);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Content images */
.content-figure {
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.content-figure figcaption {
  padding: 0.75rem 1rem;
  background: #f7f9fc;
  font-size: 0.85rem;
  color: var(--slate-600);
  text-align: center;
}

.content-images-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.content-images-row img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-media-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-media-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.25s;
}

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

.feature-card-img {
  height: 160px;
  overflow: hidden;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.feature-card:hover .feature-card-img img { transform: scale(1.05); }

.feature-card-body { padding: 1.25rem; }
.feature-card-body h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.feature-card-body p { font-size: 0.88rem; color: var(--slate-600); }

.sidebar-card-img {
  margin: -2rem -2rem 1.5rem;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.sidebar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.page-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
}

.page-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.page-gallery-item:hover img { transform: scale(1.05); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.faq-side-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.faq-side-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.benefit-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  min-width: 0;
}

.benefit-cards-grid > * {
  min-width: 0;
}

.benefit-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  min-width: 0;
}

.benefit-card-img {
  height: 150px;
  overflow: hidden;
}

.benefit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card-body {
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.benefit-card-body .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.benefit-card-body h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.benefit-card-body p { font-size: 0.85rem; color: var(--slate-600); }

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.image-strip-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 120px;
}

.image-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thank-you-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

.thank-you-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.privacy-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.privacy-hero-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:first-child { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

/* Page Hero (inner pages) */
.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-size: cover;
  background-position: center;
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--gold-400); }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { font-size: 1.1rem; color: var(--slate-400); max-width: 600px; }

/* Content blocks */
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: 3rem;
  align-items: start;
}

.content-grid > * {
  min-width: 0;
}

.content-main {
  min-width: 0;
  overflow-wrap: break-word;
}

.content-main h2 { margin: 2rem 0 1rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--slate-600); margin-bottom: 1rem; line-height: 1.75; }
.content-main ul { margin: 1rem 0 1.5rem; padding-left: 1.25rem; list-style: disc; }
.content-main ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
  list-style: decimal;
  overflow-wrap: break-word;
}
.content-main li { color: var(--slate-600); margin-bottom: 0.5rem; overflow-wrap: break-word; }

.content-steps li {
  margin-bottom: 0.75rem;
}

.content-steps li:last-child {
  margin-bottom: 0;
}

.content-main strong {
  color: var(--navy-900);
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  border: 1px solid rgba(0, 0, 0, 0.04);
  min-width: 0;
  max-width: 100%;
}

.lead-form {
  min-width: 0;
  max-width: 100%;
}

.check-list { margin: 1.5rem 0; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: var(--slate-600);
}

.check-list svg { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-400);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--slate-400); transition: color 0.2s; }
.footer-social a:hover { color: var(--gold-400); }

/* Thank you page */
.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--navy-950);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .lead-card { max-width: 480px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .split-media { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-side-image { position: static; }
  .faq-side-image img { height: 280px; }
  .image-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .nav-desktop { display: none; }
  .mobile-toggle { display: block; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mobile-toggle { display: block; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-cards-grid { grid-template-columns: 1fr; }
  .benefit-cards-grid { grid-template-columns: 1fr; }
  .content-images-row { grid-template-columns: 1fr; }
  .page-gallery { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .image-strip { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child,
  .gallery-item:nth-child(4) { grid-row: auto; grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
}

/* Lean layout — gradients & icons instead of decorative photos */
.page-hero-bg--brand,
.area-card-bg--brand {
  background: linear-gradient(145deg, var(--navy-950) 0%, var(--navy-800) 45%, #1e3a5f 100%);
}

.cta-banner--brand {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 50%, #1a3358 100%);
}

.cta-banner--brand .cta-banner-bg { display: none; }

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

.area-card--compact {
  min-height: 0;
  align-items: stretch;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.area-card--compact .area-card-bg--brand { opacity: 1; }
.area-card--compact:hover .area-card-bg { transform: none; }
.area-card--compact .area-card-overlay {
  background: transparent;
}

.area-card--compact .area-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 0.5rem;
  padding: 1.35rem 1.5rem;
}

.area-card--compact h3 {
  margin: 0;
  line-height: 1.3;
}

.area-card--compact p {
  margin: 0;
  line-height: 1.5;
}

.area-card--compact .service-link {
  margin-top: 0.25rem;
}

.service-card--icon .service-card-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

.service-card--icon .service-icon {
  margin-bottom: 1rem;
}

.step-card--icon .step-card-body {
  padding: 2rem 1.25rem 2rem;
}

.icon-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.icon-feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s;
  min-width: 0;
}

.icon-feature-card:hover { transform: translateY(-3px); }

.icon-feature-card .feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background: rgba(212, 168, 83, 0.15);
  color: var(--gold-500);
}

.icon-feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.icon-feature-card p {
  font-size: 0.88rem;
  color: var(--slate-600);
  overflow-wrap: break-word;
}

.benefit-card--icon {
  display: flex;
  gap: 1rem;
  align-items: center;
  height: 100%;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  min-width: 0;
}

.benefit-card--icon .feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.15);
  color: var(--gold-500);
  border-radius: 10px;
}

.benefit-card--icon > div:not(.feature-icon) {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  overflow-wrap: break-word;
}

.benefit-card--icon h3 {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.3;
}

.benefit-card--icon p {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.author-avatar--initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.faq-layout--single {
  display: block;
  width: 100%;
  max-width: none;
}

.faq-layout--single .faq-list {
  max-width: none;
  width: 100%;
}

.nearby-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.nearby-link-card {
  display: block;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--slate-200);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nearby-link-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow);
}

.nearby-link-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--navy-900);
}

.nearby-link-card p {
  font-size: 0.85rem;
  color: var(--slate-600);
}

.thank-you-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
}

@media (max-width: 1024px) {
  .icon-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .icon-feature-grid { grid-template-columns: minmax(0, 1fr); }
  .areas-grid--quad { grid-template-columns: minmax(0, 1fr); }
  .nearby-links { grid-template-columns: minmax(0, 1fr); }
  .benefit-cards-grid { grid-template-columns: minmax(0, 1fr); }
  .service-checkboxes { grid-template-columns: minmax(0, 1fr); }
  .logo { font-size: clamp(0.82rem, 3.6vw, 1.05rem); }
  .sidebar-card { padding: 1.25rem; }
  .section { padding: 3.5rem 0; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
