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

:root {
  --navy: #004e8c;
  --blue: #006db3;
  --sky: #0099e0;
  --ice: #f0f7ff;
  --white: #ffffff;
  --text: #0a1f35;
  --muted: #4a7090;
  --line: rgba(0, 78, 140, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  transition: background 0.2s ease, color 0.2s ease;
}

a { color: inherit; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 118px;
  padding: 0 5%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.24);
  transition: height 0.22s ease, padding 0.22s ease, box-shadow 0.22s ease;
}

.site-nav.nav-compact {
  height: 88px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  flex: 1;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 300px;
  height: 98px;
  object-fit: contain;
  transition: width 0.22s ease, height 0.22s ease;
}

.site-nav.nav-compact .brand-logo {
  width: 235px;
  height: 76px;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a,
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: color 0.2s, font-size 0.22s ease;
}

.footer-links a {
  font-size: 1rem;
  font-weight: 600;
}

.site-nav.nav-compact .nav-links a {
  font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active,
.footer-links a:hover { color: var(--white); }

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-caret {
  font-size: 0.78rem;
  line-height: 1;
}

.services-menu {
  position: absolute;
  top: calc(100% + 28px);
  left: 50%;
  width: min(620px, 90vw);
  padding: 28px 30px;
  background: #05080b;
  border: 1px solid rgba(125, 211, 252, 0.45);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-28%) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.services-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -28px;
  height: 28px;
}

.nav-dropdown:hover .services-menu,
.nav-dropdown:focus-within .services-menu,
.nav-dropdown.is-open .services-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-28%) translateY(0);
}

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

.areas-menu {
  width: min(760px, 90vw);
}

.areas-menu .services-menu-grid {
  display: block;
}

.areas-menu .services-menu-grid > div {
  column-count: 3;
  column-gap: 30px;
}

.areas-menu .menu-heading {
  break-after: avoid;
  column-span: all;
}

.areas-menu a {
  break-inside: avoid;
}

.menu-more {
  display: block;
  break-inside: avoid;
  color: var(--sky);
  font-size: 1rem;
  font-weight: 900;
  padding: 7px 0 0;
}

.menu-heading {
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.services-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 700;
  padding: 7px 0;
}

.services-menu a:hover,
.services-menu a.active { color: var(--sky); }

.nav-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 150px;
  transition: gap 0.22s ease;
}

.site-nav.nav-compact .nav-actions {
  gap: 6px;
}

.nav-phone-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s, font-size 0.22s ease;
}

.nav-phone-number::before {
  content: none;
}

.phone-icon {
  color: var(--sky);
  font-size: 1rem;
  line-height: 1;
}

.site-nav.nav-compact .nav-phone-number {
  font-size: 0.96rem;
}

.nav-phone-number:hover { color: #dff2ff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 5px;
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  transition: background 0.2s, color 0.2s, padding 0.22s ease;
}

.nav-quote {
  background: var(--white);
  color: var(--navy) !important;
  text-align: center;
  text-decoration: none !important;
}

.nav-quote:hover { background: #dff2ff; }

.site-nav.nav-compact .nav-cta {
  padding: 10px 18px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 118px);
  display: grid;
  align-items: center;
  padding: 95px 5% 70px;
  background:
    linear-gradient(135deg, #004e8c 0%, #075f99 48%, #00477f 100%);
}

.page-hero {
  padding: 92px 5% 72px;
  background:
    linear-gradient(135deg, #004e8c 0%, #075f99 50%, #00477f 100%);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 85% at 85% 45%, rgba(125, 211, 252, 0.18), transparent 70%),
    radial-gradient(ellipse 35% 60% at 8% 85%, rgba(0, 153, 224, 0.12), transparent 65%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 58%;
  height: 42%;
  background: rgba(255, 255, 255, 0.07);
  transform: rotate(-10deg);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -36%;
  width: 58%;
  height: 68%;
  background: rgba(255, 255, 255, 0.07);
  transform: rotate(-11deg);
  pointer-events: none;
}

.hero-inner,
.page-hero-inner,
.section-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.hero-copy { max-width: 660px; }

.hero-logo-card {
  justify-self: end;
  width: min(520px, 100%);
  padding: 0;
}

.hero-logo-card img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.32));
}

