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

:root {
  --dark:        #120029;
  --dark-2:      #1E0A3C;
  --teal:        #C026D3;
  --teal-mid:    #E879F9;
  --teal-light:  #F0ABFC;
  --green:       #7C3AED;
  --amber:       #FF6B35;
  --white:       #ffffff;
  --off-white:   #F5F0FF;
  --text-dark:   #1A0533;
  --text-gray:   #5B5075;
  --grad-hero:   linear-gradient(135deg, #120029 0%, #2D1B69 35%, #7B2FBE 70%, #C026D3 100%);
  --grad-section:linear-gradient(135deg, #120029 0%, #2D1B69 55%, #C026D3 100%);
  --grad-card:   linear-gradient(135deg, rgba(192,38,211,.1) 0%, rgba(124,58,237,.08) 100%);
  --shadow:      0 20px 60px rgba(192,38,211,.18);
  --shadow-sm:   0 6px 20px rgba(192,38,211,.12);
  --radius:      1.2rem;
  --radius-lg:   2rem;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: #F5F0FF;
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Utility ──────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 7rem 0; }

.label {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: .5rem; margin-bottom: 1.2rem;
}
.label::before { content: '/'; color: var(--amber); font-size: 1.1rem; }
.label-light   { color: var(--teal-light); }

.heading-xl {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.06; letter-spacing: -.03em;
}
.heading-lg {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.025em;
}

.text-gradient {
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  font-size: 1.05rem; color: var(--text-gray); max-width: 600px;
  margin: 1rem 0 3.5rem; line-height: 1.7;
}

/* Scroll-reveal — definido en animations.css */

/* ── NAVBAR ───────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 1.4rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: linear-gradient(135deg, rgba(18,0,41,.97) 0%, rgba(30,10,60,.94) 100%);
  backdrop-filter: blur(16px);
  padding: .85rem 0;
  box-shadow: 0 4px 30px rgba(192,38,211,.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.15rem; font-weight: 800; color: white; letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.82); font-size: .88rem; font-weight: 500;
  transition: color .25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--teal-light);
  transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--amber); color: var(--white);
  padding: .5rem 1.35rem; border-radius: 50px;
  font-weight: 700; font-size: .88rem;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,.4); }
.nav-cta::after, .nav-cta:hover::after { display: none; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 0; cursor: pointer; background: transparent; border: none;
  padding: 4px; z-index: 10000; position: relative;
  width: 36px; height: 36px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: white; border-radius: 2px;
  position: absolute; left: 5px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
}
.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 25px; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────── */
#hero {
  min-height: 110vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--grad-hero);
}
.hero-bg-anim { position: absolute; inset: 0; z-index: 0; }
#heroParticles {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; width: 100%; height: 100%;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .3;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob:nth-child(1) { width: 500px; height: 500px; background: #C026D3; top: -120px; right: -80px; animation-delay: 0s; }
.hero-blob:nth-child(2) { width: 380px; height: 380px; background: #7C3AED; bottom: -40px; left: -60px; animation-delay: 3s; }
.hero-blob:nth-child(3) { width: 260px; height: 260px; background: #FF6B35; top: 55%; left: 45%; animation-delay: 5s; }

@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(20px,-20px) scale(1.05); }
  66%     { transform: translate(-15px,15px) scale(.95); }
}

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 4;
  width: 100%; height: 200px; display: block;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 0 12rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  padding: .45rem 1.15rem; border-radius: 50px; margin-bottom: 2rem;
  color: rgba(255,255,255,.9); font-size: .84rem; font-weight: 600;
  animation: fadeDown .8s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px; background: var(--amber); border-radius: 50%;
  animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.4);opacity:.6;} }

.hero-title {
  color: var(--white); margin-bottom: 1.5rem;
  animation: fadeUp .9s ease .2s both;
}
.hero-title span { display: block; }
.hero-title .accent { color: var(--amber); }

