:root {
  --ink: #101820;
  --ink-2: #17232d;
  --paper: #f4f6f2;
  --white: #ffffff;
  --signal: #d8ff36;
  --signal-dark: #a7d000;
  --muted: #64717a;
  --line: #d6dcd7;
  --danger: #b42318;
  --max: 1240px;
  --radius: 6px;
  --shadow: 0 18px 50px rgba(16, 24, 32, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
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.6;
  -webkit-font-smoothing: antialiased;
}
body.form-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--signal); padding: 12px 16px; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(16, 24, 32, .95);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--signal);
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
  transform: skew(-7deg);
}
.brand-copy { display: grid; line-height: .9; letter-spacing: .04em; }
.brand-copy strong { font-size: 22px; font-weight: 950; }
.brand-copy small { margin-top: 6px; font-size: 10px; font-weight: 800; letter-spacing: .26em; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { color: #d7dee2; text-decoration: none; font-size: .92rem; font-weight: 650; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--signal); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { color: var(--white); font-size: .92rem; font-weight: 800; text-decoration: none; }

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--ink);
  background: var(--signal);
  border: 1px solid var(--signal);
  border-radius: 2px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); background: #e3ff72; border-color: #e3ff72; }
.button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid #7b9cff; outline-offset: 3px; }
.button-small { min-height: 42px; padding: 0 18px; font-size: .88rem; }
.button-ghost { color: var(--white); background: transparent; border-color: rgba(255,255,255,.36); }
.button-ghost:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-ghost-dark { color: var(--ink); background: transparent; border-color: var(--ink); }
.button-ghost-dark:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-light:hover { background: var(--signal); border-color: var(--signal); }

