/* ==========================================================================
   ONE AID — ESTRATEGIA COMUNICACIONAL & PUBLICITARIA
   Theme: Clean Medical White & Clinical Navy Trust
   Colors: Blanco Puro / Azul Médico (Navy) / Verde Menta & Cyan
   Typography: Montserrat (Display) + Inter (Body)
   ========================================================================== */

:root {
  /* 1. Fondo & Superficies Limpias (Blanco y Claridad) */
  --bg-clean: #FFFFFF;
  --bg-paper: #F8FAFC;
  --bg-paper-subtle: #F1F5F9;
  --card-white: #FFFFFF;

  /* 2. Azul Médico / Navy (Confianza & Autoridad) */
  --navy-950: #061024;
  --navy-900: #0B1B3D;
  --navy-850: #10244F;
  --navy-800: #163065;
  --navy-700: #1E4185;
  --navy-600: #2554A8;

  /* 3. Verde Menta & Cyan (Tecnología, Salud & Vitalidad) */
  --mint: #00C49A;
  --mint-light: #52FCD7;
  --mint-deep: #008766;
  --mint-dim: rgba(0, 196, 154, 0.12);
  --mint-glow: rgba(0, 196, 154, 0.25);

  --cyan: #0284C7;
  --cyan-deep: #0369A1;
  --cyan-dim: rgba(2, 132, 199, 0.1);
  --cyan-glow: rgba(2, 132, 199, 0.25);

  /* Texto & Neutrales */
  --text-primary: #0B1B3D;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --border-subtle: rgba(11, 27, 61, 0.08);
  --border-card: rgba(11, 27, 61, 0.07);

  /* Typography */
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Shadows */
  --shadow-card: 0 10px 30px -10px rgba(11, 27, 61, 0.08), 0 2px 6px -2px rgba(11, 27, 61, 0.04);
  --shadow-card-hover: 0 20px 40px -12px rgba(11, 27, 61, 0.12), 0 4px 12px -2px rgba(11, 27, 61, 0.06);
  --shadow-nav: 0 10px 25px -5px rgba(11, 27, 61, 0.06);

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-clean);
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-clean);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* STRICT SVG SIZING: Prevents any giant icon blown out of proportion */
svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

.icon-chip svg,
.pilar-icon-clean svg,
.kpi-icon-box svg,
.comp-connector-pill svg,
.brand-badge-pulse svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex-shrink: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-paper);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--mint-deep);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--mint), var(--cyan));
  box-shadow: 0 0 10px var(--mint-glow);
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Interactive Medical Canvas Background */
.medical-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

/* Ambient Vibrant Mint Floating Mesh (Vivid Background) */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  will-change: transform;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 179, 0.26) 0%, rgba(0, 196, 154, 0.12) 50%, transparent 70%);
  top: -120px;
  left: -120px;
  animation: floatMint1 16s ease-in-out infinite alternate;
}

.orb-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.2) 0%, rgba(0, 229, 179, 0.16) 50%, transparent 70%);
  top: 40%;
  right: -150px;
  animation: floatMint2 20s ease-in-out infinite alternate;
}

.orb-3 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 229, 179, 0.24) 0%, transparent 70%);
  bottom: 8%;
  left: 15%;
  animation: floatMint3 18s ease-in-out infinite alternate;
}

@keyframes floatMint1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, 45px) scale(1.12); }
  100% { transform: translate(-35px, 80px) scale(0.95); }
}

@keyframes floatMint2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-90px, -60px) scale(1.15); }
  100% { transform: translate(45px, 65px) scale(0.92); }
}

@keyframes floatMint3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(55px, -65px) scale(1.1); }
  100% { transform: translate(-45px, 35px) scale(0.95); }
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

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

/* Clean Cards (Pure White with Subtle Medical Shadow) */
.clean-card {
  background: var(--card-white);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  z-index: 2;
}

.clean-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 196, 154, 0.35);
}

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: clamp(5rem, 8vw, 7.5rem) 0;
}

.bg-clean { background-color: var(--bg-clean); }
.bg-paper {
  background-color: var(--bg-paper);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Floating Navbar (Clean Glass) */
.navbar-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
}

