/* ============================================================
   Aycee Industries — site styles
   Recreated from the Aycee Industries design system handoff.
   Tokens first, then base, components, and page sections.
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --aycee-blue: #2F5BE6;
  --aycee-blue-700: #234BC4;
  --aycee-blue-300: #6E8FF5;
  --ink: #1D1F20;
  --paper: #F2F2F3;
  --steel: #5980A6;
  --steel-300: #9CB6D0;
  --steel-900: #1D2D3D;

  /* Neutral ramp (cool grey) */
  --neutral-0: #FFFFFF;
  --neutral-50: #F5F6F7;
  --neutral-100: #ECEDEF;
  --neutral-200: #DBDCDF;
  --neutral-300: #C2C4C8;
  --neutral-400: #A0A4AB;
  --neutral-500: #7C818A;
  --neutral-600: #565B63;
  --neutral-700: #3A3E44;
  --neutral-800: #26292E;
  --neutral-900: #1D1F20;

  /* Semantic aliases */
  --color-bg: var(--paper);
  --color-surface: var(--neutral-0);
  --color-text: var(--ink);
  --color-text-muted: var(--neutral-600);
  --color-text-subtle: var(--neutral-500);
  --color-accent: var(--aycee-blue);
  --color-accent-hover: var(--aycee-blue-700);
  --color-on-accent: var(--neutral-0);
  --color-secondary: var(--steel);
  --color-border: var(--neutral-200);
  --color-divider: var(--neutral-100);

  /* Status */
  --color-success: #1B9E5A;
  --color-warning: #DE8A1C;
  --color-danger: #C6402F;

  /* Type */
  --font-display: 'Chakra Petch', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
  --tracking-wordmark: 0.09em;
  --tracking-label: 0.16em;
  --tracking-tight: -0.01em;

  /* Shape */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(29, 31, 32, .08);
  --shadow-md: 0 6px 20px -8px rgba(29, 31, 32, .22);
}

/* ── Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--color-bg);
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--aycee-blue); text-decoration: none; }
a:hover { color: var(--aycee-blue-700); }
::selection { background: rgba(47, 91, 230, 0.16); }

@keyframes ayFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ayFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

main { flex: 1 1 auto; animation: ayFadeIn .3s ease both; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* Kicker: accent dash + tracked uppercase label */
.kicker { display: flex; align-items: center; gap: 9px; }
.kicker-dash { width: 20px; height: 2px; background: var(--aycee-blue); flex: none; }
.kicker-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
}
.kicker--dark .kicker-dash { background: var(--aycee-blue-300); }
.kicker--dark .kicker-label { color: var(--steel-300); }

/* Faint blueprint grid overlay for dark bands */
.bp-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 182, 208, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 182, 208, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.bp-grid--28 { background-size: 28px 28px; }
.bp-grid--32 {
  background-image:
    linear-gradient(rgba(156, 182, 208, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 182, 208, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Corner registration ticks (blueprint motif) */
.tick {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 0 solid var(--steel-300);
}
.tick--tl { top: var(--tick-inset, 11px); left: var(--tick-inset, 11px); border-left-width: 1.5px; border-top-width: 1.5px; }
.tick--tr { top: var(--tick-inset, 11px); right: var(--tick-inset, 11px); border-right-width: 1.5px; border-top-width: 1.5px; }
.tick--bl { bottom: var(--tick-inset, 11px); left: var(--tick-inset, 11px); border-left-width: 1.5px; border-bottom-width: 1.5px; }
.tick--br { bottom: var(--tick-inset, 11px); right: var(--tick-inset, 11px); border-right-width: 1.5px; border-bottom-width: 1.5px; }

/* ── Buttons (design-system Button) ─────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  height: 38px;
  padding: 0 16px;
  width: auto;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .01em;
  white-space: nowrap;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: background-color .15s ease, border-color .15s ease, filter .1s ease;
}
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.btn--sm { height: 30px; padding: 0 12px; font-size: 13px; gap: 6px; }
.btn--lg { height: 46px; padding: 0 22px; font-size: 15px; gap: 9px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--color-accent); color: var(--color-on-accent); }
.btn--primary:hover { color: var(--color-on-accent); filter: brightness(.93); }
.btn--primary:active { filter: brightness(.88); }

.btn--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--neutral-300);
}
.btn--secondary:hover { background: var(--neutral-50); border-color: var(--neutral-400); color: var(--color-text); }

/* ── Tabs (design-system Tabs) ──────────────────────────── */
.tabs { display: flex; gap: 4px; font-family: var(--font-body); }
.tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  margin-bottom: -1px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  transition: color .12s ease, border-color .12s ease;
  white-space: nowrap;
}
.tab:hover { color: var(--color-text); }
.tab.is-active { font-weight: 600; color: var(--color-text); border-bottom-color: var(--color-accent); }

/* ── Tag (design-system Tag) ────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-text);
  background: var(--neutral-100);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* ── Form fields (Input / Select / Textarea) ────────────── */
.field-label {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 8px;
}
.field-label .optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text-subtle);
  font-weight: 400;
}

