/* ========================================
   Brad Hess — Consulting Landing Page
   Deep Navy + Warm Gold | Cormorant + Switzer
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors — Deep Navy + Warm Gold */
  --color-navy: #0F1D2F;
  --color-navy-light: #1A2D45;
  --color-navy-lighter: #243A58;
  --color-gold: #C5954A;
  --color-gold-light: #D4A95E;
  --color-gold-dark: #A67B38;
  
  /* Surfaces */
  --color-bg: #FAFAF8;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F4F3F0;
  --color-border: #E2E0DB;
  
  /* Text */
  --color-text: #1A1A1A;
  --color-text-muted: #6B6B6B;
  --color-text-faint: #9A9A9A;
  --color-text-inverse: #FAFAF8;
  
  /* Accent */
  --color-accent: var(--color-gold);
  --color-primary: var(--color-navy);
  
  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* Fonts */
  --font-display: 'Cormorant', Georgia, serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;
  
  /* Misc */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(15,29,47,0.06);
  --shadow-md: 0 4px 16px rgba(15,29,47,0.08);
  --shadow-lg: 0 12px 40px rgba(15,29,47,0.12);
  --content-default: 960px;
  --content-wide: 1200px;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
a, button, [role="button"], input, textarea, select {
  transition: color var(--transition-interactive), background var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(197,149,74,0.2);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --- Container --- */
.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-navy);
}
.logo svg { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  letter-spacing: 0.01em;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--color-navy); }
.nav-link.cta-link {
  background: var(--color-navy);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-link.cta-link:hover {
  background: var(--color-navy-light);
}
.mobile-menu-btn { display: none; color: var(--color-navy); }
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 var(--space-6) var(--space-6);
  gap: var(--space-4);
}
.mobile-nav-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav-link:hover { color: var(--color-navy); }
.cta-link-mobile {
  background: var(--color-navy);
  color: var(--color-text-inverse) !important;
  text-align: center;
  padding: var(--space-3) var(--space-5) !important;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav.open { display: flex; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--color-navy);
  color: var(--color-text-inverse);
}
.btn-primary:hover {
  background: var(--color-navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn-ghost {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.btn-ghost:hover {
  background: var(--color-navy);
  color: var(--color-text-inverse);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.btn-ghost-dark:hover {
  background: var(--color-navy);
  color: var(--color-text-inverse);
}
.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
  transform: translateY(-1px);
}
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* --- Hero --- */
.hero {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-6);
  padding-bottom: clamp(var(--space-12), 8vw, var(--space-24));
  background: var(--color-bg);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 20%, rgba(197,149,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: var(--content-wide);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.hero-text {
  flex: 1;
  min-width: 0;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-navy);
  margin-bottom: var(--space-6);
  line-height: 1.08;
}
.hero-accent {
  color: var(--color-gold);
  font-style: italic;
}
.hero-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.hero-stats {
  max-width: var(--content-default);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-navy);
  display: block;
  line-height: 1.2;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  display: block;
  margin-top: var(--space-1);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 640px) {
  .hero-stats {
  max-width: var(--content-default);
  margin-left: auto;
  margin-right: auto; flex-direction: column; gap: var(--space-6); }
  .stat-divider { width: 40px; height: 1px; }
  .hero-content { flex-direction: column; }
  .hero-heading { font-size: clamp(2rem, 1rem + 5vw, 3.5rem); }
}

/* --- Sections --- */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}
.section-alt { background: var(--color-surface-alt); }
.section-dark {
  background: var(--color-navy);
  color: var(--color-text-inverse);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-12);
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}
.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto;
}

/* --- Pain Grid --- */
.pain-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: center;
}
.pain-grid .pain-card {
  flex: 0 1 calc(33.333% - var(--space-6));
  min-width: 260px;
}
.pain-card {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.pain-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197,149,74,0.1);
  border-radius: var(--radius-md);
  color: var(--color-gold-dark);
  margin-bottom: var(--space-4);
}
.pain-title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.pain-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}
.service-card {
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}
.service-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
  opacity: 0.7;
}
.service-title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.service-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  align-items: start;
  margin-bottom: var(--space-10);
}
.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border-color: var(--color-navy);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: calc(-1 * var(--space-3));
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-navy);
  color: var(--color-text-inverse);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.pricing-header { margin-bottom: var(--space-6); }
