/* =========================================================
   CLEAN START SOLUTIONS — COMPLETE CSS DESIGN SYSTEM
   Brand: #FFFFFF / #E8EDF4 / #C5CED8 / #2A6AA6 / #1B2430
   Fonts: Bricolage Grotesque (display) + Plus Jakarta Sans (body) — Google Fonts
   ========================================================= */

/* -------------------- CSS Variables -------------------- */
:root {
  --white: #FFFFFF;
  --light-gray: #E8EDF4;
  --mid-gray: #C5CED8;
  --primary: #2A6AA6;
  --dark: #1B2430;
  --body-bg: #FFFFFF;
  --text: #1B2430;
  --text-muted: #4A5568;
  --border: rgba(197, 206, 216, 0.7);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --radius: 24px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --transition: 0.3s ease;
  /* Typography — characterful display sans for headlines, humanist sans for reading */
  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--body-bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* <picture> is a transparent wrapper — never affects layout */
picture {
  display: contents;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* -------------------- Skip Link (ADA) -------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  z-index: 100001;
  transition: top 0.3s;
}

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

/* -------------------- Container -------------------- */
.container {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container.narrow {
  max-width: 780px;
}

/* -------------------- Typography -------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
  color: var(--dark);
}

h1 {
  font-size: 55px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.06;
  color: var(--dark);
}

h2 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--dark);
}

/* Card & step titles stay in the clean sans for crisp legibility */
h3 {
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.2;
}

/* Dense / legal headings (privacy modal) stay in the sans */
h4 {
  font-family: var(--font-sans);
}

p {
  margin: 0;
}

.muted {
  color: var(--text-muted);
}

.muted.lg {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-muted);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow.primary {
  color: var(--primary);
}

.accent-text {
  color: var(--primary);
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.025em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

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

.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #236094;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(42, 106, 166, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: rgba(42, 106, 166, 0.4);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(42, 106, 166, 0.08);
  color: var(--primary);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-light:hover {
  background: var(--light-gray);
  color: var(--primary);
}

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

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

.btn-block {
  width: 100%;
  margin-top: 8px;
}

.row-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* -------------------- Navigation -------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1280px;
  min-height: 100px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  min-width: 0;
  align-items: center;
}

.nav-logo img {
  width: auto;
  height: 72px;
  max-height: 72px;
  max-width: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--dark);
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--primary);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-pill);
  padding: 8px;
  cursor: pointer;
  color: var(--dark);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

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

.nav-mobile a {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 0;
}

.nav-mobile a:hover {
  color: var(--primary);
}

/* Instagram icon + hamburger group (mobile top bar only) */
.nav-mobile-actions {
  display: none; /* revealed alongside the hamburger under 899px */
  align-items: center;
  gap: 8px;
}

.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--mid-gray);
  color: var(--primary);
  transition: background var(--transition), color var(--transition);
}

.nav-ig svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-ig:hover {
  background: rgba(42, 106, 166, 0.08);
}

.nav-ig:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* -------------------- Hero -------------------- */
.hero {
  padding-top: 140px;
  padding-bottom: 48px;
  background: var(--white);
}

.hero-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: end;
  padding-top: 56px;
  padding-bottom: 40px;
}

.hero h1 .highlight {
  font-weight: 700;
  color: var(--primary);
}

.hero-sub {
  max-width: 384px;
  justify-self: end;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(27, 36, 48, 0.9);
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-img img {
  display: block;
  width: 100%;
  height: 60vh;
  min-height: 420px;
  object-fit: cover;
}

.hero-info-wrap {
  position: relative;
  z-index: 2;
  margin-top: -48px;
}

.hero-info {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.9fr) auto;
  align-items: center;
  gap: 24px;
  padding: 32px 48px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(42, 106, 166, 0.18);
  box-shadow: 0 18px 45px -28px rgba(42, 106, 166, 0.35);
}

.hero-info-item {
  min-width: 0;
}

.hero-info-item + .hero-info-item {
  border-left: 2px solid rgba(42, 106, 166, 0.18);
  padding-left: 26px;
}