.input, .select, .textarea {
  box-sizing: border-box;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input { height: 38px; padding: 0 12px; font-size: 14px; }
.select {
  height: 38px;
  padding: 0 34px 0 12px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231D1F20' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.textarea {
  padding: 9px 12px;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  min-height: 72px;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(47, 91, 230, .16);
}
.input.is-invalid, .select.is-invalid, .textarea.is-invalid { border-color: var(--color-danger); }
.input.is-invalid:focus, .select.is-invalid:focus, .textarea.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(198, 64, 47, .16);
}
.field-error {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-danger);
  margin: 6px 0 0;
}

/* Honeypot — invisible to people, tempting to bots */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Toast (design-system Toast) ────────────────────────── */
.toast-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 380px;
  animation: ayFadeUp .3s ease both;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  box-sizing: border-box;
  width: 340px;
  max-width: calc(100vw - 40px);
  padding: 12px 14px;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-family: var(--font-body);
}
.toast-dot {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: var(--radius-sm);
  background: var(--color-success);
  flex: 0 0 auto;
}
.toast--danger .toast-dot { background: var(--color-danger); }
.toast-body { flex: 1; min-width: 0; }
.toast-title { font-weight: 600; font-size: 14px; line-height: 1.3; }
.toast-msg { font-size: 13px; line-height: 1.45; color: var(--color-text-muted); margin-top: 2px; }
.toast-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: -1px;
  border: none;
  background: transparent;
  color: var(--color-text-subtle);
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.header-row {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; cursor: pointer; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: var(--tracking-wordmark);
  color: var(--ink);
}
.brand-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: var(--steel);
  margin-top: 3px;
}
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
}
.header-phone:hover { color: var(--aycee-blue); }
.header-tabs { border-top: 1px solid var(--color-divider); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(44px, 6vw, 64px) 0 28px;
  margin-top: auto;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
  justify-content: space-between;
}
.footer-brand { max-width: 24em; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--steel-300); }
.footer-blurb {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--steel-300);
  margin: 15px 0 0;
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--neutral-400);
  font-weight: 700;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  font-family: var(--font-body);
  font-size: 15px;
}
.footer-links a { color: var(--steel-300); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--steel-900);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--neutral-500);
}

/* ── Home: masthead ─────────────────────────────────────── */
.masthead {
  padding: clamp(60px, 9vw, 124px) 0 clamp(52px, 7vw, 100px);
  border-bottom: 1px solid var(--color-divider);
  position: relative;
  overflow: hidden;
}
.masthead-watermark {
  position: absolute;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  pointer-events: none;
}
.masthead .container { position: relative; }
.masthead-inner { max-width: 44rem; position: relative; }
.masthead-lockup { display: flex; align-items: center; gap: clamp(14px, 2vw, 20px); }
.masthead-words { display: flex; flex-direction: column; line-height: 0.95; }
.masthead-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 7vw, 76px);
  letter-spacing: 0.02em;
  color: var(--ink);
}
.masthead-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(13px, 1.7vw, 18px);
  letter-spacing: 0.34em;
  color: var(--steel);
  margin-top: 7px;
}
.masthead-est { display: flex; align-items: center; gap: 14px; margin-top: clamp(26px, 4vw, 38px); }
.masthead-est-dash { width: 34px; height: 2px; background: var(--aycee-blue); }
.masthead-est-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ── Home: ventures ─────────────────────────────────────── */
.ventures { padding: clamp(48px, 7vw, 84px) 0; }
.venture-card {
  margin-top: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 20px 44px -30px rgba(29, 31, 32, 0.3);
}
.venture-main {
  flex: 1 1 420px;
  min-width: 280px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}
.venture-meta { display: flex; align-items: center; gap: 10px; }
.venture-no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--aycee-blue);
}
.pill-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-success);
}
.pill-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
}
.venture-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: var(--tracking-tight);
  margin: 12px 0 0;
  color: var(--ink);
}
.venture-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 12px 0 0;
  max-width: 32em;
}
.venture-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.venture-cta { margin-top: 28px; }
.venture-panel {
  flex: 1 1 300px;
  min-width: 240px;
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 36px);
  min-height: 230px;
}
.venture-panel-mark {
  position: absolute;
  right: -56px;
  top: -46px;
  opacity: 0.1;
  pointer-events: none;
}
.venture-panel-content { position: relative; }
.venture-panel-kicker { display: flex; align-items: center; gap: 8px; }
.venture-panel-kicker .dash { width: 16px; height: 2px; background: var(--aycee-blue-300); }
.venture-panel-kicker .label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--steel-300);
}
.venture-panel-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.15;
  color: #fff;
  margin-top: 12px;
}

