/* ============================================
   CRESTONE AI — Shared Stylesheet
   Multi-page marketing site
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg: #FAFAF8;
  --bg-alt: #F0EFEB;
  --bg-dark: #0C1220;
  --bg-navy: #0F172A;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --text-light: #999;
  --accent: #0D9488;
  --accent-hover: #0F766E;
  --accent-dark: #115E59;
  --accent-light: #CCFBF1;
  --accent-50: #F0FDFA;
  --accent-glow: rgba(13,148,136,0.12);
  --border: #E2E2DE;
  --white: #FFFFFF;
  --danger: #DC2626;
  --warning: #D97706;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1140px;
  --max-w-narrow: 800px;
  --section-pad: clamp(72px, 10vw, 120px);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--sans); cursor: pointer; -webkit-appearance: none; appearance: none; background: none; border: none; padding: 0; color: inherit; }
ul, ol { list-style: none; }

/* --- Utilities --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }
.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; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }

/* --- Typography --- */
.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  font-weight: 400;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,148,136,0.25);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid var(--border);
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}
.btn-secondary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--bg-dark);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.15);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 8px 14px;
  border-radius: 8px;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
}

/* Industry Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-dropdown-trigger:hover {
  color: var(--text);
}
.nav-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--accent-50);
  color: var(--accent);
}

/* Nav CTA */
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================
   HERO — Homepage
   ============================================ */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(13,148,136,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(13,148,136,0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(13,148,136,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2l2 3-2 3zm0-7V11H0V9h20V7l2 3-2 3z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(13,148,136,0.2);
  color: var(--accent-light);
  border: 1px solid rgba(13,148,136,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn-primary {
  background: var(--white);
  color: var(--accent-dark);
}
.hero .btn-primary:hover {
  background: #f0f0f0;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.hero .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.hero .btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Stats Strip */
.hero-stats {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 28px;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  color: var(--white);
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ============================================
   HERO — Inner Pages (Industry, About, Contact)
   ============================================ */
.hero-inner {
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--white);
}
.hero-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(13,148,136,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(13,148,136,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner .hero-content {
  max-width: 720px;
}
.hero-inner h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.hero-inner .hero-sub {
  font-size: 17px;
  margin-bottom: 32px;
}

/* ============================================
   BALANCE SHEET ARGUMENT
   ============================================ */
.balance-sheet-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.balance-sheet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.balance-sheet-col {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.balance-sheet-col:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.balance-sheet-col.problem {
  background: var(--white);
}
.balance-sheet-col.solution {
  background: var(--accent-50);
  border-color: rgba(13,148,136,0.2);
}
.balance-sheet-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.balance-sheet-icon svg {
  width: 24px;
  height: 24px;
}
.balance-sheet-icon.problem-icon {
  background: #FEF2F2;
}
.balance-sheet-icon.problem-icon svg {
  stroke: #DC2626;
}
.balance-sheet-icon.solution-icon {
  background: var(--accent-light);
}
.balance-sheet-icon.solution-icon svg {
  stroke: var(--accent);
}
.balance-sheet-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.balance-sheet-col.problem .balance-sheet-label {
  color: var(--text-muted);
}
.balance-sheet-col.solution .balance-sheet-label {
  color: var(--accent);
}
.balance-sheet-col h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 400;
}
.balance-sheet-col.solution h3 {
  color: var(--accent-dark);
}
.balance-sheet-col p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.balance-sheet-col p:last-child {
  margin-bottom: 0;
}
.balance-sheet-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.bs-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
@media (max-width: 680px) {
  .balance-sheet-grid { grid-template-columns: 1fr; }
}

/* ============================================
   81% STAT BLOCK
   ============================================ */
.stat-block-section {
  padding: 72px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.stat-block-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(13,148,136,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.stat-block-number {
  font-family: var(--serif);
  font-size: clamp(72px, 12vw, 120px);
  line-height: 1;
  color: var(--accent-light);
  font-weight: 400;
}
.stat-block-main {
  font-size: 20px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  margin: 0;
}
.stat-block-highlight {
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
  margin: 4px 0 12px;
}
.stat-block .btn-primary {
  background: var(--white);
  color: var(--accent-dark);
  margin-top: 8px;
}
.stat-block .btn-primary:hover {
  background: #f0f0f0;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.stat-block-source {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  position: relative;
  z-index: 1;
}
@media (max-width: 680px) {
  .stat-block-main { font-size: 17px; }
  .stat-block-highlight { font-size: 19px; }
}

/* ============================================
   INDUSTRY LANES — Homepage Categories
   ============================================ */
.industry-lanes {
  padding: var(--section-pad) 0;
  background: var(--white);
}

/* --- Category Cards (Top 3 Boxes) --- */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  width: 100%;
}
.industry-lanes .industry-card {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  font-family: var(--sans);
  width: 100%;
  box-sizing: border-box;
}
.industry-lanes .industry-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(13,148,136,0.1);
  transform: translateY(-2px);
}
.industry-lanes .industry-card.active {
  border-color: var(--accent);
  background: var(--accent-50);
  box-shadow: 0 4px 20px rgba(13,148,136,0.12);
}
.industry-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  border-radius: 12px;
  background: var(--accent-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}
.industry-card.active .industry-card-icon {
  background: var(--accent);
}
.industry-card-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  stroke: var(--accent);
  fill: none;
  transition: stroke 0.25s;
  flex-shrink: 0;
  flex-grow: 0;
}
.industry-card.active .industry-card-icon svg {
  stroke: var(--white);
}
.industry-lanes .industry-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.industry-lanes .industry-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* --- Sector Sub-Tabs (inside Compliance) --- */
.sector-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.industry-lanes .sector-tab {
  -webkit-appearance: none;
  appearance: none;
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
  white-space: nowrap;
}
.industry-lanes .sector-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.industry-lanes .sector-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.sector-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.sector-content.active {
  display: block;
}

/* --- Content Panels --- */
.lane-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.lane-content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- V2 Grid: Shared container with Left + Right --- */
.lane-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.lane-left {
  display: flex;
  flex-direction: column;
  padding: 36px;
  gap: 28px;
}
.lane-right {
  border-left: 1px solid var(--border);
  background: var(--accent-50);
}

/* Understand Section */
.lane-understand h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
}
.lane-pain-points {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lane-pain-points li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 7px 0 7px 24px;
  position: relative;
  line-height: 1.55;
  list-style: none;
}
.lane-pain-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0D9488;
  opacity: 0.6;
}

/* What We Build Section */
.lane-build-list {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.lane-build-list h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: var(--accent-dark);
}
.lane-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lane-check-list li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0 6px 26px;
  position: relative;
  line-height: 1.5;
  list-style: none;
}
.lane-check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 6px;
  color: #0D9488;
  font-weight: 700;
}

/* Benefits (Right Column — inside shared box) */
.lane-benefits {
  padding: 36px;
  height: 100%;
}
.lane-benefits h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--accent-dark);
}
.lane-benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lane-benefits li {
  font-size: 15px;
  color: var(--text);
  padding: 10px 0 10px 30px;
  position: relative;
  line-height: 1.55;
  border-bottom: 1px solid rgba(13,148,136,0.1);
  list-style: none;
}
.lane-benefits li:last-child {
  border-bottom: none;
}
.lane-benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 10px;
  color: #0D9488;
  font-weight: 700;
  font-size: 16px;
}