.hero-info .eyebrow {
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.info-line {
  display: block;
  margin-top: 7px;
  font-family: var(--font-sans);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--primary);
  word-break: break-word;
  text-decoration: none;
  transition: opacity var(--transition);
}

.info-line:hover {
  opacity: 0.8;
}

.info-line.small {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
}

.info-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-info .btn {
  width: auto;
  min-width: 248px;
  min-height: 72px;
  border-radius: 18px;
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.licensed-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(42, 106, 166, 0.08);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.licensed-badge svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* -------------------- Service Areas -------------------- */
.service-areas {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  background: var(--light-gray);
}

.areas-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.areas-label {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
}

.areas-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.area-item {
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
}

.area-divider {
  width: 1px;
  height: 20px;
  background: var(--mid-gray);
}

/* -------------------- Sections -------------------- */
section {
  scroll-margin-top: 120px;
}

/* -------------------- Services -------------------- */
.services {
  background: var(--light-gray);
  padding: 96px 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2 {
  margin-top: 12px;
}

.head-link {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  transition: text-decoration var(--transition);
}

.head-link:hover {
  text-decoration: underline;
  text-underline-offset: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
}

.service-media {
  position: relative;
  overflow: hidden;
}

.service-media img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.badge {
  position: absolute;
  left: 20px;
  top: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.service-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-body li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(27, 36, 48, 0.85);
}

.service-body li::before {
  content: "";
  flex: none;
  margin-top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.card-link {
  margin-top: auto;
  padding-top: 20px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  transition: opacity var(--transition);
}

.card-link:hover {
  opacity: 0.7;
}

/* -------------------- Add-Ons -------------------- */
.addons {
  padding: 96px 0;
  background: var(--white);
}

.addons-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  padding: 56px 64px;
  border-radius: var(--radius-lg);
  background: var(--light-gray);
  border: 1px solid rgba(42, 106, 166, 0.12);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.025);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid rgba(42, 106, 166, 0.18);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.035);
  color: var(--primary);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.chips span:hover {
  background: rgba(42, 106, 166, 0.06);
  transform: translateY(-1px);
}

.addons-mini {
  display: grid;
  gap: 20px;
}

.addons-mini > div {
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(197, 206, 216, 0.85);
  box-shadow: 0 8px 24px -20px rgba(27, 36, 48, 0.25);
}

.addons-mini .eyebrow {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.addons-mini p:last-child {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text-muted);
}

/* -------------------- How It Works -------------------- */
.how {
  padding: 96px 0;
  background: var(--white);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.how-grid > div {
  border-top: 1px solid var(--mid-gray);
  padding-top: 24px;
}

.big-num {
  font-size: 48px;
  font-weight: 700;
  color: rgba(42, 106, 166, 0.3);
  font-family: var(--font-display);
  line-height: 1;
}

.how-grid h3 {
  margin-top: 24px;
}

.how-grid p {
  margin-top: 12px;
}

/* -------------------- Stats -------------------- */
.stats {
  background: var(--primary);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
}

.stat-num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}

.stat-label {
  margin-top: 12px;
  font-size: 13.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  color: var(--white);
}

/* -------------------- Testimonials -------------------- */
.testimonials {
  padding: 96px 0;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.review {
  margin: 0;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stars {
  color: #F59E0B;
  letter-spacing: 2px;
  display: flex;
  gap: 2px;
  font-size: 18px;
}

.review blockquote {
  margin: 20px 0 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(27, 36, 48, 0.9);
  flex: 1;
}

.review figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.review figcaption span:last-child {
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0;
}

/* -------------------- Why Choose Us -------------------- */
.why {
  background: var(--light-gray);
  padding: 96px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.why-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-list > div {
  border-top: 1px solid var(--mid-gray);
  padding-top: 20px;
}

.why-list p {
  margin-top: 8px;
}

/* -------------------- Trust -------------------- */
.trust {
  padding: 96px 0;
  background: var(--white);
}

.trust-head {
  max-width: 760px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.trust-card {
  min-height: 190px;
  padding: 30px 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(197, 206, 216, 0.85);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.trust-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust .check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  margin-top: -1px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 106, 166, 0.12);
  color: var(--primary);
}

.trust .check svg {
  width: 13px;
  height: 13px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h3 {
  font-size: 20px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--dark);
}

.trust-card p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text-muted);
}

/* -------------------- FAQ -------------------- */
.faq {
  background: var(--light-gray);
  padding: 96px 0;
}

.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
}

.faq-list details {
  padding: 24px 0;
  border-bottom: 1px solid var(--mid-gray);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 19px;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}

.faq-list summary:hover {
  color: var(--primary);
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}

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

.faq-list summary .faq-icon {
  font-size: 24px;
  transition: transform 0.25s;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-list details[open] summary .faq-icon {
  transform: rotate(45deg);
}

.faq-list .faq-answer {
  margin-top: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
}

/* -------------------- CTA -------------------- */
.cta {
  padding: 96px 0;
  background: var(--white);
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--primary);
  color: var(--white);
  padding: 80px 64px;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.cta-card h2 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-card p {
  margin-top: 24px;
  opacity: 0.9;
  max-width: 576px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-card .row-buttons {
  position: relative;
  z-index: 1;
}

/* -------------------- Footer -------------------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--dark);
  padding: 56px 0;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 16px;
  /* logo-footer.* is already a white, transparent-background mark for dark bg */
}

.footer .eyebrow.primary {
  color: var(--primary);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-list li,
.footer-list a,
.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-list a:hover,
.footer a:hover {
  color: var(--white);
}

.footer-list a:focus-visible,
.footer a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--white);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.copyright {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

.copyright a {
  color: rgba(255, 255, 255, 0.6);
}

.copyright a:hover {
  color: var(--white);
}

/* -------------------- Modal -------------------- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 36, 48, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  width: min(640px, 92vw);
  max-height: 92vh;
  overflow: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  animation: popIn 0.25s ease;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: 0;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--dark);
}

.modal-close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.modal h3 {
  font-size: 29px;
  margin-bottom: 4px;
  color: var(--dark);
}

/* -------------------- Form -------------------- */
#quoteForm {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#quoteForm label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: var(--dark);
  font-weight: 500;
}

#quoteForm input,
#quoteForm select,
#quoteForm textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--mid-gray);
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  transition: border 0.2s, box-shadow 0.2s;
  min-height: 44px;
}

#quoteForm input:focus,
#quoteForm select:focus,
#quoteForm textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42, 106, 166, 0.15);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Quote form: add-on services checkboxes */
.addons-field {
  border: 1px solid var(--mid-gray);
  border-radius: 10px;
  padding: 12px 16px 14px;
}

.addons-field legend {
  padding: 0 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
}

.addon-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 16px;
  margin-top: 4px;
}

