/* ============================================
   ASCENSION STRATEGY SOLUTIONS
   Website Stylesheet
   ============================================ */

/* Google Fonts - Inter with all weights for mobile readability */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  /* Brand Colors */
  --olive: #878c58;
  --olive-dark: #6b6f47;
  --olive-light: #a5aa7a;
  --gold: #c9a227;
  --gold-light: #d4b54a;
  --dark: #2c2e24;
  --dark-soft: #3d4033;
  --cream: #f5f4ef;
  --cream-dark: #e8e7e0;
  --white: #ffffff;
  
  /* Typography */
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 46, 36, 0.08);
  --shadow-md: 0 4px 12px rgba(44, 46, 36, 0.1);
  --shadow-lg: 0 8px 30px rgba(44, 46, 36, 0.12);
  --shadow-xl: 0 20px 50px rgba(44, 46, 36, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 450;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--dark);
  font-weight: 450;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* Section Label */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: var(--space-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn--primary {
  background: var(--olive);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn--secondary:hover {
  background: var(--dark);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--dark);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--dark);
}

/* ============================================
   HEADER
   ============================================ */

/* Top Bar */
.top-bar {
  background: var(--dark);
  color: var(--cream);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.top-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-lg);
}

.top-bar a {
  color: var(--cream);
  opacity: 0.9;
}

.top-bar a:hover {
  opacity: 1;
  color: var(--gold);
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Main Header */
.header {
  background: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__logo svg {
  width: 48px;
  height: auto;
}

.header__wordmark {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

.header__wordmark span {
  display: block;
  font-size: 0.7rem;
  color: var(--olive);
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  font-weight: 500;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.5rem 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--olive);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Dropdown */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 180px;
  padding: 0.75rem 0;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--dark);
}

.nav__dropdown a:hover {
  background: var(--cream);
  color: var(--olive);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(135, 140, 88, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__content {
  max-width: 600px;
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.stat-card {
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: float 6s ease-in-out infinite;
}

.stat-card:nth-child(2) {
  animation-delay: -2s;
  margin-left: var(--space-xl);
}

.stat-card:nth-child(3) {
  animation-delay: -4s;
  margin-left: var(--space-lg);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--olive);
  line-height: 1;
}

.stat-card__label {
  font-size: 0.9rem;
  color: var(--dark-soft);
  font-weight: 500;
}

/* Page Hero (smaller) */
.hero--page {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.hero--page .hero__inner {
  display: block;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.hero--page .hero__title {
  margin-bottom: var(--space-sm);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: var(--space-3xl) 0;
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  background: var(--dark);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark .section-label {
  color: var(--gold);
}

.section__header {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto var(--space-2xl);
}

.section__header h2 {
  margin-bottom: var(--space-sm);
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--olive);
  transition: height var(--transition-base);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--cream-dark);
  transform: translateY(-4px);
}

.service-card:hover::before {
  height: 100%;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--olive);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
}

.service-card__description {
  color: var(--dark);
  font-size: 1rem;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */

.about-preview {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-preview__content h2 {
  margin-bottom: var(--space-md);
}

.about-preview__text {
  color: var(--dark);
  margin-bottom: var(--space-lg);
}

.about-preview__stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--cream-dark);
}

.about-stat {
  text-align: center;
}

.about-stat__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--olive);
  line-height: 1;
}

.about-stat__label {
  font-size: 0.9rem;
  color: var(--dark);
  margin-top: 0.25rem;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: var(--olive-light);
  opacity: 0.3;
}

.process-step:last-child::after {
  display: none;
}

.process-step__number {
  width: 64px;
  height: 64px;
  background: var(--olive);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.process-step__description {
  font-size: 1rem;
  color: var(--dark);
}

/* Dark section process */
.section--dark .process-step__number {
  background: var(--gold);
  color: var(--dark);
}

.section--dark .process-step__description {
  color: rgba(255, 255, 255, 0.7);
}

.section--dark .process-step::after {
  background: var(--gold);
  opacity: 0.3;
}

/* ============================================
   CASE STUDY PREVIEW
   ============================================ */

.case-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.case-preview__visual {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  border-radius: 12px;
  padding: var(--space-2xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.case-preview__visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.case-preview__metrics {
  display: flex;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.case-metric {
  text-align: center;
}

.case-metric__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.case-metric__label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.case-preview__content h2 {
  margin-bottom: var(--space-md);
}

.case-preview__summary {
  color: var(--dark-soft);
  margin-bottom: var(--space-lg);
}

/* ============================================
   RESULTS SECTION
   ============================================ */

.results-list {
  max-width: 600px;
  margin: 0 auto;
}

.results-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.results-list li:last-child {
  border-bottom: none;
}

.results-list svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.cta-section h2 {
  margin-bottom: var(--space-sm);
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* CTA on cream background (default) */
.section--cream.cta-section h2,
.section--cream.cta-section .section-label {
  color: var(--dark);
}

.section--cream.cta-section p {
  color: var(--dark);
}

/* CTA on dark background */
.section--dark.cta-section h2 {
  color: var(--white);
}

.section--dark.cta-section .section-label {
  color: var(--gold);
}

.section--dark.cta-section p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-section .btn {
  margin: 0 var(--space-xs);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--dark);
  color: var(--cream);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.footer__brand svg {
  width: 40px;
  flex-shrink: 0;
}

.footer__wordmark {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--olive-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  margin-left: var(--space-md);
}

.footer__legal a:hover {
  color: var(--gold);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.story-section {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.story-section h3 {
  color: var(--olive);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.story-section h3:first-child {
  margin-top: 0;
}

.story-section p {
  color: var(--dark-soft);
}

/* Philosophy */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.philosophy-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 8px;
  border-left: 4px solid var(--olive);
}

.philosophy-card h4 {
  color: var(--olive);
  margin-bottom: var(--space-xs);
}

.philosophy-card p {
  color: var(--dark-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   EXPERTISE PAGE
   ============================================ */

.expertise-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
}

.expertise-card__header {
  background: var(--olive);
  color: var(--white);
  padding: var(--space-lg);
}

.expertise-card__header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.expertise-card__short {
  opacity: 0.9;
  font-size: 1rem;
}

.expertise-card__body {
  padding: var(--space-xl);
}

.expertise-card__expanded {
  font-size: 1.05rem;
  color: var(--dark-soft);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--cream-dark);
}

.expertise-card__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.expertise-card__column h4 {
  color: var(--olive);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
}

.expertise-card__column ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--dark-soft);
  font-size: 0.95rem;
}

.expertise-card__column ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 6px;
  height: 6px;
  background: var(--olive);
  border-radius: 50%;
}

.expertise-card__footer {
  background: var(--cream);
  padding: var(--space-md) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.expertise-card__timeline {
  font-size: 0.9rem;
  color: var(--dark-soft);
}

.expertise-card__timeline strong {
  color: var(--olive);
}

/* ============================================
   CASE STUDY PAGE
   ============================================ */

.case-phase {
  position: relative;
  padding-left: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.case-phase::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cream-dark);
}

.case-phase__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--olive);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.case-phase h3 {
  color: var(--olive);
  margin-bottom: var(--space-sm);
}

.case-phase ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--dark);
}

.case-phase ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--olive);
}