.hero-sub {
  color: rgba(255,255,255,.78); font-size: 1.12rem; max-width: 560px;
  margin-bottom: 2.5rem; animation: fadeUp .9s ease .4s both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .9s ease .6s both;
}

.btn-primary {
  background: var(--amber); color: white;
  padding: .85rem 2.2rem; border-radius: 50px; font-weight: 700;
  font-size: 1rem; transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: .6rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,107,53,.45); }

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,.38);
  color: white; padding: .85rem 2.2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; transition: .3s;
  display: inline-flex; align-items: center; gap: .6rem;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: white; }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem; flex-wrap: wrap;
  animation: fadeUp .9s ease .8s both;
}
.stat-num   { font-size: 2.2rem; font-weight: 900; color: white; line-height: 1; }
.stat-num span { color: var(--amber); }
.stat-label { color: rgba(255,255,255,.6); font-size: .82rem; margin-top: .25rem; }

@keyframes fadeUp   { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

/* ── VALOR ────────────────────────────────────── */
#valor { background: #F5F0FF; padding: 7rem 0; }

/* Problem cards */
.problem-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.problem-card {
  background: white; border-radius: var(--radius); padding: 2rem;
  border: 1px solid rgba(192,38,211,.15);
  transition: transform .3s, box-shadow .3s;
}
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.problem-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  animation: iconGlow 3s ease-in-out infinite;
}
@keyframes iconGlow {
  0%,100% { box-shadow: 0 4px 14px rgba(192,38,211,.2); }
  50%     { box-shadow: 0 4px 26px rgba(192,38,211,.5); }
}
.problem-card h3 {
  font-size: .98rem; font-weight: 700; margin-bottom: .6rem;
  color: var(--text-dark);
}
.problem-card p { font-size: .88rem; color: var(--text-gray); line-height: 1.65; }

/* Solution banner */
.solution-banner {
  display: flex; align-items: center; gap: 1.5rem;
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-radius: var(--radius-lg); padding: 2rem 2.5rem; margin-bottom: 3rem;
  color: white;
}
.solution-icon {
  width: 56px; height: 56px; background: rgba(255,255,255,.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px solid rgba(255,255,255,.3);
}
.solution-banner h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
.solution-banner p  { font-size: .9rem; color: rgba(255,255,255,.8); }

/* Pillar cards */
.pillar-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.pillar-card {
  background: white; border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  border: 1px solid rgba(192,38,211,.15);
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-num {
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-size: 4rem; font-weight: 900;
  color: rgba(192,38,211,.06); line-height: 1; letter-spacing: -.04em;
  user-select: none; pointer-events: none;
}
.pillar-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.pillar-body h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: .65rem;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pillar-body p { font-size: .88rem; color: var(--text-gray); line-height: 1.65; }

/* ── FLUJO (dark section) ─────────────────────── */
#flujo {
  padding: 7rem 0;
  position: relative; overflow: hidden;
  background: var(--grad-section);
}
#flujo .container { position: relative; z-index: 3; }

/* Animated section waves */
.section-wave {
  position: absolute; left: 0; right: 0;
  width: 100%; height: 140px; z-index: 2;
  pointer-events: none; display: block;
}
.section-wave--top    { top: -1px; }
.section-wave--bottom { bottom: -1px; transform: rotate(180deg); }
.section-wave path {
  transform-origin: center;
  animation: waveFlow 14s ease-in-out infinite;
}
.section-wave path:nth-child(2) { animation-duration: 11s; animation-direction: reverse; }
.section-wave path:nth-child(3) { animation-duration:  9s; animation-delay: -2s; }
@keyframes waveFlow {
  0%,100% { transform: translate3d(-2%,0,0); }
  50%     { transform: translate3d(2%,0,0); }
}

/* Flujo cards */
.flujo-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem; align-items: start;
}
.flujo-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.flujo-card--patient {
  background: rgba(240,171,252,.08);
  border-color: rgba(240,171,252,.25);
}
.flujo-role {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; color: white;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  padding: .35rem 1rem; border-radius: 50px;
  margin-bottom: 2rem; letter-spacing: .06em; text-transform: uppercase;
}
.flujo-role--patient {
  background: rgba(240,171,252,.15);
  border-color: rgba(240,171,252,.35);
  color: var(--teal-light);
}
.flujo-steps { display: flex; flex-direction: column; gap: 0; }
.flujo-step {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.4rem 0; position: relative;
}
.flujo-step:not(:last-child)::after {
  content: ''; position: absolute; left: 12px; top: 3.2rem;
  bottom: 0; width: 2px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), rgba(255,255,255,.04));
}
.step-dot {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%; background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  position: relative; z-index: 1;
}
.step-dot--patient {
  background: rgba(240,171,252,.2);
  border-color: rgba(240,171,252,.5);
}
.step-body h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: .35rem; }
.step-body p  { font-size: .88rem; color: rgba(255,255,255,.68); line-height: 1.6; }
.text-link    { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Divider between cards */
.flujo-divider {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; padding-top: 8rem;
}
.flujo-divider-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.25), transparent);
  min-height: 60px;
}
.flujo-divider-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); flex-shrink: 0;
}

