/* ============================================================
   BLOOM LOGIC — Design System & Estilos
   Tipografía: Bricolage Grotesque (display) + Plus Jakarta Sans (body)
   Paleta: Navy deep · Blue mid · Cyan accent · White · Slate
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens ────────────────────────────────────────── */
:root {
  /* Colors — Navy */
  --navy-950: #020817;
  --navy-900: #050D1A;
  --navy-800: #0A1628;
  --navy-700: #0F2040;
  --navy-600: #152B55;

  /* Colors — Blue */
  --blue-700: #1D4ED8;
  --blue-600: #2563EB;
  --blue-500: #3B82F6;
  --blue-400: #60A5FA;
  --blue-100: #DBEAFE;

  /* Colors — Cyan accent */
  --cyan-500: #06B6D4;
  --cyan-400: #22D3EE;
  --cyan-300: #67E8F9;

  /* Colors — Slate */
  --slate-50:  #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;

  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Font sizes */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.13);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.22);
  --shadow-glow: 0 0 60px rgba(37,99,235,0.18);
  --shadow-glow-sm: 0 0 24px rgba(37,99,235,0.14);
  --shadow-card: 0 4px 24px rgba(10,22,40,0.32);

  /* Transitions */
  --ease-fast:   150ms cubic-bezier(0.4,0,0.2,1);
  --ease-base:   250ms cubic-bezier(0.4,0,0.2,1);
  --ease-slow:   400ms cubic-bezier(0.4,0,0.2,1);
  --ease-spring: 500ms cubic-bezier(0.34,1.56,0.64,1);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 140px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--slate-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Utilities ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-24) 0;
}

.section--dark {
  background: var(--navy-900);
  color: var(--white);
}

.section--subtle {
  background: var(--slate-50);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
}

.tag--light {
  color: var(--cyan-400);
  background: rgba(6,182,212,0.12);
}

.section-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: var(--sp-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: var(--sp-5);
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 56ch;
}

.section-subtitle--light {
  color: var(--slate-400);
}

/* ─── Botones ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-md);
  transition: all var(--ease-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--ease-fast);
}

.btn:hover::before { background: rgba(255,255,255,0.08); }

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

.btn--primary:hover {
  background: var(--blue-700);
  box-shadow: 0 6px 20px rgba(37,99,235,0.45);
  transform: translateY(-1px);
}

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

.btn--ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-200, #BFDBFE);
}

.btn--outline:hover {
  background: var(--blue-100);
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}

.btn--whatsapp:hover {
  background: #1ebe57;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transform: translateY(-1px);
}

.btn--lg {
  font-size: var(--text-base);
  padding: 1rem 2rem;
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--ease-base), box-shadow var(--ease-base), backdrop-filter var(--ease-base);
}

.navbar--scrolled {
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__logo img {
  height: 220px;
  width: auto;
  max-width: 440px;
  object-fit: contain;
  display: block;
}

.footer__logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.85;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.navbar__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: color var(--ease-fast);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--blue-400);
  transform: scaleX(0);
  transition: transform var(--ease-base);
  transform-origin: left;
}

.navbar__link:hover { color: var(--white); }
.navbar__link:hover::after { transform: scaleX(1); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease-base);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

/* Grid radial de fondo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37,99,235,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(6,182,212,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid de puntos */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 60% 70% at 60% 40%, black, transparent);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding: var(--sp-20) 0;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan-400);
  border: 1px solid rgba(34,211,238,0.25);
  background: rgba(34,211,238,0.06);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-400);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: var(--sp-6);
}

.hero__title .accent {
  background: linear-gradient(135deg, var(--blue-400) 0%, var(--cyan-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 50ch;
  margin-bottom: var(--sp-10);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.hero__trust::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* ─── Mockup UI del Hero ────────────────────────────────────── */
.hero__visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Tarjeta principal — chat agent */
.mockup-chat {
  position: absolute;
  top: 20px;
  left: 0;
  width: 300px;
  background: rgba(15,30,60,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  animation: float-a 6s ease-in-out infinite;
}

@keyframes float-a {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes float-b {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes float-c {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.mockup-chat__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(37,99,235,0.12);
}

.mockup-chat__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.mockup-chat__info { flex: 1; }

.mockup-chat__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.mockup-chat__status {
  font-size: var(--text-xs);
  color: var(--cyan-400);
  display: flex;
  align-items: center;
  gap: 4px;
}

.mockup-chat__status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan-400);
}

.mockup-chat__messages {
  padding: var(--sp-4) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.mockup-msg {
  max-width: 85%;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  font-size: var(--text-xs);
  line-height: 1.5;
}

.mockup-msg--in {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  border-bottom-left-radius: var(--r-sm);
}

.mockup-msg--out {
  background: var(--blue-600);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: var(--r-sm);
}

.mockup-typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  border-bottom-left-radius: var(--r-sm);
}

.mockup-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: typing 1.2s ease-in-out infinite;
}

.mockup-typing span:nth-child(2) { animation-delay: 0.2s; }
.mockup-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Tarjeta de confirmación de reserva */
.mockup-booking {
  position: absolute;
  top: 30px;
  right: 0;
  width: 220px;
  background: rgba(10,20,40,0.90);
  border: 1px solid rgba(37,99,235,0.30);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--shadow-glow-sm);
  animation: float-b 7s ease-in-out infinite;
}

.mockup-booking__check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #10B981);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  box-shadow: 0 0 16px rgba(16,185,129,0.35);
}

.mockup-booking__check svg {
  width: 18px;
  height: 18px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

.mockup-booking__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: var(--sp-1);
}

.mockup-booking__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-1);
}

