@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;800&display=swap');

:root {
  --bg: #151312;
  --bg-alt: #1b1918;
  --surface: #221f1e;
  --text: #f3f2f2;
  --text-dim: #c9c4c1;
  --text-mute: #a19c99;
  --text-faint: #7d7876;
  --border: #322e2c;
  --border-light: #3a3634;
  --border-btn: #504b48;
  --accent: #ec3013;
  --accent-hover: #dd2b0f;
  --accent-light: #ff563c;
  --error-border: #ae1800;
  --error-text: #ff9783;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Archivo", system-ui, sans-serif;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; text-underline-offset: 3px; }
::selection { background: rgba(236, 48, 19, 0.35); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
img { display: block; max-width: 100%; }
summary::-webkit-details-marker { display: none; }
summary { list-style: none; cursor: pointer; }
input::placeholder, textarea::placeholder { color: #6f6a67; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px); }
.section { border-bottom: 2px solid var(--border); padding: clamp(56px, 7vw, 96px) 0; }
.section.alt { background: var(--bg-alt); }
.section > .wrap { padding-top: 0; padding-bottom: 0; }

.dot { width: 14px; height: 14px; background: var(--accent); display: block; flex: none; }
.bullet { width: 10px; height: 10px; background: var(--accent); display: block; flex: none; }
.bullet.sm { width: 8px; height: 8px; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 28px;
}
.kicker-text {
  display: block; font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 20px;
}

.h1 { font-size: clamp(40px, 6.4vw, 82px); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; margin: 0 0 0 -0.058em; }
.h1-sm { font-size: clamp(30px, 3.8vw, 52px); line-height: 1.06; letter-spacing: -0.02em; font-weight: 800; margin: 0 0 0 -0.055em; }
.h2 { font-size: clamp(28px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; margin: 0 0 0 -0.05em; }
.h2.tight { font-size: clamp(24px, 2.6vw, 34px); margin: 0 0 0 -0.04em; }
.h2.small { font-size: clamp(24px, 2.4vw, 32px); margin: 0; }
.h3 { font-size: 21px; font-weight: 800; margin: 0 0 6px; }
.h3.small { font-size: 19px; }
.block { display: block; }

.lead { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; color: var(--text-dim); margin: 28px 0 0; }
.body-text { font-size: 15.5px; line-height: 1.6; color: #b5b0ad; margin: 0; }
.body-text.small { font-size: 15px; }
.body-text.muted { color: var(--text-mute); }
.intro-p { max-width: 60ch; margin: 0 0 44px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  font-weight: 800; font-size: 15px; padding: 16px 22px; border: 0; cursor: pointer;
  font-family: inherit;
}
.btn-accent { background: var(--accent); color: var(--text); }
.btn-accent:hover { background: var(--accent-hover); }
.btn-outline { border: 2px solid var(--border-btn); color: var(--text); background: transparent; padding: 14px 22px; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-light); }
.btn-dark { background: var(--bg); color: var(--text); padding: 18px 24px; }
.btn-dark:hover { background: var(--text); color: var(--bg); }
.btn-outline-light { border: 2px solid var(--text); color: var(--text); background: transparent; padding: 16px 24px; }
.btn-outline-light:hover { background: var(--text); color: var(--accent); }
.btn-block { width: 100%; justify-content: flex-start; margin-top: auto; }

.fine-row { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13px; color: var(--text-mute); margin: 20px 0 0; }
.fine-row .sep { color: #4a4644; }
.fine { font-size: 13px; color: var(--text-mute); }
.fine.light { font-size: 14px; font-weight: 600; color: var(--text); }

/* Nav */
.nav-bar { position: sticky; top: 0; z-index: 50; background: rgba(21, 19, 18, 0.92); backdrop-filter: blur(10px); border-bottom: 2px solid var(--border); }
.nav-inner { height: 72px; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); margin-right: auto; }
.brand-name { font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-dim); }
.nav-links a:hover { color: var(--text); }
@media (max-width: 780px) { .nav-links { display: none; } }
.nav-inner .btn-accent { padding: 12px 18px; white-space: nowrap; }

/* Hero */
.hero-grid {
  padding: clamp(64px, 9vw, 128px) 0 clamp(56px, 7vw, 96px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(32px, 5vw, 72px); align-items: end;
}
.stat-box { display: grid; border: 2px solid var(--border); }
.stat { padding: 24px; border-bottom: 2px solid var(--border); }
.stat:last-child { border-bottom: 0; }
.stat-num { font-size: clamp(32px, 3.4vw, 44px); font-weight: 800; line-height: 1; color: var(--accent); margin: 0 0 8px -0.045em; }
.stat-num.small { font-size: clamp(26px, 2.4vw, 34px); margin-top: 6px; }
.stat-label { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mute); margin: 0; }

/* Cost section */
.cost-grid { padding: clamp(56px, 7vw, 96px) 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(28px, 5vw, 72px); align-items: start; }
.cost-list { display: grid; gap: 0; }
.cost-item { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 18px; padding: 22px 0; border-top: 2px solid var(--border); }
.cost-item.last { border-bottom: 2px solid var(--border); }
.cost-item .bullet { margin-top: 7px; }

/* Head row */
.head-row { display: flex; flex-wrap: wrap; gap: 24px; align-items: end; justify-content: space-between; margin-bottom: 48px; }
.head-row.mb-sm { margin-bottom: 20px; }
.head-row.mb-lg { margin-bottom: 44px; }
.mb-lg { margin-bottom: 48px; }
.mb-sm { margin-bottom: 20px; }
.mt-lg { margin-top: 48px; }
.mt-md { margin-top: 20px; }

.tag-outline {
  display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--accent);
  color: var(--accent-light); font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 8px 12px;
}

/* Grid 4 */
.grid4 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 560px) { .grid4 { grid-template-columns: minmax(0, 1fr); } }
@media (min-width: 1120px) { .grid4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.grid4:not(.gap-lg) { gap: 2px; background: var(--border); border: 2px solid var(--border); }
.grid4.gap-lg { gap: clamp(24px, 3vw, 40px); }

.card-tile { background: var(--bg-alt); padding: 32px 28px 36px; display: flex; flex-direction: column; gap: 16px; transition: background .15s; }
.card-tile:hover { background: var(--surface); }

.step { border-top: 2px solid var(--border); padding-top: 20px; }
.step.active { border-top-color: var(--accent); }
.step-label { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; color: var(--text-mute); margin: 0 0 12px; }
.step-label.accent { color: var(--accent-light); }

/* Work */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 3vw, 36px); }
.work-card { border: 2px solid var(--border); display: flex; flex-direction: column; }
.work-image { position: relative; aspect-ratio: 16 / 10; border-bottom: 2px solid var(--border); }
.work-image.grayscale { filter: grayscale(1) contrast(1.08); }
.img-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; text-align: center; padding: 16px; background: var(--bg-alt); color: var(--text-mute);
  font-size: 13px; line-height: 1.5;
}
.img-placeholder span { font-size: 11px; color: var(--text-faint); font-family: monospace; }
.work-body { padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); margin: 0; }