/* ── Home: contact band ─────────────────────────────────── */
.contact-band {
  background: var(--steel-900);
  color: #fff;
  padding: clamp(44px, 6vw, 76px) 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
}
.contact-band .container { position: relative; }
.contact-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.contact-intro { flex: 1 1 360px; }
.contact-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: var(--tracking-tight);
  margin: 14px 0 0;
  color: #fff;
}
.contact-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.55;
  color: var(--steel-300);
  margin: 12px 0 0;
  max-width: 32em;
}
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.01em;
}
.contact-phone:hover { color: var(--steel-300); }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--steel-300);
  font-family: var(--font-body);
  font-size: 16px;
}
.contact-email:hover { color: #fff; }

/* ── Inspections: hero ──────────────────────────────────── */
.hero {
  padding: clamp(44px, 6vw, 84px) 0 clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--color-divider);
}
.hero-cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.hero-copy { flex: 1 1 430px; min-width: 280px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.03;
  font-size: clamp(36px, 5.6vw, 62px);
  margin: 18px 0 0;
  color: var(--ink);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 33em;
  margin: 20px 0 0;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; margin-top: 32px; }
.hero-meta-item {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
}
.hero-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--steel-300); }

.hero-graphic { flex: 1 1 340px; min-width: 280px; }
.coverage-card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: 0 22px 46px -30px rgba(29, 31, 32, 0.32);
  padding: 28px;
}
.coverage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-divider);
}
.coverage-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.coverage-flag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-top: 20px;
}
.coverage-item { display: flex; align-items: center; gap: 9px; }
.coverage-item svg { flex: none; }
.coverage-item span { font-family: var(--font-body); font-size: 15px; color: var(--ink); }
.coverage-foot {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
  gap: 9px;
}
.coverage-foot .dash { width: 16px; height: 2px; background: var(--aycee-blue); flex: none; }
.coverage-foot span:last-child { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); }

/* ── Inspections: why it matters (ink band) ─────────────── */
.why-band {
  background: var(--ink);
  color: #fff;
  padding: clamp(40px, 5vw, 64px) 0;
  position: relative;
  overflow: hidden;
}
.why-band-mark {
  position: absolute;
  right: -60px;
  bottom: -90px;
  opacity: 0.06;
  pointer-events: none;
}
.why-band .container { position: relative; }
.why-cols { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-end; margin-top: 16px; }
.why-heading {
  flex: 1 1 380px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.08;
  letter-spacing: var(--tracking-tight);
  margin: 0;
  color: #fff;
}
.why-copy {
  flex: 1 1 360px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
  color: var(--steel-300);
  margin: 0;
  max-width: 40em;
}

/* ── Inspections: how it works ──────────────────────────── */
.steps { padding: clamp(52px, 7vw, 92px) 0; }
.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  font-size: clamp(27px, 3.6vw, 42px);
  margin: 12px 0 0;
  color: var(--ink);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.step-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  padding: 28px;
  position: relative;
}
.step-head { display: flex; align-items: center; justify-content: space-between; }
.step-no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--aycee-blue);
}
.step-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--aycee-blue);
  background: var(--color-bg);
}
.step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 18px 0 0;
  color: var(--ink);
  letter-spacing: var(--tracking-tight);
}
.step-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 9px 0 0;
}

/* ── Inspections: the deliverable / report ──────────────── */
.report {
  padding: clamp(52px, 7vw, 92px) 0;
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
  scroll-margin-top: 130px;
}
.report-cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.report-copy { flex: 1 1 400px; min-width: 280px; }
.report-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 16px 0 0;
  max-width: 34em;
}
.report-checks { display: flex; flex-direction: column; gap: 13px; margin-top: 26px; }
.report-check { display: flex; align-items: flex-start; gap: 12px; }
.report-check svg { flex: none; margin-top: 2px; }
.report-check span { font-family: var(--font-body); font-size: 16px; color: var(--ink); line-height: 1.4; }

