/* ==========================================================================
   Cleano - Design tokens
   Navy is the brand primary (logo wordmark + CTA colour). Teal is pulled
   from the droplet mark and used sparingly as an accent so navy stays
   dominant, per brand guidance.
   ========================================================================== */
:root {
  --navy-900: #0a1f38;
  --navy-800: #10294a;
  --navy-700: #163a63;
  --navy-600: #1d4b80;
  --navy-500: #2a5f9e;
  --teal-500: #4fb8ac;
  --teal-400: #6fc9bf;
  --teal-100: #e6f5f3;
  --ink-900: #14181f;
  --ink-700: #3a4250;
  --ink-500: #616b7a;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f4;
  --gray-200: #e2e7ec;
  --gray-300: #cfd6de;
  --white: #ffffff;

  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 31, 56, 0.06), 0 1px 1px rgba(10, 31, 56, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 31, 56, 0.10);
  --shadow-lg: 0 20px 48px rgba(10, 31, 56, 0.16);

  --container: 1200px;
  --header-h: 72px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
img, picture { max-width: 100%; display: block; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: var(--header-h);
}

/* Reserve room for the fixed mobile CTA bar so it never overlaps the
   footer's last line of content on small screens. */
@media (max-width: 899px) {
  body { padding-bottom: 74px; }
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.15; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--navy-900);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   Buttons - min-height 48px keeps every CTA a comfortable thumb target
   on mobile (WCAG 2.5.5 / Apple & Google's own touch-target guidance).
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--navy-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-600); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--gray-300);
}
.btn-ghost:hover { border-color: var(--navy-700); background: var(--gray-50); }

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

.btn-outline-on-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-on-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-block { width: 100%; }
.btn-lg { min-height: 52px; padding: 15px 30px; font-size: 1rem; }

/* ==========================================================================
   Header / Nav
   Sticky so the "Get a Free Quote" CTA is reachable from anywhere on the
   page. Nav label sizing/spacing uses clamp() rather than fixed values so
   it scales smoothly as the viewport narrows toward the 900px breakpoint,
   instead of staying a fixed size and wrapping/overflowing.
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.6vw, 20px);
  width: 100%;
  padding-block: 10px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: clamp(26px, 3vw, 34px); width: auto; }

.nav-links {
  display: none;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
  flex-wrap: nowrap;
}
.nav-links a {
  font-weight: 600;
  font-size: clamp(0.82rem, 0.5vw + 0.68rem, 0.95rem);
  color: var(--ink-700);
  padding: 6px 1px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover { color: var(--navy-900); border-color: var(--teal-500); }

.nav-cta { display: none; flex-shrink: 0; }
.nav-phone {
  display: none;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--navy-900);
  font-size: clamp(0.82rem, 0.4vw + 0.7rem, 0.92rem);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  background: var(--white);
  flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* Mobile dropdown panel */
.mobile-panel {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 890;
  padding: 20px 20px 32px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.mobile-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-panel a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 4px;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy-900);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-panel .btn { margin-top: 18px; }
.mobile-contact { margin-top: 22px; font-size: 0.95rem; color: var(--ink-500); line-height: 1.9; }
.mobile-contact a { display: inline; padding: 0; border: 0; font-weight: 700; color: var(--navy-700); }

/* Sticky mobile call-to-action bar */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 850;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -6px 20px rgba(10,31,56,0.08);
}
.mobile-cta-bar .btn { flex: 1; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-phone { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-cta-bar { display: none; }
}

/* ==========================================================================
   Hero
   Two blocks in source order: text (headline/subhead/CTAs/trust badges),
   then the photo. Single column on mobile keeps that same reading order;
   980px+ switches to a two-column grid with the photo alongside.
   ========================================================================== */
.hero {
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  padding: 36px 0 44px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(79,184,172,0.22), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--teal-400);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 6vw, 3.1rem);
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.hero-sub {
  margin-top: 16px;
  font-size: clamp(1rem, 1vw + 0.85rem, 1.08rem);
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  margin-top: 112px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.trust-item svg { width: 18px; height: 18px; color: var(--teal-400); flex-shrink: 0; }

.hero-media img {
  width: 100%;
  height: auto;
  max-width: 420px;
  margin-inline: auto;
  aspect-ratio: 1200 / 1408;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .trust-row { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 980px) {
  .hero { padding: 60px 0 80px; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
  }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .hero-media img { max-width: 100%; }
}

/* ==========================================================================
   Section shell
   ========================================================================== */
.section { padding: 60px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--gray-50); }
.section-navy { background: var(--navy-900); color: var(--white); }

@media (min-width: 720px) {
  .section { padding: 80px 0; }
  .section-tight { padding: 56px 0; }
}

.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: 12px;
  color: var(--ink-500);
  font-size: 1.02rem;
}

@media (min-width: 720px) {
  .section-head { margin-bottom: 40px; }
}

/* ==========================================================================
   Services grid - interactive tiles, not bullet points
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.service-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-media img { transform: scale(1.06); }

.service-icon {
  position: absolute;
  left: 14px; bottom: -18px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.service-icon svg { width: 22px; height: 22px; color: var(--teal-400); }

.service-body { padding: 30px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-body p { color: var(--ink-500); font-size: 0.92rem; flex: 1; }
.service-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy-700);
  min-height: 44px;
}
.service-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.service-card:hover .service-link svg { transform: translateX(3px); }

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Why Cleano - value cards (3, one per genuine differentiator)
   ========================================================================== */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.value-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.value-icon svg { width: 24px; height: 24px; color: var(--navy-700); }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { color: var(--ink-500); font-size: 0.92rem; }

