/* ==========================================
    DOMKOZ — "HARDHAT" Design System
    Industrial / job-site utilitarian.
    Built for bright sunlight, gloves, dust.
    Anton (display) + Barlow (body)
    ========================================== */

/* ---------- TOKENS ---------- */
:root {
  /* Safety Orange — primary CTA & brand accent (AA: 5.9:1 w/ white) */
  --primary: #B43A02;
  --primary-light: #D9520F;
  --primary-dark: #8A2D02;
  --primary-glow: rgba(180, 58, 2, 0.22);

  /* Hi-Vis Yellow — hazard accents, highlights (never as text on light) */
  --hivis: #FFC400;
  --hivis-soft: rgba(255, 196, 0, 0.16);
  --accent: #D9520F;
  --accent-soft: rgba(180, 58, 2, 0.08);

  /* Blueprint — technical grid lines on concrete */
  --blueprint: #DBD7CE;
  --blueprint-light: #E8E5DE;
  --blueprint-dark: #C8C3B8;
  --blueprint-soft: rgba(21, 25, 28, 0.05);

  /* Brand text — split logo colors */
  --brand-dom: #15191C;
  --brand-koz: #B43A02;

  /* Backgrounds — poured concrete */
  --bg: #F2F0EB;
  --bg-warm: #E9E6DF;
  --bg-cream: #F2F0EB;
  --bg-glass: #F2F0EB;
  --surface: #FFFFFF;

  /* Text — asphalt black (15.5:1 on --bg) */
  --ink: #15191C;
  --ink-secondary: #42494E;
  --ink-muted: #5A6268;
  --ink-shadow-xs: rgba(21, 25, 28, 0.06);
  --ink-shadow-sm: rgba(21, 25, 28, 0.10);
  --ink-shadow-md: rgba(21, 25, 28, 0.16);
  --ink-shadow-lg: rgba(21, 25, 28, 0.22);
  --ink-shadow-xl: rgba(21, 25, 28, 0.28);
  --ink-shadow-2xl: rgba(21, 25, 28, 0.32);
  --ink-solid-shadow: rgba(21, 25, 28, 0.9);

  /* Functional */
  --success: #1B7A3D;
  --success-soft: rgba(27, 122, 61, 0.10);
  --danger: #B3261E;
  --border: rgba(21, 25, 28, 0.85);
  --border-mid: rgba(21, 25, 28, 0.35);
  --border-light: rgba(21, 25, 28, 0.14);

  /* Shape — squared-off, machined edges */
  --radius-xs: 3px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 14px;

  /* Hard offset shadows — stamped steel, not floating glass */
  --shadow-sm: 3px 3px 0 var(--ink-shadow-md);
  --shadow-md: 5px 5px 0 var(--ink-shadow-lg);
  --shadow-lg: 7px 7px 0 var(--ink-solid-shadow);
  --shadow-glow: 5px 5px 0 var(--primary-glow);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --speed: 0.18s;
  --speed-slow: 0.45s;

  --max-w: 1140px;
  --gutter: 24px;

  /* Hazard stripe — used on nav top edge & accents */
  --hazard: repeating-linear-gradient(
    135deg,
    var(--hivis) 0 14px,
    var(--ink) 14px 28px
  );
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  /* faint blueprint grid scratched into the concrete */
  background-image:
    linear-gradient(var(--blueprint-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--blueprint-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::selection {
  background: var(--hivis);
  color: var(--ink);
}

/* ---------- UTILITY ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ==========================================
   NAVIGATION — solid, no glass. Hazard stripe
   top edge like a site barrier.
   ========================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  border-bottom: 2px solid var(--border);
  transition: box-shadow var(--speed) var(--ease);
}
.nav::before {
  content: '';
  display: block;
  height: 8px;
  background: var(--hazard);
}
.nav--scrolled {
  box-shadow: 0 4px 0 var(--ink-shadow-sm);
}
.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-icon {
  flex-shrink: 0;
  border-radius: var(--radius-xs);
}
.nav__name {
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-dom { color: var(--brand-dom); }
.brand-koz { color: var(--brand-koz); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  padding: 12px 18px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: color var(--speed) var(--ease), border-color var(--speed) var(--ease), background var(--speed) var(--ease);
}
.nav__link:hover {
  color: var(--primary);
  border-color: var(--border-mid);
  background: var(--surface);
}
.nav__cta {
  padding: 12px 24px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  background: var(--primary);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: all var(--speed) var(--ease);
}
.nav__cta:hover {
  background: var(--primary-dark);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink-solid-shadow);
}
.nav__cta:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink-solid-shadow);
}

/* ==========================================
   HERO — bold poster, like stenciled signage
   ========================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
  background: var(--bg-warm);
  border-bottom: 2px solid var(--border);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 96px;
}
.hero__content {
  text-align: left;
}
.hero__badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: var(--hivis);
  border: 2px solid var(--border);
  border-radius: var(--radius-xs);
  box-shadow: 3px 3px 0 var(--ink-solid-shadow);
}
.hero__title {
  margin-top: 28px;
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.04;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.hero__title em {
  font-style: normal;
  color: var(--primary);
  /* underline like a grease-pencil mark */
  box-shadow: inset 0 -0.18em 0 var(--hivis);
}
.hero__subtitle {
  margin-top: 24px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink-secondary);
  max-width: 500px;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Phone mockup — rugged case */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero__phone {
  width: 290px;
  background: var(--ink);
  border-radius: 28px;
  padding: 12px;
  border: 2px solid var(--border);
  box-shadow: 10px 10px 0 var(--ink-shadow-lg);
  transform: rotate(1.5deg) translateY(16px);
  transition: transform var(--speed-slow) var(--ease), box-shadow var(--speed-slow) var(--ease);
}
.hero__phone:hover {
  transform: rotate(0deg) translateY(10px);
  box-shadow: 12px 12px 0 var(--ink-shadow-xl);
}
.hero__screen {
  background: var(--bg);
  border-radius: 18px;
  padding: 20px 18px;
  min-height: 340px;
}
.hero__screen-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero__screen-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--success);
}
.hero__screen-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.hero__screen-stat {
  text-align: center;
  margin-bottom: 16px;
}
.hero__screen-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.hero__screen-value {
  display: block;
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-size: 2.1rem;
  color: var(--ink);
  line-height: 1.05;
}
.hero__screen-sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-top: 3px;
}
.hero__screen-bar {
  height: 14px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-xs);
  margin-bottom: 20px;
  overflow: hidden;
}
.hero__screen-bar-fill {
  height: 100%;
  background: var(--primary);
  transition: width 1.5s var(--ease);
}
.hero__screen-stages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__screen-stage {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 12px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xs);
  background: var(--surface);
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__screen-stage svg {
  flex-shrink: 0;
}
.hero__screen-stage--done {
  color: var(--success);
  background: var(--success-soft);
  border-color: var(--border-light);
}
.hero__screen-stage--active {
  color: var(--ink);
  background: var(--hivis-soft);
  border-color: var(--border);
  font-weight: 800;
}

