/* ─────────────────────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────────────────────── */
:root {
  --bg:           #07090e;
  --surface:      #0c1220;
  --surface-2:    #0f1929;
  --surface-alt:  #090d18;
  --text:         #f1f5f9;
  --muted:        #8896aa;
  --line:         rgba(255, 255, 255, 0.07);
  --line-2:       rgba(255, 255, 255, 0.13);
  --accent:       #f59e0b;
  --accent-dim:   rgba(245, 158, 11, 0.14);
  --accent-glow:  0 0 40px rgba(245, 158, 11, 0.28);
  --green:        #10b981;
  --green-dim:    rgba(16, 185, 129, 0.12);
  --shadow:       0 24px 60px rgba(0, 0, 0, 0.55);
  --radius:       20px;
  --radius-sm:    12px;
  --container:    1160px;
}

/* ─────────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─────────────────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────────────────── */
/* Offset anchored sections so fixed nav doesn't obscure them */
section[id] { scroll-margin-top: 80px; }
.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.section      { padding: 6rem 0; }
.section-alt  { background: var(--surface-alt); }

.section-heading            { max-width: 640px; margin-bottom: 3rem; }
.section-heading.centered   { text-align: center; margin-left: auto; margin-right: auto; }
.section-sub                { color: var(--muted); line-height: 1.75; font-size: 1.05rem; margin-top: 0.75rem; }

/* ─────────────────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  margin: 0 0 1rem;
}
h1, h2, h3 {
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); font-weight: 800; margin: 0 0 1rem; }
h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 0.5rem; }
p  { color: var(--muted); line-height: 1.75; font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.button-amber {
  background: var(--accent);
  color: #07090e;
}
.button-amber:hover {
  background: #fbbf24;
  box-shadow: var(--accent-glow);
}
.button-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.18);
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.button-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.button-outline:hover {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.22);
}
/* backward-compat alias used in sample-report.html */
.button-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line-2);
}
.button-secondary:hover { background: var(--surface-2); }

.full-width { width: 100%; }

/* ─────────────────────────────────────────────────────────────
   CARD
───────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ─────────────────────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(7, 9, 14, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}
.nav .brand-logo-wordmark {
  height: 2.4rem;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
.nav-links a { transition: color 0.15s; }
.nav-links a:hover { color: #fff; }
.nav-cta { min-height: 38px; padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 9, 14, 0.15) 0%,
    rgba(7, 9, 14, 0.35) 45%,
    rgba(7, 9, 14, 0.82) 75%,
    rgba(7, 9, 14, 1)    100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 5.5rem;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(245, 158, 11, 0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(245, 158, 11, 0);   }
}
.hero h1 { color: #fff; margin: 0 0 1.25rem; }
.hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 0 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0 0 2.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.12rem; }
.hero-stat strong { color: #fff; font-size: 0.95rem; font-weight: 800; letter-spacing: -0.02em; }
.hero-stat span   { color: rgba(255, 255, 255, 0.42); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-stat-sep    { width: 1px; height: 28px; background: rgba(255, 255, 255, 0.14); flex-shrink: 0; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.4);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  animation: bob 2.4s ease-in-out infinite;
}
.hero-scroll-hint:hover {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.35);
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.step-card { padding: 1.75rem 1.5rem; }
.step-num {
  display: inline-block;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.7rem;
  background: var(--accent-dim);
  border-radius: 999px;
  margin: 0 0 1.4rem;
}
.step-card h3 { color: var(--text); font-size: 1rem; margin: 0 0 0.6rem; }
.step-card p  { font-size: 0.92rem; }

/* ─────────────────────────────────────────────────────────────
   DELIVERABLES
───────────────────────────────────────────────────────────── */
.deliverables-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.deliverables-copy p      { margin: 0 0 2rem; }
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.deliverable-card { padding: 1.5rem; }
.deliverable-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.1rem;
  flex-shrink: 0;
}
.deliverable-card h3 { color: var(--text); font-size: 0.98rem; margin: 0 0 0.45rem; }
.deliverable-card p  { font-size: 0.88rem; }

