:root {
  --navy: #071f70;
  --blue: #1245d8;
  --blue-bright: #2870ff;
  --blue-soft: #eaf3fc;
  --yellow: #ffc515;
  --yellow-soft: #fff5c9;
  --ink: #142033;
  --muted: #5d6978;
  --line: #dce4ed;
  --paper: #ffffff;
  --canvas: #f5f8fb;
  --success: #187249;
  --danger: #a92d34;
  --shadow: 0 24px 60px rgba(3, 24, 94, 0.22);
  --shadow-small: 0 12px 30px rgba(3, 24, 94, 0.14);
  --radius: 22px;
  --radius-small: 14px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.topbar {
  color: white;
  background: #101010;
  font-size: 0.88rem;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p { margin: 0; }
.topbar a { color: white; font-weight: 800; text-decoration: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 5px solid var(--blue);
  backdrop-filter: blur(16px);
}

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

.brand { flex: 0 1 310px; }
.brand img { width: 285px; max-height: 62px; object-fit: contain; object-position: left center; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 750;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blue); }
.site-nav .button:hover { color: white; }
.site-nav .button { color: var(--navy); background: var(--yellow); border-color: var(--yellow); }
.site-nav .button[aria-current="page"] { color: var(--navy); }
.site-nav .button:hover { color: white; background: var(--blue); border-color: var(--blue); }
.breadcrumbs { color: #51617a; background: #f6f8fc; border-bottom: 1px solid var(--line); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; min-height: 44px; margin: 0; padding: 9px 0; list-style: none; font-size: .84rem; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li + li::before { color: #9aa6b7; content: "/"; }
.breadcrumbs a { min-height: 32px; display: inline-flex; align-items: center; padding-inline: 2px; color: var(--blue); font-weight: 800; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs [aria-current="page"] { color: #59677b; font-weight: 700; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  color: white;
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(23, 84, 154, 0.18);
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 10px 24px rgba(12, 47, 93, 0.23);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy);
  background: white;
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover { color: white; }
.button-yellow { color: var(--navy); background: var(--yellow); border-color: var(--yellow); }
.button-yellow:hover { color: white; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 108px) 0 58px;
  background:
    radial-gradient(circle at 88% 24%, rgba(47, 112, 255, 0.95) 0, rgba(47, 112, 255, 0.18) 23rem, transparent 35rem),
    radial-gradient(circle at 12% 72%, rgba(25, 79, 231, 0.9), transparent 30rem),
    linear-gradient(128deg, #07116b 0%, #0b25ad 48%, #0d3ff2 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.72;
  background-image:
    radial-gradient(circle at 8% 22%, transparent 0 25px, rgba(255,255,255,.13) 26px 28px, transparent 29px),
    radial-gradient(circle at 30% 67%, transparent 0 48px, rgba(255,255,255,.08) 49px 52px, transparent 53px),
    radial-gradient(circle at 76% 18%, transparent 0 18px, rgba(255,255,255,.12) 19px 21px, transparent 22px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, auto, auto, 54px 54px, 54px 54px;
  mask-image: linear-gradient(to right, black, rgba(0,0,0,.6));
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  background: var(--yellow);
  border-radius: 99px;
}

h1, h2, h3 {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 { max-width: 780px; margin: 0; font-size: clamp(2.75rem, 6vw, 5.25rem); }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { margin: 0; font-size: 1.33rem; }

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #dce8ff;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-proof {
  width: fit-content;
  display: block;
  margin-top: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 850;
  text-decoration-color: rgba(255, 255, 255, .55);
  text-decoration-thickness: 1px;
}

.hero-proof:hover { color: var(--yellow); }
.hero-proof span { padding-inline: 3px; color: var(--yellow); }

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

.hero-card {
  position: relative;
  padding: 0 0 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-card img { width: min(100%, 520px); margin: -38px auto -20px; filter: drop-shadow(0 28px 35px rgba(0, 8, 58, .32)); }
.hero-card-copy { position: relative; z-index: 2; max-width: 440px; margin: 0 auto; padding: 18px 22px; color: white; background: rgba(5, 20, 105, .78); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; box-shadow: 0 16px 40px rgba(0, 8, 58, .25); backdrop-filter: blur(10px); }
.hero-card strong { display: block; color: var(--navy); font-size: 1.16rem; }
.hero-card p { margin: 4px 0 0; color: var(--muted); font-size: .94rem; }
.hero-card-copy strong { color: white; }
.hero-card-copy p { color: #dce8ff; }
.hero h1 { color: white; text-shadow: 0 3px 20px rgba(0,0,0,.18); }
.hero h1 span { display: block; color: var(--yellow); }
.hero .eyebrow { color: var(--yellow); }
.hero .button-secondary { color: white; background: transparent; border-color: rgba(255,255,255,.65); }
.hero .button-secondary:hover { background: white; border-color: white; color: var(--navy); }
.hero .hero-proof:visited { color: white; }
.hero .hero-proof:hover { color: var(--yellow); }

.trust-strip {
  position: relative;
  margin-top: 58px;
}

.trust-grid {
  display: grid;
  overflow: hidden;
  background: white;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  grid-template-columns: repeat(4, 1fr);
}

.trust-item { padding: 22px 24px; border-right: 1px solid var(--line); }
.trust-grid a.trust-item { color: inherit; text-decoration: none; }
.trust-grid a.trust-item:hover { background: var(--yellow-soft); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 1.08rem; }
.trust-item span { display: block; margin-top: 2px; color: var(--muted); font-size: 0.9rem; }

.section { padding: clamp(68px, 8vw, 108px) 0; }
.section-alt { background: var(--canvas); }
.section-dark { color: white; background: var(--navy); }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark .eyebrow { color: var(--yellow); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}

.section-head > div { max-width: 740px; }
.section-head p, .lead { margin: 18px 0 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-head p, .section-dark .lead { color: #d6e4f4; }

.card-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }

.card {
  padding: 27px;
  background: white;
  border: 0;
  border-top: 5px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover { box-shadow: 0 20px 44px rgba(3, 24, 94, .2); transform: translateY(-5px); }
.card p { margin: 12px 0 0; color: var(--muted); }
.card a { display: inline-block; margin-top: 17px; font-weight: 850; text-decoration: none; }

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  margin-bottom: 20px;
  color: var(--navy);
  color: white;
  background: var(--blue);
  border-radius: 14px;
  place-items: center;
}

.icon-box svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.split {
  display: grid;
  align-items: center;
  gap: clamp(42px, 7vw, 82px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  color: white;
  background: linear-gradient(145deg, #1d59f3, #0b35c8);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.feature-panel::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  content: "";
  border: 40px solid rgba(247, 198, 47, 0.25);
  border-radius: 50%;
}

.feature-panel h2, .feature-panel h3 { color: white; }
.feature-panel p { position: relative; z-index: 1; color: #e6f0fb; }
.feature-panel .button { position: relative; z-index: 1; }

.check-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  content: "✓";
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
  place-items: center;
}

.process-grid { display: grid; gap: 18px; counter-reset: process; grid-template-columns: repeat(3, 1fr); }
.process-card { position: relative; padding: 26px 26px 26px 84px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.process-card::before {
  position: absolute;
  top: 25px;
  left: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  content: counter(process);
  counter-increment: process;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 14px;
  font-weight: 950;
  place-items: center;
}
.process-card p { margin: 9px 0 0; color: var(--muted); }

.quote-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.quote { margin: 0; padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.quote p { margin: 0; color: #39485c; }
.quote footer { margin-top: 18px; color: var(--navy); font-weight: 850; }
.quote footer a { color: inherit; text-decoration: none; }
.quote footer a:hover { color: var(--blue); text-decoration: underline; }
.stars { color: #dc9f00; letter-spacing: 0.1em; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(30px, 5vw, 52px);
  color: white;
  background: linear-gradient(125deg, var(--navy), var(--blue));
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: white; }
.cta-band p { max-width: 680px; margin: 10px 0 0; color: #d9e8f7; }
.cta-band .hero-actions { flex: 0 0 auto; margin: 0; }

.page-hero {
  padding: clamp(58px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 86% 28%, rgba(53, 118, 255, .9), transparent 24rem),
    linear-gradient(125deg, #07116b, #0d38de);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.65rem); }
.page-hero h1 { color: white; }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero p:not(.eyebrow) { max-width: 760px; margin: 20px 0 0; color: #dce8ff; font-size: 1.16rem; }

.detail-grid { display: grid; gap: 22px; grid-template-columns: 1.25fr 0.75fr; }
.content-card { padding: clamp(28px, 4vw, 46px); background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.content-card h2 { font-size: clamp(1.8rem, 3vw, 2.55rem); }
.content-card h3 { margin-top: 30px; }
.content-card p, .content-card li { color: #48576a; }

.service-list { display: grid; gap: 14px; margin: 26px 0 0; padding: 0; list-style: none; grid-template-columns: repeat(2, 1fr); }
.service-list li { padding: 15px 17px; color: var(--navy); background: var(--blue-soft); border-radius: 12px; font-weight: 800; }

.faq { display: grid; gap: 12px; }
.faq details { background: white; border: 1px solid var(--line); border-radius: 14px; }
.faq summary { padding: 20px 22px; color: var(--navy); cursor: pointer; font-weight: 850; }
.faq details p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.notice {
  padding: 18px 20px;
  color: #624900;
  background: var(--yellow-soft);
  border: 1px solid #ead16f;
  border-radius: var(--radius-small);
}

.page-trust { position: relative; z-index: 3; margin-top: -30px; }
.tips-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.tip-card { display: flex; gap: 18px; padding: 24px; background: white; border-radius: var(--radius); box-shadow: var(--shadow-small); }
.tip-card > span { width: 40px; height: 40px; display: grid; flex: 0 0 40px; color: var(--navy); background: var(--yellow); border-radius: 50%; font-weight: 950; place-items: center; }
.tip-card h3 { font-size: 1.1rem; }
.tip-card p { margin: 7px 0 0; color: var(--muted); }
.safety-notice { margin-top: 20px; padding: 20px 22px; color: #fff; background: #8d2530; border-radius: var(--radius-small); }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.related-links a { padding: 10px 15px; color: var(--navy); background: var(--blue-soft); border-radius: 999px; font-weight: 800; text-decoration: none; }
.related-links a:hover { color: white; background: var(--blue); }
.local-resource-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.local-resource { padding: 26px; background: white; border-top: 5px solid var(--yellow); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.local-resource p { color: var(--muted); }
.guide-byline { display: grid; gap: 0; overflow: hidden; background: white; border-radius: var(--radius); box-shadow: var(--shadow-small); grid-template-columns: 1fr 1fr; }
.guide-byline > div { display: grid; gap: 4px; padding: 22px 26px; }
.guide-byline > div + div { border-left: 1px solid var(--line); }
.guide-byline strong { color: var(--navy); }
.guide-byline span { color: var(--muted); font-size: .92rem; }
.decision-grid { display: grid; gap: 16px; counter-reset: guide-choice; grid-template-columns: repeat(4, 1fr); }
.decision-card { display: flex; min-height: 280px; padding: 26px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-small); flex-direction: column; }
.decision-card > span { width: 42px; height: 42px; display: grid; margin-bottom: 22px; color: var(--navy); background: var(--yellow); border-radius: 50%; font-weight: 950; place-items: center; }
.decision-card p { color: var(--muted); }
.decision-card a { margin-top: auto; font-weight: 850; }
.guide-resources { grid-template-columns: repeat(2, 1fr); }
.featured-resource { border-top-color: var(--blue); background: linear-gradient(150deg, #fffdf2, white); }
.resource-details { display: grid; gap: 6px; margin: 16px 0; padding: 0; color: var(--muted); font-size: .92rem; list-style: none; }
.resource-place { margin: 0 0 8px; color: var(--blue) !important; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.guide-update { margin-top: 22px; }
.fine-print { color: var(--muted); font-size: .9rem; }
.four-step-grid { grid-template-columns: repeat(2, 1fr); }
.checklist-sheet { border-top: 6px solid var(--yellow); }
.community-section { padding-top: 0; background: #f1f5ff; }
.community-band { display: grid; gap: clamp(28px, 6vw, 70px); padding: clamp(30px, 5vw, 52px); color: white; background: linear-gradient(125deg, #07176a, #1246d8); border-radius: 30px; grid-template-columns: 1.05fr .95fr; }
.community-band h2 { color: white; }
.community-band p { margin: 12px 0 0; color: #dce8ff; }
.community-band .eyebrow { color: var(--yellow); }

.brandi-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 197, 21, .28), transparent 18rem),
    radial-gradient(circle at 88% 72%, rgba(53, 118, 255, .88), transparent 25rem),
    linear-gradient(125deg, #050d55, #0b30bd);
}
.brandi-hero h1 { max-width: 980px; }
.system-flow { display: grid; gap: 14px; grid-template-columns: repeat(5, 1fr); }
.flow-node { position: relative; min-height: 250px; padding: 25px 22px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.flow-node::after { position: absolute; z-index: 2; top: 50%; right: -13px; width: 24px; height: 24px; display: grid; content: "→"; color: var(--navy); background: var(--yellow); border-radius: 50%; font-weight: 950; place-items: center; transform: translateY(-50%); }
.flow-node:last-child::after { display: none; }
.flow-node > span { width: 40px; height: 40px; display: grid; margin-bottom: 20px; color: white; background: var(--blue); border-radius: 12px; font-weight: 950; place-items: center; }
.flow-node strong { display: block; color: var(--navy); font-size: 1.08rem; }
.flow-node p { margin: 10px 0 0; color: var(--muted); font-size: .94rem; }
.brandi-origin { color: white; background: linear-gradient(130deg, #07165f, #0a36c8); }
.brandi-origin .content-card { color: var(--ink); }
.brandi-origin .feature-panel { border: 1px solid rgba(255,255,255,.13); }

.legal { max-width: 860px; }
.legal h2 { margin-top: 46px; font-size: 1.85rem; }
.legal h3 { margin-top: 28px; }
.legal p, .legal li { color: #46566b; }

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 28px;
  color: #dce7ff;
  background:
    radial-gradient(circle at 3% 18%, transparent 0 32px, rgba(255,255,255,.12) 33px 35px, transparent 36px),
    radial-gradient(circle at 96% 8%, transparent 0 54px, rgba(255,255,255,.09) 55px 58px, transparent 59px),
    linear-gradient(140deg, #06185d, #06258c);
}
.footer-grid { display: grid; gap: 46px; grid-template-columns: 1.4fr 0.8fr 0.8fr; }
.footer-brand img {
  width: 290px;
  margin-bottom: 20px;
  padding: 8px 10px;
  background: white;
  border-radius: 12px;
}
.footer-brand p { max-width: 500px; margin: 0; }
.site-footer h3 { margin-bottom: 16px; color: white; font-size: 1rem; letter-spacing: 0.02em; }
.footer-links { display: grid; gap: 9px; padding: 0; list-style: none; }
.site-footer a { color: #d4e2f1; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.88rem; }

.staging-badge {
  position: fixed;
  z-index: 99;
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 99px;
  box-shadow: var(--shadow-small);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Brand-forward homepage theme */
.services-section {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f1f5ff 100%);
}
.services-section .featured-service { border-top-color: var(--yellow); background: linear-gradient(155deg, #fffdf4, #fff); }
.services-section .featured-service .icon-box { color: var(--navy); background: var(--yellow); }
.dryer-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(41, 110, 255, .7), transparent 28rem),
    linear-gradient(125deg, #061661, #082da9);
}
.dryer-section::before {
  position: absolute;
  right: -110px;
  top: -110px;
  width: 360px;
  height: 360px;
  content: "";
  border: 56px solid rgba(255, 197, 21, .17);
  border-radius: 50%;
}
.dryer-section .split { position: relative; }
.dryer-section h2 { color: white; }
.dryer-section .lead { color: #dce8ff; }
.dryer-section > .container > div:last-child .eyebrow { color: var(--yellow); }
.dryer-section .button-secondary { color: white; background: transparent; border-color: rgba(255,255,255,.55); }
.dryer-section .button-secondary:hover { color: var(--navy); background: white; }
.process-section { background: #f1f5ff; }
.process-card { border: 0; box-shadow: var(--shadow-small); }
.process-card::before { border-radius: 50%; box-shadow: 0 0 0 7px rgba(255, 197, 21, .22); }
.reviews-section {
  color: white;
  background: linear-gradient(130deg, #0b39c8, #0a227e);
}
.reviews-section h2 { color: white; }
.reviews-section .eyebrow { color: var(--yellow); }
.reviews-section .quote { border: 0; box-shadow: 0 18px 38px rgba(0, 7, 51, .25); }
.reviews-hero { background: linear-gradient(125deg, #07116b, #0d38de); }
.rating-hero { display: grid; align-items: center; gap: clamp(34px, 7vw, 90px); grid-template-columns: 1.2fr .8fr; }
.rating-panel { display: grid; justify-items: center; padding: 34px; color: var(--navy); background: white; border: 8px solid rgba(255,255,255,.2); border-radius: 30px; box-shadow: var(--shadow); text-align: center; }
.rating-number { font-size: clamp(4.7rem, 10vw, 7.5rem); font-weight: 950; letter-spacing: -.08em; line-height: .9; }
.rating-stars { margin-top: 10px; color: #dc9f00; font-size: 1.5rem; letter-spacing: .08em; }
.rating-panel strong { margin-top: 9px; font-size: 1.15rem; }
.rating-panel small { margin-top: 7px; color: var(--muted); }
.review-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.review-card { display: flex; min-height: 285px; margin: 0; padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-small); flex-direction: column; }
.review-card .stars { margin: 15px 0 8px; }
.review-card > p { margin: 0; color: #34445b; font-size: 1.05rem; }
.review-topic { align-self: flex-start; padding: 6px 10px; color: var(--navy); background: var(--yellow-soft); border-radius: 999px; font-size: .75rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.review-card footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 24px; }
.review-card footer strong { color: var(--navy); }
.review-card footer a { font-size: .9rem; font-weight: 850; text-decoration: none; }
.cta-band { border: 2px solid rgba(255,255,255,.08); }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
#check-service-area { scroll-margin-top: 96px; }

@media (min-width: 961px) {
  .home-page .hero { padding-top: clamp(54px, 6vw, 86px); }
  .home-page .hero h1 { font-size: clamp(3.75rem, 5vw, 4.6rem); }
}

@media (max-width: 960px) {
  .topbar .container { justify-content: center; }
  .topbar p:first-child { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 18px 20px 24px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-small);
    flex-direction: column;
    gap: 2px;
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: 11px 8px; }
  .site-nav .button { margin-top: 8px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .rating-hero { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .card-grid, .quote-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .local-resource-grid { grid-template-columns: repeat(2, 1fr); }
  .decision-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .community-band { grid-template-columns: 1fr; }
  .system-flow { grid-template-columns: repeat(2, 1fr); }
  .flow-node::after { display: none; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .cta-band .hero-actions { width: 100%; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand { flex-basis: 235px; }
  .brand img { width: 230px; }
  .nav-wrap { min-height: 70px; }
  .hero { padding-top: 54px; }
  h1 { font-size: clamp(2.5rem, 14vw, 3.7rem); }
  .hero-actions .button, .section-actions .button { width: 100%; }
  .hero-card { padding: 22px; border-radius: 24px; }
  .trust-grid, .card-grid, .quote-grid, .process-grid, .service-list, .tips-grid, .local-resource-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .guide-byline, .decision-grid, .four-step-grid { grid-template-columns: 1fr; }
  .system-flow { grid-template-columns: 1fr; }
  .guide-byline > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .decision-card { min-height: 0; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .process-card { padding-left: 78px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .staging-badge { right: 0; bottom: 0; left: 0; padding: 3px 8px; border-radius: 0; text-align: center; font-size: 0.62rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