/* Why */
.why-grid { padding: clamp(56px, 7vw, 96px) 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(28px, 5vw, 72px); align-items: start; }
.why-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 2px; background: var(--border); border: 2px solid var(--border); }
.why-tile { background: var(--bg); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; }

/* Quotes */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.quote { border-top: 2px solid var(--border); padding-top: 24px; margin: 0; }
.quote blockquote { font-size: clamp(19px, 1.7vw, 23px); line-height: 1.4; font-weight: 800; letter-spacing: -0.01em; margin: 0; }
.quote figcaption { font-size: 14px; color: var(--text-mute); margin-top: 20px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2px; background: var(--border); border: 2px solid var(--border); }
.price-card { background: var(--bg); padding: 32px 26px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.price-card.featured { outline: 2px solid var(--accent); outline-offset: -2px; }
.badge { position: absolute; top: 0; right: 0; background: var(--accent); color: var(--text); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 10px; }
.price { font-size: clamp(30px, 3vw, 40px); font-weight: 800; line-height: 1; margin: 0 0 0 -0.045em; }
.price-period { font-size: 16px; font-weight: 600; color: var(--text-mute); }
.price-sub { font-size: 14px; color: var(--text-mute); margin: 0; }
.price-features { display: grid; gap: 8px; font-size: 15px; line-height: 1.5; color: #b5b0ad; margin-top: 6px; }

/* FAQ */
.faq-grid { padding: clamp(56px, 7vw, 96px) 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(28px, 5vw, 72px); align-items: start; }
.faq-list { display: grid; gap: 0; }
.faq-item { border-top: 2px solid var(--border); padding: 22px 0; }
.faq-item.last { border-bottom: 2px solid var(--border); }
.faq-item summary { display: flex; gap: 16px; align-items: baseline; font-size: 19px; font-weight: 800; color: var(--text); }
.faq-item .plus { color: var(--accent); }
.faq-answer { margin: 14px 0 0 32px; max-width: 62ch; line-height: 1.65; }

/* Audit form */
.audit-grid { padding: clamp(56px, 7vw, 96px) 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: clamp(32px, 5vw, 72px); align-items: start; }
.check-list { display: grid; gap: 12px; margin-top: 32px; font-size: 15px; color: #b5b0ad; }
.check-list span { display: flex; gap: 12px; align-items: baseline; }
.accent-link { color: var(--accent-light); }
.audit-form-wrap { position: relative; }
.audit-form {
  border: 2px solid var(--border); padding: clamp(24px, 3vw, 36px); display: grid; gap: 20px; background: var(--bg);
}
.field { display: grid; gap: 8px; }
.field-label { font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); }
.field input, .field select {
  background: var(--bg-alt); border: 2px solid var(--border-light); color: var(--text);
  font-family: inherit; font-size: 15px; padding: 13px 14px; min-height: 48px;
}
.field input:focus-visible, .field select:focus-visible { border-color: var(--accent); outline: none; }
.visually-hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.error-msg { font-size: 14px; line-height: 1.5; color: var(--error-text); border: 2px solid var(--error-border); padding: 12px 14px; margin: 0; }
.audit-success {
  border: 2px solid var(--accent); padding: clamp(28px, 4vw, 44px); background: var(--bg);
  display: grid; gap: 16px; align-content: start;
}

/* Reveal-on-scroll (progressive enhancement, JS toggles .revealed) */
.reveal { opacity: 1; transform: none; }
.reveal.pre-reveal { opacity: 0; transform: translateY(22px); }
.reveal.revealed { opacity: 1; transform: none; transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }

/* CTA band */
.cta { background: var(--accent); color: var(--text); border-bottom: 0; padding: clamp(56px, 7vw, 104px) 0; }

/* Footer */
.footer { background: var(--bg); border-top: 2px solid var(--border); }
.footer-grid { padding: clamp(40px, 5vw, 64px) 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col a { font-size: 14px; color: var(--text-mute); }
.footer-col a:hover { color: var(--text); }
.footer-heading { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }
.footer-bottom { border-top: 2px solid var(--border); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 13px; color: var(--text-faint); }