.mockup-booking__detail {
  font-size: var(--text-xs);
  color: var(--cyan-400);
  font-weight: 600;
}

.mockup-booking__time {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}

/* Tarjeta de métricas */
.mockup-metrics {
  position: absolute;
  bottom: 30px;
  left: 20px;
  width: 260px;
  background: rgba(10,20,40,0.90);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  animation: float-c 8s ease-in-out infinite;
}

.mockup-metrics__title {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
}

.mockup-metrics__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.mockup-metric {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.mockup-metric__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
}

.mockup-metric__value.up { color: #10B981; }
.mockup-metric__value.down { color: var(--blue-400); }

.mockup-metric__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
}

/* Slot card */
.mockup-slots {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 200px;
  background: rgba(10,20,40,0.90);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  animation: float-a 9s ease-in-out infinite;
}

.mockup-slots__title {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}

.mockup-slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.mockup-slot {
  padding: var(--sp-2) var(--sp-2);
  border-radius: var(--r-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: center;
  transition: all var(--ease-fast);
}

.mockup-slot--available {
  background: rgba(37,99,235,0.18);
  color: var(--blue-400);
  border: 1px solid rgba(37,99,235,0.25);
}

.mockup-slot--taken {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: line-through;
}

.mockup-slot--selected {
  background: var(--blue-600);
  color: white;
  border: 1px solid var(--blue-600);
}

/* ─── SECCIÓN PROBLEMA ─────────────────────────────────────── */
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}

.pain-card {
  background: rgba(15,32,64,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: var(--sp-7, 1.75rem) var(--sp-6);
  transition: transform var(--ease-base), border-color var(--ease-base), box-shadow var(--ease-base);
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,0.25);
  box-shadow: var(--shadow-glow-sm);
}

.pain-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(37,99,235,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  font-size: 1.25rem;
}

.pain-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.pain-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ─── CÓMO FUNCIONA ─────────────────────────────────────────── */
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
  opacity: 0.3;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
  padding: var(--sp-8) var(--sp-6);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  transition: box-shadow var(--ease-base), transform var(--ease-base);
  position: relative;
}

.how-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.how-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}

.how-step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--slate-900);
}

.how-step__desc {
  font-size: var(--text-sm);
  color: var(--slate-500);
  line-height: 1.7;
}

/* ─── CASOS DE USO ─────────────────────────────────────────── */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.case-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--ease-base), transform var(--ease-base), border-color var(--ease-base);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--blue-200, #BFDBFE);
}

.case-card__top {
  padding: var(--sp-8) var(--sp-7, 1.75rem);
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
}

.case-card__emoji {
  font-size: 2rem;
  margin-bottom: var(--sp-4);
}

.case-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.case-card__tagline {
  font-size: var(--text-sm);
  color: var(--cyan-400);
  font-weight: 600;
}

.case-card__body {
  padding: var(--sp-7, 1.75rem);
}

.case-card__desc {
  font-size: var(--text-sm);
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.case-card__results {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.case-result {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--slate-700);
}

.case-result::before {
  content: '→';
  color: var(--blue-500);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── BENEFICIOS ───────────────────────────────────────────── */
.benefits__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  margin-top: var(--sp-12);
}

.benefits__copy .section-title { margin-bottom: var(--sp-6); }

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.benefit-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-item__text { flex: 1; }

.benefit-item__title {
  font-weight: 700;
  color: var(--slate-900);
  font-size: var(--text-sm);
  margin-bottom: 2px;
}

.benefit-item__desc {
  font-size: var(--text-sm);
  color: var(--slate-500);
  line-height: 1.6;
}

.benefits__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.benefit-stat {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  text-align: center;
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}

.benefit-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-sm);
}