.glass-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1120px;
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 27, 61, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-nav);
}

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

.tbo-logo-nav {
  height: 24px;
  width: auto;
  border-radius: 4px;
  display: block;
}

.brand-divider {
  width: 1px;
  height: 20px;
  background: rgba(11, 27, 61, 0.15);
  display: block;
}

.tbo-logo-pill {
  height: 16px;
  width: auto;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
}

.tbo-logo-foot {
  height: 22px;
  width: auto;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
}

.inline-nowrap {
  white-space: nowrap;
}

.brand-badge-pulse {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--mint-dim);
  border: 1px solid rgba(0, 196, 154, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--navy-900);
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--mint-deep);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-item:hover, .nav-item.active {
  color: var(--navy-900);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  transition: width var(--transition-fast);
}

.nav-item:hover::after {
  width: 100%;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--navy-900);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(11, 27, 61, 0.2);
}

.btn-primary:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 27, 61, 0.25);
}

.btn-secondary {
  background: var(--bg-paper);
  color: var(--navy-900);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: #E2E8F0;
}

.btn-prototype {
  background: var(--mint-deep);
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--mint-glow);
}

.btn-prototype:hover {
  background: #007054;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--mint-glow);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-large {
  padding: 0.85rem 2rem;
  font-size: 0.98rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--mint);
}

/* HERO SECTION */
.hero-section {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: clamp(7.5rem, 11vw, 9.5rem);
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  border: 1px solid rgba(0, 196, 154, 0.35);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.75rem;
  box-shadow: 0 2px 8px rgba(0, 196, 154, 0.1);
}

.badge-text {
  color: var(--navy-900);
  font-weight: 700;
}

.badge-accent {
  background: var(--mint-dim);
  color: var(--mint-deep);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.85rem);
  font-weight: 900;
  max-width: 960px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--navy-900);
}

.text-gradient-navy {
  background: linear-gradient(135deg, var(--navy-900) 20%, var(--cyan-deep) 70%, var(--mint-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  max-width: 800px;
  color: var(--text-secondary);
  margin-bottom: 2.75rem;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--navy-900);
}

/* Hero Feature Grid */
.hero-feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
  align-items: stretch;
}

.hero-card-left {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-header-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--mint);
}

.status-tags {
  display: flex;
  gap: 0.5rem;
}

.status-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.25rem 0.65rem;
  background: var(--bg-paper);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-secondary);
  font-weight: 600;
}

.svg-route-wrapper {
  width: 100%;
  height: 170px;
  background: #F8FAFC;
  border-radius: 12px;
  padding: 0.5rem;
  border: 1px solid var(--border-subtle);
}

.svg-canvas {
  width: 100%;
  height: 100%;
}

.route-line {
  fill: none;
  stroke: url(#routeGradientLight);
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawRoute 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}

.waypoint-node text {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  fill: var(--text-muted);
  letter-spacing: 0.05em;
}

.waypoint-outer {
  fill: rgba(0, 196, 154, 0.2);
  stroke: var(--mint);
  stroke-width: 1.5;
}

.waypoint-inner {
  fill: var(--mint-deep);
}

.waypoint-ping {
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.5;
  animation: pingRing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingRing {
  0% { r: 6; opacity: 1; }
  100% { r: 20; opacity: 0; }
}

.waypoint-outer-active {
  fill: var(--mint);
  filter: drop-shadow(0 0 4px var(--mint));
}

.waypoint-inner-active {
  fill: #FFFFFF;
}

.waypoint-label-active {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  fill: var(--mint-deep);
  letter-spacing: 0.08em;
}

.card-footer-metrics {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.metric-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  font-weight: 500;
}

.metric-separator {
  width: 1px;
  height: 35px;
  background: var(--border-subtle);
}

/* Hero Right Image */
.hero-image-card {
  padding: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

.hero-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-card:hover .hero-feature-img {
  transform: scale(1.03);
}

.image-badge-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 27, 61, 0.08);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.overlay-icon {
  font-size: 1.3rem;
}

.overlay-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy-900);
}

.overlay-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--mint-deep);
  font-weight: 600;
}