@media (min-width: 640px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Before / after strip
   ========================================================================== */
.proof-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.proof-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.proof-media img { width: 100%; height: auto; }
.proof-list { display: grid; gap: 16px; }
.proof-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink-700);
}
.proof-list svg { width: 22px; height: 22px; color: var(--teal-500); flex-shrink: 0; margin-top: 2px; }

@media (min-width: 900px) {
  .proof-strip { grid-template-columns: 1fr 1fr; gap: 56px; }
}

/* ==========================================================================
   Google Reviews callout
   No first-party embeddable widget exists for live Google review content
   without the Places API (billing + key) or a paid third-party widget, so
   this links out to the real, verifiable review panel rather than faking
   review content or a star rating we can't currently back with real data.
   ========================================================================== */
.reviews-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.reviews-card .google-g { width: 40px; height: 40px; margin-inline: auto 14px; }
.reviews-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.reviews-card h3 { font-size: 1.2rem; }
.reviews-card p { color: var(--ink-500); font-size: 0.95rem; max-width: 40ch; margin-inline: auto; }
.reviews-card .btn { margin-top: 22px; }

/* ==========================================================================
   Final CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 22px;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.4rem, 3.4vw, 2.1rem); }
.cta-band p { color: rgba(255,255,255,0.78); margin-top: 10px; max-width: 50ch; margin-inline: auto; }
.cta-band .btn-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.72); padding: 48px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Logo badge: the source PNG has an opaque white background, so it's
   wrapped in a small white card rather than placed directly on navy -
   this uses the real brand file instead of a hand-recreated approximation. */
.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  margin-bottom: 16px;
}
.footer-logo-badge img { height: 28px; width: auto; }

.footer-about { font-size: 0.9rem; max-width: 34ch; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 4px; }
.footer-col a { display: flex; align-items: center; min-height: 40px; font-size: 0.92rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--teal-400); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; min-height: 40px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--teal-400); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 0 28px;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.mt-56 { margin-top: 40px; }
@media (min-width: 720px) {
  .mt-56 { margin-top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* ==========================================================================
   Quote page (get-a-quote.html)
   ========================================================================== */
.quote-hero {
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 40px 0 32px;
  text-align: center;
}
.quote-hero h1 { color: var(--white); font-size: clamp(1.7rem, 4vw, 2.4rem); }
.quote-hero p { margin-top: 10px; color: rgba(255,255,255,0.8); max-width: 50ch; margin-inline: auto; }
.quote-hero .eyebrow { margin-bottom: 14px; }
.quote-hero-trust {
  justify-content: center;
  grid-template-columns: none;
  grid-auto-flow: column;
  width: max-content;
  margin: 22px auto 0;
  padding-top: 0;
  border-top: 0;
  gap: 22px;
}
@media (max-width: 479px) {
  .quote-hero-trust { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); width: 100%; gap: 10px 18px; }
}

.quote-form-wrap {
  max-width: 760px;
  margin: -28px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .quote-form-wrap { padding: 40px; }
}

/* ==========================================================================
   Quote form fields
   ========================================================================== */
.form-section {
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
}
.form-section:first-of-type { padding-top: 0; }
.form-section:last-of-type { border-bottom: 0; padding-bottom: 0; }
.form-section-title { font-size: 1.02rem; margin-bottom: 16px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-grid + .form-field,
.form-field + .form-grid,
.form-grid + .form-grid {
  margin-top: 16px;
}
@media (min-width: 560px) {
  .form-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .form-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 720px) {
  .form-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.form-field-full { grid-column: 1 / -1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-section > .form-field + .form-field { margin-top: 16px; }

.form-field label,
.form-field-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-700);
}
.req { color: #c0392b; }

.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form input[type="number"],
.quote-form input[type="date"],
.quote-form input[type="time"],
.quote-form select,
.quote-form textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-900);
  width: 100%;
  margin-top: auto;
}
.quote-form textarea { min-height: 110px; resize: vertical; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(79, 184, 172, 0.18);
}

.checkbox-grid, .radio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.check-pill { position: relative; }
.check-pill input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.check-pill span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-700);
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.check-pill:has(input:checked) span {
  border-color: var(--navy-700);
  background: var(--navy-700);
  color: var(--white);
}
.check-pill:has(input:focus-visible) span {
  box-shadow: 0 0 0 3px rgba(79, 184, 172, 0.3);
}

.service-type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 480px) {
  .service-type-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.service-type-card input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.service-type-card svg {
  width: 26px;
  height: 26px;
  color: var(--navy-700);
}
.service-type-card span {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink-900);
}
.service-type-card:has(input:checked) {
  border-color: var(--navy-700);
  background: var(--teal-100);
  box-shadow: var(--shadow-sm);
}
.service-type-card:has(input:focus-visible) {
  box-shadow: 0 0 0 3px rgba(79, 184, 172, 0.3);
}

.form-conditional { display: none; }
.form-conditional.is-visible { display: flex; flex-direction: column; gap: 7px; }

.form-submit-row { padding-top: 22px; }
.form-note { margin-top: 12px; text-align: center; font-size: 0.85rem; color: var(--ink-500); }
.form-note svg { color: var(--teal-500); }
#qf-error { color: #c0392b; font-weight: 600; }

.quote-success { text-align: center; padding: 12px 6px; }
.quote-success svg { width: 52px; height: 52px; color: var(--teal-500); margin: 0 auto 16px; }
.quote-success h3 { font-size: 1.3rem; margin-bottom: 10px; }
.quote-success p { color: var(--ink-500); max-width: 46ch; margin-inline: auto; }