/* Regulatory Urgency Callout */
.urgency-box {
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  border-left: 4px solid #D97706;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
}
.urgency-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: #92400E;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.urgency-box li {
  font-size: 14px;
  color: #78350F;
  padding: 4px 0;
  line-height: 1.5;
}
.urgency-box li strong {
  color: #92400E;
}
.lane-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.lane-bottom {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  align-items: flex-start;
}
.lane-bottom .urgency-box {
  flex: 1;
  margin-top: 0;
}
.lane-bottom .lane-ctas {
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  margin-top: 0;
  min-width: 240px;
  gap: 10px;
}
.lane-bottom .lane-ctas .btn-primary,
.lane-bottom .lane-ctas .btn-secondary {
  text-align: center;
  justify-content: center;
}
.lane-fallback {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.lane-fallback p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* --- Mobile: Industry Section --- */
@media (max-width: 768px) {
  .industry-cards { grid-template-columns: 1fr; gap: 12px; }
  .industry-lanes .industry-card { flex-direction: row; padding: 18px 20px; text-align: left; }
  .lane-grid-v2 { grid-template-columns: 1fr; }
  .lane-right { border-left: none; border-top: 1px solid var(--border); }
  .lane-bottom { flex-direction: column; }
  .lane-bottom .lane-ctas { min-width: auto; }
  .sector-tabs { gap: 4px; }
  .industry-lanes .sector-tab { padding: 8px 14px; font-size: 12px; }
}

/* ============================================
   HOW WE WORK — 4 Steps
   ============================================ */
.how-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 18px;
}
.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.step-card .step-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: var(--accent-50);
  color: var(--accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.service-block {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
}
.service-block:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-block-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--accent);
  color: var(--white);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.service-block h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-block .check-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.service-block .check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================
   WHY CRESTONE
   ============================================ */
.why-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   80/20 MODEL VISUAL
   ============================================ */