/* SECTION HEADERS */
.section-header {
  max-width: 760px;
  margin-inline: auto;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--mint-deep);
  letter-spacing: 0.14em;
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* GRIDS */
.grid { display: grid; width: 100%; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2rem; }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.25rem; }
.mt-lg { margin-top: 2rem; }
.mt-xl { margin-top: 3.5rem; }

/* OBJECTIVE & TONE CARDS */
.objective-card, .tone-card {
  padding: 2.25rem;
}

.card-tag-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* Clean Micro-Icon Chips */
.icon-chip {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chip-mint {
  background: var(--mint-dim);
  color: var(--mint-deep);
  border: 1px solid rgba(0, 196, 154, 0.25);
}

.chip-cyan {
  background: var(--cyan-dim);
  color: var(--cyan-deep);
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.chip-navy {
  background: rgba(11, 27, 61, 0.06);
  color: var(--navy-900);
  border: 1px solid rgba(11, 27, 61, 0.12);
}

.text-mint-deep { color: var(--mint-deep); }
.text-cyan-deep { color: var(--cyan-deep); }
.text-navy-900 { color: var(--navy-900); }

.tag-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.card-heading {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}

/* Timeline Comparison Clean */
.timeline-comparison-clean {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.comp-box-clean {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.25rem;
  transition: var(--transition-fast);
}

.comp-box-clean.active-stage {
  border-color: rgba(0, 196, 154, 0.4);
  background: #F0FDF9;
}

.comp-phase-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.phase-number-chip {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chip-mint-num {
  background: var(--mint-deep);
}

.comp-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.comp-badge.pre {
  background: var(--cyan-dim);
  color: var(--cyan-deep);
}

.comp-badge.active {
  background: var(--mint-dim);
  color: var(--mint-deep);
}

.comp-title {
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

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

.comp-connector-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mint-deep);
  background: var(--mint-dim);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  align-self: center;
}

/* Tone Badges Clean */
.tone-badges-grid-clean {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tone-item-clean {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1rem;
}

.tone-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

.tone-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.bullet-mint { background: var(--mint); }
.bullet-cyan { background: var(--cyan); }
.bullet-navy { background: var(--navy-900); }

.tone-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* PILARES SECTION */
.pilar-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pilar-badge-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 700;
}

.pilar-icon-clean {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pilar-title {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.pilar-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--navy-900);
  border-left: 3px solid var(--mint);
  padding-left: 0.85rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.pilar-focus {
  font-size: 0.88rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.pilar-focus strong {
  display: block;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.pilar-tag-chip {
  align-self: flex-start;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: var(--bg-paper);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

/* Doctor Spotlight Card Clean */
.doctor-spotlight-card {
  padding: 2rem;
  overflow: hidden;
}

.doctor-spotlight-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.spotlight-image-col {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.spotlight-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.spotlight-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--mint-deep);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.spotlight-heading {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--navy-900);
}

.spotlight-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.spotlight-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.badge-item-clean {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* FUNNEL SECTION CLEAN */
.funnel-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 920px;
  margin-inline: auto;
}

.funnel-step {
  padding: 2.25rem;
  border-left: 4px solid var(--navy-900);
}

.funnel-step.step-urgent {
  border-left-color: var(--mint-deep);
  background: #F0FDF9;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.step-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: rgba(11, 27, 61, 0.08);
  color: var(--navy-900);
}

.step-badge.badge-cyan {
  background: var(--cyan-dim);
  color: var(--cyan-deep);
}

.step-badge.badge-mint {
  background: var(--mint-dim);
  color: var(--mint-deep);
}

.step-timing {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.step-title {
  font-size: 1.45rem;
  color: var(--navy-900);
  margin-bottom: 0.6rem;
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.step-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.channel-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  color: var(--navy-900);
}

.channel-pill.pill-mint {
  background: var(--mint-dim);
  border-color: rgba(0, 196, 154, 0.4);
  color: var(--mint-deep);
}

.step-hook-box {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.step-hook-box.hook-mint {
  border-color: rgba(0, 196, 154, 0.4);
  background: #FFFFFF;
}

.hook-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--mint-deep);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.hook-quote {
  font-size: 0.95rem;
  color: var(--navy-900);
  font-weight: 600;
}

.funnel-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--mint-deep);
  font-size: 1.2rem;
  opacity: 0.6;
}

.connector-line {
  width: 2px;
  height: 25px;
  background: linear-gradient(180deg, var(--mint-deep), transparent);
}

/* AD SWITCHER & MOCKUPS */
.ad-switcher-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ad-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
}

.ad-tab-btn:hover {
  color: var(--navy-900);
  border-color: #CBD5E1;
}

.ad-tab-btn.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #FFFFFF;
}

.mockup-display-wrapper {
  max-width: 920px;
  margin-inline: auto;
}

.ad-view { display: none; }
.ad-view.active { display: block; }

/* Google Search Mockup Light (Official Look) */
.google-search-mockup-light {
  padding: 2rem;
}

.google-search-bar-light {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FFFFFF;
  border-radius: 9999px;
  padding: 0.65rem 1.25rem;
  margin-bottom: 2rem;
  border: 1px solid #DFE1E5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.google-logo-color {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.search-input-field-light {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.search-term-text-dark {
  font-size: 0.92rem;
  color: #202124;
}

.google-ad-result-light {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1rem 0;
}

.ad-url-row-light {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.ad-badge-google-light {
  font-size: 0.72rem;
  font-weight: 700;
  color: #202124;
}

.ad-domain-light {
  font-size: 0.8rem;
  color: #4D5156;
}

.ad-headline-light a {
  font-size: 1.35rem;
  color: #1A0DAB;
  text-decoration: none;
  font-weight: 600;
}

.ad-headline-light a:hover {
  text-decoration: underline;
}

.ad-description-light {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: #4D5156;
  line-height: 1.6;
}

.ad-sitelinks-light {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
}

.sitelink-item-light {
  display: flex;
  flex-direction: column;
}

.sitelink-title-light {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A0DAB;
}

.sitelink-desc-light {
  font-size: 0.78rem;
  color: #4D5156;
}

.ad-action-row-light {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
  flex-wrap: wrap;
  gap: 1rem;
}

.ad-cta-pill-light {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mint-deep);
}

.btn-copy-ad-light {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  background: var(--bg-paper);
  border: 1px solid var(--border-subtle);
  color: var(--navy-900);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-copy-ad-light:hover {
  background: var(--mint-dim);
  color: var(--mint-deep);
  border-color: var(--mint);
}

/* Social Phone Mockup Clean */
.social-phone-container-clean {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
}

.phone-frame-clean {
  width: 100%;
  max-width: 310px;
  background: #FFFFFF;
  border: 8px solid #E2E8F0;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 auto;
}

.phone-notch {
  width: 110px;
  height: 16px;
  background: #E2E8F0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.phone-screen-clean {
  padding: 1.75rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: #FFFFFF;
}

.social-header-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-avatar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.avatar-ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--mint), var(--cyan), var(--navy-900));
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-letter {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--navy-900);
}

.avatar-info { display: flex; flex-direction: column; }
.social-username-clean { font-size: 0.78rem; font-weight: 700; color: var(--navy-900); }
.social-sponsored-clean { font-size: 0.65rem; color: var(--text-muted); }
.social-dots-clean { color: var(--text-muted); font-size: 0.8rem; }

.social-visual-clean {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.visual-tag-top-clean {
  position: absolute;
  top: 10px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--mint-light);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}

.floating-med-card-clean {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  text-align: center;
}

.med-status-clean {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--mint-light);
  font-weight: 700;
}