.pricing-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-1);
}
.pricing-audience {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}
.pricing-amount {
  margin-bottom: var(--space-1);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-1);
}
.pricing-dollar {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-navy);
}
.pricing-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1;
}
.pricing-period {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 400;
}
.pricing-monthly {
  font-size: var(--text-sm);
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: var(--space-6);
}
.pricing-features {
  list-style: none;
  margin-bottom: var(--space-8);
  flex-grow: 1;
}
.pricing-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-surface-alt);
  max-width: none;
}
.pricing-features li:first-child {
  font-weight: 600;
  color: var(--color-text);
}
.pricing-card .btn { width: 100%; text-align: center; }

.pricing-alt {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.pricing-alt-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.pricing-alt-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}
.pricing-alt-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 48ch;
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-12);
  align-items: start;
}
.about-content .section-eyebrow { text-align: left; }
.about-content .section-title {
  text-align: left;
  margin-bottom: var(--space-6);
}
.about-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.about-text strong { color: var(--color-text); font-weight: 600; }
.about-proof {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.proof-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.proof-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197,149,74,0.12);
  border-radius: 50%;
  color: var(--color-gold-dark);
  flex-shrink: 0;
}
.proof-icon svg { width: 14px; height: 14px; }
.proof-text {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}
.about-visual {
  display: flex;
  align-items: center;
}
.about-quote-card {
  background: var(--color-navy);
  color: var(--color-text-inverse);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  position: relative;
}
.about-quote-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--color-gold);
  opacity: 0.3;
  position: absolute;
  top: -0.1em;
  left: 0.2em;
  line-height: 1;
  pointer-events: none;
}
.about-quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-4);
  position: relative;
  max-width: none;
}
.about-cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-xs);
  color: var(--color-gold-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* --- Comparison Table --- */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.comparison-table th,
.comparison-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.comparison-table th {
  background: var(--color-surface-alt);
  font-weight: 600;
  color: var(--color-navy);
  font-size: var(--text-sm);
}
.comparison-table .th-sub {
  font-weight: 400;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: block;
  margin-top: 2px;
}
.comparison-table .highlight-col {
  background: rgba(15,29,47,0.03);
  font-weight: 600;
  color: var(--color-navy);
}
.comparison-table th.highlight-col {
  background: var(--color-navy);
  color: var(--color-text-inverse);
}
.cell-yes { color: var(--color-navy); }
.cell-no { color: var(--color-text-faint); }
.cell-partial { color: var(--color-gold-dark); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* --- CTA / Contact --- */
.section-dark .container { text-align: center; }
.cta-content { max-width: 640px; margin: 0 auto; }
.cta-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-4);
}
.cta-desc {
  font-size: var(--text-base);
  color: rgba(250,250,248,0.7);
  margin-bottom: var(--space-8);
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { margin-bottom: var(--space-6); }
.section-dark .btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}
.section-dark .btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(197,149,74,0.3);
}
.cta-note {
  font-size: var(--text-xs);
  color: rgba(250,250,248,0.5);
}

/* --- Footer --- */
.footer {
  background: var(--color-navy);
  color: rgba(250,250,248,0.6);
  padding: var(--space-10) var(--space-6);
  border-top: 1px solid rgba(250,250,248,0.08);
}
.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-inverse);
}
.footer-tagline {
  font-size: var(--text-xs);
  color: rgba(250,250,248,0.4);
  margin-top: var(--space-1);
}
.footer-links {
  display: flex;
  gap: var(--space-6);
}
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(250,250,248,0.5);
  text-decoration: none;
}
.footer-links a:hover { color: var(--color-gold-light); }
.footer-copy {
  font-size: var(--text-xs);
  color: rgba(250,250,248,0.3);
  width: 100%;
  text-align: center;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(250,250,248,0.06);
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* --- Animations --- */
.fade-in { opacity: 1; }

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}
@keyframes reveal-fade { to { opacity: 1; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Design Concepts Grid --- */
.concepts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.concept-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.concept-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.concept-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-surface-alt);
}
.concept-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.concept-card:hover .concept-img-wrap img {
  transform: scale(1.03);
}
.concept-info {
  padding: var(--space-5) var(--space-6);
}
.concept-name {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}
.concept-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.concepts-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-style: italic;
  max-width: 60ch;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .concepts-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 29, 47, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.active .lightbox-content {
  transform: scale(1) translateY(0);
}
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 248, 0.7);
  border-radius: 50%;
  z-index: 2;
}
.lightbox-close:hover {
  color: #fff;
  background: rgba(250, 250, 248, 0.1);
}
.lightbox-img {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.lightbox-caption {
  text-align: center;
  margin-top: var(--space-5);
  color: var(--color-text-inverse);
}
.lightbox-title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.lightbox-desc {
  font-size: var(--text-sm);
  color: rgba(250, 250, 248, 0.6);
  max-width: 50ch;
  margin: 0 auto;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  left: -56px;
  right: -56px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.lightbox-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 248, 0.7);
  background: rgba(250, 250, 248, 0.08);
  border-radius: 50%;
  pointer-events: auto;
  transition: background 0.2s ease, color 0.2s ease;
}
.lightbox-arrow:hover {
  color: #fff;
  background: rgba(250, 250, 248, 0.15);
}