.flujo-cta { text-align: center; margin-top: 3.5rem; }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.3);
  color: white; padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; transition: .3s;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.18); border-color: white; }

/* ── DEMO / PLANES ────────────────────────────── */
#demo { background: #F5F0FF; padding: 7rem 0; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.pricing-card {
  background: white; border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  border: 1px solid rgba(192,38,211,.18);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column; position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pricing-card--featured {
  background: linear-gradient(160deg, #2D1B69 0%, #C026D3 100%);
  border-color: transparent;
  color: white;
}
.pricing-featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: white;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: .28rem 1rem; border-radius: 50px;
  white-space: nowrap;
}
.pricing-plan {
  font-size: .78rem; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.2rem;
}
.pricing-plan--clinic { color: var(--amber); }
.pricing-card--featured .pricing-plan { color: var(--teal-light); }
.pricing-price { margin-bottom: 1rem; display: flex; align-items: baseline; gap: .4rem; }
.price-val     { font-size: 2.8rem; font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.price-period  { font-size: .85rem; color: var(--text-gray); font-weight: 500; }
.pricing-card--featured .price-period { color: rgba(255,255,255,.6); }
.pricing-desc  { font-size: .88rem; color: var(--text-gray); margin-bottom: 1.8rem; line-height: 1.6; flex-grow: 1; }
.pricing-card--featured .pricing-desc { color: rgba(255,255,255,.72); }
.pricing-features { margin-bottom: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.pricing-features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: var(--text-gray);
}
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,.82); }
.pricing-features li svg { color: var(--teal); flex-shrink: 0; }
.pricing-card--featured .pricing-features li svg { color: var(--teal-light); }

.btn-plan {
  display: block; text-align: center;
  padding: .85rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: .95rem;
  border: 2px solid rgba(13,148,136,.4);
  color: var(--teal); transition: .25s;
}
.btn-plan:hover { background: var(--teal); color: white; border-color: var(--teal); transform: translateY(-2px); }
.btn-plan--featured {
  background: var(--amber); color: white; border-color: transparent;
  box-shadow: 0 8px 24px rgba(255,107,53,.35);
}
.btn-plan--featured:hover { background: white; color: var(--dark); border-color: white; }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent;
  border: 2px solid rgba(13,148,136,.4);
  color: var(--teal); padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; transition: .3s;
}
.btn-ghost-dark:hover { background: var(--teal); color: white; border-color: var(--teal); }

/* ── IMPACTO (dark section) ───────────────────── */
#impacto {
  padding: 8rem 0; position: relative; overflow: hidden;
  background: var(--grad-section); text-align: center;
}
#impacto .container { position: relative; z-index: 3; }

