/* ===================================
   PODIUM SALES — Design System
   =================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --bg-input: #1a1a1a;
  --gold: #f5a623;
  --gold-light: #ffc857;
  --gold-dark: #d4900e;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(245, 166, 35, 0.3);
  --glow-gold: rgba(245, 166, 35, 0.15);
  --success: #34d399;
  --error: #ef4444;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 140px);
  --container-width: 1100px;
  --container-padding: clamp(24px, 6vw, 40px);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

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

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: #ffffff !important;
}

.hero-counter-wrap {
  display: inline-block;
  width: 14ch; /* Fixed width to prevent any movement */
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

#hero-counter {
  color: #ffffff;
  font-weight: 600;
}

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

/* --- Section --- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 0 30px var(--glow-gold);
  transform: translateY(-4px);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 48px;
}

.hero-logo img,
.hero-logo svg {
  height: clamp(24px, 6vw, 32px);
  width: auto;
}

.hero h1 {
  max-width: 1400px;
  width: 100%;
  margin-bottom: 24px;
}

.hero-subtitle {
  max-width: 600px;
  margin-bottom: 48px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero .btn {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(245, 166, 35, 0.2); }
  50% { box-shadow: 0 0 40px rgba(245, 166, 35, 0.4); }
}

/* ===================================
   VSL SECTION
   =================================== */
.vsl-section {
  text-align: center;
  background: var(--bg-secondary);
}

.vsl-section h2 {
  margin-bottom: 16px;
}

.vsl-section p {
  max-width: 600px;
  margin: 0 auto 48px;
}

.vsl-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 60px rgba(245, 166, 35, 0.1);
  aspect-ratio: 16 / 9;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.8s ease;
}

.vsl-wrapper.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 0 80px rgba(245, 166, 35, 0.2);
}

.vsl-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.problem-section .section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 16px;
}

.problem-section .section-emphasis {
  text-align: center;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 48px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.pain-card {
  text-align: center;
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2vw, 28px);
}

.pain-card .icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(245, 166, 35, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.icon-svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  filter: drop-shadow(0 0 5px rgba(245, 166, 35, 0.3));
  transition: all 0.3s ease;
}

.card:hover .icon-svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.5));
}

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

/* ===================================
   SOCIAL PROOF SECTION
   =================================== */
.social-proof {
  text-align: center;
  padding: 100px 0;
  background: #050505; /* Slightly darker to help with blending */
}

.social-proof h2 {
  font-family: 'Outfit', sans-serif;
  margin-bottom: 60px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 10vw, 100px);
  flex-wrap: wrap;
}

.logo-item {
  height: 145px; /* Upscaled 30% from 110px */
  width: auto;
  filter: contrast(115%) brightness(1.05); /* Refined for larger scale */
  mix-blend-mode: screen;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 20px;
  opacity: 1;
}

.logo-item:hover {
  transform: scale(1.08); /* Just a subtle scale, no color shift */
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */
/* ===================================
   PHILOSOPHY SECTION
   =================================== */
.philosophy-section {
  text-align: center;
}

.philosophy-section h2 {
  max-width: 700px;
  margin: 0 auto 20px;
}

.philosophy-section p {
  max-width: 620px;
  margin: 0 auto 12px;
}

/* ===================================
   IMPACT BOX
   =================================== */
.impact-section {
  padding: 40px 0;
}

.impact-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 80px;
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(245, 166, 35, 0.08) 0%, rgba(10, 10, 10, 1) 100%);
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.impact-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  line-height: 1.35;
  margin: 0;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .impact-box {
    padding: 40px 24px;
    margin: 0;
    width: 100%;
  }
}

/* ===================================
   SYSTEM SECTION (4 PILLARS)
   =================================== */
.system-section {
  text-align: center;
}