/* ============================================
   BLOG & RESOURCES
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card__image {
  height: 180px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__image svg {
  width: 48px;
  height: 48px;
  color: var(--olive);
  opacity: 0.5;
}

.blog-card__content {
  padding: var(--space-md);
}

.blog-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive);
  margin-bottom: var(--space-xs);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--dark-soft);
}

/* Category Filter */
.category-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.category-filter button {
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-filter button:hover,
.category-filter button.active {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}

/* Resources */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.resource-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
  transition: all var(--transition-base);
}

.resource-card:hover {
  border-color: var(--olive);
  box-shadow: var(--shadow-md);
}

.resource-card__type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--olive);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  margin-bottom: var(--space-sm);
}

.resource-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.resource-card__description {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.resource-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--olive);
}

.resource-card__link:hover {
  color: var(--olive-dark);
}

/* ============================================
   COMING SOON STATE
   ============================================ */

.coming-soon {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.coming-soon__icon {
  width: 80px;
  height: 80px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--olive);
}

.coming-soon h3 {
  margin-bottom: var(--space-sm);
}

.coming-soon p {
  color: var(--dark-soft);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .hero__stats {
    flex-direction: row;
    justify-content: center;
  }
  
  .stat-card:nth-child(2),
  .stat-card:nth-child(3) {
    margin-left: 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-preview {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step::after {
    display: none;
  }
  
  .case-preview {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .expertise-card__columns {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .blog-grid,
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }
  
  .header__inner {
    flex-wrap: wrap;
    position: relative;
  }
  
  .nav {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: var(--space-sm);
    display: none;
    padding-top: var(--space-md);
  }
  
  .nav.active {
    display: flex !important;
  }
  
  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .nav__link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #d4d3c8;
  }
  
  .nav__toggle {
    display: block !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .nav__toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #2c2e24;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .nav__dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: #f5f4ef;
    opacity: 1;
    visibility: visible;
    padding-left: var(--space-md);
  }
  
  .nav .btn {
    margin-top: var(--space-sm);
    text-align: center;
  }
  
  .hero {
    padding: var(--space-2xl) 0;
  }
  
  .hero__stats {
    flex-direction: column;
  }
  
  .stat-card {
    animation: none;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .footer__legal {
    margin-top: var(--space-xs);
  }
  
  .footer__legal a {
    margin: 0 var(--space-sm);
  }
  
  .blog-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .about-preview__stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .case-preview__metrics {
    justify-content: center;
  }
  
  .expertise-card__footer {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    width: 100%;
  }
  
  .cta-section .btn {
    display: block;
    margin: var(--space-xs) 0;
  }
}

/* ============================================
   ADDITIONAL MOBILE FIXES
   ============================================ */

/* Prevent horizontal overflow */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Top bar mobile */
@media (max-width: 600px) {
  .top-bar__inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  
  .top-bar__item {
    font-size: 0.75rem;
  }
}

/* Header mobile improvements */
@media (max-width: 900px) {
  .header__wordmark {
    font-size: 1rem;
  }
  
  .header__wordmark span {
    display: none;
  }
  
  .nav:not(.active) .nav__list {
    display: none;
  }
  
  .nav.active .nav__list {
    display: flex !important;
    flex-direction: column;
  }
  
  .nav {
    gap: var(--space-sm);
  }
}

@media (max-width: 600px) {
  .header__inner {
    padding: 0;
  }
  
  .header__logo svg {
    width: 36px;
  }
  
  .header__wordmark {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* Hero mobile */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-xl) 0;
  }
  
  .hero__title {
    font-size: 1.85rem;
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
  }
  
  .stat-card {
    padding: var(--space-sm) var(--space-md);
  }
  
  .stat-card__number {
    font-size: 1.75rem;
  }
  
  .stat-card__label {
    font-size: 0.9rem;
  }
}

/* Services grid mobile */
@media (max-width: 600px) {
  .service-card {
    padding: var(--space-md);
  }
  
  .service-card__title {
    font-size: 1.2rem;
  }
  
  .service-card__description {
    font-size: 1rem;
  }
}

/* Process grid mobile */
@media (max-width: 600px) {
  .process-step__number {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
  
  .process-step__title {
    font-size: 1.1rem;
  }
  
  .process-step__description {
    font-size: 0.95rem;
  }
}

/* Case preview mobile */
@media (max-width: 600px) {
  .case-preview__visual {
    padding: var(--space-md);
  }
  
  .case-metric__number {
    font-size: 2rem;
  }
  
  .case-metric__label {
    font-size: 0.85rem;
  }
}

/* Results list mobile */
@media (max-width: 600px) {
  .results-list li {
    font-size: 1rem;
  }
}

/* CTA section mobile */
@media (max-width: 600px) {
  .cta-section h2 {
    font-size: 1.5rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
}

/* Expertise cards mobile */
@media (max-width: 600px) {
  .expertise-card__header {
    padding: var(--space-md);
  }
  
  .expertise-card__header h3 {
    font-size: 1.25rem;
  }
  
  .expertise-card__short {
    font-size: 1rem;
  }
  
  .expertise-card__body {
    padding: var(--space-md);
  }
  
  .expertise-card__expanded {
    font-size: 1rem;
  }
  
  .expertise-card__column ul li {
    font-size: 0.95rem;
  }
  
  .expertise-card__footer {
    padding: var(--space-sm) var(--space-md);
  }
}

/* About story mobile */
@media (max-width: 600px) {
  .story-section h3 {
    font-size: 1.15rem;
  }
  
  .story-section p {
    font-size: 1rem;
  }
}

/* Philosophy cards mobile */
@media (max-width: 600px) {
  .philosophy-card {
    padding: var(--space-md);
  }
  
  .philosophy-card h4 {
    font-size: 1.05rem;
  }
  
  .philosophy-card p {
    font-size: 0.95rem;
  }
}

/* Case study phases mobile */
@media (max-width: 600px) {
  .case-phase {
    padding-left: var(--space-lg);
  }
  
  .case-phase h3 {
    font-size: 1.1rem;
  }
  
  .case-phase ul li {
    font-size: 0.95rem;
  }
}

/* Page hero mobile */
@media (max-width: 600px) {
  .hero--page {
    padding: var(--space-xl) 0;
  }
  
  .hero--page .hero__title {
    font-size: 1.5rem;
  }
  
  .hero--page .hero__subtitle {
    font-size: 0.95rem;
  }
}

/* Section headers mobile */
@media (max-width: 600px) {
  .section__header h2,
  .section h2 {
    font-size: 1.35rem;
  }
  
  .section-label {
    font-size: 0.65rem;
  }
}

/* Footer mobile improvements */
@media (max-width: 600px) {
  .footer {
    padding: var(--space-xl) 0 var(--space-md);
  }
  
  .footer__brand {
    justify-content: center;
  }
  
  .footer__wordmark {
    font-size: 1rem;
  }
  
  .footer__tagline {
    text-align: center;
  }
  
  .footer h4 {
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
  }
  
  .footer__links a,
  .footer__contact p {
    font-size: 0.85rem;
  }
  
  .footer__contact p {
    flex-wrap: wrap;
  }
}

/* ============================================
   ACCESSIBILITY STYLES
   ============================================ */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* Screen Reader Only */
.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 Indicators */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

.btn:focus {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* Dark section focus */
.section--dark a:focus,
.section--dark button:focus {
  outline-color: var(--color-gold);
}

/* Process Result Text */
.process-result {
  text-align: center;
  margin-top: var(--space-xl);
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

/* Section Subtext */
.section__subtext {
  color: rgba(255,255,255,0.7);
}

/* Hero Center Alignment */
.hero__inner--center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__inner--center .hero__title,
.hero__inner--center .hero__subtitle {
  text-align: center;
}

/* Case Study Hero Metrics */
.case-hero-metrics {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.case-hero-metric {
  text-align: center;
}

.case-hero-metric__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-olive);
  display: block;
  line-height: 1;
}

.case-hero-metric__label {
  font-size: 0.9rem;
  color: var(--color-dark-soft);
  margin-top: var(--space-xs);
  display: block;
}

/* Case Content */
.case-content {
  max-width: 700px;
  margin: 0 auto;
}

.case-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.case-content p {
  color: var(--color-dark-soft);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* Case Phases */
.case-phases {
  margin-top: var(--space-xl);
}

.case-phase {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.case-phase::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--color-olive);
  border-radius: 50%;
}

.case-phase::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 20px;
  width: 2px;
  height: calc(100% + var(--space-md));
  background: var(--color-cream);
}

.case-phase:last-child::after {
  display: none;
}

.case-phase h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-olive);
  margin-bottom: var(--space-sm);
}

.case-phase ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-phase ul li {
  color: var(--color-dark-soft);
  padding-left: var(--space-md);
  position: relative;
  margin-bottom: var(--space-xs);
}

.case-phase ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-olive);
}

