/* ============================================================
   Fresh Start Cleaning — style.css
   ============================================================ */

:root {
  --navy:         #0B3565;
  --navy-dark:    #062A50;
  --secondary:    #45678C;
  --accent:       #1FB6AA;
  --accent-hover: #15958C;
  --text:         #102235;
  --muted:        #45678C;
  --white:        #FFFFFF;
  --bg:           #F4FBFF;
  --bg-alt:       #D9E9F5;
  --border:       #C9D8E4;
  --border-mid:   #A8C0D4;
  --footer:       #062A50;
  --soft-blue:    #EAF5FC;
  --soft-green:   #E7FAF8;
  --amber:        #1FB6AA;  /* legacy alias: use teal */
  --amber-hover:  #15958C;  /* legacy alias: use teal hover */
  --shadow:       0 10px 25px -5px rgba(10,25,47,.08);
  --shadow-md:    0 10px 25px -5px rgba(10,25,47,.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
}

img   { display: block; max-width: 100%; }
a     { color: inherit; }
p     { color: var(--muted); }
h2, h3 { color: var(--navy); }

/* ── Layout ── */
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { max-width: 860px; }

/* ── Header ── */
header {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: box-shadow .2s;
}
header.scrolled { box-shadow: 0 4px 20px rgba(10,25,47,.10); }

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-brand img { display: block; width: 190px; height: auto; }

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  letter-spacing: .04em;
  transition: color .15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .02em;
}
.nav-phone:hover { color: var(--accent); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 20;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 81px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 20px 24px 28px;
  flex-direction: column;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(10,25,47,.12);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active { color: var(--accent); }
.mobile-menu .btn-mobile {
  margin-top: 16px;
  text-align: center;
  background: var(--navy);
  color: var(--white) !important;
  padding: 14px;
  border-radius: 6px;
  border-bottom: 0 !important;
  font-weight: 700;
}
.mobile-menu .btn-mobile:hover { background: var(--navy-dark); }
.mobile-menu-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-actions a {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  border: none;
}
.mobile-cta-phone {
  border: 2px solid var(--navy) !important;
  color: var(--navy) !important;
  background: transparent;
  border-bottom: 2px solid var(--navy) !important;
  padding-bottom: 13px !important;
}
.mobile-cta-quote {
  background: var(--accent) !important;
  color: var(--white) !important;
  border: none !important;
}
.mobile-cta-quote:hover { background: var(--accent-hover) !important; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 900;
  padding: 15px 28px;
  border-radius: 6px;
  font-size: 15px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background .18s, border-color .18s;
  line-height: 1;
}
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn.secondary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white) !important;
}
.btn.secondary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn.ghost {
  background: transparent;
  color: var(--white) !important;
  border-color: rgba(255,255,255,.45);
}
.btn.ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); }

/* Nav button */
.btn-nav {
  display: inline-block;
  background: var(--accent);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: .04em;
  transition: background .15s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--accent-hover); }

.text-link {
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;

}