.med-time-clean {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0.2rem 0;
}

.med-tag-clean { font-size: 0.68rem; color: #CBD5E1; }

.visual-price-badge-clean {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--mint);
  color: var(--navy-950);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
}

.social-main-text-clean {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.social-main-text-clean strong { color: var(--navy-900); }

.social-cta-btn-clean {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-900);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
}

.social-specs-clean h4 { font-size: 1.35rem; margin: 0.5rem 0 0.85rem; }

.specs-list-clean {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.specs-list-clean strong { color: var(--navy-900); }

/* Hotel QR Photo Mockup Clean */
.hotel-photo-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
}

.hotel-photo-col {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hotel-stand-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.hotel-strategy-box h4 {
  font-size: 1.45rem;
  margin: 0.5rem 0 1rem;
}

.hotel-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hotel-hook-quote-clean {
  margin-top: 1rem;
  padding: 0.85rem 1.25rem;
  border-left: 3px solid var(--mint-deep);
  background: #F0FDF9;
  border-radius: 8px;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--navy-900);
  font-weight: 600;
}

.stat-pill-sm-clean {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--mint-dim);
  color: var(--mint-deep);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 196, 154, 0.3);
}

/* KPIS SECTION */
.kpi-card {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
}

.kpi-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.kpi-meta-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.kpi-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.kpi-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.kpi-footer-target {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.82rem;
}

