/* ================================================================
   HCR THEME — MAIN STYLESHEET
   Housing Compliance Review
   ================================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  --hunter-green: #2D5016;
  --hunter-green-dark: #1A2E0A;
  --hunter-green-mid: #243F11;
  --hunter-green-light: #3D6B20;
  --gold: #B8922A;
  --gold-light: #D4AE4E;
  --gold-pale: #F5EDD8;
  --gray-light: #F2F3F0;
  --gray-mid: #C8CAC4;
  --gray-dark: #5A5C57;
  --off-white: #FAFAF8;
  --white: #FFFFFF;
  --black: #0E100D;
  --text-primary: #1A1C18;
  --text-secondary: #4A4C46;
  --text-muted: #7A7C76;
  --border-light: #E4E5E0;
  --border-mid: #C4C6C0;
  --section-pad: 96px;
  --inner-max: 1200px;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 2px;
  --transition: all 0.28s ease;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: var(--font-body); line-height: 1.7; color: var(--text-primary); background: var(--off-white); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* Accessibility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-body); }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 15px 30px; border-radius: var(--radius);
  text-decoration: none; border: 2px solid var(--gold);
  transition: var(--transition); letter-spacing: 0.2px;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.85);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 15px 30px; border-radius: var(--radius);
  text-decoration: none; border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-full { width: 100%; justify-content: center; }

/* --- SECTION SHARED --- */
section { padding: var(--section-pad) 48px; }
.section-inner { max-width: var(--inner-max); margin: 0 auto; }
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section-label.light { color: var(--gold-light); }
.section-label.light::before { background: var(--gold-light); }
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; color: var(--text-primary); letter-spacing: -0.3px; margin-bottom: 16px; }
.section-subtitle { font-size: 18px; font-weight: 300; color: var(--text-secondary); line-height: 1.65; max-width: 600px; margin-bottom: 56px; }

