/* ============================================
   VARIABLES & RESETS
   ============================================ */
:root {
  /* Base Typography */
  --font-size-base: 16pt;
  
  /* Brand Colors */
  --jade: #0c9a7b;
  --gold: #c7a159;
  
  /* Backgrounds */
  --bg-black: #000000;
  --bg-dark: #0a0a0a;
  --bg-granite: #1b1b1b;
  
  /* Borders */
  --border-light: #2a2a2a;
  
  /* Text Colors */
  --text-white: #ffffff;
  --text-gray-light: #b8b8b8;
  --text-gray-medium: #d0d0d0;
  --text-brown: #8b7355;
  
  /* Logo Filters */
  --logo-filter-gold: brightness(0) saturate(100%) invert(78%) sepia(14%) saturate(870%) hue-rotate(5deg) brightness(92%) contrast(86%);
  --logo-filter-light: brightness(0) saturate(100%) invert(88%) sepia(24%) saturate(1070%) hue-rotate(5deg) brightness(102%) contrast(96%);
  
  /* Spacing */
  --section-padding: 120px 40px;
  --section-padding-mobile: 80px 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Baskerville', 'Georgia', serif;
  background: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  font-size: var(--font-size-base);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-title {
  font-size: 2.5em;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 80px;
  text-align: center;
  letter-spacing: -0.5px;
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */
.cta-primary,
.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 20px 50px;
  font-size: 0.85em;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: all 0.4s ease;
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cta-secondary {
  padding: 18px 45px;
  font-size: 0.8em;
}

.cta-primary:hover,
.cta-secondary:hover {
  background: var(--gold);
  color: var(--bg-black);
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 16px;
  font-size: 0.8em;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--gold);
  color: var(--bg-black);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-header {
  flex-shrink: 0;
}

.logo-img {
  height: 3em;
  border: 0;
  filter: var(--logo-filter-gold);
  transition: filter 0.3s ease;
}

.logo-img:hover {
  filter: var(--logo-filter-light);
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: var(--text-gray-light);
  text-decoration: none;
  font-size: 0.9em;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--gold);
}

.language-toggle-header {
  display: flex;
  gap: 10px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-main {
  padding: 180px 40px 120px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.logo-container-main {
  margin-bottom: 50px;
}

.logo-main {
  height: 8em;
  border: 0;
  filter: var(--logo-filter-gold);
}

.hero-headline {
  font-size: 3em;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 35px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-subheadline {
  font-size: 1.3em;
  font-weight: 300;
  color: var(--text-gray-light);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 1.5em;
}

/* ============================================
   DELIVERABLES SECTION
   ============================================ */
.deliverables-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.deliverable-card {
  text-align: center;
}

.deliverable-icon {
  margin-bottom: 30px;
}

.icon-placeholder {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  color: var(--text-brown);
  font-weight: 300;
}

.deliverable-card h3 {
  font-size: 1.5em;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.deliverable-card p {
  font-size: 1em;
  color: var(--text-gray-light);
  line-height: 1.8;
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach-section {
  background: var(--bg-granite);
  color: var(--text-white);
  padding: 6rem 0;
}

.outcome-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.outcome-block .section-title {
  font-size: 2.2em;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: .25rem;
}

.section-subtitle { 
  opacity: .9; 
  margin-top: .5rem;
  font-size: 1.125em;
  line-height: 1.6;
}

.intro-text { 
  opacity: .85; 
  margin-top: 1rem; 
  max-width: 820px;
  font-size: 1.125em;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 100px;
}

.proof-card { 
  background: rgba(255,255,255,.05); 
  padding: 2.5rem 2rem; 
  border-radius: .75rem;
  border: 1px solid rgba(199,161,89,.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(199,161,89,.15);
}

/* Luxury Geometric Icons */
.proof-icon { 
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Diamond Icon */
.icon-diamond {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, #d4a574 100%);
  transform: rotate(45deg);
  position: relative;
}

.icon-diamond::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: var(--bg-granite);
  border: 1px solid var(--gold);
}

/* Overlapping Circles Icon */
.icon-circles {
  width: 48px;
  height: 48px;
  position: relative;
}

.icon-circles::before,
.icon-circles::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--bg-granite);
}

.icon-circles::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.icon-circles::after {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%);
  opacity: 0.3;
}

/* Document Icon */
.icon-document {
  width: 36px;
  height: 48px;
  border: 3px solid var(--gold);
  position: relative;
  background: var(--bg-granite);
}

.icon-document::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--gold);
  box-shadow: 
    0 6px 0 var(--gold),
    0 12px 0 var(--gold);
}

.icon-document::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.proof-card-title {
  font-size: 1.5em;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: var(--text-white);
  margin-bottom: 16px;
}

.proof-card-description {
  font-size: 0.9375em;
  line-height: 1.6;
  opacity: 0.85;
}

/* Speed Strip */
.speed-strip {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin: 60px auto;
  max-width: 1200px;
  width: 100%;
}

.speed-step { 
  flex: 1;
  text-align: center;
  max-width: 240px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.speed-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  font-size: 2em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.3;
}

.speed-step[data-step="1"] .step-number {
  opacity: 1;
}

.step-title {
  font-size: 1.125em;
  font-weight: 200;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.step-description {
  font-size: 0.875em;
  line-height: 1.6;
  opacity: 0.85;
}

/* Speed Connector */
.speed-connector {
  position: relative;
  height: 2px;
  flex: 0 0 80px;
  margin: 0 -20px;
  margin-bottom: 120px;
  align-self: flex-start;
  margin-top: 20px;
  opacity: 0;
  --progress: 0%;
  transition: opacity 0.4s ease-out;
}

.speed-connector.visible {
  opacity: 1;
}

.connector-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.15);
}

.connector-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  height: 2px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.exclusivity-panel { 
  text-align: center; 
  margin-top: 2rem; 
  background: rgba(255,255,255,.06); 
  padding: 2.5rem 1.5rem; 
  border-radius: 1rem; 
  box-shadow: 0 0 18px rgba(199,161,89,.18);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.exclusivity-text {
  font-size: 1em;
  opacity: 0.85;
  margin-bottom: 16px;
}

.exclusivity-emphasis {
  font-size: 1.8em;
  font-weight: 100;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Micro-ribbon inside proof section */
.proof-ribbon { 
  background: rgba(12,154,123,.08); 
  border-left: 3px solid var(--jade); 
  padding: .75rem 1rem; 
  border-radius: .5rem; 
  margin-bottom: 1rem;
}

.ribbon-text { 
  font-size: 0.95em; 
  opacity: .95;
}

/* Tier How-We-Work block */
.tier-how { 
  margin-top: 1rem; 
  border-top: 1px dashed rgba(255,255,255,.15); 
  padding-top: .75rem;
}

.tier-how-label { 
  font-weight: 600; 
  margin-bottom: .5rem; 
  color: var(--jade);
}

.tier-how-list { 
  padding-left: 1.1rem;
}

/* ============================================
   PROOF SECTION
   ============================================ */
.proof-section {
  padding: var(--section-padding);
  background: var(--bg-black);
}

.proof-metrics {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  margin-bottom: 80px;
}

.metric-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  margin: 0 auto;
}

.metric-number {
  font-size: 4em;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  text-align: center;
  width: 100%;
  display: block;
}

.metric-number.animating {
  opacity: 1;
}

.metric-label {
  font-size: 0.9em;
  color: var(--text-brown);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  display: block;
}

.alumni-firms {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-light);
}

.alumni-label {
  font-size: 3em;
  font-weight: 100;
  color: var(--text-brown);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 25px;
}

/* ============================================
   FIRM LOGOS SECTION
   ============================================ */
.firm-logos {
  background-color: var(--bg-granite);
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.firm-logos .section-title {
  font-size: 2em;
  margin-bottom: 60px;
  color: var(--text-white);
  font-weight: 300;
  letter-spacing: 1px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.logo-item {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  opacity: 0;
  animation: fadeInLogo 0.8s ease-out forwards;
}

.logo-item:nth-child(1) { animation-delay: 0.1s; }
.logo-item:nth-child(2) { animation-delay: 0.2s; }
.logo-item:nth-child(3) { animation-delay: 0.3s; }
.logo-item:nth-child(4) { animation-delay: 0.4s; }
.logo-item:nth-child(5) { animation-delay: 0.5s; }
.logo-item:nth-child(6) { animation-delay: 0.6s; }
.logo-item:nth-child(7) { animation-delay: 0.7s; }
.logo-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.firm-logo {
  width: 100%;
  max-width: 220px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%) brightness(10) contrast(10);
  transition: all 0.4s ease;
  position: relative;
}

.logo-item:hover .firm-logo {
  filter: grayscale(100%) brightness(8) contrast(8);
  transform: scale(1.05);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.testimonial-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  padding: 40px;
}

.testimonial-text {
  font-size: 1em;
  color: var(--text-gray-medium);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-photo {
  flex-shrink: 0;
}

.photo-placeholder {
  width: 60px;
  height: 60px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  color: var(--text-brown);
  background: var(--bg-black);
}

.author-name {
  font-size: 1.1em;
  color: var(--text-white);
  margin-bottom: 5px;
}

.author-position {
  font-size: 0.85em;
  color: var(--text-brown);
  letter-spacing: 0.5px;
}

/* ============================================
   TIERS SECTION
   ============================================ */
.tiers-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.tier-card {
  background: var(--bg-black);
  border: 1px solid var(--border-light);
  padding: 40px 30px;
  position: relative;
}

.tier-elite {
  border: 1px solid var(--gold);
  background: rgba(201, 169, 97, 0.05);
}

.tier-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-black);
  padding: 5px 20px;
  font-size: 0.7em;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

.tier-name {
  font-size: 2em;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 10px;
  text-align: center;
}

.tier-subtitle {
  font-size: 0.85em;
  color: var(--text-brown);
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.tier-features {
  list-style: none;
  margin-bottom: 30px;
}

.tier-features li {
  font-size: 0.9em;
  color: var(--text-gray-light);
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.tier-features li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-brown);
}

.tier-qualification {
  font-size: 1em;
  color: var(--text-brown);
  text-align: center;
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.tier-cta-container {
  text-align: center;
}

/* ============================================
   EVENT SECTION
   ============================================ */
.event-section {
  padding: var(--section-padding);
  background: var(--bg-black);
}

.event-content {
  max-width: 900px;
  margin: 0 auto;
}

.event-description {
  margin-bottom: 60px;
}

.event-description p {
  font-size: 1.1em;
  color: var(--text-gray-medium);
  line-height: 1.9;
  margin-bottom: 25px;
}

.event-exclusivity {
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  padding: 50px;
}

.exclusivity-box {
  display: grid;
  gap: 30px;
}

.exclusivity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-light);
}

.exclusivity-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.exclusivity-label {
  font-size: 0.9em;
  color: var(--text-brown);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.exclusivity-value {
  font-size: 1em;
  color: var(--text-gray-medium);
  text-align: right;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
  text-align: center;
}

.final-cta-text {
  font-size: 1.1em;
  color: var(--text-gray-light);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.trust-signal {
  margin-top: 25px;
  font-size: 0.9em;
  color: var(--text-brown);
  letter-spacing: 0.5px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 40px;
  background: var(--bg-black);
  border-top: 1px solid var(--border-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--text-brown);
  text-decoration: none;
  font-size: 0.85em;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

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

.footer-copyright {
  font-size: 0.85em;
  color: var(--text-brown);
  letter-spacing: 0.5px;
}

/* ============================================
   TEXT HANDLING
   ============================================ */
.approach-content p,
.approach-content li,
.deliverable-description,
.testimonial-text,
.tier-feature,
.event-description {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: none;
}

.margin-item {
  margin: 0 auto;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
  .deliverables-grid,
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
  
  .firm-logos {
    padding: 80px 40px;
  }
  
  .proof-metrics {
    flex-wrap: wrap;
    gap: 50px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 20px;
    --font-size-base: 16pt;
  }

  * {
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
  }
  
  body * {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .container {
    padding: 0 20px;
  }

  .header-container {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
  }

  .hero-main {
    padding: 140px 20px 80px;
  }

  .hero-headline {
    font-size: 2.2em;
  }

  .hero-subheadline {
    font-size: 1.1em;
  }

  .section-title {
    font-size: 1.8em;
    margin-bottom: 50px;
  }

  .deliverables-section,
  .proof-section,
  .tiers-section,
  .event-section,
  .final-cta-section,
  .approach-section {
    padding: var(--section-padding);
  }

  .proof-metrics {
    flex-direction: column;
    gap: 40px;
  }

  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .firm-logos {
    padding: 60px 30px;
  }
  
  .firm-logos .section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  /* Approach section mobile */
  .outcome-block {
    margin-bottom: 60px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }

  .speed-strip {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 40px auto;
  }
  
  .speed-step {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
  }
  
  .speed-connector {
    width: 2px;
    height: 60px;
    flex: none;
    margin: 30px auto;
    position: relative;
    left: auto;
    right: auto;
    transform: none;
  }
  
  .connector-line {
    width: 2px;
    height: 100%;
    left: 0;
    top: 0;
  }
  
  .connector-progress {
    width: 2px;
    height: var(--progress, 0%);
    left: 0;
    top: 0;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .exclusivity-panel {
    padding: 32px 24px;
  }

  .approach-content h3 {
    font-size: 1.4em;
    line-height: 1.3;
  }
  
  .approach-content p {
    font-size: 0.95em;
    line-height: 1.6;
  }
  
  .deliverable-title {
    font-size: 1.2em;
    line-height: 1.4;
  }
  
  .deliverable-description {
    font-size: 0.9em;
    line-height: 1.6;
  }
  
  .alumni-label {
    font-size: 0.85em;
    letter-spacing: 0.1em;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    overflow: hidden;
  }
  
  h1, h2, h3, h4, h5, h6, p, li, span {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
  .firm-logos {
    padding: 60px 20px;
  }
  
  .logo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .approach-content h3 {
    font-size: 1.2em;
  }
  
  .approach-content p {
    font-size: 0.85em;
  }
  
  .deliverable-title {
    font-size: 1.05em;
  }
  
  .deliverable-description {
    font-size: 0.8em;
  }
  
  .alumni-label {
    font-size: 0.75em;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .speed-step {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .speed-connector {
    opacity: 1;
    transition: none;
  }
  .connector-progress {
    transition: none;
  }
  .proof-card {
    transition: none;
  }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  padding: var(--section-padding);
  background: var(--bg-black);
  border-bottom: 1px solid var(--border-light);
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  margin-bottom: 30px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.video-caption p {
  font-size: 1em;
  color: var(--text-gray-light);
  line-height: 1.7;
  font-style: italic;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .video-wrapper {
    max-width: 100%;
  }
  
  .video-container {
    border-radius: 0;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  
  .video-caption p {
    font-size: 0.9em;
    padding: 0 10px;
  }
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;       /* optional: limit video width */
  margin: 0 auto;         /* center horizontally */
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: #000;
  flex: 0 0 100%;
  align-self: center;  
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