/* ─────────────────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.pricing-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.pricing-featured {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: var(--accent-glow);
}
.pricing-badge {
  display: inline-block;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.7rem;
  background: var(--accent-dim);
  border-radius: 999px;
  margin: 0 0 1.1rem;
  width: fit-content;
}
.pricing-tier  { font-size: 1.05rem; color: var(--text); margin: 0 0 0.35rem; }
.pricing-desc  { font-size: 0.85rem; margin: 0 0 1.5rem; }
.pricing-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.05em;
  margin: 0 0 1.5rem;
  line-height: 1;
}
.pricing-price strong { color: #fff; }
.pricing-price em {
  font-size: 0.85rem;
  font-weight: 500;
  font-style: normal;
  color: var(--muted);
  letter-spacing: 0;
}
.pricing-list {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 2rem;
  flex: 1;
}
.pricing-list li {
  color: var(--muted);
  font-size: 0.9rem;
  padding-left: 1.35rem;
  position: relative;
}
.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.44em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}
.pricing-featured .pricing-list li::before { opacity: 1; }

/* ─────────────────────────────────────────────────────────────
   WHITE-LABEL / BRAND DEMO CARD
───────────────────────────────────────────────────────────── */
.brand-demo-card { overflow: hidden; }
.brand-demo-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.brand-demo-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-red    { background: #f87171; }
.dot-yellow { background: #fbbf24; }
.dot-green  { background: #34d399; }
.brand-demo-title {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.brand-demo-body { padding: 1.25rem; display: grid; gap: 1rem; }
.brand-demo-logo-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  background: var(--surface-2);
  border-radius: 12px;
  border: 1px solid var(--line-2);
}
.brand-demo-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent);
  color: #07090e;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.brand-demo-name { font-size: 0.92rem; font-weight: 700; color: var(--text); margin: 0; }
.brand-demo-sub  { font-size: 0.78rem; color: var(--muted); margin: 0.1rem 0 0; }
.brand-demo-row  { border-top: 1px solid var(--line); padding-top: 0.85rem; }
.brand-demo-row span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 0.3rem;
}
.brand-demo-row p { font-size: 0.88rem; color: var(--text); margin: 0; }
.brand-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  margin-top: 0.25rem;
  width: fit-content;
}

/* CHECK LIST */
.check-list { display: grid; gap: 0.8rem; margin-top: 1.75rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.check-list li::before {
  content: '';
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--accent-dim);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-6' stroke='%23f59e0b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  margin-top: 1px;
}

/* ─────────────────────────────────────────────────────────────
   SAMPLE CTA SECTION
───────────────────────────────────────────────────────────── */
.sample-cta-section { background: var(--surface); }
.sample-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sample-cta-copy p { margin: 0; }
.sample-cta-proof {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.sample-cta-line {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.sample-cta-line:last-child { border-bottom: 0; }
.sample-cta-line strong { font-size: 0.92rem; color: var(--text); }
.sample-cta-line span   { font-size: 0.85rem; color: var(--muted); }

/* ─────────────────────────────────────────────────────────────
   REQUEST FORM
───────────────────────────────────────────────────────────── */
.request-card { padding: 2rem; }
.form-status {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
}
.form-status-success { background: var(--green-dim); color: #34d399; border: 1px solid rgba(16,185,129,0.22); }
.form-status-error   { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.22); }
.request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group   { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: 1 / -1; }
label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.025em;
}
input, textarea {
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.15s;
}
input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.2); }
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { resize: vertical; }
.form-hint { font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; }
.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.map-container {
  margin-top: 1.75rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 220px;
  color: var(--muted);
  font-size: 0.88rem;
  background: var(--surface-2);
}
.map-container iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ─────────────────────────────────────────────────────────────
   CONTACT CTA