.model-section {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.model-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(13,148,136,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.model-content .section-label {
  color: var(--accent-light);
}
.model-content .section-title {
  color: var(--white);
}
.model-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 16px;
}
.model-content .model-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
}
.model-visual {
  position: relative;
}
.model-bar-container {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
}
.model-bar {
  margin-bottom: 32px;
}
.model-bar:last-child {
  margin-bottom: 0;
}
.model-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.model-bar-label span:last-child {
  color: var(--accent-light);
}
.model-bar-track {
  height: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.model-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}
.model-bar-fill.auto {
  background: linear-gradient(90deg, var(--accent), #14b8a6);
}
.model-bar-fill.human {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}
.model-bar-fill.animated {
  /* Width set via JS */
}
.model-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.model-item {
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}
.model-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.model-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.team-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #14b8a6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.team-card:hover::before {
  transform: scaleX(1);
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.team-avatar-ai {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.team-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.team-card .team-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Full Team Bio (About page) */
.team-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
}
.team-full-member {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.team-full-member:nth-child(even) {
  direction: rtl;
}
.team-full-member:nth-child(even) > * {
  direction: ltr;
}
.team-full-photo {
  position: sticky;
  top: 100px;
}
.team-full-photo .team-avatar,
.team-full-photo .team-avatar-ai {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
}
.team-full-photo h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-full-photo .team-role {
  text-align: center;
}
.team-full-bio p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.team-full-bio p:last-child {
  margin-bottom: 0;
}
.team-full-bio h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-full-bio .team-role {
  margin-bottom: 24px;
}
.team-full-bio strong {
  color: var(--text);
}
.team-full + .team-full {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.cta-process-link {
  margin-top: 20px;
}
.cta-process-link a {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.cta-process-link a:hover {
  color: rgba(255,255,255,0.75);
}

/* ============================================
   SOCIAL PROOF / TRUST
   ============================================ */
.trust-section {
  padding: 56px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  text-align: center;
}
.trust-item .trust-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.trust-item .trust-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: all 0.3s;
  overflow: hidden;
}
.faq-item:hover {
  border-color: var(--accent);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 24px 22px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 960px;
  margin: 0 auto;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-muted);
}
.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A5A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============================================
   CTA SECTION (Dark)
   ============================================ */
.cta-dark {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(13,148,136,0.12), transparent 65%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-inner .section-title {
  color: var(--white);
}
.cta-inner .section-sub {
  color: rgba(255,255,255,0.55);
  margin: 0 auto 32px;
}
.cta-meta {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-email {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cta-email p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.cta-email a {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}
.cta-email a:hover {
  color: white;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-dark);
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   INDUSTRY PAGE SECTIONS
   ============================================ */
.industry-pain {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--danger);
  transition: all var(--transition);
}
.pain-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.industry-builds {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.builds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.build-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.build-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.build-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.build-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.build-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.build-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.industry-urgency {
  padding: 56px 0;
  background: var(--white);
}
.urgency-banner {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid #F59E0B;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.urgency-banner h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: #78350F;
  margin-bottom: 20px;
}
.urgency-banner li {
  font-size: 16px;
  color: #92400E;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.55;
}
.urgency-banner li::before {
  content: '⚠';
  position: absolute;
  left: 0;
}
.urgency-banner li strong {
  color: #78350F;
}

/* First Nations specific */
.fn-why {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.fn-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fn-why-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.fn-why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.fn-why-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-dark);
}
.fn-why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .model-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-full-member {
    grid-template-columns: 200px 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .lane-bottom { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .fn-why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid-3 { grid-template-columns: 1fr; }
  .model-items { grid-template-columns: 1fr; }
  .team-full-member {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .team-full-member:nth-child(even) {
    direction: ltr;
  }
  .team-full-photo {
    position: static;
    text-align: center;
  }
  .team-full-photo .team-avatar,
  .team-full-photo .team-avatar-ai {
    margin: 0 auto 16px;
  }
}

@media (max-width: 680px) {
  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 14px;
    font-size: 15px;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .nav-dropdown.mobile-open .nav-dropdown-menu {
    display: block;
  }
  .mobile-toggle {
    display: block;
  }

  /* Hero */
  .hero { padding-top: 120px; padding-bottom: 72px; }
  .hero-inner { padding-top: 120px; padding-bottom: 56px; }
  .hero-stats { gap: 24px; }
  .stat { padding: 0 16px; }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .step-card {
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
  }
  .step-num {
    margin: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* FAQ */
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer { padding: 0 20px; }
  .faq-item.open .faq-answer { padding: 0 20px 18px; }

  /* Contact */
  .contact-form { padding: 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero-inner h1 { font-size: 30px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat + .stat::before { display: none; }
}