.eyebrow,
.section-tag {
  display: inline-block;
  color: #7dd3fc;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow {
  color: var(--white);
  background: rgba(0, 153, 224, 0.17);
  border: 1px solid rgba(125, 211, 252, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
}

h1,
.section-title,
.card-title,
.price {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.94;
  margin-bottom: 24px;
}

h1 span { color: #7dd3fc; }

.hero-sub,
.page-sub,
.section-sub {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
  line-height: 1.75;
}

.section-sub { color: var(--muted); }

.hero-actions,
.section-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 5px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.16s, background 0.2s, border-color 0.2s;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--white); color: var(--navy); }
.btn-primary:hover { background: #dff2ff; }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--sky); }
.btn-outline { border: 2px solid rgba(255, 255, 255, 0.35); color: var(--white); }
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.75); background: rgba(255, 255, 255, 0.06); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.stats > div {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.stat-number {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.25rem;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

section {
  position: relative;
  overflow: hidden;
  padding: 82px 5%;
}

.band {
  background:
    linear-gradient(180deg, var(--ice) 0%, #ffffff 100%);
}

.band::before {
  content: "";
  position: absolute;
  left: -12%;
  top: 18%;
  width: 38%;
  height: 52%;
  background: rgba(0, 153, 224, 0.07);
  transform: rotate(12deg);
  pointer-events: none;
}

.band::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -24%;
  width: 46%;
  height: 48%;
  background: rgba(0, 78, 140, 0.06);
  transform: rotate(-10deg);
  pointer-events: none;
}

.section-title { color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.35rem); line-height: 1.02; margin-bottom: 14px; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 42px; }

.preview-grid,
.services-grid,
.pricing-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card,
.service-card,
.pricing-card,
.value-card,
.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 26px rgba(13, 35, 64, 0.06);
}

.card::after,
.service-card::after,
.pricing-card::after,
.value-card::after,
.contact-card::after,
.brother-card::after,
.quote-form::after,
.quote-side::after,
.seo-main::after,
.seo-side::after,
.nearby-card::after,
.faq-item::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -58px;
  width: 132px;
  height: 96px;
  background: rgba(0, 153, 224, 0.07);
  transform: rotate(18deg);
  pointer-events: none;
}

.card > *,
.service-card > *,
.pricing-card > *,
.value-card > *,
.contact-card > *,
.brother-card > *,
.quote-form > *,
.quote-side > *,
.seo-main > *,
.seo-side > *,
.nearby-card > *,
.faq-item > * {
  position: relative;
  z-index: 1;
}

.preview-grid .card {
  border-top: 4px solid var(--sky);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.preview-grid .card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 153, 224, 0.34);
  border-top-color: var(--navy);
  box-shadow: 0 18px 38px rgba(13, 35, 64, 0.11);
}

.card-title,
.service-card h3,
.pricing-card h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card p,
.service-card p,
.pricing-card p,
.value-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.card-link,
.load-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--sky);
  font-weight: 800;
  text-decoration: none;
}

