/* ==========================================================================
   Total Care Cleaning LLC — shared stylesheet
   Used by /index.html, /thank-you/index.html, /privacy/index.html
   ========================================================================== */

:root {
  --blue: #2BB3E8;
  --blue-deep: #1A8FBF;
  --navy: #1B3A5C;
  --navy-deep: #0F2540;
  --ink: #16283C;
  --paper: #F5F8FB;
  --cloud: #E8F1F8;
  --gray: #5C6B7E;
  --gray-light: #7A8798;
  --border: #E3E9F0;
  --white: #FFFFFF;
  --error: #B00020;
  --error-bg: #FDECEF;
  --error-border: #F5B5C0;
  --sticky-h: 60px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.14;
  color: var(--navy);
}
a { color: inherit; }
img { max-width: 100%; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 14px; display: inline-block;
}
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--gray); max-width: 640px; margin-bottom: 40px; }

/* Accessibility helpers */
.visually-hidden {
  position: absolute !important; 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: -999px; top: 0; z-index: 200;
  background: var(--navy-deep); color: var(--white); padding: 12px 18px; border-radius: 0 0 8px 0;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; text-decoration: none; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 10px; border: none;
  min-height: 48px;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 14px rgba(43,179,232,0.28); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue-deep); }
.btn-light { background: rgba(255,255,255,0.12); color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-light:hover { background: rgba(255,255,255,0.22); }
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(15,37,64,0.98) 0%, rgba(15,37,64,0.92) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43,179,232,0.2);
  box-shadow: 0 6px 28px -12px rgba(0,0,0,0.55);
}
.header-inner {
  max-width: 1140px; margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.header-logo img { height: 84px; width: auto; display: block; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--white); text-decoration: none;
}
.header-phone-icon {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  background: rgba(43,179,232,0.16); border: 1px solid rgba(43,179,232,0.34);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.header-phone-icon svg { width: 19px; height: 19px; color: var(--blue); }
.header-phone:hover .header-phone-icon { background: rgba(43,179,232,0.3); transform: translateY(-1px); }
.header-phone-text { display: flex; flex-direction: column; line-height: 1.15; }
.header-phone-text .hp-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
}
.header-phone-text .hp-num { font-size: 17px; font-weight: 800; color: var(--white); }
.header-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.16); }
header .btn-primary {
  padding: 12px 20px; font-size: 14px; min-height: 44px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  box-shadow: 0 6px 18px -4px rgba(43,179,232,0.5);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white); padding: 76px 0 84px;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(43,179,232,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,179,232,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 72% 35%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at 72% 35%, black 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1.02fr; gap: 48px; align-items: center;
}
.hero-tag {
  display: inline-block; background: rgba(43,179,232,0.15); color: var(--blue);
  border: 1px solid rgba(43,179,232,0.32);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(32px, 4.4vw, 52px); color: var(--white); margin-bottom: 18px; }
.hero h1 .accent { color: var(--blue); font-style: italic; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 540px; margin-bottom: 20px; }
.hero-positioning { font-size: 15.5px; color: rgba(255,255,255,0.7); max-width: 520px; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; flex-direction: column; gap: 12px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.14); }
.hero-trust-item { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.92); }
.hero-trust-item svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

.hero-photo { position: relative; }
.hero-collage { position: relative; z-index: 1; width: 100%; height: 560px; }
.collage-item {
  position: absolute; overflow: hidden;
  border: 4px solid var(--white); border-radius: 12px;
  box-shadow: 0 16px 38px -12px rgba(0,0,0,0.6);
}
.collage-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.c-kitchen { top: 12px; left: 0; width: 70%; height: 54%; transform: rotate(-3deg); z-index: 2; }
.c-cooktop { top: 0; right: 1%; width: 38%; height: 62%; transform: rotate(4deg); z-index: 3; }
.c-laundry { bottom: 0; left: 1%; width: 60%; height: 52%; transform: rotate(3deg); z-index: 1; }
.c-living  { bottom: 5%; right: 0; width: 64%; height: 57%; transform: rotate(-2deg); z-index: 4; }

/* ---------- Reviews ---------- */
.reviews { background: var(--paper); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 26px 24px; box-shadow: 0 10px 30px -22px rgba(27,58,92,0.35);
  display: flex; flex-direction: column;
}
.review-quote { font-size: 15.5px; color: var(--ink); margin-bottom: 18px; flex-grow: 1; }
.review-meta { display: flex; align-items: center; gap: 11px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white); font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.review-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.review-source {
  font-size: 12px; font-weight: 600; color: var(--gray-light);
  display: inline-flex; align-items: center; gap: 5px; margin-top: 1px;
}
.review-source svg { width: 13px; height: 13px; color: #1877F2; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px 22px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.service-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.service-icon {
  width: 48px; height: 48px; border-radius: 11px;
  background: var(--cloud); display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--blue-deep); }