.benefit-stat__value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.benefit-stat__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ─── SISTEMA DE AGENDA ─────────────────────────────────────── */
.booking {
  background: var(--slate-50);
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-16);
  align-items: start;
  margin-top: var(--sp-12);
}

.booking__copy {}

.booking__copy .section-title {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
}

.booking__copy .section-subtitle {
  margin-top: var(--sp-4);
}

.booking__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.booking__feature {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--slate-600);
}

.booking__feature::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Widget de booking */
.booking-widget {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-widget__header {
  padding: var(--sp-6) var(--sp-7, 1.75rem);
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.booking-widget__steps {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.bw-step {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  transition: color var(--ease-base);
}

.bw-step__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  transition: all var(--ease-base);
}

.bw-step--active {
  color: var(--white);
}

.bw-step--active .bw-step__dot {
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: 0 0 12px rgba(37,99,235,0.4);
}

.bw-step--done .bw-step__dot {
  background: #10B981;
  border-color: #10B981;
}

.bw-step--done {
  color: rgba(255,255,255,0.55);
}

.bw-connector {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.booking-widget__body {
  padding: var(--sp-7, 1.75rem);
  min-height: 380px;
}

/* Calendar */
.bw-calendar { user-select: none; }

.bw-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}

.bw-cal__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--slate-900);
  text-transform: capitalize;
}

.bw-cal__btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  border: 1px solid var(--slate-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease-fast);
  color: var(--slate-600);
}

.bw-cal__btn:hover {
  background: var(--slate-100);
  border-color: var(--slate-300);
}

.bw-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: var(--sp-2);
}

.bw-cal__wd {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--slate-400);
  padding: var(--sp-2) 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bw-cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.bw-cal__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease-fast);
  border: 1.5px solid transparent;
}

.bw-cal__day--empty { background: transparent; cursor: default; }

.bw-cal__day--past {
  color: var(--slate-300);
  cursor: not-allowed;
}

.bw-cal__day--weekend {
  color: var(--slate-300);
  cursor: not-allowed;
}

.bw-cal__day--available {
  color: var(--slate-800);
  background: var(--slate-50);
}

.bw-cal__day--available:hover {
  background: var(--blue-100);
  color: var(--blue-700);
  border-color: var(--blue-300, #93C5FD);
}

.bw-cal__day--selected {
  background: var(--blue-600) !important;
  color: var(--white) !important;
  border-color: var(--blue-600) !important;
  box-shadow: 0 2px 8px rgba(37,99,235,0.4);
  font-weight: 700;
}

.bw-cal__day--today {
  font-weight: 700;
  border-color: var(--blue-300, #93C5FD);
}

/* Time slots */
.bw-slots__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: var(--sp-4);
}

.bw-slots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}

.bw-slot {
  padding: var(--sp-3) var(--sp-2);
  text-align: center;
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--slate-200);
  color: var(--slate-700);
  background: var(--white);
  transition: all var(--ease-fast);
}

.bw-slot:hover {
  border-color: var(--blue-400);
  color: var(--blue-600);
  background: var(--blue-100);
}

.bw-slot--selected {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: white;
  box-shadow: 0 2px 8px rgba(37,99,235,0.35);
}

.bw-slot--taken {
  background: var(--slate-50);
  border-color: var(--slate-100);
  color: var(--slate-300);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Formulario booking */
.bw-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.bw-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--slate-700);
}

.form-field label .required {
  color: var(--blue-500);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--slate-900);
  background: var(--white);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}

.form-input::placeholder { color: var(--slate-300); }

.form-input--error {
  border-color: #EF4444;
}

.form-input--error:focus {
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}

.field-error {
  font-size: var(--text-xs);
  color: #EF4444;
  font-weight: 500;
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.bw-form__summary {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.bw-form__summary-icon {
  font-size: 1.5rem;
}

.bw-form__summary-date {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--slate-900);
}

.bw-form__summary-time {
  font-size: var(--text-xs);
  color: var(--blue-600);
  font-weight: 600;
}

/* Confirmación */
.bw-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-8) 0;
  gap: var(--sp-5);
}

.bw-confirm__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #10B981);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 32px rgba(16,185,129,0.35);
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.bw-confirm__icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

.bw-confirm__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--slate-900);
}

.bw-confirm__sub {
  font-size: var(--text-sm);
  color: var(--slate-500);
  max-width: 32ch;
  line-height: 1.6;
}

.bw-confirm__detail {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  width: 100%;
  max-width: 320px;
  text-align: left;
}

.bw-confirm__detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--slate-200);
}

.bw-confirm__detail-row:last-child { border: none; }

