/* PREMIUM DESIGN SYSTEM */
:root {
  /* Default: Dark Theme variables */
  --bg-primary: #050505;
  --bg-secondary: #0a0a0c;
  --bg-card: rgba(255, 255, 255, 0.015);
  --bg-modal: #0a0a0d;
  
  --border-color: rgba(255, 255, 255, 0.04);
  --border-color-hover: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(197, 168, 128, 0.15);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  
  --accent: #C5A880;
  --accent-rgb: 197, 168, 128;
  --accent-hover: #d3be9f;
  
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  
  --max-width: 1200px;
  
  --backdrop-blur-bg: rgba(5, 5, 5, 0.8);
  --bg-input: rgba(255, 255, 255, 0.02);
  --bg-input-focus: rgba(255, 255, 255, 0.04);
  --border-input: rgba(255, 255, 255, 0.06);
  --text-placeholder: rgba(255, 255, 255, 0.2);
  --shadow-modal: 0 20px 80px rgba(0, 0, 0, 0.8);
  --overlay-bg: rgba(3, 3, 4, 0.85);
}

[data-theme="light"] {
  /* Light Theme overrides - maintaining premium McKinsey + Linear aesthetics */
  --bg-primary: #fbfbfa; /* Warm paper ivory */
  --bg-secondary: #f4f4f2; /* Soft sand gray */
  --bg-card: rgba(0, 0, 0, 0.015);
  --bg-modal: #fbfbfa;
  
  --border-color: rgba(0, 0, 0, 0.06);
  --border-color-hover: rgba(0, 0, 0, 0.15);
  --border-glow: rgba(170, 138, 89, 0.15);
  
  --text-primary: #1c1c1e; /* Rich charcoal */
  --text-secondary: #515154; /* Deep gray */
  --text-muted: #86868b; /* Medium gray */
  
  --accent: #aa8a59; /* Deeper gold for solid contrast on light backgrounds */
  --accent-rgb: 170, 138, 89;
  --accent-hover: #917245;
  
  --backdrop-blur-bg: rgba(251, 251, 250, 0.8);
  --bg-input: rgba(0, 0, 0, 0.015);
  --bg-input-focus: rgba(0, 0, 0, 0.03);
  --border-input: rgba(0, 0, 0, 0.08);
  --text-placeholder: rgba(0, 0, 0, 0.35);
  --shadow-modal: 0 20px 80px rgba(0, 0, 0, 0.12);
  --overlay-bg: rgba(28, 28, 30, 0.4);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

body {
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-primary);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* UTILITY CLASSES */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.font-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.italic {
  font-family: var(--font-serif);
  font-style: italic;
}

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

.hidden {
  display: none !important;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent);
  color: #050505;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.25);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--backdrop-blur-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition-fast), border-bottom-color var(--transition-fast);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.brand-tagline {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-top: 0.1rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* LANGUAGE SELECTOR */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0.2rem 0.4rem;
}

.lang-btn:hover, .lang-btn.active {
  color: var(--accent);
}

.lang-separator {
  color: var(--border-color);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  user-select: none;
}

/* THEME SWITCHER BUTTON */
.theme-toggle-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border-radius: 4px;
  margin: 0 0.5rem;
}

.theme-toggle-btn:hover {
  color: var(--accent);
  background-color: var(--bg-secondary);
}

/* Default (Dark Mode): Show sun icon to toggle light */
.theme-toggle-btn .sun-icon {
  display: block;
}

.theme-toggle-btn .moon-icon {
  display: none;
}

/* Light Mode: Show moon icon to toggle dark */
[data-theme="light"] .theme-toggle-btn .sun-icon {
  display: none;
}

[data-theme="light"] .theme-toggle-btn .moon-icon {
  display: block;
}