.report-preview-col { flex: 1 1 340px; min-width: 280px; }
.report-card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  padding: 24px;
  box-shadow: 0 24px 50px -30px rgba(29, 31, 32, 0.35);
  --tick-inset: 12px;
}
.report-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--ink);
}
.report-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  display: block;
}
.report-card-sub {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 3px;
  display: block;
}
.report-card-no {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.06em;
}
.report-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.condition-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 9px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  background: var(--color-surface);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
}
.chip .chip-box { width: 10px; height: 10px; border-radius: 2px; }
.chip--good { color: var(--color-success); }
.chip--good .chip-box { border: 1.5px solid var(--color-success); }
.chip--monitor {
  color: var(--color-warning);
  border-color: var(--color-warning);
  background: rgba(222, 138, 28, 0.09);
}
.chip--monitor .chip-box { background: var(--color-warning); }
.chip--action { color: var(--color-danger); }
.chip--action .chip-box { border: 1.5px solid var(--color-danger); }

.finding-row {
  margin-top: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 12px;
  display: flex;
  gap: 12px;
}
.finding-thumb {
  flex: none;
  width: 96px;
  height: 70px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--neutral-100);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.finding-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.finding-no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--aycee-blue);
}
.finding-title { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--ink); }
.finding-status { display: inline-flex; align-items: center; gap: 6px; margin-top: 2px; }
.finding-status .dot { width: 9px; height: 9px; border-radius: 2px; background: var(--color-warning); }
.finding-status .txt { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: var(--color-warning); }

.rec-head { margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.rec-head .rule { flex: 1; height: 1px; background: var(--color-divider); }
.rec-rows { display: flex; flex-direction: column; margin-top: 6px; }
.rec-row { display: flex; gap: 10px; align-items: center; padding: 7px 0; }
.rec-row + .rec-row { border-top: 0; }
.rec-row:first-child { border-bottom: 1px solid var(--color-divider); }
.rec-row .rec-no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--aycee-blue);
  width: 14px;
}
.rec-row .rec-bar { height: 8px; flex: 1; background: var(--neutral-100); border-radius: 2px; }
.rec-row .rec-bar--1 { max-width: 78%; }
.rec-row .rec-bar--2 { max-width: 60%; }
.report-caption {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--steel);
  margin: 12px 2px 0;
  text-align: center;
}

/* ── Inspections: why fly it ────────────────────────────── */
.whyfly { padding: clamp(52px, 7vw, 88px) 0; border-top: 1px solid var(--color-divider); }
.whyfly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--color-border);
}
.whyfly-cell { padding: 26px 24px; border-bottom: 1px solid var(--color-border); border-left: 1px solid var(--color-border); }
.whyfly-cell:first-child { padding-left: 0; border-left: none; }
.whyfly-cell:last-child { padding-right: 0; }
.whyfly-title { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0; color: var(--ink); }
.whyfly-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 8px 0 0;
}

/* ── Inspections: booking ───────────────────────────────── */
.booking {
  padding: clamp(52px, 7vw, 92px) 0;
  border-top: 1px solid var(--color-divider);
  background: var(--steel-900);
  color: #fff;
  scroll-margin-top: 130px;
  position: relative;
  overflow: hidden;
}
.booking .container { position: relative; }
.booking-heading {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  font-size: clamp(27px, 3.8vw, 44px);
  margin: 12px 0 0;
  color: #fff;
}
.booking-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.55;
  color: var(--steel-300);
  max-width: 38em;
  margin: 14px 0 0;
}
.booking-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin-top: 36px;
}
.booking-form {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  padding: clamp(22px, 3vw, 32px);
}
.form-row { display: flex; flex-wrap: wrap; gap: 20px; }
.form-col { flex: 1 1 180px; }
.form-field { margin-top: 20px; }
.form-submit { margin-top: 24px; }
.form-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-top: 14px;
  text-align: center;
}

.call-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.call-card-mark {
  position: absolute;
  right: -34px;
  bottom: -40px;
  opacity: 0.08;
  pointer-events: none;
}
.call-card-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--steel-300);
  position: relative;
}
.call-card-phone {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
  color: #fff;
  position: relative;
}
.call-card-phone:hover { color: var(--steel-300); }
.call-card-phone .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.01em;
}
.call-card-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--steel-300);
  font-size: 15px;
  position: relative;
}
.call-card-email:hover { color: #fff; }

.next-card {
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
}
.next-card-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--steel-300);
}
.next-steps { display: flex; flex-direction: column; margin-top: 14px; }
.next-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.next-step:last-child { border-bottom: none; }
.next-step-no {
  flex: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--aycee-blue-300);
  width: 22px;
}
.next-step-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff; }
.next-step-desc { font-family: var(--font-body); font-size: 14px; color: var(--steel-300); margin-top: 3px; }
.next-facts {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.next-fact-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-300);
}
.next-fact-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-top: 5px;
}

/* ── Responsive (single breakpoint: 760px) ──────────────── */
@media (max-width: 759.98px) {
  .header-phone { display: none; }
}