.hero {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(216,255,54,.035) 1px, transparent 1px) 0 0/44px 44px,
    radial-gradient(circle at 72% 8%, rgba(216,255,54,.12), transparent 28%),
    var(--ink);
  overflow: hidden;
}
.hero-grid {
  width: min(var(--max), calc(100% - 40px));
  min-height: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .8fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
  padding: 90px 0 100px;
}
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--signal);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 3px; background: currentColor; }
.eyebrow.dark { color: #506200; }
.hero h1, .section h2, .process h2, .review-section h2, .contact-cta h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Roboto Condensed", sans-serif;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .93;
  text-transform: uppercase;
}
.hero h1 { max-width: 800px; font-size: clamp(4.3rem, 8.4vw, 8rem); }
.hero h1 em { color: var(--signal); font-style: normal; }
.hero-lead { max-width: 700px; margin: 34px 0 0; color: #c7d0d6; font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-list { margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 24px; list-style: none; color: #d7dee2; font-size: .88rem; }
.trust-list li::before { content: "✓"; margin-right: 8px; color: var(--signal); font-weight: 900; }

.hero-panel {
  position: relative;
  min-height: 470px;
  padding: 36px;
  color: var(--ink);
  background: var(--signal);
  box-shadow: 22px 22px 0 rgba(255,255,255,.05);
}
.hero-panel::before { content: ""; position: absolute; top: 0; right: 0; border-top: 48px solid var(--ink); border-left: 48px solid transparent; }
.route-line { display: flex; align-items: center; margin-bottom: 44px; }
.route-line::before, .route-line::after { content: ""; flex: 1; height: 2px; background: rgba(16,24,32,.35); }
.route-line i { width: 9px; height: 9px; border: 2px solid var(--ink); border-radius: 50%; background: var(--signal); }
.route-line i + i { margin-left: 31%; }
.panel-kicker { margin: 0; font-size: .72rem; font-weight: 900; letter-spacing: .18em; }
.panel-number { position: absolute; right: 32px; top: 76px; margin: 0; color: rgba(16,24,32,.18); font: 900 5.5rem/1 Impact, sans-serif; }
.hero-panel h2 { margin: 24px 0 18px; font-size: clamp(2rem, 3.5vw, 3.15rem); line-height: 1; text-transform: uppercase; }
.hero-panel > p:not(.panel-kicker):not(.panel-number) { max-width: 440px; margin: 0; color: #273233; }
.panel-contact { margin-top: 34px; padding-top: 21px; display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(16,24,32,.25); font-size: .86rem; }
.text-link { margin-top: 24px; display: flex; justify-content: space-between; align-items: center; font-weight: 900; text-underline-offset: 5px; }
.service-strip { min-width: 100%; padding: 18px max(20px, calc((100% - var(--max))/2)); display: flex; justify-content: space-between; gap: 26px; color: var(--ink); background: var(--signal); font-size: clamp(.78rem, 1.2vw, 1rem); font-weight: 950; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; overflow: hidden; }
.service-strip b { font-size: 1.3rem; }

.section { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 120px 0; }
.section-heading { margin-bottom: 56px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; }
.section h2, .process h2, .review-section h2, .contact-cta h2 { font-size: clamp(3rem, 6vw, 5.8rem); }
.section-heading > p { max-width: 510px; margin: 0 0 4px; color: var(--muted); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 460px; padding: 34px; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); overflow: hidden; }
.service-card.featured { color: var(--white); background: var(--ink-2); border-color: var(--ink-2); }
.service-card.featured::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border: 38px solid rgba(216,255,54,.11); border-radius: 50%; }
.service-index { color: var(--muted); font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.service-card.featured .service-index { color: #98a6ae; }
.service-icon { width: 52px; height: 52px; margin: 36px 0 26px; display: grid; place-items: center; color: var(--ink); background: var(--signal); font-size: 1.6rem; font-weight: 900; }
.service-card h3 { margin: 0; font-size: clamp(1.65rem, 2.5vw, 2.3rem); line-height: 1.1; }
.service-card p { max-width: 570px; color: var(--muted); }
.service-card.featured p { color: #bdc8ce; }
.service-card ul { margin: 12px 0 32px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.service-card li { padding: 6px 10px; border: 1px solid var(--line); font-size: .8rem; }
.service-card.featured li { border-color: #42515b; }
.service-card > a { margin-top: auto; display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); font-weight: 850; text-underline-offset: 5px; }
.service-card.featured > a { color: var(--signal); border-color: #42515b; }

.process { padding: 110px max(20px, calc((100% - var(--max))/2)); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 140px); color: var(--white); background: var(--ink); }
.process-intro { position: sticky; top: 120px; align-self: start; }
.process-intro > p:last-child { max-width: 470px; margin-top: 28px; color: #b8c3ca; }
.process-steps { margin: 0; padding: 0; list-style: none; }
.process-steps li { padding: 30px 0; display: grid; grid-template-columns: 68px 1fr; gap: 22px; border-top: 1px solid #3c4850; }
.process-steps li:last-child { border-bottom: 1px solid #3c4850; }
.process-steps > li > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--ink); background: var(--signal); font-size: .78rem; font-weight: 950; }
.process-steps h3 { margin: 0 0 8px; font-size: 1.35rem; }
.process-steps p { margin: 0; color: #aebac1; }

.request-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 7vw, 100px); align-items: start; }
.request-heading { position: sticky; top: 120px; }
.request-heading p:last-child { color: var(--muted); }
.wizard-shell { min-width: 0; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.wizard-progress { padding: 26px 32px 0; }
.progress-label { margin-bottom: 12px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .82rem; font-weight: 750; }
.progress-track { height: 5px; background: #e4e8e5; }
.progress-track i { display: block; width: 20%; height: 100%; background: var(--signal-dark); transition: width .3s ease; }
#request-form { padding: 38px 32px 32px; }
.form-step { margin: 0; padding: 0; border: 0; display: none; }
.form-step.active { display: block; animation: step-in .28s ease both; }
@keyframes step-in { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.form-step legend { width: 100%; margin: 0; padding: 0; font-size: clamp(1.75rem, 3vw, 2.65rem); font-weight: 900; line-height: 1.15; }
.step-help { margin: 10px 0 28px; color: var(--muted); }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice-card { position: relative; min-height: 154px; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; gap: 3px; background: #f7f8f6; border: 2px solid transparent; cursor: pointer; transition: border .18s, transform .18s, background .18s; }
.choice-card:hover { transform: translateY(-2px); border-color: #c2c9c5; }
.choice-card:has(input:checked) { background: #f0ffc0; border-color: var(--signal-dark); }
.choice-card input { position: absolute; opacity: 0; }
.choice-card:has(input:focus-visible) { outline: 3px solid #7b9cff; outline-offset: 3px; }
.choice-number { position: absolute; left: 20px; top: 16px; color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.choice-card strong { font-size: 1.15rem; }
.choice-card small { color: var(--muted); font-size: .82rem; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field > span { font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: #f7f8f6; border: 1px solid #cfd6d1; border-radius: 2px; }
.field textarea { resize: vertical; line-height: 1.45; }
.field.full { margin-top: 18px; }
.field-grid .full { grid-column: 1 / -1; }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--danger); background: #fff5f4; }
.input-suffix { display: flex; background: #f7f8f6; border: 1px solid #cfd6d1; }
.input-suffix input { border: 0; }
.input-suffix span { padding: 13px 14px; color: var(--muted); }
.location-block { padding: 22px; background: #f7f8f6; border-left: 4px solid var(--signal-dark); }
.location-block + .location-block { margin-top: 16px; }
.location-block h3 { margin: 0 0 18px; font-size: 1rem; }
.location-block .field input, .location-block .field select { background: var(--white); }
.check-grid { margin-top: 16px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.check-grid.wide { grid-template-columns: repeat(3, 1fr); margin: 20px 0; }
.check-grid label { min-height: 46px; padding: 9px 12px; display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); cursor: pointer; font-size: .84rem; font-weight: 700; }
.check-grid.wide label { background: #f7f8f6; }
.check-grid input, .consent input { width: 18px; height: 18px; accent-color: var(--signal-dark); }
.consent { margin-top: 22px; display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; color: #45525a; font-size: .83rem; }
.consent.invalid { padding: 10px; background: #fff5f4; outline: 1px solid var(--danger); }
.form-note { margin: 20px 0 0; padding: 14px; color: var(--muted); background: #f4f6f2; font-size: .8rem; }
.wizard-actions { margin-top: 28px; display: flex; justify-content: space-between; gap: 12px; }
.wizard-actions .button:last-child { margin-left: auto; }
.form-error { margin-top: 22px; padding: 12px 14px; color: #7a271a; background: #fef3f2; border-left: 4px solid var(--danger); font-weight: 700; }
.honeypot { position: absolute !important; left: -9999px !important; }
.success-state { padding: 56px 36px; text-align: center; }
.success-mark { width: 64px; height: 64px; margin: 0 auto 26px; display: grid; place-items: center; color: var(--ink); background: var(--signal); font-size: 2rem; font-weight: 950; }
.success-state .eyebrow { justify-content: center; }
.success-state h3 { margin: 0; font-size: 2.5rem; }
.success-state > p:not(.eyebrow) { color: var(--muted); }
.success-actions { margin: 26px 0 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.text-button { padding: 8px; color: var(--ink); background: transparent; border: 0; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }

.review-section { padding: 110px max(20px, calc((100% - var(--max))/2)); display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(60px, 9vw, 140px); align-items: center; color: var(--white); background: var(--ink-2); }
.rating-block { padding-right: 48px; text-align: right; border-right: 1px solid #49555e; }
.stars { display: block; color: var(--signal); font-size: 1.25rem; letter-spacing: .16em; }
.rating-block strong { display: block; font: 900 clamp(5rem, 11vw, 9rem)/.92 Impact, sans-serif; letter-spacing: -.04em; }
.rating-block p { margin: 12px 0 0; color: #aeb9bf; }
.review-copy > p:not(.eyebrow) { max-width: 680px; margin: 24px 0 30px; color: #b8c3ca; }

.faq { max-width: 960px; }
.faq-heading { grid-template-columns: 1fr; margin-bottom: 30px; }
.faq-list details { border-top: 1px solid #bcc5bf; }
.faq-list details:last-child { border-bottom: 1px solid #bcc5bf; }
.faq-list summary { padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 1.05rem; font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #607500; font-size: 1.5rem; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 780px; margin: -6px 0 22px; color: var(--muted); }

.contact-cta { padding: 100px max(20px, calc((100% - var(--max))/2)); display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; color: var(--ink); background: var(--signal); }
.contact-cta .eyebrow { color: #425200; }
.contact-cta > div > p:last-child { max-width: 620px; margin-top: 22px; }
.contact-phone { padding: 28px 0 28px 34px; display: grid; grid-template-columns: 1fr auto; text-decoration: none; border-left: 1px solid rgba(16,24,32,.35); }
.contact-phone small { grid-column: 1 / -1; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-phone strong { font: 900 clamp(3rem, 7vw, 6rem)/.85 Impact, sans-serif; letter-spacing: -.02em; }
.contact-phone > span { align-self: end; font-size: 2rem; }

.site-footer { padding: 68px max(20px, calc((100% - var(--max))/2)) 24px; color: #aeb9bf; background: #0a1016; }
.footer-main { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 44px; }
.footer-brand { color: var(--white); align-self: start; }
.footer-main > div { display: grid; align-content: start; gap: 8px; }
.footer-main strong { margin-bottom: 8px; color: var(--white); font-size: .84rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-main a { text-decoration: none; }
.footer-main a:hover { color: var(--signal); }
.footer-bottom { margin-top: 60px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #2a343c; font-size: .78rem; }
.footer-bottom div { display: flex; gap: 18px; }
.mobile-cta { display: none; }

@media (max-width: 1050px) {
  .desktop-nav, .phone-link { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding: 75px 0; }
  .hero-panel { width: min(100%, 620px); min-height: 390px; }
  .section-heading, .request-section, .process, .review-section, .contact-cta { grid-template-columns: 1fr; }
  .process-intro, .request-heading { position: static; }
  .rating-block { padding: 0 0 44px; text-align: left; border-right: 0; border-bottom: 1px solid #49555e; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 70px; }
  body { padding-bottom: 66px; }
  .header-inner { width: min(100% - 24px, var(--max)); min-height: 68px; }
  .header-actions .button { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .hero-grid, .section { width: min(100% - 28px, var(--max)); }
  .hero-grid { min-height: auto; gap: 48px; padding: 58px 0 64px; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 5.4rem); }
  .hero-lead { margin-top: 24px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; }
  .hero-panel { min-height: 0; padding: 28px 24px; }
  .panel-number { top: 62px; right: 22px; font-size: 4.5rem; }
  .service-strip { justify-content: flex-start; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 36px; grid-template-columns: 1fr; gap: 20px; }
  .section h2, .process h2, .review-section h2, .contact-cta h2 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 410px; padding: 26px; }
  .process, .review-section, .contact-cta { padding-top: 78px; padding-bottom: 78px; }
  .request-section { gap: 34px; }
  .wizard-progress { padding: 22px 20px 0; }
  #request-form { padding: 28px 20px 22px; }
  .choice-grid, .field-grid, .check-grid, .check-grid.wide { grid-template-columns: 1fr; }
  .choice-card { min-height: 120px; }
  .location-block { padding: 18px 14px; }
  .wizard-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .wizard-actions .button { width: 100%; padding: 0 14px; }
  .wizard-actions .button:only-child, .wizard-actions .button:last-child:first-child { grid-column: 1 / -1; }
  .success-state { padding: 42px 20px; }
  .success-actions { display: grid; }
  .contact-phone { padding-left: 0; border-left: 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta { position: fixed; z-index: 95; left: 0; right: 0; bottom: 0; height: 66px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; color: var(--ink); background: var(--signal); text-decoration: none; font-weight: 900; box-shadow: 0 -8px 24px rgba(0,0,0,.2); }
}

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

@media print {
  .site-header, .mobile-cta, .hero-actions, .wizard-actions { display: none !important; }
  body { color: #000; background: #fff; }
}