/* SECTIONS COMMON */
section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-meta {
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

/* HERO */
.hero-section {
  padding-top: 180px;
  padding-bottom: 140px;
  background: radial-gradient(circle at 70% 30%, rgba(var(--accent-rgb), 0.03) 0%, transparent 60%);
}

.hero-container {
  max-width: 900px;
  margin: 0;
  text-align: left;
}

.hero-label {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.hero-motto {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 750px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* CORE PHILOSOPHY */
.philosophy-section {
  background-color: var(--bg-secondary);
}

.philosophy-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.philosophy-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 800px;
}

.philosophy-content {
  max-width: 750px;
}

.philosophy-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.philosophy-content .phil-highlight {
  font-size: 1.35rem;
  color: var(--accent);
  font-family: var(--font-serif);
  margin-top: 2rem;
  font-weight: 500;
}

/* TYPICAL SITUATIONS */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.situation-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.situation-card:hover {
  border-color: var(--border-color-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 0 10px var(--border-glow);
  transform: translateY(-2px);
}

.card-icon-wrapper {
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.situation-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.situation-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* TURNAROUND SPRINT */
.sprint-section {
  background-color: var(--bg-secondary);
}

.sprint-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 750px;
}

.sprint-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.sprint-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

.sprint-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
  bottom: 15px;
  width: 1px;
  background-color: var(--border-color);
}

.timeline-step {
  display: flex;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 42px;
  height: 42px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.step-details h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-details p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.sprint-deliverables {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 2px solid var(--accent);
  padding: 3rem;
  border-radius: 4px;
}

.sprint-deliverables h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.sprint-deliverables > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.deliverables-list li {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.bullet-marker {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.deliverables-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.deliverables-list span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* WHO I WORK WITH */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.audience-card {
  padding: 2rem;
  border-left: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.audience-card:hover {
  border-left-color: var(--accent);
  padding-left: 2.25rem;
}

.audience-card h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* PROFILE SECTION (WHY CEOS CALL ME) */
.about-section {
  background-color: var(--bg-secondary);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.profile-left-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-image-container {
  width: 320px;
  height: 320px;
  max-width: 100%;
  margin-bottom: 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 80%);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(10%) contrast(105%);
}

.profile-signature {
  margin-bottom: 2rem;
}

.profile-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.profile-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.profile-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.profile-badges span {
  display: inline-block;
  letter-spacing: 0.05em;
}

.profile-conviction {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  max-width: 300px;
  margin: 0 auto;
}

/* Right Column styling */
.profile-right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-section-title {
  margin-bottom: 2rem;
}

.profile-motto {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.profile-subheading {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.profile-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.profile-text p {
  margin-bottom: 1rem;
}

.profile-text p:last-child {
  margin-bottom: 0;
}

.profile-action {
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .profile-image-container {
    width: 280px;
    height: 280px;
  }
}

/* FINAL CTA */
.final-cta-section {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.04) 0%, transparent 60%);
}

.final-cta-section h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.final-cta-section p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* FOOTER */
.footer {
  padding: 4rem 0;
  background-color: #030304;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

/* MODALS SYSTEM */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color var(--transition-fast);
  padding: 2rem;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-modal);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  width: 100%;
  max-width: 580px;
  padding: 3.5rem;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color var(--transition-fast);
  box-shadow: var(--shadow-modal);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--accent);
}

.modal-header {
  margin-bottom: 2.5rem;
}

.modal-tag {
  margin-bottom: 0.75rem;
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* FORMS */
.assessment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' width='16' height='16' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background-color: var(--bg-modal);
  color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-placeholder);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--bg-input-focus);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.12);
}

.form-group textarea {
  resize: vertical;
}

/* SUCCESS STYLES */
.form-success {
  text-align: center;
  padding: 2.5rem 0;
  animation: fadeIn 0.4s ease forwards;
}

.success-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ANIMATIONS & STATES */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: #050505;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
  .sprint-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-quote {
    font-size: 1.45rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  
  .navbar {
    height: 70px;
  }
  
  .nav-container {
    height: 70px;
  }
  
  .nav-right .btn-primary {
    display: none; /* Hide primary call to action in nav on small mobile */
  }
  
  .hero-section {
    padding-top: 130px;
    padding-bottom: 90px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .modal-content {
    padding: 2rem;
  }
  
  .highlight-num {
    width: 100px;
    font-size: 2rem;
  }
}

/* CLARITY CALLOUT SECTION */
.clarity-section {
  padding: 140px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.clarity-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.clarity-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--accent);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
}

/* OUTCOMES SECTION */
.outcomes-section {
  background-color: var(--bg-secondary);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.outcome-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.outcome-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .outcome-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.outcome-num {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.outcome-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--text-primary);
  font-weight: 400;
}