.bw-confirm__detail-label { color: var(--slate-500); font-weight: 500; }
.bw-confirm__detail-value { color: var(--slate-900); font-weight: 700; }

/* Acciones del widget */
.bw-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-7, 1.75rem);
  border-top: 1px solid var(--slate-100);
  background: var(--slate-50);
}

/* Loader */
.bw-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  min-height: 200px;
  color: var(--slate-400);
  font-size: var(--text-sm);
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--slate-200);
  border-top-color: var(--blue-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq__list {
  max-width: 720px;
  margin: var(--sp-12) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--ease-base);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--blue-200, #BFDBFE); }

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-6);
  cursor: pointer;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--slate-900);
  transition: color var(--ease-fast);
}

.faq-item__q:hover { color: var(--blue-600); }

.faq-item.open .faq-item__q { color: var(--blue-600); }

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--ease-base);
  color: var(--slate-500);
}

.faq-item.open .faq-item__icon {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: white;
  transform: rotate(45deg);
}

.faq-item__a {
  font-size: var(--text-sm);
  color: var(--slate-600);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease-slow), padding var(--ease-slow);
  padding: 0 var(--sp-6);
}

.faq-item.open .faq-item__a {
  max-height: 300px;
  padding: 0 var(--sp-6) var(--sp-6);
}

/* ─── CTA FINAL ─────────────────────────────────────────────── */
.cta-final {
  background: var(--navy-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(37,99,235,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final .container { position: relative; z-index: 1; }

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--sp-5);
}

.cta-final__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.55);
  max-width: 48ch;
  margin: 0 auto var(--sp-10);
  line-height: 1.7;
}

.cta-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ─── Botón flotante WhatsApp ────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-3);
}

.wa-float__tooltip {
  background: var(--slate-900);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--ease-base);
  pointer-events: none;
}

.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-float__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4);
  transition: all var(--ease-base);
  animation: wa-ring 3s ease-in-out infinite 2s;
  text-decoration: none;
}

.wa-float__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.wa-float__btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes wa-ring {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-950);
  padding: var(--sp-12) 0 var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.footer__logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.footer__tagline {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  margin-top: var(--sp-2);
}

.footer__links {
  display: flex;
  gap: var(--sp-6);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  transition: color var(--ease-fast);
}

.footer__link:hover { color: rgba(255,255,255,0.85); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}

.footer__badge {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer__badge::before {
  content: '✦';
  color: var(--blue-500);
}

/* ─── Animaciones de entrada ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ─── Toast de notificación ────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--slate-900);
  color: var(--white);
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-lg);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transition: transform var(--ease-spring);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  max-width: 400px;
  text-align: center;
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast--error { background: #7F1D1D; border-left: 4px solid #EF4444; }
.toast--success { background: #064E3B; border-left: 4px solid #10B981; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    text-align: center;
  }

  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }

  .hero__visual {
    height: 380px;
    order: -1;
  }

  .mockup-chat { left: 50%; transform: translateX(-50%); top: 0; }
  .mockup-booking { right: 2%; top: 10px; }
  .mockup-metrics { left: 2%; bottom: 0; }
  .mockup-slots { right: 2%; bottom: 0; }

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

  .benefits__layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .benefits__visual { grid-template-columns: repeat(4, 1fr); }

  .booking__inner { grid-template-columns: 1fr; gap: var(--sp-10); }

  .how__steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 120px; }

  .section { padding: var(--sp-16) 0; }
  .container { padding: 0 var(--sp-5); }

  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__logo img { height: 110px; max-width: 260px; }

  .navbar__actions {
    gap: var(--sp-2);
    align-items: center;
  }

  .navbar__actions .btn--primary {
    font-size: 0.78rem;
    padding: 0.5rem 0.9rem;
    white-space: nowrap;
  }

  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy-900);
    padding: var(--sp-6);
    gap: var(--sp-4);
    border-top: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow-lg);
  }

  .hero__visual { height: 300px; }
  .mockup-chat { width: 240px; }
  .mockup-booking { width: 170px; }
  .mockup-metrics { width: 210px; }
  .mockup-slots { display: none; }

  .pain__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .benefits__visual { grid-template-columns: repeat(2, 1fr); }

  .bw-slots__grid { grid-template-columns: repeat(3, 1fr); }
  .bw-form__row { grid-template-columns: 1fr; }

  .cta-final__actions { flex-direction: column; align-items: stretch; }
  .cta-final__actions .btn { width: 100%; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.2rem, 8vw, 3rem); }

  .booking-widget__body { padding: var(--sp-5); }
  .bw-actions { padding: var(--sp-4) var(--sp-5); }

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