/* Section divider — kept flat & solid */
.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 32px;
  z-index: 2;
}

/* ==========================================
   BUTTONS — glove-sized, stamped steel.
   Min 56px tall, hard edges, obvious press.
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  min-height: 56px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--speed) var(--ease);
  position: relative;
}
.btn svg {
  transition: transform var(--speed) var(--ease);
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn--primary {
  color: white;
  background: var(--primary);
  box-shadow: 4px 4px 0 var(--ink-solid-shadow);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink-solid-shadow);
}
.btn--primary:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink-solid-shadow);
}
.btn--ghost {
  color: var(--ink);
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--ink-shadow-md);
}
.btn--ghost:hover {
  color: var(--primary);
  background: var(--surface);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink-shadow-lg);
}
.btn--ghost:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink-shadow-md);
}
.btn--outline {
  color: var(--ink);
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--ink-shadow-md);
}
.btn--outline:hover {
  color: var(--primary);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink-shadow-lg);
}
.btn--outline:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink-shadow-md);
}
.btn--lg {
  padding: 20px 40px;
  font-size: 1.15rem;
  min-height: 64px;
}

/* ==========================================
   SECTIONS — typography & spacing
   ========================================== */
.section {
  padding: 96px 0;
  position: relative;
}
.section--warm {
  background: var(--bg-warm);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.section__eyebrow {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  text-align: center;
  margin-bottom: 14px;
}
.section__title {
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.section__subtitle {
  margin-top: 18px;
  text-align: center;
  color: var(--ink-secondary);
  font-size: 1.15rem;
  font-weight: 500;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   PERSONAS — heavy plate cards
   ========================================== */
.personas__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.persona-card {
  padding: 36px 32px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 6px 6px 0 var(--ink-shadow-md);
  transition: all var(--speed) var(--ease);
  position: relative;
}
.persona-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink-shadow-lg);
}
.persona-card--pro {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: 6px 6px 0 var(--primary);
  transform: translateY(20px);
}
.persona-card--pro:hover {
  transform: translate(-2px, 18px);
  box-shadow: 8px 8px 0 var(--primary);
}
.persona-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-xs);
  border: 2px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  margin-bottom: 22px;
}
.persona-card__badge svg {
  flex-shrink: 0;
}
.persona-card__badge--accent {
  background: var(--hivis);
  color: var(--ink);
}
.persona-card__title {
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.18;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--ink);
}
.persona-card__title em {
  font-style: normal;
  color: var(--primary);
}
.persona-card__list li {
  padding: 9px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-secondary);
  line-height: 1.5;
  border-bottom: 1.5px solid var(--border-light);
}
.persona-card__list li:last-child {
  border-bottom: none;
}
.persona-card__list li::before {
  content: '✓ ';
  color: var(--success);
  font-weight: 800;
}