/* ================================================================
   NAVIGATION
================================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; }

.nav-wrap {
  background: rgba(24, 38, 10, 0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,146,42,0.15);
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: background 0.3s ease;
}
.nav-wrap.scrolled { background: rgba(14, 22, 5, 0.99); }

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.nav-logo-badge { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.nav-logo-divider { width: 1px; height: 28px; background: rgba(184,146,42,0.35); }
.nav-logo-sub { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.35; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links li a { font-size: 13px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.25s; }
.nav-links li a:hover { color: var(--gold-light); }

.btn-nav { font-size: 13px !important; font-weight: 600 !important; letter-spacing: 0.5px !important; text-transform: none !important; background: var(--gold) !important; color: var(--white) !important; padding: 9px 20px !important; border-radius: var(--radius) !important; text-decoration: none; transition: background 0.25s !important; white-space: nowrap; }
.btn-nav:hover { background: var(--gold-light) !important; color: var(--white) !important; }

.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 1px; transition: var(--transition); }

.mobile-menu { display: none; background: var(--hunter-green-dark); padding: 20px 24px 28px; border-top: 1px solid rgba(184,146,42,0.15); }
.mobile-menu a { display: block; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.82); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); text-decoration: none; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta { color: var(--gold-light); font-weight: 600; margin-top: 8px; border-bottom: none !important; }

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100vh; background: var(--hunter-green-dark);
  display: flex; align-items: center;
  padding: 120px 48px 80px; position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 55%; height: 100%; background: linear-gradient(135deg, rgba(184,146,42,0.05) 0%, transparent 65%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(184,146,42,0.25), transparent); }
.hero-grid { max-width: var(--inner-max); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold-light); display: block; }
.hero h1 { font-size: clamp(38px, 4.5vw, 58px); font-weight: 600; color: var(--white); line-height: 1.16; letter-spacing: -0.5px; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-tagline { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; flex-direction: column; gap: 20px; padding-left: 40px; border-left: 1px solid rgba(184,146,42,0.2); }
.hero-stat-number { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--gold-light); line-height: 1; letter-spacing: -1px; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.4; margin-top: 4px; }
.hero-stat-divider { width: 36px; height: 1px; background: rgba(184,146,42,0.18); margin: 4px 0; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.65s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.22s; }
.hero-content > *:nth-child(3) { animation-delay: 0.36s; }
.hero-content > *:nth-child(4) { animation-delay: 0.5s; }
.hero-stats { animation: fadeUp 0.65s ease 0.45s both; }

/* TRUST BAR */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border-light); padding: 18px 48px; }
.trust-bar-inner { max-width: var(--inner-max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--text-secondary); }
.trust-icon { width: 20px; height: 20px; background: var(--hunter-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 10px; height: 10px; fill: none; stroke: var(--white); stroke-width: 2.5; }

/* ================================================================
   ABOUT
================================================================ */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-questions { display: flex; flex-direction: column; }
.about-question { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border-light); align-items: flex-start; }
.about-question:first-child { border-top: 1px solid var(--border-light); }
.q-number { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--gold); opacity: 0.45; line-height: 1; flex-shrink: 0; width: 44px; padding-top: 2px; }
.q-text { font-size: 16px; font-weight: 500; color: var(--text-primary); line-height: 1.5; margin-bottom: 6px; }
.q-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius); }
.q-tag.litigation { background: #FEF2F0; color: #993C1D; }
.q-tag.goals { background: #F0F5E8; color: #3B6D11; }
.q-tag.long-term { background: #EBF0FA; color: #185FA5; }
.q-tag.compliance { background: #FAF0E0; color: #854F0B; }
.about-right { position: sticky; top: 88px; }
.advisor-card { background: var(--hunter-green-dark); border-radius: 3px; padding: 40px; color: var(--white); margin-bottom: 20px; position: relative; overflow: hidden; }
.advisor-card::before { content: '\201C'; position: absolute; top: -12px; right: 20px; font-family: var(--font-display); font-size: 110px; color: rgba(184,146,42,0.12); line-height: 1; pointer-events: none; }
.advisor-card p { font-family: var(--font-display); font-size: 19px; font-style: italic; line-height: 1.55; color: rgba(255,255,255,0.9); margin-bottom: 22px; position: relative; }
.advisor-card-footer { font-size: 13px; font-weight: 500; color: var(--gold-light); letter-spacing: 0.3px; }
.model-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.model-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text-secondary); padding: 8px 14px; border: 1px solid var(--border-light); border-radius: var(--radius); background: var(--gray-light); }
.model-tag svg { width: 13px; height: 13px; fill: none; stroke: var(--hunter-green); stroke-width: 2.5; flex-shrink: 0; }

/* ================================================================
   SERVICES
================================================================ */
.services { background: var(--gray-light); }
.services-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.core-package { background: var(--white); border: 1px solid var(--border-light); border-top: 3px solid var(--hunter-green); border-radius: var(--radius); overflow: hidden; }
.core-package-header { padding: 32px 36px 24px; border-bottom: 1px solid var(--border-light); }
.package-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--hunter-green); background: rgba(45,80,22,0.08); padding: 4px 12px; border-radius: var(--radius); margin-bottom: 14px; }
.package-name { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.package-tagline { font-size: 14px; color: var(--text-secondary); font-weight: 300; }
.report-sections { padding: 24px 36px; }
.report-section-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.report-section-item:last-child { border-bottom: none; }
.rs-icon { width: 34px; height: 34px; border-radius: var(--radius); background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rs-icon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.rs-title { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 3px; }
.rs-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.rs-tag { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 2px 7px; border-radius: var(--radius); margin-left: 6px; vertical-align: middle; }
.rs-tag.core { background: rgba(45,80,22,0.08); color: var(--hunter-green); }
.rs-tag.adder { background: rgba(184,146,42,0.12); color: var(--gold); }
.adders-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.adders-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 18px; }
.adder-card { background: var(--white); border: 1px solid var(--border-light); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 14px; transition: var(--transition); }
.adder-card:hover { box-shadow: var(--shadow-card); }
.adder-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.adder-name { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.adder-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.adder-note { background: var(--gold-pale); border-left: 3px solid var(--gold); padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin-top: 6px; }
.adder-note strong { color: var(--text-primary); }

/* ================================================================
   KPIs
================================================================ */
.kpis { background: var(--white); }
.kpi-intro-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; margin-bottom: 56px; }
.kpi-intro-text { font-size: 17px; font-weight: 300; color: var(--text-secondary); line-height: 1.7; padding-top: 12px; }
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.kpi-card { background: var(--gray-light); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 26px; transition: var(--transition); position: relative; overflow: hidden; }
.kpi-card::before { content: attr(data-num); position: absolute; top: -6px; right: 14px; font-family: var(--font-display); font-size: 60px; font-weight: 700; color: rgba(45,80,22,0.05); line-height: 1; pointer-events: none; }
.kpi-card:hover { border-color: var(--hunter-green); background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.kpi-abbr { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--hunter-green); margin-bottom: 5px; }
.kpi-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; line-height: 1.25; }
.kpi-formula { font-size: 11.5px; font-family: 'Courier New', monospace; color: var(--text-muted); background: rgba(0,0,0,0.04); padding: 6px 10px; border-radius: var(--radius); margin-bottom: 10px; border-left: 2px solid var(--gold); line-height: 1.4; }
.kpi-impact { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ================================================================
   PRICING
================================================================ */
.pricing { background: var(--hunter-green-dark); color: var(--white); }
.pricing .section-title { color: var(--white); }
.pricing .section-subtitle { color: rgba(255,255,255,0.62); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.pricing-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius); padding: 32px; transition: var(--transition); position: relative; }
.pricing-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(184,146,42,0.35); }
.pricing-card--featured { border: 2px solid rgba(184,146,42,0.45); padding-top: 40px; }
.pricing-featured-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius); white-space: nowrap; }
.pricing-tier { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.pricing-units { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.pricing-base-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.pricing-amount { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 4px; }
.pricing-per-unit { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.pricing-line { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid rgba(255,255,255,0.07); font-size: 13px; }
.pricing-line-label { color: rgba(255,255,255,0.6); }
.pricing-line-val { color: var(--white); font-weight: 500; }
.adder-table-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: rgba(255,255,255,0.88); margin-bottom: 14px; }
.adder-table { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; }
.adder-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.adder-table th { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.48); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 13px 18px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.07); }
.adder-table td { padding: 13px 18px; color: rgba(255,255,255,0.78); border-bottom: 1px solid rgba(255,255,255,0.05); }
.adder-table tr:last-child td { border-bottom: none; }
.adder-table .val { color: var(--gold-light); font-weight: 500; }
.rush-note { background: rgba(184,146,42,0.09); border: 1px solid rgba(184,146,42,0.18); border-radius: var(--radius); padding: 14px 18px; margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.6; }
.rush-note strong { color: var(--gold-light); }