───────────────────────────────────────────────────────────── */
.contact-cta-section { padding: 5rem 0; }
.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem;
}
.contact-cta-inner .eyebrow { margin-bottom: 0.5rem; }
.contact-cta-inner h2 { margin: 0 0 0.75rem; }
.contact-cta-inner p  { margin: 0; max-width: 480px; }
.contact-cta-actions  { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.site-footer { padding: 3rem 0; border-top: 1px solid var(--line); }
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand   { display: inline-block; margin-bottom: 0.75rem; }
.footer-wordmark {
  height: 1.75rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer-copy  { font-size: 0.88rem; color: var(--muted); margin: 0; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); }
.footer-links a:hover { color: var(--text); }

/* ─────────────────────────────────────────────────────────────
   SAMPLE REPORT PAGE
───────────────────────────────────────────────────────────── */

.sample-report-page {
  min-height: 100vh;
  padding: 6rem 0 5rem;
  background: var(--surface);
}
.sample-report-wrap { max-width: 1080px; }
.sample-report-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.sample-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
}
.sample-report-doc {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.09);
  overflow: hidden;
}
.sample-report-cover {
  padding: 2.5rem;
  background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
  border-bottom: 1px solid #e5e7eb;
}
.sample-report-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.sample-report-logo {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #0f172a;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.sample-report-brand { margin: 0; font-size: 1rem; font-weight: 800; color: #111827; }
.sample-report-sub   { margin: 0.2rem 0 0; color: #6b7280; font-size: 0.9rem; }
.sample-report-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #111827;
  margin: 0 0 0;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.sample-report-meta-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.75rem;
}
.sample-report-meta-grid > div {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}
.sample-report-meta-grid span {
  display: block;
  color: #9ca3af;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.sample-report-meta-grid strong { color: #111827; font-size: 0.92rem; }
.sample-section {
  padding: 2.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.sample-section:last-child { border-bottom: 0; }
.sample-section h2 { color: #111827; font-size: 1.5rem; margin: 0 0 0.75rem; }
.sample-section > p { color: #6b7280; margin: 0 0 1.5rem; }
.sample-summary-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1rem;
}
.sample-stat {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}
.sample-stat span {
  display: block;
  color: #9ca3af;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.sample-stat strong { color: #111827; font-size: 0.92rem; }
.sample-findings-grid,
.sample-photo-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}
.sample-finding-card,
.sample-photo-card {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1rem;
  background: #fff;
}
.sample-finding-image,
.sample-photo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 1rem;
}
.sample-finding-card h3 { margin: 0 0 0.4rem; color: #111827; font-size: 0.98rem; }
.sample-finding-card > p,
.sample-photo-card  > p { color: #6b7280; font-size: 0.88rem; margin: 0 0 0.4rem; }
.sample-finding-card span,
.sample-photo-card span { color: #9ca3af; font-size: 0.82rem; }
.sample-finding-severity {
  display: inline-flex;
  margin: 0 0 0.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.sample-finding-major { background: #fff7ed; color: #c2410c; }
.sample-finding-minor { background: #eff6ff; color: #1d4ed8; }
.sample-delivery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}
.sample-delivery-grid > div {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}
.sample-delivery-grid span {
  display: block;
  color: #9ca3af;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.sample-delivery-grid strong { display: block; color: #111827; font-size: 0.92rem; margin-bottom: 0.2rem; }
.sample-delivery-grid p      { color: #6b7280; font-size: 0.85rem; margin: 0; }

/* ─────────────────────────────────────────────────────────────
   CONSTRUCTION VERIFICATION PAGE
───────────────────────────────────────────────────────────── */
.cv-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background:
    radial-gradient(900px 540px at 78% 18%, rgba(245, 158, 11, 0.18), transparent 60%),
    radial-gradient(700px 480px at 8% 90%, rgba(16, 185, 129, 0.10), transparent 65%),
    linear-gradient(180deg, #050810 0%, #07090e 60%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.cv-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.cv-hero h1 { color: #fff; margin: 0 0 1.25rem; }
.cv-hero-disclaimer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Audience grid */
.cv-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cv-audience-card { padding: 1.75rem 1.5rem; }
.cv-audience-card h3 { color: var(--text); font-size: 1rem; margin: 1rem 0 0.5rem; }
.cv-audience-card p  { font-size: 0.92rem; }

/* Tier disclaimer */
.cv-tier-disclaimer {
  margin-top: 2.5rem;
  padding: 1.1rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.cv-tier-disclaimer strong { color: var(--text); }

/* Sample report doc (light-themed inside dark page) */
.cv-report-doc {
  background: #fff;
  color: #111827;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}
.cv-report-header {
  padding: 2rem 2.5rem;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  align-items: end;
}
.cv-report-brand { margin: 0; font-size: 1.05rem; font-weight: 800; color: #111827; letter-spacing: -0.01em; }
.cv-report-sub   { margin: 0.2rem 0 0; color: #6b7280; font-size: 0.9rem; }
.cv-report-meta  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.cv-report-meta > div {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  background: #fff;
}
.cv-report-meta span {
  display: block;
  color: #9ca3af;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.cv-report-meta strong { color: #111827; font-size: 0.85rem; font-weight: 700; }

.cv-report-section {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.cv-report-section:last-child { border-bottom: 0; }
.cv-report-section h3 {
  color: #111827;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.cv-progress-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.cv-progress-table th,
.cv-progress-table td {
  text-align: left;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
}
.cv-progress-table thead th {
  color: #9ca3af;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.cv-progress-table tbody tr:last-child td { border-bottom: 0; }
.cv-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
}
.cv-status-done     { background: #ecfdf5; color: #047857; }
.cv-status-progress { background: #fff7ed; color: #c2410c; }
.cv-status-pending  { background: #f1f5f9; color: #475569; }

.cv-report-completion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: #fafafa;
}
.cv-report-completion > div {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
}
.cv-report-completion span {
  display: block;
  color: #9ca3af;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.cv-report-completion strong { color: #111827; font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }
.cv-risk-low   { color: #047857; }
.cv-risk-med   { color: #c2410c; }
.cv-risk-high  { color: #b91c1c; }

.cv-report-observations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.cv-report-observations h3.cv-obs-good   { color: #047857; }
.cv-report-observations h3.cv-obs-issues { color: #b91c1c; }
.cv-report-observations ul { display: grid; gap: 0.55rem; }
.cv-report-observations li {
  font-size: 0.92rem;
  color: #374151;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}
.cv-report-observations li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}
.cv-rec-list { display: grid; gap: 0.55rem; }
.cv-rec-list li {
  font-size: 0.92rem;
  color: #374151;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.55;
}
.cv-rec-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

/* Tier-page select (matches input styling) */
.cv-select {
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%238896aa' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 14px;
  padding-right: 2.4rem;
}
.cv-select:focus { outline: none; border-color: var(--accent); }

/* ─────────────────────────────────────────────────────────────
   INDEX → CONSTRUCTION VERIFICATION CROSS-SELL
───────────────────────────────────────────────────────────── */
.cv-cross-section { padding: 4rem 0; }
.cv-cross-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  padding: 2.5rem 3rem;
  align-items: center;
  background:
    radial-gradient(500px 280px at 100% 0%, rgba(245, 158, 11, 0.10), transparent 70%),
    var(--surface);
  border-color: rgba(245, 158, 11, 0.22);
}
.cv-cross-inner h2 { margin: 0 0 1rem; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.cv-cross-inner p  { margin: 0 0 1.25rem; max-width: 640px; }
.cv-cross-list {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
}
.cv-cross-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
}
.cv-cross-list li strong { color: var(--text); font-weight: 700; }
.cv-cross-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.cv-cross-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}
.cv-cross-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}
.cv-cross-actions .button { width: 100%; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .two-col,
  .deliverables-layout,
  .sample-cta-inner        { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid              { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid            { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .deliverables-grid       { grid-template-columns: 1fr 1fr; }
  .contact-cta-inner       { flex-direction: column; align-items: flex-start; }
  .sample-report-meta-grid,
  .sample-summary-grid     { grid-template-columns: repeat(2, 1fr); }
  .sample-findings-grid,
  .sample-photo-grid,
  .sample-delivery-grid    { grid-template-columns: 1fr; }

  .cv-audience-grid        { grid-template-columns: repeat(2, 1fr); }
  .cv-report-header        { grid-template-columns: 1fr; }
  .cv-report-meta          { grid-template-columns: repeat(3, 1fr); }
  .cv-report-completion    { grid-template-columns: 1fr; }
  .cv-report-observations  { grid-template-columns: 1fr; gap: 1.5rem; }
  .cv-cross-inner          { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .cv-cross-actions        { flex-direction: row; }
}

@media (max-width: 720px) {
  .section      { padding: 4rem 0; }
  h1            { font-size: 2.6rem; }
  h2            { font-size: 1.85rem; }
  .nav-links    { display: none; }
  .hero         { align-items: flex-end; }
  .hero-sub     { font-size: 1rem; }
  .hero-stats   { gap: 1rem; }
  .hero-stat-sep { display: none; }
  .steps-grid   { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .request-form { grid-template-columns: 1fr; }
  .footer-grid  { flex-direction: column; align-items: flex-start; }
  .contact-cta-inner { padding: 2rem; }
  .sample-report-meta-grid,
  .sample-summary-grid { grid-template-columns: 1fr 1fr; }
  .sample-report-toolbar { flex-direction: column; align-items: flex-start; }

  .cv-hero                { padding: 8rem 0 4rem; }
  .cv-audience-grid       { grid-template-columns: 1fr; }
  .cv-report-meta         { grid-template-columns: 1fr; }
  .cv-report-section      { padding: 1.5rem 1.5rem; }
  .cv-report-header       { padding: 1.5rem; }
  .cv-cross-actions       { flex-direction: column; }
}