.text-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;

}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── Typography ── */
h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--navy);
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -.03em;
}
h3 { font-size: 20px; margin: 0 0 8px; }
h4 { font-size: 16px; margin: 0 0 6px; color: var(--navy); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ── Sections ── */
section { padding: 86px 0; }

main > section:nth-of-type(2) {
  padding-bottom: 45px;
}

main > section:nth-of-type(3) {
  padding-top: 45px;
}

.alt { background: var(--bg); }
.bg-navy { background: var(--navy); }
.bg-proof { background: #EEF3F8; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }

/* ── Proof bar ── */
.proof-bar {
  padding: 20px 0;
}
.proof-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  divide-x: 1px solid var(--border);
}
.proof-item {
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.proof-item:last-child { border-right: none; }
.proof-item strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 3px;
}
.proof-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* ── Hero ── */
.hero {
  min-height: 580px;
  display: flex;
  align-items: center;
  background: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
}
.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--soft-green);
  color: var(--accent-hover);
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 20px;
  letter-spacing: .03em;
}
.hero h1 { color: var(--navy); margin-bottom: 18px; }
.hero p { font-size: 18px; color: var(--muted); margin: 0 0 32px; max-width: 520px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-img {
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 20px 60px rgba(10,25,47,.15);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ── Page hero (interior pages) ── */
.page-hero {
  background: var(--bg);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { color: var(--navy); font-size: clamp(30px, 4vw, 50px); margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 19px; max-width: 720px; margin: 0; line-height: 1.7; }
.page-hero .eyebrow { color: var(--accent); }

/* ── Service image cards ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.svc-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.svc-card-img { height: 200px; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-card:hover .svc-card-img img { transform: scale(1.04); }
.svc-card-body { padding: 24px 26px; }
.svc-card-body h3 { margin-bottom: 8px; }
.svc-card-body p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.65; }
.svc-card-icon {
  width: 40px; height: 40px;
  background: var(--soft-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  color: var(--accent);
  font-size: 20px;
}

/* compact icon card */
.svc-icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 30px;
  transition: box-shadow .2s, border-color .2s;
}
.svc-icon-card:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.svc-icon-card-icon {
  width: 44px; height: 44px;
  background: var(--soft-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 22px;
}

.svc-icon-card-icon.material-symbols-outlined {
  font-size: 24px;
  font-weight: normal;
  line-height: 1;
}

.svc-icon-card h3 { margin-bottom: 8px; }
.svc-icon-card p  { margin: 0; font-size: 15px; color: var(--muted); }

/* ── Facilities ── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 40px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.facility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.facility-item-icon { color: var(--secondary); font-size: 20px; }
.facilities-footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.facilities-footer p { margin: 0; font-size: 15px; font-weight: 600; }

/* ── Process ── */
.process-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid-wrap { position: relative; }
.process-connector {
  display: none;
}
@media (min-width: 769px) {
  .process-connector {
    display: block;
    position: absolute;
    top: 47px;
    left: calc(12.5% + 47px);
    right: calc(12.5% + 47px);
    height: 1px;
    background: var(--border);
    z-index: 0;
  }
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process-circle {
  width: 94px; height: 94px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.process-circle.filled {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(31,182,170,.28);
}
.process-circle span { font-size: 22px; font-weight: 900; color: var(--secondary); }
.process-circle.filled span { color: var(--white); }
.process-step h3 { margin-bottom: 8px; font-size: 18px; }
.process-step p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── Difference section ── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.diff-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 28px 0 32px;
}
.diff-feature-icon {
  width: 40px; height: 40px;
  background: var(--soft-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 20px;
  margin-bottom: 10px;
}
.diff-feature h4 { font-size: 15px; font-weight: 900; margin-bottom: 6px; }
.diff-feature p  { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6; }
.diff-img {
  border-radius: 14px;
  overflow: hidden;
  height: 420px;
  max-width: 480px;
  margin-left: auto;
  box-shadow: var(--shadow-md);
}
.diff-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ── Testimonials ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--accent);
}

.review-stars .material-symbols-outlined {
  font-size: 18px;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 20;
}
.review-card blockquote {
  margin: 0 0 20px;
  padding: 0;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-author-row { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 900; color: var(--navy); }
.review-role { font-size: 13px; color: var(--muted); margin-top: 2px; }
.reviews-footer { margin-top: 28px; text-align: right; }

/* ── CTA section ── */
.cta-dark {
  background: var(--navy);
  padding: 88px 0;
  text-align: center;
}
.cta-dark h2 { color: var(--white); margin-bottom: 14px; }
.cta-dark .cta-eyebrow { color: rgba(126,159,213,.9); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; display: block; }
.cta-dark p { color: rgba(255,255,255,.72); font-size: 18px; max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin: 20px 0 0; color: rgba(255,255,255,.38); font-size: 13px; font-weight: 700; }

/* CTA card style */
.cta-card-section {
  background: var(--bg);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: 18px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 22px 55px rgba(10,25,47,.20);
  border: 1px solid rgba(255,255,255,.10);
}

.cta-card .cta-eyebrow {
  color: rgba(191,237,233,.85);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.cta-card h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-card p {
  color: rgba(255,255,255,.74);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 32px;
}

.cta-card .cta-actions {
  justify-content: center;
}

.cta-card .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white) !important;
}

.cta-card .btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.cta-card .btn.ghost {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: var(--white) !important;
}

.cta-card .btn.ghost:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.75);
}

.cta-card .cta-note {
  color: rgba(255,255,255,.45);
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
}
/* ── About page ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split h2 { margin-bottom: 14px; }
.about-split p { font-size: 16px; color: var(--muted); line-height: 1.75; margin: 0 0 18px; }
.about-blockquote {
  margin: 28px 0 0;
  padding: 22px 26px;
  border-left: 4px solid var(--accent);
  background: var(--bg);
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
}
.about-img {
  border-radius: 12px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg);
}
.about-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: -32px 0 0;
}
.stat-strip-item {
  padding: 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-strip-item:last-child { border-right: none; }
.stat-strip-item strong { display: block; font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.stat-strip-item span   { font-size: 13px; font-weight: 700; color: var(--muted); }

.diff-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 30px;
  transition: border-color .2s;
}
.diff-card:hover { border-color: var(--accent); }
.diff-card h3 { font-size: 18px; margin-bottom: 10px; }
.diff-card p  { margin: 0; font-size: 15px; line-height: 1.65; }

/* ── Services page ── */
.services-view-link {
  font-size: 14px;
  font-weight: 900;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.services-view-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}
.services-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}