.kpi-footer-target span {
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* MEDIA MIX CONTAINER CLEAN */
.media-mix-container {
  padding: 2.5rem;
}

.media-mix-header { max-width: 700px; }
.media-mix-title { font-size: 1.6rem; margin-bottom: 0.5rem; }
.media-mix-sub { font-size: 0.95rem; color: var(--text-secondary); }

.split-bars-wrapper { width: 100%; }

.split-bars-clean {
  display: flex;
  width: 100%;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 32px;
}

.bar-search { background: var(--mint-deep); color: #FFFFFF; }
.bar-geo { background: var(--cyan); color: #FFFFFF; }
.bar-brand { background: var(--navy-900); color: #FFFFFF; }

.media-mix-legend-clean {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.legend-item { display: flex; align-items: flex-start; gap: 0.75rem; }

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.dot-mint { background: var(--mint-deep); }
.dot-cyan { background: var(--cyan); }
.dot-navy { background: var(--navy-900); }

/* ROADMAP SECTION CLEAN */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.roadmap-card {
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.roadmap-phase-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.roadmap-badge-clean {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: var(--mint-dim);
  color: var(--mint-deep);
  margin-bottom: 1.25rem;
}

.badge-cyan-chip {
  background: var(--cyan-dim);
  color: var(--cyan-deep);
}

.badge-navy-chip {
  background: rgba(11, 27, 61, 0.08);
  color: var(--navy-900);
}

.roadmap-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.roadmap-list-clean {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.roadmap-list-clean li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.5;
}

.roadmap-list-clean li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--mint-deep);
  font-weight: 700;
}

/* PITCH CTA SECTION */
.pitch-cta-section { padding-bottom: 6rem; }

.cta-card {
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 920px;
  margin-inline: auto;
  border-color: rgba(0, 196, 154, 0.3);
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin: 1rem 0;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-guarantee {
  font-size: 0.82rem;
  color: var(--mint-deep);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* FOOTER CLEAN */
.site-footer-clean {
  border-top: 1px solid var(--border-subtle);
  padding: 2.25rem 0;
  background: var(--bg-paper);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-name-dark { color: var(--navy-900); font-weight: 800; }

/* TOAST POPUP */
.toast-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy-900);
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
  z-index: 99999;
}

.toast-popup.show {
  transform: translateY(0);
  opacity: 1;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal-fade,
.reveal-slide-up,
.reveal-slide-left,
.reveal-slide-right,
.reveal-scale {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-up { transform: translateY(35px); }
.reveal-slide-left { transform: translateX(-35px); }
.reveal-slide-right { transform: translateX(35px); }
.reveal-scale { transform: scale(0.96); }

.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* PRESENTATION MODE */
body.presentation-mode .navbar-wrapper {
  transform: translateY(-120%);
  transition: transform 0.4s ease;
}

body.presentation-mode:hover .navbar-wrapper {
  transform: translateY(0);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-feature-grid,
  .doctor-spotlight-grid,
  .hotel-photo-mockup-grid {
    grid-template-columns: 1fr;
  }
  .grid-3, .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-phone-container-clean {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .social-specs-clean {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .grid-2, .grid-3, .roadmap-grid, .tone-badges-grid-clean, .ad-sitelinks-light {
    grid-template-columns: 1fr;
  }
  .card-footer-metrics {
    flex-direction: column;
    gap: 1rem;
  }
  .metric-separator {
    display: none;
  }
}