.service-card h3 { font-size: 21px; margin-bottom: 8px; }
.service-card p { color: var(--gray); font-size: 14.5px; margin-bottom: 8px; }
.service-fit { font-size: 13px; color: var(--gray-light); margin-bottom: 16px; }
.service-fit strong { color: var(--navy); font-weight: 700; }
.service-cta {
  margin-top: auto; align-self: flex-start;
  font-weight: 700; font-size: 14.5px; color: var(--blue-deep); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 0; min-height: 44px;
}
.service-cta:hover { color: var(--navy); }
.service-cta svg { width: 16px; height: 16px; }
.services-note { margin-top: 28px; font-size: 15.5px; color: var(--gray); }
.services-note strong { color: var(--navy); font-weight: 700; }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper); }
.pricing-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.pricing-inner .section-sub { margin: 0 auto 0; }
.pricing-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 34px 32px; margin-top: 8px;
  box-shadow: 0 14px 40px -28px rgba(27,58,92,0.3);
}
.pricing-card p { font-size: 18px; color: var(--ink); line-height: 1.7; }

/* ---------- Process ---------- */
.process {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white); position: relative; overflow: hidden; padding: 62px 0;
}
.process::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(43,179,232,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.process .container { position: relative; z-index: 1; }
.process-head { text-align: center; margin-bottom: 40px; }
.process-head h2 { color: var(--white); font-size: clamp(26px, 3.4vw, 40px); }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  position: relative; max-width: 920px; margin: 0 auto;
}
.process-grid::before {
  content: ''; position: absolute; top: 40px; left: 17%; right: 17%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(43,179,232,0.5), transparent); z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.process-badge {
  width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
  border: 4px solid var(--navy-deep);
  box-shadow: 0 10px 28px -10px rgba(43,179,232,0.6);
}
.process-badge svg { width: 34px; height: 34px; color: var(--white); }
.process-num {
  position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--white); color: var(--navy-deep); font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.process-step h3 { color: var(--white); font-size: 22px; margin-bottom: 6px; }
.process-step p { color: rgba(255,255,255,0.72); font-size: 14.5px; max-width: 240px; margin: 0 auto; }

/* ---------- Before / After (side-by-side, no drag) ---------- */
.before-after { background: var(--white); }
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ba-card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px;
  box-shadow: 0 10px 30px -24px rgba(27,58,92,0.25);
}
.ba-card-title { font-size: 20px; color: var(--navy); margin-bottom: 14px; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ba-frame { position: relative; border-radius: 10px; overflow: hidden; background: var(--cloud); }
.ba-frame img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ba-tag {
  position: absolute; top: 10px; left: 10px; padding: 5px 12px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; z-index: 2;
}
.ba-tag-before { background: rgba(15,37,64,0.85); color: var(--white); }
.ba-tag-after { background: var(--blue); color: var(--white); }

/* ---------- Service Area ---------- */
.service-area { background: var(--paper); text-align: center; }
.area-text { font-size: 19px; color: var(--ink); max-width: 760px; margin: 0 auto 22px; line-height: 1.7; }
.area-text strong { color: var(--navy); font-weight: 700; }
.area-communities {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 820px; margin: 0 auto 24px;
}
.area-chip {
  background: var(--white); border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 16px; font-size: 14px; font-weight: 600; color: var(--navy);
}
.area-zip { font-size: 16px; color: var(--gray); max-width: 640px; margin: 0 auto; }
.area-zip a { color: var(--blue-deep); font-weight: 700; text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 28px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 6px 0; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; cursor: pointer;
  font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--navy);
  list-style: none; padding: 16px 0; min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 300;
  color: var(--blue); transition: transform 0.2s ease; padding-left: 16px; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 18px; color: var(--gray); font-size: 15.5px; }
.faq-answer strong { color: var(--navy); }

/* ---------- Quote form ---------- */
.quote-form { background: var(--cloud); }
.form-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; }
.form-intro h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.form-intro p { color: var(--gray); font-size: 17px; margin-bottom: 24px; }
.form-contact { padding: 16px 20px; background: var(--white); border-radius: 12px; border: 1px solid var(--border); margin-bottom: 12px; }
.form-contact-label { font-size: 12px; color: var(--blue-deep); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 4px; }
.form-contact a { color: var(--navy); text-decoration: none; font-size: 20px; font-weight: 700; font-family: 'DM Serif Display', serif; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; }
.form-contact a:hover { color: var(--blue-deep); }
.form-hours { font-size: 14px; color: var(--gray); margin-top: 10px; }

