/* =====================================================================
   Bundle Builders — internet landing page
   Mobile-first. No framework, no build step, no external requests.
   Type is a system stack on purpose: zero network cost, and no third-party
   font host receiving visitor IPs on a page that must be careful about
   exactly that.
   ===================================================================== */

:root {
  --navy-900: #0B2545;
  --navy-800: #123E6B;
  --navy-700: #1B4B7D;
  --navy-050: #EAF1F8;

  --cyan-500: #17B8C4;
  --cyan-600: #0F97A3;
  --cyan-ink: #08606A;   /* accessible cyan for text on white */

  --ink: #10202F;
  --muted: #526070;
  --surface: #FFFFFF;
  --surface-alt: #F4F7FA;
  --line: #DCE4EC;

  --danger: #B3261E;
  --success: #0E7C66;

  --radius: 10px;
  --radius-lg: 16px;
  --wrap: 1120px;

  --shadow-sm: 0 1px 2px rgba(11, 37, 69, .07), 0 2px 8px rgba(11, 37, 69, .05);
  --shadow-md: 0 2px 6px rgba(11, 37, 69, .08), 0 12px 32px rgba(11, 37, 69, .10);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display",
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

h1, h2, h3 { line-height: 1.18; margin: 0 0 .5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5.2vw, 3.15rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3.2vw, 2.05rem); font-weight: 750; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { margin: 0 0 1rem; }

a { color: var(--cyan-ink); text-underline-offset: 3px; }
a:hover { color: var(--navy-800); }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 760px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-900); color: #fff; padding: 12px 18px;
  border-radius: 0 0 var(--radius) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------- BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 650; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; border-radius: var(--radius);
  padding: 12px 20px; min-height: 48px;
  white-space: nowrap;
  transition: background-color .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--cyan-500); color: var(--navy-900); }
.btn-primary:hover { background: var(--cyan-600); color: var(--navy-900); }

.btn-outline {
  background: transparent; color: var(--navy-900);
  border-color: rgba(11, 37, 69, .28);
}
.btn-outline:hover { border-color: var(--navy-900); color: var(--navy-900); }

.btn-ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy-800); }

.btn-sm { padding: 9px 15px; min-height: 42px; font-size: .94rem; }
.btn-lg { padding: 15px 26px; min-height: 54px; font-size: 1.03rem; }