/* Clickable cursor on concept cards when lightbox is available */
.concept-card { cursor: pointer; }

@media (max-width: 768px) {
  .lightbox-nav {
    left: 8px;
    right: 8px;
  }
  .lightbox-close {
    top: -40px;
    right: 4px;
  }
  .lightbox-content {
    width: 95vw;
  }
}

/* --- How It Works / Process --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding: var(--space-6) var(--space-4);
}
.process-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  line-height: 1;
}
.process-line {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  opacity: 0.3;
  margin: 0 auto var(--space-5);
}
.process-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}
.process-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}
@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Social Proof Cards --- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.proof-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.proof-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197,149,74,0.1);
  border-radius: 50%;
  color: var(--color-gold-dark);
  margin: 0 auto var(--space-4);
}
.proof-card-stat {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}
.proof-card-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 32ch;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.4;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 0 var(--space-5);
}
.faq-answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
  text-align: left;
}
.contact-info {
  padding-top: var(--space-4);
}
.contact-info .cta-heading {
  text-align: left;
}
.contact-info .cta-desc {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.contact-details {
  margin: var(--space-6) 0;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(250,250,248,0.6);
}
.contact-link {
  color: var(--color-gold-light);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
}
.contact-link:hover {
  color: var(--color-gold);
}
.contact-info .cta-note {
  text-align: left;
}
.contact-form-wrap {
  background: rgba(250,250,248,0.06);
  border: 1px solid rgba(250,250,248,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(250,250,248,0.7);
  letter-spacing: 0.03em;
}
.form-input {
  background: rgba(250,250,248,0.08);
  border: 1px solid rgba(250,250,248,0.15);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-input::placeholder {
  color: rgba(250,250,248,0.3);
}
.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(250,250,248,0.1);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(250,250,248,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: var(--space-8);
}
.form-select option {
  background: var(--color-navy);
  color: var(--color-text-inverse);
}
.form-textarea {
  resize: vertical;
  min-height: 80px;
}
.form-submit {
  margin-top: var(--space-2);
  width: 100%;
}
.section-dark .contact-grid .btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}
.section-dark .contact-grid .btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(197,149,74,0.3);
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .section-dark .container { text-align: left; }
}

/* --- Resources Teaser --- */
.resources-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.resources-text .section-eyebrow { text-align: left; }
.resources-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}
.resources-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 48ch;
}
.resources-topics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.topic-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-navy);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-4);
  border-radius: 100px;
  white-space: nowrap;
}

/* --- Legal Pages --- */
.legal-page {
  padding-top: var(--space-16);
}
.legal-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}
.legal-updated {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
}
.legal-content {
  max-width: 720px;
}
.legal-content h2 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}
.legal-content ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
}
.legal-content li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: var(--space-1) 0;
}
.legal-content a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--color-gold);
}

/* --- Footer Legal --- */
.footer-legal {
  width: 100%;
  text-align: center;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(250,250,248,0.06);
}
.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(250,250,248,0.4);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--color-gold-light); }
.footer-legal-sep {
  color: rgba(250,250,248,0.2);
  margin: 0 var(--space-2);
}
.footer-copy {
  border-top: none;
  padding-top: var(--space-3);
  margin-top: var(--space-3);
}

/* --- Hero Visual (laptop/phone mockup) --- */
.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(15, 29, 47, 0.12));
}
@media (max-width: 768px) {
  .hero-visual {
    margin-top: var(--space-8);
  }
  .hero-visual img {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* --- CTA Trust List --- */
.cta-trust-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.cta-trust-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(250, 250, 248, 0.7);
}
.cta-trust-list svg {
  flex-shrink: 0;
  color: var(--color-gold);
}