/* Coming Soon */
.coming-soon {
  text-align: center;
  padding: var(--space-2xl) 0;
  max-width: 500px;
  margin: 0 auto;
}

.coming-soon__icon {
  width: 80px;
  height: 80px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--color-olive);
}

.coming-soon h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.coming-soon p {
  color: var(--color-dark-soft);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

/* CTA Section Actions */
.cta-section__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Label Light */
.section-label--light {
  color: rgba(255,255,255,0.7);
}

/* Footer Address */
.footer__contact address {
  font-style: normal;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.footer__contact address svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mobile Accessibility */
@media (max-width: 600px) {
  .case-hero-metrics {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .case-hero-metric__number {
    font-size: 2rem;
  }
}
/* MOBILE MENU FIX - Add this to the end of styles.css */

@media (max-width: 768px) {
  /* Force hamburger to show */
  .nav__toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    background: #f5f4ef;
    border: 2px solid #878c58;
    border-radius: 4px;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
  }
  
  .nav__toggle span {
    display: block !important;
    width: 24px;
    height: 3px;
    background: #2c2e24;
    margin: 3px 0;
    border-radius: 2px;
  }
  
  /* Hide nav by default on mobile */
  .nav {
    display: none !important;
    order: 3;
    width: 100%;
    flex-direction: column;
    background: #ffffff;
    padding: 20px;
    border-top: 1px solid #d4d3c8;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9998;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  /* Show nav when active */
  .nav.active {
    display: flex !important;
  }
  
  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .nav__list li {
    width: 100%;
  }
  
  .nav__link {
    display: block !important;
    padding: 12px 0;
    border-bottom: 1px solid #d4d3c8;
    color: #2c2e24;
    text-decoration: none;
    font-size: 16px;
  }
  
  .nav__dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    background: #f5f4ef;
    padding: 0 0 0 20px;
  }
  
  .nav__dropdown a {
    display: block;
    padding: 10px 0;
    color: #2c2e24;
    text-decoration: none;
  }
  
  .nav .btn {
    margin-top: 15px;
    text-align: center;
    display: block;
  }
  
  /* Make header relative for absolute nav positioning */
  .header {
    position: relative;
  }
  
  .header__inner {
    position: relative;
  }
}

/* ============================================
   MOBILE TYPOGRAPHY IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
  /* Base text - BOLD with Inter font */
  body {
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    color: #2c2e24 !important;
    -webkit-font-smoothing: antialiased !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  }
  
  /* All paragraphs - BOLD with Inter font */
  p {
    font-weight: 600 !important;
    line-height: 1.75 !important;
    color: #2c2e24 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  }
  
  /* ALL Headings - EXTRA BOLD */
  h1 {
    font-weight: 800 !important;
    font-size: 2rem !important;
    color: #2c2e24 !important;
  }
  
  h2 {
    font-weight: 800 !important;
    font-size: 1.65rem !important;
    color: #2c2e24 !important;
  }
  
  h3 {
    font-weight: 800 !important;
    font-size: 1.35rem !important;
    color: #2c2e24 !important;
  }
  
  h4 {
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    color: #2c2e24 !important;
  }
  
  h5, h6 {
    font-weight: 800 !important;
    color: #2c2e24 !important;
  }
  
  /* ALL links - BOLD with Inter font */
  a {
    font-weight: 600 !important;
    color: #2c2e24 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  }
  
  a:hover {
    color: #878c58 !important;
  }
  
  /* Navigation links - BOLD with Inter font */
  .nav__link {
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    color: #2c2e24 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  }
  
  /* Nav dropdown links */
  .nav__dropdown a {
    font-weight: 700 !important;
    color: #2c2e24 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  }
  
  /* Top bar - keep white but bold */
  .top-bar {
    font-weight: 600 !important;
    color: #ffffff !important;
  }
  
  .top-bar a {
    font-weight: 600 !important;
    color: #ffffff !important;
  }
  
  /* Hero section */
  .hero__title {
    font-weight: 800 !important;
    font-size: 2rem !important;
    color: #2c2e24 !important;
  }
  
  .hero__subtitle {
    font-weight: 600 !important;
    font-size: 1.15rem !important;
    color: #2c2e24 !important;
  }
  
  /* Section labels */
  .section-label {
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    color: #878c58 !important;
  }
  
  /* Service cards */
  .service-card__title {
    font-weight: 800 !important;
    font-size: 1.3rem !important;
    color: #2c2e24 !important;
  }
  
  .service-card__description {
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    color: #2c2e24 !important;
  }
  
  /* About section */
  .about-preview__text p {
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    color: #2c2e24 !important;
  }
  
  .about-stat__number {
    font-weight: 800 !important;
    color: #878c58 !important;
  }
  
  .about-stat__label {
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: #2c2e24 !important;
  }
  
  /* Process steps */
  .process-step__number {
    font-weight: 800 !important;
  }
  
  .process-step__title {
    font-weight: 800 !important;
    font-size: 1.2rem !important;
    color: #2c2e24 !important;
  }
  
  .process-step__description {
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: #2c2e24 !important;
  }
  
  /* Case study */
  .case-preview__content p {
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    color: #2c2e24 !important;
  }
  
  .case-metric__number {
    font-weight: 800 !important;
  }
  
  .case-metric__label {
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    color: #2c2e24 !important;
  }
  
  /* Results list */
  .results-list li {
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    color: #2c2e24 !important;
  }
  
  /* CTA section - white text stays white but bold */
  .cta-section h2 {
    font-weight: 800 !important;
    font-size: 1.6rem !important;
  }
  
  .cta-section p {
    font-weight: 600 !important;
    font-size: 1.1rem !important;
  }
  
  /* Expertise cards */
  .expertise-card__header h3 {
    font-weight: 800 !important;
    font-size: 1.35rem !important;
    color: #2c2e24 !important;
  }
  
  .expertise-card__short {
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    color: #2c2e24 !important;
  }
  
  .expertise-card__expanded {
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    color: #2c2e24 !important;
  }
  
  .expertise-card__column h4 {
    font-weight: 800 !important;
    color: #2c2e24 !important;
  }
  
  .expertise-card__column ul li {
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: #2c2e24 !important;
  }
  
  /* Story sections (About page) */
  .story-section h3 {
    font-weight: 800 !important;
    font-size: 1.3rem !important;
    color: #2c2e24 !important;
  }
  
  .story-section p {
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    color: #2c2e24 !important;
  }
  
  /* Philosophy cards */
  .philosophy-card h4 {
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    color: #2c2e24 !important;
  }
  
  .philosophy-card p {
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: #2c2e24 !important;
  }
  
  /* Case phases */
  .case-phase h3 {
    font-weight: 800 !important;
    font-size: 1.2rem !important;
    color: #2c2e24 !important;
  }
  
  .case-phase ul li {
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: #2c2e24 !important;
  }
  
  /* Footer - BOLD but keep light colors on dark background */
  .footer {
    font-weight: 600 !important;
  }
  
  .footer p {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }
  
  .footer a {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }
  
  .footer a:hover {
    color: #c9a227 !important;
  }
  
  .footer__column h4,
  .footer h4 {
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    color: #ffffff !important;
  }
  
  .footer__brand span,
  .footer__wordmark {
    font-weight: 700 !important;
    color: #ffffff !important;
  }
  
  .footer__tagline {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }
  
  .footer__links li a {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }
  
  .footer__contact p,
  .footer__contact a,
  .footer__contact address {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }
  
  .footer__bottom {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  .footer__bottom a {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  .footer__legal a {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  /* Buttons - EXTRA BOLD */
  .btn {
    font-weight: 800 !important;
    font-size: 1rem !important;
  }
  
  /* Lead text */
  .lead {
    font-weight: 600 !important;
    font-size: 1.15rem !important;
    color: #2c2e24 !important;
  }
  
  /* Header wordmark */
  .header__wordmark {
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    color: #2c2e24 !important;
  }
  
  .header__wordmark span {
    font-weight: 600 !important;
    color: #2c2e24 !important;
  }
  
  /* Stat cards */
  .stat-card__number {
    font-weight: 800 !important;
    color: #878c58 !important;
  }
  
  .stat-card__label {
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: #2c2e24 !important;
  }
  
  /* Case hero metrics */
  .case-hero-metrics .case-metric__number {
    font-weight: 800 !important;
  }
  
  /* Page hero */
  .hero--page .hero__title {
    font-weight: 800 !important;
    font-size: 1.85rem !important;
    color: #2c2e24 !important;
  }
  
  .hero--page .hero__subtitle {
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    color: #2c2e24 !important;
  }
  
  /* List items everywhere */
  li {
    font-weight: 600 !important;
  }
  
  /* Spans */
  span {
    font-weight: inherit !important;
  }
  
  /* HAMBURGER MENU - visible lines */
  #navToggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #f5f4ef !important;
    border: 2px solid #878c58 !important;
    border-radius: 6px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    gap: 5px;
    padding: 10px;
  }
  
  #navToggle span {
    display: block !important;
    width: 26px !important;
    height: 4px !important;
    background: #2c2e24 !important;
    border-radius: 2px !important;
    margin: 0 !important;
    font-weight: normal !important;
  }
  
  /* White text sections - keep white but bold */
  .section--dark h2,
  .section--dark p,
  .section--dark .section-label,
  .section--dark .section-label--light {
    color: #ffffff !important;
    font-weight: 700 !important;
  }
  
  .section--dark a {
    color: #ffffff !important;
    font-weight: 600 !important;
  }
  
  .cta-content h2 {
    color: #ffffff !important;
    font-weight: 800 !important;
  }
  
  .cta-content > p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
  }
  
  .cta-note {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
  }
  
  .section--cta h2,
  .section--cta p {
    font-weight: 700 !important;
  }
  
  /* GrowAI page elements */
  .content-block p {
    font-weight: 600 !important;
    color: #2c2e24 !important;
  }
  
  .content-block .lead {
    font-weight: 600 !important;
  }
  
  .framework-item h3 {
    font-weight: 800 !important;
    color: #2c2e24 !important;
  }
  
  .framework-item p {
    font-weight: 600 !important;
    color: #2c2e24 !important;
  }
  
  .feature-card h3 {
    font-weight: 800 !important;
    color: #2c2e24 !important;
  }
  
  .feature-card p {
    font-weight: 600 !important;
    color: #2c2e24 !important;
  }
  
  .audience-card h3 {
    font-weight: 800 !important;
    color: #2c2e24 !important;
  }
  
  .audience-card p {
    font-weight: 600 !important;
    color: #2c2e24 !important;
  }
  
  .audience-note p {
    font-weight: 600 !important;
    color: #2c2e24 !important;
  }
  
  .comparison-label,
  .comparison-score {
    font-weight: 700 !important;
  }
  
  .comparison-prompt {
    font-weight: 600 !important;
  }
  
  .comparison-result {
    font-weight: 600 !important;
  }
}

/* ============================================
   GROWAI ACADEMY PAGE STYLES
   ============================================ */

/* Content Block */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.content-block p {
  margin-bottom: 1rem;
  color: var(--dark);
  line-height: 1.8;
}

.content-block .lead {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

/* Framework Section */
.growai-framework {
  margin-top: 2rem;
}

.framework-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.framework-intro .lead {
  max-width: 700px;
  margin: 0 auto;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.framework-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.framework-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--olive);
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.framework-item h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.framework-item p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
}

/* Comparison Section */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.comparison-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #f5f5f5;
}

.comparison-card--bad .comparison-header {
  background: #fef2f2;
}

.comparison-card--good .comparison-header {
  background: #f0fdf4;
}

.comparison-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.comparison-score {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
}

.comparison-prompt {
  padding: 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--dark);
  background: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.comparison-card--good .comparison-prompt {
  font-size: 0.85rem;
}

.comparison-result {
  padding: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark);
}

.comparison-result strong {
  color: var(--dark);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
}

/* Audience Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.audience-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.audience-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.audience-card p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
}

.audience-note {
  max-width: 700px;
  margin: 2.5rem auto 0;
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--olive);
}

.audience-note p {
  margin: 0;
  color: var(--dark);
  line-height: 1.7;
}

/* GrowAI CTA Section */
.section--cta {
  background: var(--olive);
  padding: 5rem 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-content > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  margin-bottom: 1.5rem;
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* GrowAI Mobile Responsive */
@media (max-width: 1024px) {
  .framework-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .framework-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .framework-item {
    padding: 1.5rem 1rem;
  }
  
  .framework-item h3 {
    font-size: 1.05rem;
  }
  
  .framework-item p {
    font-size: 0.9rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comparison-prompt {
    font-size: 0.85rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content > p {
    font-size: 1.05rem;
  }
  
  .btn--large {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .framework-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .content-block .lead {
    font-size: 1.1rem;
  }
}

/* ============================================
   LEGAL PAGES (Terms, Privacy)
   ============================================ */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-content h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--dark);
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--dark);
}

.legal-content strong {
  font-weight: 600;
  color: var(--dark);
}

.legal-content a {
  color: var(--olive);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--olive-dark);
}

/* Legal page mobile */
@media (max-width: 768px) {
  .legal-content {
    padding: 0 1rem;
  }
  
  .legal-content h3 {
    font-size: 1.3rem;
  }
  
  .legal-content h4 {
    font-size: 1.05rem;
  }
  
  .legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
}

/* ============================================
   DISCLAIMERS
   ============================================ */

.disclaimer {
  font-size: 0.85rem;
  color: rgba(44, 46, 36, 0.7);
  margin-top: 1.5rem;
  line-height: 1.5;
}

.disclaimer--centered {
  text-align: center;
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.disclaimer a {
  color: var(--olive);
  text-decoration: underline;
}

.disclaimer a:hover {
  color: var(--olive-dark);
}

/* Disclaimer in hero (light text context) */
.hero .disclaimer {
  color: rgba(255, 255, 255, 0.7);
}

.hero .disclaimer a {
  color: rgba(255, 255, 255, 0.85);
}

.hero .disclaimer a:hover {
  color: #ffffff;
}