/* ================================================================
   ROADMAP
================================================================ */
.roadmap { background: var(--gray-light); }
.roadmap-phases { display: flex; flex-direction: column; position: relative; }
.roadmap-phases::before { content: ''; position: absolute; left: 27px; top: 44px; bottom: 44px; width: 1px; background: linear-gradient(to bottom, var(--hunter-green), rgba(184,146,42,0.5), var(--hunter-green)); }
.phase-item { display: flex; gap: 28px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border-light); }
.phase-item:last-child { border-bottom: none; }
.phase-dot { width: 54px; height: 54px; border-radius: 50%; background: var(--white); border: 2px solid var(--hunter-green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.phase-dot.active { background: var(--hunter-green); }
.phase-dot span { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--hunter-green); }
.phase-dot.active span { color: var(--white); }
.phase-content { flex: 1; padding-top: 6px; }
.phase-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.phase-title { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.phase-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ================================================================
   CASE STUDY
================================================================ */
.case-study { background: var(--white); }
.cs-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.cs-story { display: flex; flex-direction: column; gap: 0; }
.cs-chapter { padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--border-light); }
.cs-chapter:last-of-type { border-bottom: none; }
.cs-chapter-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.cs-chapter p { font-size: 16px; color: var(--text-secondary); line-height: 1.72; margin-bottom: 14px; }
.cs-quote { border-left: 3px solid var(--gold); padding: 20px 24px; background: var(--gray-light); border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; }
.cs-quote p { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--text-primary); line-height: 1.6; margin-bottom: 12px; }
.cs-quote footer { font-size: 13px; font-weight: 600; color: var(--hunter-green); }
.cs-outcomes { padding-top: 32px; }
.cs-outcomes-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.cs-kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 16px; }
.cs-kpi { background: var(--gray-light); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 18px 16px; text-align: center; }
.cs-kpi-val { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--hunter-green); line-height: 1; margin-bottom: 6px; }
.cs-kpi-label { font-size: 12px; color: var(--text-muted); line-height: 1.3; }
.cs-sidebar { position: sticky; top: 88px; }
.cs-property-card { background: var(--hunter-green-dark); border-radius: var(--radius); padding: 28px; color: var(--white); margin-bottom: 16px; }
.cs-property-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.cs-property-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.07); font-size: 13px; }
.cs-property-row span:first-child { color: rgba(255,255,255,0.5); flex-shrink: 0; }
.cs-property-row span:last-child { color: rgba(255,255,255,0.88); text-align: right; }
.cs-disclaimer { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.cs-cta { width: 100%; justify-content: center; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials { background: var(--gray-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; position: relative; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.testimonial-quote-mark { font-family: var(--font-display); font-size: 56px; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: -10px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; flex: 1; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border-light); }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--hunter-green); color: var(--white); font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.testimonial-portfolio { font-size: 11px; color: var(--hunter-green); font-weight: 500; margin-top: 2px; }

/* ================================================================
   LEAD PAINT
================================================================ */
.lead-paint { background: var(--white); }
.lp-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: start; }
.lp-rules { margin-bottom: 28px; }
.lp-rule { padding: 18px 22px; border-left: 3px solid var(--border-light); margin-bottom: 12px; transition: border-color 0.25s; }
.lp-rule:hover { border-left-color: var(--hunter-green); }
.lp-rule-title { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.lp-rule-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.lp-deliverables { background: var(--gray-light); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 22px 24px; }
.lp-deliverables-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.lp-deliverable-item { font-size: 14px; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; }
.lp-check { color: var(--hunter-green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.compliance-box { background: var(--hunter-green-dark); border-radius: var(--radius); padding: 32px; color: var(--white); position: sticky; top: 88px; }
.compliance-box h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 18px; line-height: 1.3; }
.compliance-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.07); font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.5; }
.compliance-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(184,146,42,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.compliance-check svg { width: 10px; height: 10px; fill: none; stroke: var(--gold-light); stroke-width: 2.5; }
.compliance-partners { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.07); }
.compliance-partners-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; }
.compliance-partners-list { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ================================================================
   TEAM
================================================================ */
.team { background: var(--gray-light); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-bottom: 40px; }
.team-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.team-photo img { width: 100%; height: 220px; object-fit: cover; }
.team-photo-placeholder { width: 100%; height: 180px; background: var(--hunter-green-dark); display: flex; align-items: center; justify-content: center; }
.team-initials { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(255,255,255,0.25); }
.team-info { padding: 24px 26px; }
.team-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.team-role { font-size: 14px; font-weight: 500; color: var(--hunter-green); margin-bottom: 6px; }
.team-credentials { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 14px; }
.team-linkedin { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--hunter-green); text-decoration: none; transition: color 0.2s; }
.team-linkedin:hover { color: var(--gold); }
.team-linkedin svg { width: 14px; height: 14px; fill: currentColor; }
.team-advisor-note { background: var(--white); border: 1px solid var(--border-light); border-left: 3px solid var(--hunter-green); border-radius: 0 var(--radius) var(--radius) 0; }
.team-advisor-note-inner { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.team-advisor-icon svg { width: 28px; height: 28px; stroke: var(--hunter-green); flex-shrink: 0; margin-top: 2px; }
.team-advisor-note strong { color: var(--text-primary); }

/* ================================================================
   FAQ
================================================================ */
.faq { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; text-align: left; font-family: var(--font-body); font-size: 17px; font-weight: 500; color: var(--text-primary); cursor: pointer; transition: color 0.22s; background: none; border: none; }
.faq-question:hover { color: var(--hunter-green); }
.faq-question[aria-expanded="true"] { color: var(--hunter-green); }
.faq-icon { display: flex; align-items: center; flex-shrink: 0; }
.faq-icon svg { width: 18px; height: 18px; transition: var(--transition); stroke: var(--gold); }
.faq-icon-minus { display: none; }
.faq-question[aria-expanded="true"] .faq-icon-plus { display: none; }
.faq-question[aria-expanded="true"] .faq-icon-minus { display: block; }
.faq-answer { padding: 0 0 22px; }
.faq-answer p { font-size: 15px; color: var(--text-secondary); line-height: 1.72; max-width: 760px; }
.faq-cta-nudge { text-align: center; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.faq-cta-nudge p { font-size: 16px; color: var(--text-secondary); }
/* ================================================================
   CONTACT SECTION
================================================================ */
.contact-section {
  background: var(--hunter-green);
  padding: var(--section-pad) 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,146,42,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.contact-inner {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.contact-eyebrow {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600; color: var(--white);
  line-height: 1.18; letter-spacing: -0.3px;
  margin-bottom: 18px;
}
.contact-sub {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.65; margin-bottom: 40px;
}
.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 15px 30px; border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.btn-outline-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn-large {
  font-size: 16px !important;
  padding: 17px 36px !important;
}
.contact-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2px;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer { background: var(--black); padding: 72px 48px 32px; }
.footer-inner { max-width: var(--inner-max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-wrap { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: var(--font-display); font-size: 28px;
  font-weight: 700; color: var(--white); letter-spacing: 1px;
}
.footer-logo-sub {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-light);
}
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.42);
  line-height: 1.65; max-width: 260px;
}
.footer-compliance-marks { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-compliance-marks span {
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.32);
  padding: 4px 10px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.42);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .services-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --section-pad: 64px; }
  section { padding: var(--section-pad) 24px; }
  .nav-wrap { padding: 0 24px; }
  .nav-links, .btn-nav { display: none; }
  .nav-mobile-toggle { display: flex; }
  .mobile-menu.open { display: flex; flex-direction: column; }
  .hero { padding: 100px 24px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { padding-left: 0; border-left: none; flex-direction: row; flex-wrap: wrap; gap: 28px; }
  .hero-stat-divider { display: none; }
  .about-grid, .lp-grid, .kpi-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-right { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-section { padding: var(--section-pad) 24px; }
  .contact-buttons { flex-direction: column; align-items: center; }
  .trust-bar { padding: 14px 24px; }
  .site-footer { padding: 56px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .adder-table { overflow-x: auto; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media print {
  .site-header, .contact-section, .site-footer { display: none; }
  section { padding: 32px 0; }
}