.form-card { background: var(--white); border-radius: 16px; padding: 32px; border: 1px solid var(--border); box-shadow: 0 20px 50px -30px rgba(27,58,92,0.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 15px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-field .req { color: var(--blue-deep); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--border); border-radius: 9px;
  font-family: 'Manrope', sans-serif; font-size: 16px; color: var(--ink); background: var(--paper);
  transition: border-color 0.2s ease, background 0.2s ease; min-height: 48px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.form-field input[aria-invalid="true"], .form-field select[aria-invalid="true"] { border-color: var(--error); }
.form-field textarea { resize: vertical; min-height: 88px; }
.field-error { display: none; color: var(--error); font-size: 13px; margin-top: 5px; font-weight: 600; }
.field-error.show { display: block; }

.form-static-value {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1.5px solid var(--border); border-radius: 9px;
  padding: 13px 14px; font-size: 16px; font-weight: 700; color: var(--navy); min-height: 48px;
}
.form-static-value svg { width: 18px; height: 18px; color: var(--blue-deep); }

/* Optional details */
.details-toggle { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 15px; background: var(--paper); }
.details-toggle > summary {
  cursor: pointer; list-style: none; padding: 14px 16px; min-height: 48px;
  font-weight: 700; font-size: 14.5px; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
}
.details-toggle > summary::-webkit-details-marker { display: none; }
.details-toggle > summary::after { content: '+'; font-size: 22px; color: var(--blue-deep); font-weight: 400; }
.details-toggle[open] > summary::after { content: '–'; }
.details-body { padding: 4px 16px 12px; }

/* Honeypot — hidden from humans, not type=hidden, out of tab order + a11y tree */
.hp-field {
  position: absolute !important; left: -9999px !important; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.form-submit { width: 100%; margin-top: 8px; font-size: 17px; padding: 16px; }
.form-consent { margin-top: 14px; font-size: 13px; color: var(--gray); text-align: center; line-height: 1.55; }
.form-consent a { color: var(--blue-deep); font-weight: 700; text-decoration: underline; }
.form-alert {
  display: none; margin-top: 14px; padding: 13px 15px; border-radius: 9px; font-size: 14.5px; font-weight: 600;
}
.form-alert.show { display: block; }
.form-alert[data-kind="error"] { color: var(--error); background: var(--error-bg); border: 1px solid var(--error-border); }

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: var(--white); padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo img { height: 88px; width: auto; margin-bottom: 14px; }
footer p { color: rgba(255,255,255,0.66); font-size: 14.5px; }
footer h4 { font-family: 'Manrope', sans-serif; color: var(--blue); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
footer a { color: rgba(255,255,255,0.84); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 8px; font-size: 14.5px; min-height: 32px; }
footer a:hover { color: var(--blue); }
.footer-bottom { padding-top: 22px; text-align: center; color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: underline; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
  padding: 8px 12px; gap: 10px; }
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-weight: 700; font-size: 15px; border-radius: 10px; padding: 12px; min-height: 48px;
}
.mobile-bar .mb-call { background: var(--paper); color: var(--navy); border: 1.5px solid var(--border); }
.mobile-bar .mb-quote { background: var(--blue); color: var(--white); }
.mobile-bar svg { width: 18px; height: 18px; }

/* ---------- Simple content pages (thank-you / privacy) ---------- */
.page-narrow { max-width: 760px; margin: 0 auto; }
.thankyou { padding: 84px 0; text-align: center; }
.thankyou-icon {
  width: 84px; height: 84px; margin: 0 auto 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -12px rgba(43,179,232,0.6);
}
.thankyou-icon svg { width: 42px; height: 42px; color: var(--white); }
.thankyou h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.thankyou p.lead { font-size: 19px; color: var(--gray); max-width: 560px; margin: 0 auto 32px; }
.thankyou-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.thankyou-actions .btn { font-size: 18px; padding: 16px 30px; }
.thankyou-links a { color: var(--blue-deep); font-weight: 700; text-decoration: underline; }

.legal { padding: 60px 0 72px; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 8px; }
.legal .updated { color: var(--gray-light); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 24px; margin: 34px 0 12px; }
.legal h3 { font-size: 18px; margin: 22px 0 8px; font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--navy); }
.legal p, .legal li { color: var(--ink); font-size: 16px; margin-bottom: 12px; line-height: 1.7; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--blue-deep); font-weight: 600; text-decoration: underline; }
.legal .callout { background: var(--paper); border: 1px solid var(--border); border-left: 4px solid var(--blue); border-radius: 10px; padding: 18px 20px; margin: 18px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding: 54px 0 60px; }
  .hero-collage { height: 480px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  section { padding: 54px 0; }
}
@media (max-width: 600px) {
  .header-phone, .header-divider { display: none; }
  .header-logo img { height: 56px; }
  header .btn-primary { padding: 10px 16px; font-size: 13px; white-space: nowrap; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-grid::before { display: none; }
  .ba-pair { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: var(--sticky-h); }
  .form-card { padding: 22px; }
  .hero-collage { height: 380px; }
}

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

/* ==========================================================================
   VISUAL ENHANCEMENTS (within the navy/blue palette)
   ========================================================================== */

/* Eyebrow: small accent bar before the label */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.eyebrow::before {
  content: ''; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.process-head .eyebrow, .pricing-inner .eyebrow, .service-area .eyebrow { justify-content: center; }
.process-head .eyebrow::before { background: linear-gradient(90deg, transparent, var(--blue)); }

/* Section-title flourish for centered sections */
.pricing-inner .section-title::after,
.service-area .section-title::after,
.reviews .section-title::after {
  content: ''; display: block; width: 64px; height: 3px; margin: 16px 0 0;
  border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-deep));
}
.pricing-inner .section-title::after, .service-area .section-title::after { margin-left: auto; margin-right: auto; }

/* Hero: soft blue glow + collage depth */
.hero::after {
  content: ''; position: absolute; top: -160px; right: -120px;
  width: 560px; height: 560px; pointer-events: none; filter: blur(60px); z-index: 0;
  background: radial-gradient(circle, rgba(43,179,232,0.28) 0%, transparent 62%);
}
.hero-photo::before {
  content: ''; position: absolute; top: -18px; left: -18px; z-index: 0;
  width: 90px; height: 90px;
  background-image: radial-gradient(rgba(43,179,232,0.6) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
.hero-photo::after {
  content: ''; position: absolute; right: -26px; bottom: -26px; z-index: 0;
  width: 58%; height: 58%; filter: blur(30px);
  background: radial-gradient(circle, rgba(43,179,232,0.4) 0%, transparent 65%);
}
.collage-item { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.collage-item:hover {
  transform: scale(1.04) rotate(0deg) !important; z-index: 9;
  box-shadow: 0 24px 52px -12px rgba(0,0,0,0.72);
}
.hero-photo-float {
  position: absolute; z-index: 6; bottom: -14px; left: 6px;
  display: flex; align-items: center; gap: 11px;
  background: var(--white); padding: 12px 16px; border-radius: 14px;
  box-shadow: 0 16px 36px -10px rgba(0,0,0,0.5);
}
.hpf-icon {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
}
.hpf-icon svg { width: 20px; height: 20px; color: var(--white); }
.hpf-text { display: flex; flex-direction: column; line-height: 1.25; }
.hpf-text strong { font-size: 14.5px; color: var(--navy); font-weight: 800; }
.hpf-text span { font-size: 12.5px; color: var(--gray); }

/* Cards: gradient top accent on hover + deeper lift */
.service-card, .review-card, .why-item { position: relative; overflow: hidden; }
.service-card::before, .why-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.service-card:hover::before, .why-item:hover::before { transform: scaleX(1); }
.service-card:hover, .why-item:hover { box-shadow: 0 22px 48px -26px rgba(27,58,92,0.4); }
.review-card { border-top: 3px solid transparent; transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease; }
.review-card:hover { border-top-color: var(--blue); transform: translateY(-3px); box-shadow: 0 18px 42px -24px rgba(27,58,92,0.35); }
.review-quote { position: relative; }

/* Why Total Care band */
.why-us { background: var(--paper); }
.service-area { background: var(--white); }
.service-area .area-chip { background: var(--paper); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px 24px;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.why-item:hover { border-color: var(--blue); transform: translateY(-3px); }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cloud), #d7e8f5);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 24px; height: 24px; color: var(--blue-deep); }
.why-item h3 { font-size: 19px; margin-bottom: 5px; }
.why-item p { color: var(--gray); font-size: 14.5px; }

/* Process badges: gentle pulse (respecting reduced-motion above) */
@keyframes tccPulse {
  0%, 100% { box-shadow: 0 10px 28px -10px rgba(43,179,232,0.55); }
  50% { box-shadow: 0 14px 40px -6px rgba(43,179,232,0.9); }
}
.process-badge { animation: tccPulse 3.2s ease-in-out infinite; transition: transform 0.25s ease; }
.process-step:nth-child(2) .process-badge { animation-delay: 1s; }
.process-step:nth-child(3) .process-badge { animation-delay: 2s; }
.process-step:hover .process-badge { transform: translateY(-5px) scale(1.05); }

/* Form card: subtle top accent bar */
.form-card { position: relative; }
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
}

/* Buttons: subtle sheen */
.btn-primary { position: relative; overflow: hidden; }

@media (max-width: 940px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-photo-float { left: 2px; bottom: -10px; }
}