/* ==========================================
   FEATURES — tool-crate bento grid
   ========================================== */
.features__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}
.feature-card {
  padding: 30px 28px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 4px 4px 0 var(--ink-shadow-sm);
  transition: all var(--speed) var(--ease);
}
.feature-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink-shadow-md);
  border-color: var(--border);
}
.feature-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  align-items: start;
}
.feature-card--wide .feature-card__icon {
  grid-row: span 2;
  background: var(--hivis);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0;
  color: var(--ink);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hivis);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  color: var(--ink);
}
.feature-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.feature-card__desc {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* ==========================================
   WORKFLOW — numbered like site signage
   ========================================== */
.workflow__timeline {
  margin-top: 56px;
  position: relative;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.workflow__line {
  position: absolute;
  left: 25px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: var(--border-mid);
}
.workflow__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 18px 0;
  position: relative;
}
.workflow__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--hivis);
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  z-index: 1;
  border: 2px solid var(--border);
  box-shadow: 0 0 0 6px var(--bg-warm);
  transition: all var(--speed) var(--ease);
}
.workflow__step:hover .workflow__number {
  background: var(--primary);
  color: white;
  transform: rotate(-3deg) scale(1.06);
}
.workflow__body h3 {
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--ink);
}
.workflow__body p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* ==========================================
   PRICING — rate cards on the board
   ========================================== */
.pricing__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.pricing__card {
  padding: 36px 28px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 5px 5px 0 var(--ink-shadow-sm);
  text-align: center;
  transition: all var(--speed) var(--ease);
  position: relative;
}
.pricing__card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink-shadow-md);
}
.pricing__card--featured {
  border-color: var(--border);
  box-shadow: 7px 7px 0 var(--primary);
  transform: scale(1.03);
  z-index: 2;
}
.pricing__card--featured:hover {
  transform: scale(1.03) translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--primary);
}
.pricing__card-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--hivis);
  color: var(--ink);
  border: 2px solid var(--border);
  border-radius: var(--radius-xs);
  white-space: nowrap;
}
.pricing__badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-xs);
  border: 2px solid var(--border);
  background: var(--bg);
  color: var(--ink);
}
.pricing__badge--accent {
  background: var(--primary);
  color: white;
}
.pricing__price {
  margin-top: 22px;
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.pricing__price span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-muted);
}
.pricing__features {
  margin-top: 28px;
  margin-bottom: 28px;
  text-align: left;
}
.pricing__features li {
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-secondary);
  border-bottom: 1.5px solid var(--border-light);
}
.pricing__features li::before {
  content: '✓ ';
  color: var(--success);
  font-weight: 800;
}