.service-icon,
.value-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ice);
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.pricing-grid {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.pricing-card { position: relative; }
.pricing-card.featured {
  background: var(--navy);
  border-color: var(--sky);
  color: var(--white);
  padding-top: 58px;
}

.pricing-card.featured::after {
  top: 18px;
  right: -48px;
  background: rgba(125, 211, 252, 0.08);
}
.pricing-card.featured h3,
.pricing-card.featured .price { color: var(--white); }
.pricing-card.featured p,
.pricing-card.featured li { color: rgba(255, 255, 255, 0.72); }
.badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: var(--sky);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price {
  color: var(--navy);
  font-size: 3rem;
  line-height: 1;
  margin: 14px 0 4px;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.pricing-card li {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.45;
}

.pricing-card li::before {
  content: "✓";
  color: var(--sky);
  font-weight: 900;
  margin-right: 9px;
}

.load-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.load-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.load-bar {
  height: 22px;
  border: 2px solid rgba(0, 109, 179, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.load-fill { height: 100%; }
.load-fill.minimum { background: linear-gradient(90deg, #006db3, #7dd3fc); }
.load-fill.quarter { background: linear-gradient(90deg, #22c55e, #86efac); }
.load-fill.half { background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.load-fill.full { background: linear-gradient(90deg, #ef4444, #fb7185); }
.load-name { font-family: "Bebas Neue", sans-serif; color: var(--navy); font-size: 1.25rem; letter-spacing: 0.04em; margin-bottom: 8px; }

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.dark-section {
  background:
    linear-gradient(135deg, #004e8c 0%, #075f99 52%, #00477f 100%);
  color: var(--white);
}

.dark-section::before {
  content: "";
  position: absolute;
  left: -12%;
  top: -26%;
  width: 44%;
  height: 70%;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(13deg);
  pointer-events: none;
}

.dark-section::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -26%;
  width: 52%;
  height: 58%;
  background: rgba(125, 211, 252, 0.08);
  transform: rotate(-10deg);
  pointer-events: none;
}

.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: rgba(255, 255, 255, 0.68); }
.dark-section .value-card { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); box-shadow: none; }
.dark-section .value-card p { color: rgba(255, 255, 255, 0.64); }
.dark-section .card-title { color: var(--white); }

.map-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 38px;
  text-align: center;
}

.about-logo {
  display: block;
  width: min(320px, 100%);
  height: auto;
  margin: 0 auto 24px;
}

.brothers-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--ice) 100%);
}

.brothers-section::before {
  content: "";
  position: absolute;
  right: -13%;
  top: 8%;
  width: 38%;
  height: 58%;
  background: rgba(0, 78, 140, 0.055);
  transform: rotate(-13deg);
  pointer-events: none;
}

.brothers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.brother-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(13, 35, 64, 0.06);
  padding: 30px;
  text-align: center;
}

.brother-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #e7f4ff, #f8fbff);
  border: 2px dashed rgba(0, 78, 140, 0.26);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.brother-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
  font-weight: 800;
}

.map-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  background: rgba(125, 211, 252, 0.14);
  border: 1px solid rgba(125, 211, 252, 0.24);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
}

.quote-side .chips .chip {
  background: var(--ice);
  border-color: rgba(0, 78, 140, 0.16);
  color: var(--navy) !important;
  font-weight: 800;
}

.contact-card a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.quote-section {
  background:
    linear-gradient(180deg, var(--ice) 0%, #ffffff 100%);
}

.quote-section::before {
  content: "";
  position: absolute;
  right: -16%;
  top: 12%;
  width: 48%;
  height: 58%;
  background: rgba(0, 153, 224, 0.06);
  transform: rotate(-12deg);
  pointer-events: none;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.quote-form,
.quote-side {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(13, 35, 64, 0.06);
}

.quote-form { padding: 32px; }
.quote-side { padding: 32px; text-align: center; }
.hidden-field { display: none; }

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 800;
  font-size: 0.86rem;
}

.field span,
.challenge-field legend {
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(0, 78, 140, 0.2);
  border-radius: 6px;
  background: #fbfdff;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  padding: 13px 14px;
}

.field textarea { resize: vertical; min-height: 138px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(0, 153, 224, 0.18);
  border-color: var(--sky);
}

.challenge-field {
  border: 1px solid rgba(0, 78, 140, 0.14);
  border-radius: 8px;
  padding: 18px;
}

.challenge-field legend { padding: 0 8px; font-weight: 800; }

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

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.checkbox-grid input { width: 17px; height: 17px; accent-color: var(--blue); }
.submit-btn { border: 0; cursor: pointer; width: 100%; margin-top: 6px; }

.quote-phone {
  color: var(--text);
  line-height: 1.6;
  margin: 18px 0 0;
}

.quote-phone a,
.footer-contact a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.seo-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.seo-section::before {
  content: "";
  position: absolute;
  left: -14%;
  top: 20%;
  width: 42%;
  height: 52%;
  background: rgba(0, 78, 140, 0.055);
  transform: rotate(11deg);
  pointer-events: none;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
  gap: 32px;
  align-items: start;
}

.seo-main,
.seo-side,
.photo-card,
.nearby-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(13, 35, 64, 0.06);
}

.seo-main { padding: 34px; }
.seo-side { padding: 28px; }

.seo-photo {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin-bottom: 28px;
}

.seo-main h2,
.seo-side h3,
.nearby-card h3 {
  font-family: "Bebas Neue", sans-serif;
  color: var(--navy);
  letter-spacing: 0.035em;
  line-height: 1;
}

.seo-main h2 { font-size: 2rem; margin: 28px 0 12px; }
.seo-main p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }

.seo-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}

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