/* ----------------------------------------------------------------- HEADER */
.site-header {
  background: var(--navy-900);
  color: #fff;
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: #fff; }
.brand-mark { flex: none; border-radius: 9px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
/* The company name is stated plainly rather than shouted; the descriptor
   underneath is what tells a visitor what this service actually is. */
.brand-name { font-weight: 650; font-size: .98rem; letter-spacing: -.005em; }
.brand-tag { font-size: .74rem; color: #BBD3E8; letter-spacing: .01em; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: none; text-decoration: none; color: #fff; text-align: right; line-height: 1.25; }
.header-phone-label { display: block; font-size: .7rem; color: #A9C2DA; text-transform: uppercase; letter-spacing: .06em; }
.header-phone-number { display: block; font-weight: 750; font-size: 1.06rem; }
.header-phone:hover .header-phone-number { color: var(--cyan-500); }

@media (min-width: 640px) { .header-phone { display: block; } }

/* Below 640px the header phone number is hidden, so the Call Now button is
   the only header CTA — keep it compact so it never wraps. */
@media (max-width: 480px) {
  .header-actions .btn-sm { padding: 9px 13px; font-size: .88rem; }
  .brand-tag { display: none; }
  .brand-name { font-size: .92rem; }
}

/* ------------------------------------------------------------------- HERO */
.hero {
  background: linear-gradient(168deg, var(--navy-900) 0%, #0E3057 58%, var(--navy-800) 100%);
  color: #fff;
  padding: 44px 0 52px;
  overflow: hidden;
}
.hero-inner { display: grid; gap: 30px; }
@media (min-width: 940px) {
  .hero { padding: 68px 0 74px; }
  .hero-inner { grid-template-columns: 1.06fr .94fr; align-items: center; gap: 48px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 600; color: #BBD3E8;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: #7E93A8;
}
body[data-open-now="true"] .status-dot { background: #34D399; box-shadow: 0 0 0 4px rgba(52,211,153,.18); }

.hero h1 { color: #fff; max-width: 15ch; }
.hero-sub {
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  color: #CBDCEC; max-width: 46ch; margin-bottom: 26px;
}

.zip-form { margin: 0 0 16px; }
.zip-label {
  display: block; font-size: .82rem; font-weight: 650;
  text-transform: uppercase; letter-spacing: .07em; color: #A9C2DA; margin-bottom: 9px;
}
.zip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.zip-input {
  flex: 1 1 150px; min-width: 0;
  font: inherit; font-size: 1.15rem; font-weight: 650; letter-spacing: .06em;
  padding: 14px 18px; min-height: 54px;
  border: 2px solid rgba(255,255,255,.22); border-radius: var(--radius);
  background: rgba(255,255,255,.96); color: var(--ink);
}
.zip-input::placeholder { color: #93A3B3; font-weight: 500; }
.zip-row .btn { flex: 0 1 auto; }
@media (max-width: 560px) {
  .zip-input { flex: 1 1 100%; }
  .zip-row .btn { flex: 1 1 100%; }
}
.zip-help { font-size: .85rem; color: #A9C2DA; margin: 10px 0 0; max-width: 44ch; }

.hero-or { font-size: .95rem; color: #CBDCEC; margin: 0; }
.hero-call-link { color: #fff; font-weight: 700; text-decoration-color: var(--cyan-500); text-decoration-thickness: 2px; }
.hero-call-link:hover { color: var(--cyan-500); }
.hero-hours { display: block; font-size: .82rem; color: #8FAAC4; margin-top: 4px; }

.hero-visual { display: none; }
@media (min-width: 940px) { .hero-visual { display: block; } }
.hero-visual svg { width: 100%; height: auto; display: block; }

.pulse-line {
  stroke-dasharray: 26 300;
  animation: flow 3.4s linear infinite;
}
.pulse-2 { animation-delay: 1.5s; }
@keyframes flow { from { stroke-dashoffset: 326; } to { stroke-dashoffset: 0; } }

.arc { animation: arcPulse 3s ease-in-out infinite; }
.arc-2 { animation-delay: .28s; }
.arc-3 { animation-delay: .56s; }
@keyframes arcPulse { 0%,100% { opacity: .25; } 45% { opacity: .95; } }

/* ------------------------------------------------------------ NEUTRALITY */
.neutrality {
  background: var(--navy-050);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.neutrality p { margin: 0; font-size: .97rem; color: var(--navy-800); text-align: center; }

/* ------------------------------------------------------------ TRUST STRIP */
.trust-strip { padding: 40px 0 8px; }
.trust-grid { display: grid; gap: 26px; }
@media (min-width: 760px) { .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 34px; } }
.trust-item svg { width: 26px; height: 26px; color: var(--cyan-ink); margin-bottom: 10px; }
.trust-item h2 { font-size: 1.02rem; font-weight: 700; margin-bottom: .3em; letter-spacing: 0; }
.trust-item p { font-size: .94rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------- SECTIONS */
.section { padding: 52px 0; }
.section-alt { background: var(--surface-alt); border-block: 1px solid var(--line); }
.section-title { margin-bottom: .55em; }
.section-lead { color: var(--muted); max-width: 60ch; }

.steps { list-style: none; counter-reset: none; margin: 26px 0 0; padding: 0; display: grid; gap: 28px; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.step { position: relative; padding-top: 6px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy-900); color: var(--cyan-500);
  font-weight: 750; font-size: .95rem; margin-bottom: 12px;
}
.step h3 { margin-bottom: .35em; }
.step p { color: var(--muted); font-size: .96rem; margin: 0; }

.compare-list { margin: 22px 0 20px; padding: 0; list-style: none; max-width: 66ch; }
.compare-list li {
  padding: 13px 0 13px 30px; border-bottom: 1px solid var(--line);
  font-size: .98rem; color: var(--muted); position: relative;
}
.compare-list li::before {
  content: ""; position: absolute; left: 4px; top: 21px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-500);
}
.compare-list strong { color: var(--ink); }
.compare-note { font-size: .89rem; color: var(--muted); max-width: 62ch; margin: 0; }

/* ------------------------------------------------------------------- FORM */
.form-section { padding-top: 52px; }
.form-wrap { display: grid; gap: 28px; }
@media (min-width: 940px) {
  .form-wrap { grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: start; }
  .form-intro { position: sticky; top: 96px; }
}
.form-intro p { color: var(--muted); }
.form-alt-call { font-size: .96rem; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px 18px 26px;
}
@media (min-width: 560px) { .form-card { padding: 30px 30px 34px; } }

.progress { display: flex; list-style: none; margin: 0 0 24px; padding: 0; gap: 6px; }
.progress-step {
  flex: 1; display: flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 650; color: #5A6875;
  padding-top: 12px; border-top: 3px solid var(--line);
}
.progress-step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 21px; height: 21px; border-radius: 50%;
  background: #C9D4DF; color: #3D4A57; font-size: .72rem; flex: none;
}
.progress-step.is-active { color: var(--navy-900); border-top-color: var(--cyan-500); }
.progress-step.is-active span { background: var(--cyan-500); color: var(--navy-900); }
.progress-step.is-done { color: var(--navy-800); border-top-color: var(--navy-700); }
.progress-step.is-done span { background: var(--navy-700); color: #fff; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.step-panel { display: none; border: 0; margin: 0; padding: 0; min-inline-size: 0; }
.step-panel.is-active { display: block; }
@media (prefers-reduced-motion: no-preference) {
  .step-panel.is-active { animation: panelIn .22s ease-out; }
}
@keyframes panelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.panel-legend { font-size: 1.22rem; font-weight: 750; padding: 0; margin: 0 0 6px; letter-spacing: -.015em; }
.panel-note { font-size: .89rem; color: var(--muted); margin: 0 0 18px; }

.field { margin-bottom: 17px; }
.field label, .group-label {
  display: block; font-size: .89rem; font-weight: 650; margin-bottom: 6px; color: var(--ink);
}
.req { color: var(--danger); }
.opt { color: var(--muted); font-weight: 500; }

.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field select {
  width: 100%; font: inherit; font-size: 1rem;
  padding: 12px 14px; min-height: 50px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink);
}
.field select { appearance: none; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23526070' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field input:hover, .field select:hover { border-color: #B9C6D3; }
.field input:focus, .field select:focus { border-color: var(--cyan-600); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); }

.field-row { display: flex; flex-wrap: wrap; gap: 12px; }
.field-grow { flex: 1 1 150px; }
.field-state { flex: 0 0 96px; }
.field-zip { flex: 0 0 110px; }

.field-help { font-size: .82rem; color: var(--muted); margin: 6px 0 0; }
.field-error { font-size: .85rem; color: var(--danger); font-weight: 600; margin: 6px 0 0; }

.choice-row { display: flex; gap: 10px; flex-wrap: wrap; }
.choice-stack { display: grid; gap: 9px; }
.choice { position: relative; display: block; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice > span {
  display: block; padding: 13px 16px; min-height: 50px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  font-size: .96rem; cursor: pointer; background: #fff;
  display: flex; align-items: center;
}
.choice-row .choice > span { min-width: 108px; justify-content: center; }
.choice > span:hover { border-color: #B9C6D3; }
.choice input:checked + span {
  border-color: var(--cyan-600); background: #EFFAFB;
  box-shadow: inset 0 0 0 1px var(--cyan-600);
}
.choice input:focus-visible + span { outline: 3px solid var(--cyan-500); outline-offset: 2px; }
.choice-block > span strong { font-weight: 650; }

.consent {
  margin: 20px 0 4px; padding: 16px;
  background: var(--surface-alt); border: 1px solid var(--line); border-radius: var(--radius);
}
.consent-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; margin: 0; }
.consent-label input[type="checkbox"] {
  flex: none; width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--cyan-600); cursor: pointer;
}
.consent-text {
  font-size: .875rem; line-height: 1.55; color: var(--ink); font-weight: 400;
}
.consent-text a { font-weight: 600; }

.panel-actions { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.panel-actions .btn-primary { flex: 1 1 auto; }

.form-error-summary {
  margin-top: 16px; padding: 12px 14px; border-radius: var(--radius);
  background: #FDECEA; border: 1px solid #F3C4BF; color: #8C1D18;
  font-size: .9rem; font-weight: 600;
}

/* ---------------------------------------------------------------- SUCCESS */
.success { text-align: center; padding: 12px 4px 8px; }
.success-icon svg { width: 62px; height: 62px; margin-bottom: 14px; }
.success h3 { font-size: 1.5rem; margin-bottom: .4em; }
.success p { color: var(--muted); max-width: 44ch; margin-inline: auto; }
.success-number { color: var(--ink) !important; }
.success-number strong { white-space: nowrap; }
.success-hours { font-size: .87rem; }
.success .btn { margin-top: 12px; }

/* ----------------------------------------------------------------- FAQ */
.faq-list { max-width: 760px; }
.form-reassure {
  list-style: none; margin: 26px 0 0; padding: 0;
  border-top: 1px solid var(--line); padding-top: 20px;
}
.form-reassure li {
  position: relative; padding: 0 0 12px 26px;
  font-size: .93rem; color: var(--muted);
}
.form-reassure li::before {
  content: ""; position: absolute; left: 2px; top: 7px;
  width: 11px; height: 7px; border-left: 2px solid var(--cyan-600);
  border-bottom: 2px solid var(--cyan-600); transform: rotate(-45deg);
}
.faq {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer; padding: 16px 34px 16px 0; position: relative;
  font-weight: 650; font-size: 1.02rem; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  width: 10px; height: 10px; margin-top: -6px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq p { color: var(--muted); font-size: .96rem; padding-bottom: 6px; margin: 0 0 10px; max-width: 68ch; }

/* --------------------------------------------------------------- FOOTER */
.site-footer {
  background: var(--navy-900); color: #C6D7E6;
  padding: 44px 0 108px; font-size: .93rem;
}
@media (min-width: 720px) { .site-footer { padding-bottom: 44px; } }
.footer-grid { display: grid; gap: 28px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--cyan-500); }
.footer-brand { font-weight: 800; color: #fff; font-size: 1.08rem; margin-bottom: .15em; }
.footer-entity { color: #A9C2DA; margin-bottom: .6em; }
.site-footer address { font-style: normal; color: #A9C2DA; }
.footer-heading {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .08em;
  color: #7E9AB6; font-weight: 700; margin-bottom: .8em;
}
.site-footer p { margin: 0 0 .5em; }
.footer-hours { color: #A9C2DA; margin-top: .8em; }

.footer-disclosure {
  margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13);
}
/* This block is a required disclosure, so it is kept at a legible size
   and contrast rather than shrunk into grey fine print. */
.footer-disclosure p { font-size: .84rem; line-height: 1.65; color: #B7CCE0; max-width: 92ch; margin: 0; }
.footer-copy { margin-top: 20px; font-size: .82rem; color: #93AEC8; }

/* ------------------------------------------------------- STICKY MOBILE BAR */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(11,37,69,.10);
}
.sticky-bar .btn { flex: 1; min-height: 50px; padding: 12px 12px; font-size: .97rem; }
@media (min-width: 720px) { .sticky-bar { display: none; } }
@media (max-width: 719px) { body { padding-bottom: 92px; } }

/* -------------------------------------------------------------- LEGAL PAGES */
.legal { padding: 44px 0 60px; }
.legal h1 { font-size: clamp(1.8rem, 4.4vw, 2.5rem); margin-bottom: .3em; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.25rem; margin-top: 2.2rem; }
.legal h3 { font-size: 1.03rem; margin-top: 1.5rem; }
.legal p, .legal li { color: #2B3A4A; font-size: .98rem; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: .45em; }
.legal .callout {
  background: var(--surface-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px; margin: 1.4rem 0;
}
.legal .callout p:last-child { margin-bottom: 0; }
.legal-back { display: inline-block; margin-bottom: 22px; font-weight: 650; }


/* ------------------------------------------------------------- WHO WE ARE */
.about-grid { display: grid; gap: 28px; }
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1.25fr .75fr; gap: 52px; align-items: start; }
}
.about-lead { color: var(--muted); max-width: 62ch; font-size: .98rem; }
.about-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.about-facts li {
  padding-left: 16px; border-left: 3px solid var(--cyan-500);
  font-size: .92rem; color: var(--muted); line-height: 1.5;
}
.about-fact-num {
  display: block; font-size: 1.15rem; font-weight: 750;
  color: var(--ink); letter-spacing: -.01em; margin-bottom: 2px;
}