#quoteForm .addon-option {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
}

#quoteForm .addon-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 0;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  accent-color: var(--primary);
  cursor: pointer;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent-row input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--primary);
}

.consent-row a {
  color: var(--primary);
  text-decoration: underline;
}

@keyframes popIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

/* -------------------- Privacy Modal -------------------- */
.privacy-content {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 8px;
}

.privacy-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--dark);
}

.privacy-content p {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.privacy-content ul {
  margin: 8px 0 16px 20px;
  list-style: disc;
}

.privacy-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* -------------------- Toast -------------------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 100001;
  box-shadow: 0 8px 30px rgba(42, 106, 166, 0.4);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* -------------------- Scroll Reveal System -------------------- */
/* Hiding is scoped to .js so content is fully visible if JavaScript is
   disabled or fails to run (progressive enhancement / no-JS crawlers). */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Directional & scale variants */
.js .reveal-up    { transform: translateY(36px); }
.js .reveal-left  { transform: translateX(-46px); }
.js .reveal-right { transform: translateX(46px); }
.js .reveal-scale { transform: scale(0.9); }
.js .reveal-soft  { transform: translateY(14px); filter: blur(6px); }

/* -------------------- Scroll Progress Bar -------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--primary), #5fb0e6);
  z-index: 100000;
  will-change: transform;
  pointer-events: none;
}

/* -------------------- Nav: shrink on scroll + link underline -------------------- */
.nav {
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-inner {
  transition: min-height var(--transition), padding var(--transition);
}

.nav-logo img {
  transition: height var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 30px -14px rgba(27, 36, 48, 0.28);
}

.nav.scrolled .nav-inner {
  min-height: 74px;
}

.nav.scrolled .nav-logo img {
  height: 56px;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-links a.active {
  color: var(--primary);
}

/* -------------------- Hero: atmosphere & motion -------------------- */
.hero {
  position: relative;
  overflow: hidden;
}

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

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-blob.b1 {
  width: 440px;
  height: 440px;
  top: -140px;
  right: -90px;
  background: radial-gradient(circle at 30% 30%, rgba(42, 106, 166, 0.30), transparent 70%);
  animation: blobDrift 15s ease-in-out infinite;
}

.hero-blob.b2 {
  width: 380px;
  height: 380px;
  bottom: -150px;
  left: -110px;
  background: radial-gradient(circle at 60% 40%, rgba(95, 176, 230, 0.24), transparent 70%);
  animation: blobDrift 19s ease-in-out infinite reverse;
}

@keyframes blobDrift {
  0%, 100% { translate: 0 0; }
  50%      { translate: 26px 34px; }
}

/* Gentle "breathing" on the hero photo */
.hero-img img {
  animation: heroBreath 9s ease-in-out infinite;
}

@keyframes heroBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.045); }
}