.impacto-inner { max-width: 720px; margin: 0 auto; }
.impacto-title { color: white; margin-bottom: 1.8rem; }
.impacto-accent { color: var(--teal-light); }
.impacto-sub {
  color: rgba(255,255,255,.72); font-size: 1.1rem; margin-bottom: 3rem;
  line-height: 1.7;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: linear-gradient(135deg, #0A0015 0%, #1E0A3C 100%);
  color: rgba(255,255,255,.55); padding: 3rem 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.2rem;
}
.footer-brand p { font-size: .82rem; margin-top: .35rem; }
.footer-logo-link {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: 1rem; font-weight: 800; color: white; letter-spacing: -.02em;
}
.footer-copy  { font-size: .82rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .82rem; transition: color .2s; }
.footer-links a:hover { color: var(--teal-light); }
.footer-scroll-top { color: var(--teal); }
.footer-scroll-top:hover { color: var(--teal-light); }

/* ── BACK TO TOP ──────────────────────────────── */
#btt {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9000;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--amber); color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 6px 20px rgba(255,107,53,.4);
  opacity: 0; transform: translateY(20px); transition: .35s;
}
#btt.show { opacity: 1; transform: translateY(0); }
#btt:hover { transform: translateY(-4px); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .problem-grid,
  .pillar-grid,
  .pricing-grid { grid-template-columns: 1fr 1fr; }

  .flujo-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .flujo-divider { flex-direction: row; padding-top: 0; }
  .flujo-divider-line { min-height: unset; min-width: 40px; height: 1px; width: auto; flex: 1;
    background: linear-gradient(to right, transparent, rgba(255,255,255,.25), transparent);
  }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-links {
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh; height: 100dvh;
    background: linear-gradient(160deg, rgba(18,0,41,.99) 0%, rgba(30,10,60,.97) 100%);
    padding: 5rem 2rem 3rem;
    gap: 0; z-index: 9998;
    clip-path: inset(0 0 100% 0);
    transition: clip-path .45s cubic-bezier(.77,0,.18,1);
    pointer-events: none;
  }
  .nav-links.open {
    clip-path: inset(0 0 0% 0);
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%; text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.07);
    opacity: 0; transform: translateY(14px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .nav-links.open li { opacity: 1; transform: translateY(0); }
  .nav-links.open li:nth-child(1) { transition-delay: .15s; }
  .nav-links.open li:nth-child(2) { transition-delay: .20s; }
  .nav-links.open li:nth-child(3) { transition-delay: .25s; }
  .nav-links.open li:nth-child(4) { transition-delay: .30s; }
  .nav-links.open li:nth-child(5) { transition-delay: .35s; }
  .nav-links.open li:nth-child(6) { transition-delay: .40s; }
  .nav-links.open li:nth-child(7) { transition-delay: .45s; }
  .nav-links a {
    display: block; padding: 1rem 0;
    font-size: 1.2rem; font-weight: 700; letter-spacing: .03em;
  }
  .nav-links .nav-cta {
    margin-top: .8rem; display: inline-block;
    padding: .7rem 2rem; font-size: 1.05rem;
  }
  .hamburger { display: flex; }

  /* Hero */
  #hero { min-height: 135svh; }
  .hero-content { padding: 6rem 0 10rem; }
  .hero-badge { font-size: .74rem; }
  .hero-sub { font-size: .98rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: nowrap; justify-content: space-between; margin-top: 2.5rem; }
  .hero-stats .stat-item { flex: 1 1 0; min-width: 0; }
  .stat-num { font-size: clamp(1.3rem, 6vw, 1.9rem); }
  .stat-label { font-size: .7rem; line-height: 1.25; }

  /* Sections */
  .section { padding: 5rem 0; }
  #flujo, #impacto { padding: 6rem 0; }

  .problem-grid,
  .pillar-grid,
  .pricing-grid { grid-template-columns: 1fr; }

  .flujo-grid { grid-template-columns: 1fr; }
  .flujo-divider { display: none; }

  .solution-banner { flex-direction: column; text-align: center; gap: 1rem; }
  .solution-banner .solution-icon { margin: 0 auto; }

  .footer-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
  .flujo-card { padding: 1.8rem 1.5rem; }
  .pricing-card { padding: 2rem 1.5rem; }
}