/* ==========================================
   FAQ — heavy-duty accordion, 64px targets
   ========================================== */
.faq__list {
  max-width: 720px;
  margin: 56px auto 0;
}
.faq__item {
  margin-bottom: 12px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--speed) var(--ease);
}
.faq__item:hover {
  box-shadow: 4px 4px 0 var(--ink-shadow-sm);
}
.faq__item[open] {
  box-shadow: 4px 4px 0 var(--ink-shadow-md);
}
.faq__question {
  padding: 22px 24px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: color var(--speed) var(--ease), background var(--speed) var(--ease);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover {
  color: var(--primary);
  background: var(--bg);
}
.faq__chevron {
  flex-shrink: 0;
  color: var(--ink);
  transition: transform var(--speed) var(--ease);
}
.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
}
.faq__answer {
  padding: 0 24px 22px;
  border-top: 1.5px solid var(--border-light);
}
.faq__answer p {
  padding-top: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-secondary);
  line-height: 1.7;
}

/* ==========================================
   CTA SECTION — big site board
   ========================================== */
.cta-section__box {
  position: relative;
  padding: 72px 48px;
  background: var(--ink);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 8px 8px 0 var(--ink-shadow-lg);
  overflow: hidden;
}
/* hazard stripe along the top of the board */
.cta-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--hazard);
  z-index: 0;
}
.cta-section__box > * {
  position: relative;
  z-index: 1;
}
.cta-section__eyebrow {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--hivis);
  margin-bottom: 14px;
}
.cta-section__box h2 {
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
  color: white;
}
.cta-section__box h2 em {
  font-style: normal;
  color: var(--hivis);
}
.cta-section__box .btn {
  margin-top: 36px;
}
.cta-section__box .btn--primary {
  box-shadow: 4px 4px 0 var(--primary-glow);
  border-color: var(--primary-light);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--bg-warm);
  border-top: 2px solid var(--border);
  padding: 48px 0;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo-icon {
  flex-shrink: 0;
  border-radius: var(--radius-xs);
}
.footer__tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-secondary);
  line-height: 1.5;
  max-width: 420px;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-secondary);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  transition: color var(--speed) var(--ease);
}
.footer__links a:hover { color: var(--primary); }
.footer__legal {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1.5px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-align: center;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS — fast, no float
   ========================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect users who disable motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-bottom: 110px;
  }
  .hero__content { text-align: center; }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions { justify-content: center; }
  .hero__phone {
    width: 250px;
    transform: rotate(0) translateY(0);
  }
  .hero__phone:hover { transform: none; }
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card--wide {
    grid-column: span 2;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .pricing__card--featured {
    transform: none;
  }
  .pricing__card--featured:hover {
    transform: translate(-2px, -2px);
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
  }
  .section {
    padding: 72px 0;
  }
  .hero {
    padding: 64px 0 0;
  }
  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .nav__link--desktop { display: none; }
  .personas__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .persona-card--pro {
    transform: none;
  }
  .persona-card--pro:hover {
    transform: translate(-2px, -2px);
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .feature-card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .feature-card--wide .feature-card__icon {
    grid-row: auto;
    margin-bottom: 16px;
  }
  .footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__brand {
    flex-direction: column;
    align-items: center;
  }
  .footer__links { justify-content: center; }
  .cta-section__box {
    padding: 48px 24px;
    border-radius: var(--radius-md);
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__phone {
    width: 230px;
  }
  .section__title {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  }
  .workflow__step {
    gap: 16px;
  }
  .workflow__number {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
  .workflow__line {
    left: 22px;
  }
  /* Full-width tap targets on small phones */
  .btn {
    width: 100%;
  }
  .nav__cta {
    padding: 12px 18px;
  }
}