.system-section h2 {
  margin-bottom: 48px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pillar-card {
  text-align: left;
  position: relative;
  padding-top: 44px;
}

.pillar-number {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-card .icon-box {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.02);
}

/* Adjusting SVG size for smaller boxes if needed */
.icon-box .icon-svg {
  width: 28px;
  height: 28px;
}
.pillar-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================================
   QUALIFICATION SECTION
   =================================== */
.qualification-section {
  text-align: center;
}

.qual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.qual-card {
  text-align: left;
  padding: clamp(28px, 3vw, 40px);
}

.qual-card h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.qual-card.no-card {
  border-color: rgba(239, 68, 68, 0.15);
}

.qual-card.no-card h3 .qual-icon {
  color: var(--error);
}

.qual-card.yes-card {
  border-color: rgba(52, 211, 153, 0.15);
}

.qual-card.yes-card h3 .qual-icon {
  color: var(--success);
}

.qual-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.qual-list li .list-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.qual-card.no-card .list-icon {
  color: var(--error);
}

.qual-card.yes-card .list-icon {
  color: var(--success);
}

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

.final-cta h2 {
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .scarcity {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-logo {
  height: 16px;
  width: auto;
  margin: 0 auto;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

/* ===================================
   STICKY CTA
   =================================== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition-base);
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-cta .btn {
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
  font-size: 0.9rem;
  padding: 14px 28px;
}

/* ===================================
   APPLICATION PAGE
   =================================== */
.apply-hero {
  text-align: center;
  padding: clamp(100px, 15vh, 160px) 20px clamp(40px, 5vh, 60px);
}

.apply-hero h1 {
  margin-bottom: 16px;
}

.apply-hero p {
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 0.95rem;
}

.qualifier-box {
  max-width: 600px;
  margin: 0 auto 60px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  text-align: left;
}

.qualifier-box h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.qualifier-box .qual-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.qualifier-box .qual-list li .dash {
  color: var(--gold);
  font-weight: 700;
}

/* --- Form --- */
.form-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--container-padding) 80px;
}

.form-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Radio Group */
.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Submit Button */
.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  margin-top: 12px;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form Error */
.form-error {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--error);
}

.form-group.error .form-error {
  display: block;
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thankyou-section {
  text-align: center;
  padding: clamp(100px, 15vh, 160px) 20px 60px;
}

.thankyou-section .checkmark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.1);
  border: 2px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
  color: var(--success);
}

.thankyou-section h1 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.thankyou-section p {
  max-width: 500px;
  margin: 0 auto 48px;
}

.calendly-embed {
  max-width: 700px;
  margin: 0 auto;
  min-height: 700px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .qual-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero {
    padding: 100px 24px 48px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  /* Hide sticky CTA and yellow bar on phone */
  .sticky-cta {
    display: none !important;
  }

  .logos-row {
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .trust-logo {
    height: 18px;
    filter: brightness(0.8) contrast(1.2) drop-shadow(0 0 10px rgba(255,255,255,0.05));
  }

  .vsl-wrapper {
    margin-top: 32px;
    border-radius: var(--radius-md);
  }

  /* Center buttons on mobile */
  .vsl-section .btn,
  .final-cta .btn,
  .apply-hero .btn {
    display: flex;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Scale logos on mobile */
  .social-proof .logo-item {
    height: 80px;
    padding: 10px;
  }


  /* Ensure footer is black on mobile */
  .footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .hero .counter-value {
    font-size: 2.2rem;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 12px;
  }
}


/* ========================================
   CASO AUTORIDAD SECTION
   ======================================== */

.caso-section {
  background: var(--bg-primary);
}

.caso-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.caso-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.caso-metrics,
.caso-narrative,
.caso-quote {
  width: 100%;
}

.caso-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.caso-headline {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  max-width: 860px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: center;
}

.caso-headline em {
  font-style: italic;
  color: var(--gold);
}

.caso-subhead {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 64px;
  line-height: 1.7;
  text-align: center;
}

.caso-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 64px;
}

.caso-metric {
  background: var(--bg-secondary);
  padding: 40px 36px;
}

.caso-metric-number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.caso-metric-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.caso-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
}

.caso-col {
  background: var(--bg-card);
  padding: 40px 36px;
}

.caso-col-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.caso-col-label.before {
  color: var(--text-muted);
}

.caso-col-label.before::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
}

.caso-col-label.after {
  color: var(--gold);
}

.caso-col-label.after::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.caso-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.caso-col ul li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.caso-col ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.caso-col.after-col ul li::before {
  content: '✓';
  color: var(--gold);
  font-size: 13px;
}

.caso-quote {
  border-left: 2px solid var(--gold);
  padding-left: 32px;
}

.caso-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.caso-quote-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .caso-metrics { grid-template-columns: 1fr; }
  .caso-narrative { grid-template-columns: 1fr; }
  .caso-metric { padding: 28px 24px; }
  .caso-col { padding: 28px 24px; }
}


/* ========================================
   QUIEN ESTA DETRAS SECTION
   ======================================== */

.quien-section {
  background: var(--bg-primary);
}

.quien-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 52px;
}

.quien-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.quien-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.quien-foto {
  position: sticky;
  top: 32px;
}

.quien-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
  margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
}

.quien-foto-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.quien-foto-title {
  font-size: 13px;
  color: var(--text-muted);
}

.quien-headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.quien-headline em {
  font-style: italic;
  color: var(--gold);
}

.quien-p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 560px;
}

.quien-p--highlight {
  color: var(--text-primary);
  font-weight: 500;
}

.quien-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

.quien-stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.quien-stat-num {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.quien-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .quien-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quien-foto {
    position: static;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .quien-img {
    aspect-ratio: 4/5;
    max-width: 320px;
    width: 100%;
  }
  .quien-stats {
    flex-direction: column;
    gap: 24px;
  }
}