.photo-card { overflow: hidden; }
.photo-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-card p { padding: 14px 16px 18px; margin: 0; font-weight: 800; color: var(--navy); }

.nearby-card { padding: 28px; margin-top: 24px; }
.nearby-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.nearby-links a {
  background: var(--ice);
  border: 1px solid rgba(0, 78, 140, 0.14);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 7px 12px;
  text-decoration: none;
}

.area-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 7px 12px;
}

.seo-side .btn { width: 100%; margin-top: 18px; }
.seo-side p { color: var(--muted); line-height: 1.65; margin-top: 10px; }
.quick-list { list-style: none; display: grid; gap: 10px; margin-top: 18px; }
.quick-list a { color: var(--blue); font-weight: 800; text-decoration: none; }

.mini-contact {
  background:
    linear-gradient(180deg, var(--ice) 0%, #ffffff 100%);
  padding: 62px 5%;
}

.mini-contact::before {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -34%;
  width: 44%;
  height: 72%;
  background: rgba(0, 153, 224, 0.06);
  transform: rotate(12deg);
  pointer-events: none;
}

.mini-contact .contact-card {
  border-left: 5px solid var(--sky);
}

footer {
  background: #07151f;
  color: rgba(255, 255, 255, 0.52);
  padding: 38px 5%;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: "Bebas Neue", sans-serif;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.footer-logo {
  display: block;
  width: 158px;
  height: auto;
  margin-bottom: 10px;
}

.footer-contact { margin-top: 4px; color: rgba(255, 255, 255, 0.7); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px auto 0;
  min-height: 48px;
  padding: 0 18px 0 10px;
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.theme-toggle:hover { background: rgba(255, 255, 255, 0.14); }

.theme-toggle-track {
  position: relative;
  width: 64px;
  height: 34px;
  display: inline-block;
  border-radius: 999px;
  background: #dff2ff;
  box-shadow: inset 0 0 0 1px rgba(0, 78, 140, 0.2);
}

.theme-toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.theme-toggle-symbol {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.theme-toggle-symbol::before {
  content: "\2600";
}

.theme-toggle-text {
  min-width: 86px;
}

body.night-mode .theme-toggle-track {
  background: #13263a;
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.32);
}

body.night-mode .theme-toggle-thumb {
  transform: translateX(30px);
  background: #7dd3fc;
}

body.night-mode .theme-toggle-symbol {
  left: 11px;
  right: auto;
  color: #7dd3fc;
}

body.night-mode .theme-toggle-symbol::before {
  content: "\263E";
}

body.night-mode {
  color: #e8f4ff;
  background: #07111d;
}

body.night-mode .band,
body.night-mode .quote-section,
body.night-mode .brothers-section,
body.night-mode .seo-section {
  background: #07111d;
}

body.night-mode section:not(.dark-section):not(.hero):not(.page-hero),
body.night-mode .mini-contact {
  background-color: #0a1624;
}

body.night-mode .card,
body.night-mode .service-card,
body.night-mode .pricing-card,
body.night-mode .value-card,
body.night-mode .contact-card,
body.night-mode .brother-card,
body.night-mode .load-card,
body.night-mode .quote-form,
body.night-mode .quote-side,
body.night-mode .seo-main,
body.night-mode .seo-side,
body.night-mode .photo-card,
body.night-mode .nearby-card,
body.night-mode .faq-item {
  background: #101d2c;
  border-color: rgba(125, 211, 252, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

body.night-mode .section-title,
body.night-mode .card-title,
body.night-mode .service-card h3,
body.night-mode .pricing-card h3,
body.night-mode .price,
body.night-mode .load-name,
body.night-mode .brother-card h3,
body.night-mode .faq-item h2,
body.night-mode .seo-main h2,
body.night-mode .seo-side h3,
body.night-mode .nearby-card h3,
body.night-mode .photo-card p,
body.night-mode .field span,
body.night-mode .challenge-field legend,
body.night-mode .contact-card a,
body.night-mode .nearby-links a,
body.night-mode .quote-side .chips .chip {
  color: #7dd3fc !important;
}

body.night-mode .section-sub,
body.night-mode .card p,
body.night-mode .service-card p,
body.night-mode .pricing-card p,
body.night-mode .value-card p,
body.night-mode .contact-card p,
body.night-mode .pricing-card li,
body.night-mode .brother-card p,
body.night-mode .faq-item p,
body.night-mode .seo-main p,
body.night-mode .seo-side p,
body.night-mode .checkbox-grid label,
body.night-mode .quote-phone,
body.night-mode .field {
  color: #b7cde0;
}

body.night-mode .pricing-card.featured {
  background: #004e8c;
  border-color: #7dd3fc;
}

body.night-mode .service-icon,
body.night-mode .value-icon,
body.night-mode .nearby-links a,
body.night-mode .quote-side .chips .chip {
  background: rgba(125, 211, 252, 0.1);
  border-color: rgba(125, 211, 252, 0.2);
}

body.night-mode .area-more {
  background: #7dd3fc;
  color: #07111c;
}

body.night-mode .load-bar,
body.night-mode .challenge-field,
body.night-mode .seo-photo {
  border-color: rgba(125, 211, 252, 0.22);
}

body.night-mode .field input,
body.night-mode .field select,
body.night-mode .field textarea {
  background: #07111d;
  border-color: rgba(125, 211, 252, 0.22);
  color: #e8f4ff;
}

body.night-mode .field input::placeholder,
body.night-mode .field textarea::placeholder {
  color: #7894aa;
}

body.night-mode .brother-photo-placeholder {
  background: linear-gradient(145deg, #0c1d2f, #13263a);
  border-color: rgba(125, 211, 252, 0.24);
  color: #9db8ca;
}

body.night-mode .btn-primary,
body.night-mode .nav-quote {
  background: #f8fbff;
  color: #004e8c !important;
}

body.night-mode .btn-primary:hover,
body.night-mode .nav-quote:hover {
  background: #dff2ff;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 14px 28px rgba(0, 78, 140, 0.07);
}

.faq-item h2 {
  color: var(--navy);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.75;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-shell { gap: 16px; }
  .nav-links { gap: 18px; }
  .services-menu {
    left: auto;
    right: 0;
    transform: translateY(8px);
  }
  .nav-dropdown:hover .services-menu,
  .nav-dropdown:focus-within .services-menu,
  .nav-dropdown.is-open .services-menu { transform: translateY(0); }
  .services-menu-grid { grid-template-columns: 1fr 1fr; }
  .areas-menu .services-menu-grid > div { column-count: 2; }
  .preview-grid,
  .services-grid,
  .pricing-grid,
  .values-grid,
  .brothers-grid,
  .load-grid,
  .hero-content-grid,
  .about-layout,
  .contact-layout,
  .quote-layout,
  .seo-layout { grid-template-columns: 1fr; }
  .hero-logo-card { justify-self: start; max-width: 440px; }
  .section-head { display: block; }
  .section-head .btn { margin-top: 22px; }
}

@media (max-width: 1120px) {
  .nav-shell { gap: 18px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.92rem; }
  .nav-cta { padding: 10px 16px; }
  .brand-logo { width: 220px; height: 76px; }
}

@media (max-width: 680px) {
  .site-nav {
    height: auto;
    min-height: 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 12px 5%;
    gap: 10px;
  }

  .site-nav.nav-compact {
    height: auto;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 5%;
    gap: 10px;
  }

  .nav-shell {
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav.nav-compact .nav-shell {
    width: auto;
    flex: 1;
    align-items: stretch;
    flex-direction: row;
    justify-content: flex-end;
    gap: 8px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
  }
  .nav-links a,
  .site-nav.nav-compact .nav-links a {
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .site-nav.nav-compact .nav-links {
    display: none;
  }

  .nav-actions {
    width: 100%;
    max-width: 360px;
    align-items: stretch;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    min-width: 0;
  }

  .site-nav.nav-compact .nav-actions {
    width: auto;
    max-width: none;
    flex: 1;
    gap: 6px;
  }

  .nav-cta,
  .site-nav.nav-compact .nav-cta {
    flex: 1;
    min-height: 42px;
    padding: 9px 12px;
  }
  .nav-phone-number,
  .site-nav.nav-compact .nav-phone-number {
    flex: 1.15;
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.86rem;
  }

  .site-nav.nav-compact .nav-cta,
  .site-nav.nav-compact .nav-phone-number {
    min-height: 38px;
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  .nav-dropdown { position: static; }
  .services-menu {
    left: 5%;
    right: 5%;
    top: calc(100% - 2px);
    width: auto;
    max-height: 68vh;
    overflow-y: auto;
    padding: 18px;
    transform: translateY(8px);
  }
  .nav-dropdown:hover .services-menu,
  .nav-dropdown:focus-within .services-menu,
  .nav-dropdown.is-open .services-menu { transform: translateY(0); }
  .services-menu-grid { grid-template-columns: 1fr; gap: 16px; }
  .areas-menu .services-menu-grid > div { column-count: 1; }
  .brand-logo { width: 190px; height: 64px; }

  .site-nav.nav-compact .brand-logo {
    width: 112px;
    height: 40px;
  }

  .hero, .page-hero { padding-top: 36px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn,
  .section-head .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .form-grid,
  .checkbox-grid,
  .photo-grid { grid-template-columns: 1fr; }
  .quote-form,
  .quote-side { padding: 24px; }
  .seo-main,
  .seo-side,
  .nearby-card { padding: 24px; }
  section { padding: 64px 5%; }
  .card, .service-card, .pricing-card, .value-card, .contact-card, .brother-card { padding: 24px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .nav-actions { flex-direction: column; }
  .nav-phone-number,
  .nav-cta,
  .site-nav:not(.nav-compact) .nav-phone-number,
  .site-nav:not(.nav-compact) .nav-cta { width: 100%; }

  .site-nav.nav-compact .nav-actions {
    flex-direction: row;
  }

  .site-nav.nav-compact .nav-phone-number,
  .site-nav.nav-compact .nav-cta {
    width: auto;
  }

  .brand-logo { width: 176px; height: 60px; }

  .site-nav.nav-compact .brand-logo {
    width: 94px;
    height: 34px;
  }

  .nav-links { gap: 8px 10px; }
}