/* Shimmer sweep across the wordmark */
.hero h1 .highlight {
  background: linear-gradient(100deg, var(--primary) 0%, #6fbcee 32%, var(--primary) 62%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary);
  animation: wordmarkShimmer 6.5s ease-in-out infinite;
}

@keyframes wordmarkShimmer {
  0%   { background-position: 160% 0; }
  100% { background-position: -60% 0; }
}

/* -------------------- Back to Top -------------------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 32px -10px rgba(42, 106, 166, 0.65);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s, background 0.2s ease;
  z-index: 99990;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: #236094;
  transform: translateY(-3px);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

/* -------------------- Reduced Motion -------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-soft {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .hero-blob,
  .hero-img img,
  .hero h1 .highlight {
    animation: none !important;
  }

  .scroll-progress {
    display: none;
  }

  .btn:hover,
  .back-to-top:hover,
  .trust-card:hover {
    transform: none;
  }

  .service-card:hover .service-media img {
    transform: none;
  }
}

/* -------------------- Render Perf: skip offscreen work -------------------- */
/* Below-the-fold sections aren't laid out/painted until they near the viewport.
   `auto` in contain-intrinsic-size makes the browser remember each real height
   after first render, so the scrollbar stays stable. */
.how,
.stats,
.testimonials,
.why,
.trust,
.faq,
.cta,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1099px) {
  .addons-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 899px) {
  .nav-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

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

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-top {
    grid-template-columns: 1fr;
    padding-top: 4px;
    gap: 24px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-sub {
    justify-self: start;
    font-size: 18px;
    max-width: 100%;
  }

  .hero-img img {
    min-height: 300px;
    height: 45vh;
  }

  .hero-info {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .hero-info-item + .hero-info-item {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(42, 106, 166, 0.12);
    padding-top: 16px;
  }

  .hero-info .btn {
    width: 100%;
    min-width: auto;
  }

  .info-line {
    font-size: 22px;
  }

  .info-line.small {
    font-size: 18px;
  }

  .areas-list {
    flex-direction: column;
    gap: 0;
  }

  .area-divider {
    width: 40px;
    height: 1px;
    margin: 4px 0;
  }

  .service-grid,
  .how-grid,
  .stats-grid,
  .reviews-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: auto;
  }

  .addons-card {
    padding: 28px;
    border-radius: var(--radius);
    gap: 32px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .review figcaption {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card {
    padding: 56px 28px;
  }

  .services,
  .how,
  .testimonials,
  .why,
  .trust,
  .faq,
  .cta,
  .addons {
    padding: 72px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo {
    height: 56px;
  }

  .why-img img {
    min-height: 300px;
  }

  .stats-grid {
    text-align: left;
  }

  .stat-num {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 92px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-info .btn {
    min-height: 60px;
    font-size: 15px;
  }

  .nav-logo img {
    height: 52px;
    max-height: 52px;
  }
}