/* service detail sections */
.svc-detail { padding: 64px 0; }
.svc-detail.alt { background: var(--bg); }
.svc-detail-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  align-items: start;
}
.svc-detail-row h2 { margin-bottom: 16px; }
.svc-detail-row p { font-size: 16px; line-height: 1.75; margin: 0 0 18px; }
.included-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.included-card h3 { font-size: 17px; margin-bottom: 16px; }
.detail-list { margin: 0; padding-left: 20px; }
.detail-list li { margin: 9px 0; color: var(--muted); font-size: 15px; }

/* process band (services page) */
.process-band {
  background: var(--navy);
  padding: 80px 0;
}

.process-band h2,
.process-band h3 {
  color: var(--white);
}

.process-band p {
  color: rgba(255,255,255,.72);
}

.process-band .section-heading p {
  color: rgba(255,255,255,.68);
}

.process-band-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-band-step {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 30px;
  transition: background .18s, border-color .18s;
}

.process-band-step:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(31,182,170,.45);
}

.process-band-step .num {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.process-band-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-band-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
}

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-list { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--muted);
  transition: transform .25s, color .25s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-a { display: none; padding: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.75; max-width: 700px; }
.faq-item.open .faq-a { display: block; }

/* ── Contact page ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: start;
}

/* Contact hero service-area note */
.contact-service-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(10,25,47,.06);
}

.contact-service-note strong {
  color: var(--navy);
}

.contact-service-note .material-symbols-outlined {
  color: var(--accent);
  font-size: 20px;
}

/* Legacy contact pill styles kept in case another page still uses them */
.contact-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-meta-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.contact-meta-pill a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.contact-meta-pill a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.form-block h2 {
  margin-bottom: 8px;
}

.form-block .form-intro {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.65;
}

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

.form-grid .full {
  grid-column: 1/-1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: .02em;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,182,170,.12);
}

input::placeholder,
textarea::placeholder {
  color: #A0B4C4;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2345678C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-trust {
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.quote-panel {
  background: var(--navy);
  color: var(--white);
  padding: 40px 36px;
  border-radius: 12px;
}

.quote-panel h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}

.quote-panel .panel-intro {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.quote-panel-checks {
  display: grid;
  gap: 14px;
}

.panel-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
}

.panel-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(31,182,170,.2);
  border: 1px solid rgba(31,182,170,.4);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.panel-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.12);
  margin: 24px 0;
}

.panel-contact-items {
  display: grid;
  gap: 14px;
}

.panel-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.panel-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 18px;
}

.panel-contact-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.panel-contact-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.panel-contact-value a {
  color: var(--white);
  text-decoration: none;
}

.panel-contact-value a:hover {
  text-decoration: underline;
  color: var(--accent);
}
/* ── Privacy page ── */
.legal-section { padding: 72px 0 96px; }
.legal-copy h2 { font-size: 26px; margin-top: 40px; margin-bottom: 10px; }
.legal-copy p, .legal-copy li { font-size: 16px; color: var(--muted); line-height: 1.75; margin: 0 0 16px; }
.legal-copy a { color: var(--accent); font-weight: 700; }
.legal-copy .last-updated { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

/* ── Footer ── */
footer {
  background: var(--footer);
  color: rgba(255,255,255,.65);
  font-size: 14px;
  padding: 52px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 44px;
}
footer strong { color: var(--white); display: block; margin-bottom: 14px; font-size: 12px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
footer p { color: rgba(255,255,255,.55); margin: 0 0 8px; line-height: 1.65; }
footer a { color: rgba(255,255,255,.65); text-decoration: none; display: block; margin-bottom: 9px; transition: color .15s; }
footer a:hover { color: var(--accent); }
.footer-logo { width: 160px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .85; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { color: rgba(255,255,255,.35); font-size: 13px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.35); font-size: 13px; margin: 0; display: inline; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero-grid, .diff-grid, .about-split, .contact-split { grid-template-columns: 1fr; gap: 36px; }
  .hero-img { height: 280px; }
  .diff-img { max-width: 100%; height: 300px; margin-left: 0; }
  .svc-grid, .svc-grid-bottom { grid-template-columns: 1fr 1fr; }
  .reviews-grid, .diff-cards, .facilities-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-connector { display: none !important; }
  .svc-detail-row, .process-band-steps { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip-item:nth-child(2) { border-right: none; }
  .proof-bar-inner { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { min-height: auto; }
}

@media (max-width: 640px) {
  .svc-grid, .svc-grid-bottom, .reviews-grid, .diff-cards, .facilities-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-strip-item:last-child { border-bottom: none; }
  .proof-bar-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-card { padding: 40px 24px; }
  section { padding: 56px 0; }
  h1 { font-size: 34px; }
}
