/* ============================================================
   INVITACIÓN DIGITAL MONTERREY — v2
   Editorial minimalista premium
   ============================================================ */

:root {
  --bg: #FAF7F4;
  --bg-2: #F2EDE8;
  --white: #FFFFFF;
  --ink: #1A1418;
  --ink-2: #3A2E36;
  --muted: #756A72;
  --muted-2: #A89BA3;
  --line: #E8DFD9;
  --line-2: #D8CCC4;
  --accent: #B91E5A;
  --accent-soft: #F4D9E4;
  --accent-deep: #8A1342;
  --gold: #B89968;
  --gold-soft: #E7D9C2;
  --black: #0E0A0C;

  --max: 1280px;
  --gutter: 32px;

  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --mono: ui-monospace, 'SF Mono', 'JetBrains Mono', monospace;

  --t-hero: clamp(3rem, 9vw, 7.5rem);
  --t-h2: clamp(2.25rem, 5vw, 4rem);
  --t-h3: clamp(1.5rem, 2.4vw, 2rem);
  --t-body: 1rem;
  --t-small: 0.825rem;
  --t-eyebrow: 0.7rem;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* TYPE PRIMITIVES */
.eyebrow {
  font-family: var(--mono);
  font-size: var(--t-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.serif { font-family: var(--serif); font-weight: 300; }
em.accent { font-style: italic; color: var(--accent); font-weight: 300; }

h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-hero);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 em { font-style: italic; color: var(--accent); font-weight: 300; }

h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-h2);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h2 em { font-style: italic; color: var(--accent); font-weight: 300; }

h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--t-h3);
  line-height: 1.15;
}

p.lead {
  font-size: 1.05rem;
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.65;
  max-width: 38ch;
}

/* CONTAINERS */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: 120px 0; position: relative; }
section.tight { padding: 80px 0; }
.divider { height: 1px; background: var(--line); width: 100%; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 10px 30px rgba(185, 30, 90, 0.25); }
.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-wa { background: #1DAF53; color: #fff; }
.btn-wa:hover { background: #168D42; transform: translateY(-1px); box-shadow: 0 10px 30px rgba(29, 175, 83, 0.3); }
.btn-arrow::after { content: '→'; font-size: 1.1em; line-height: 1; margin-left: 2px; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 247, 244, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
}
.nav-logo .mark {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.nav-logo .mark em { color: var(--accent); font-style: italic; }
.nav-logo .place {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-menu a {
  font-size: 0.78rem;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .line { display: block; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-2);
  font-weight: 300;
  max-width: 46ch;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-actions .note {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--mono);
}

/* Phone mockup */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
.phone-stage::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(185, 30, 90, 0.06), transparent 60%);
  z-index: 0;
}
.phone {
  position: relative;
  width: 300px;
  height: 615px;
  background: var(--ink);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 35px 80px -10px rgba(26, 20, 24, 0.25),
    0 12px 30px -5px rgba(26, 20, 24, 0.18);
  z-index: 1;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

/* Invitation preview content (inside phone) */
.inv-feed {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.inv-track {
  display: flex;
  flex-direction: column;
  width: 100%;
  animation: invScroll 24s linear infinite;
}
@keyframes invScroll {
  0%, 8% { transform: translateY(0); }
  20%, 32% { transform: translateY(-560px); }
  44%, 56% { transform: translateY(-1080px); }
  68%, 80% { transform: translateY(-1610px); }
  92%, 100% { transform: translateY(0); }
}
.inv-section {
  width: 100%;
  min-height: 560px;
  position: relative;
  padding: 60px 28px 30px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.inv-section.cover {
  background: linear-gradient(180deg, #F4D9E4 0%, #FFFFFF 100%);
  justify-content: center;
}
.inv-cover-eyebrow {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.inv-cover-name {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
}
.inv-cover-and {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 10px;
}
.inv-cover-date {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 18px;
}
.inv-section h4.inv-h {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 16px;
}
.inv-section .inv-eye {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.countdown {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.cd-cell {
  background: var(--bg);
  border-radius: 8px;
  padding: 10px 8px;
  min-width: 50px;
}
.cd-cell .n {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1;
  font-weight: 400;
}
.cd-cell .l {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.inv-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
}
.inv-gallery .tile {
  aspect-ratio: 1;
  background: repeating-linear-gradient(45deg, var(--line) 0 2px, var(--bg) 2px 8px);
  border-radius: 6px;
}
.inv-gallery .tile:nth-child(2) { background: repeating-linear-gradient(45deg, var(--accent-soft) 0 2px, var(--bg) 2px 8px); }
.inv-gallery .tile:nth-child(5) { background: repeating-linear-gradient(45deg, var(--gold-soft) 0 2px, var(--bg) 2px 8px); }
.inv-rsvp {
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  padding: 22px 18px;
  margin-top: 16px;
  width: 100%;
}
.inv-rsvp .hi {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 4px;
}
.inv-rsvp .who {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.inv-rsvp .row {
  display: flex;
  gap: 6px;
}
.inv-rsvp .opt {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.inv-rsvp .opt.yes { background: var(--accent); color: var(--white); }
.inv-rsvp .opt.no { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.inv-pass-mock {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg);
  border-radius: 12px;
  width: 100%;
  margin-top: 14px;
  text-align: left;
}
.qr-box {
  width: 64px; height: 64px;
  background:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%) 0 0/12px 12px,
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%) 6px 6px/12px 12px,
    var(--white);
  border: 2px solid var(--ink);
  border-radius: 6px;
  flex-shrink: 0;
}
.inv-pass-mock .info .nm {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
}
.inv-pass-mock .info .pl {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Sparkle / floating elements around hero phone */
.hero-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--ink);
  box-shadow: 0 14px 40px -10px rgba(26,20,24,0.15);
  z-index: 2;
}
.hero-callout .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1DAF53;
  box-shadow: 0 0 0 4px rgba(29,175,83,0.18);
}
.hero-callout.one { top: 10%; left: -10px; }
.hero-callout.two { bottom: 14%; right: -20px; }
.hero-callout .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 1rem;
  margin: 0 2px;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  background: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
.trust-cell {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.trust-cell:first-child { border-left: 0; padding-left: 0; }
.trust-n {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.trust-n em { color: var(--accent); font-style: italic; }
.trust-l {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   DEMO INTERACTIVA
   ========================================================= */
.demo { background: var(--bg); }
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.demo-head .eyebrow { margin-bottom: 18px; }
.demo-head h2 { margin-bottom: 22px; }
.demo-head .lead { margin-bottom: 32px; }
.demo-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demo-tab {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 18px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  width: 100%;
  transition: all 0.25s var(--ease);
}
.demo-tab[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.demo-tab .idx {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding-top: 4px;
  flex-shrink: 0;
}
.demo-tab[aria-pressed="true"] .idx { color: rgba(255,255,255,0.55); }
.demo-tab .ttl {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}
.demo-tab .ttl em { color: var(--accent); font-style: italic; }
.demo-tab[aria-pressed="true"] .ttl em { color: var(--accent-soft); }
.demo-tab .body {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 4px;
  line-height: 1.55;
}
.demo-tab[aria-pressed="true"] .body { color: rgba(255,255,255,0.55); }
.demo-tab:hover:not([aria-pressed="true"]) {
  border-color: var(--line-2);
  transform: translateX(4px);
}

.demo-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo-phone {
  width: 320px;
  height: 660px;
  background: var(--ink);
  border-radius: 46px;
  padding: 13px;
  box-shadow: 0 40px 80px -20px rgba(26,20,24,0.3);
  position: relative;
}
.demo-screen {
  width: 100%; height: 100%;
  background: var(--white);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}
.demo-view {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  overflow-y: auto;
}
.demo-view::-webkit-scrollbar { display: none; }
.demo-view.active { opacity: 1; }
.demo-view .inv-section { padding-top: 50px; }

/* =========================================================
   ANTES / DESPUÉS
   ========================================================= */
.versus { background: var(--white); }
.versus-head {
  text-align: center;
  margin-bottom: 70px;
}
.versus-head .eyebrow { margin-bottom: 18px; }
.versus-head .lead {
  margin: 22px auto 0;
  max-width: 48ch;
  text-align: center;
}
.versus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}
.vs-mark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  z-index: 2;
}
.vs-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 36px;
  background: var(--bg);
}
.vs-card.now { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.vs-card .tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.vs-card.now .tag { color: var(--accent-soft); }
.vs-card .vs-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 28px;
}
.vs-card.now .vs-title em { color: var(--accent-soft); font-style: italic; }
.vs-card .vs-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.vs-card:not(.now) .vs-line:first-of-type { border-top: 0; padding-top: 0; }
.vs-card.now .vs-line { border-top-color: rgba(255,255,255,0.1); }
.vs-card.now .vs-line:first-of-type { border-top: 0; padding-top: 0; }
.vs-line .k {
  font-size: 0.85rem;
  color: var(--ink-2);
}
.vs-card.now .k { color: rgba(255,255,255,0.7); }
.vs-line .v {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  text-align: right;
  font-style: italic;
}
.vs-card.now .v { color: var(--accent-soft); }

/* =========================================================
   CALLAGENT FLOW (animated)
   ========================================================= */
.flow {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.flow::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(185,30,90,0.18), transparent 65%);
  pointer-events: none;
}
.flow .eyebrow { color: var(--accent-soft); }
.flow .eyebrow::before { background: var(--accent-soft); }
.flow h2 { color: var(--white); margin-bottom: 24px; }
.flow h2 em { color: var(--accent-soft); }
.flow-head .lead { color: rgba(255,255,255,0.65); margin-bottom: 60px; }
.flow-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  left: 19px; top: 30px; bottom: 30px;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.flow-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 0;
  align-items: flex-start;
  opacity: 0.35;
  transition: opacity 0.4s var(--ease);
  cursor: pointer;
}
.flow-step.active { opacity: 1; }
.flow-step .pip {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  font-style: italic;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease);
}
.flow-step.active .pip {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(185,30,90,0.18);
}
.flow-step h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 4px;
  color: var(--white);
}
.flow-step.active h4 em { color: var(--accent-soft); font-style: italic; }
.flow-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.6;
  max-width: 38ch;
}

/* Right side: stage canvas with animated UI */
.flow-canvas {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-scene {
  position: absolute;
  inset: 28px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-scene.active { opacity: 1; }

.fake-wa {
  width: 100%;
  max-width: 320px;
  background: #0E1B17;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fake-wa .wa-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wa-avatar {
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
}
.wa-head .name {
  font-size: 0.82rem;
  color: var(--white);
}
.wa-head .stat {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: rgba(255,255,255,0.4);
  margin-left: auto;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.wa-bubble {
  background: rgba(29,175,83,0.16);
  border: 1px solid rgba(29,175,83,0.25);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  max-width: 85%;
  align-self: flex-end;
  line-height: 1.45;
}
.wa-bubble small {
  display: block;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  font-family: var(--mono);
}
.wa-bubble.in {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  align-self: flex-start;
}
.wa-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  align-self: flex-start;
  padding: 4px 0;
}
.wa-typing .d {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  animation: pulse 1.2s var(--ease) infinite;
}
.wa-typing .d:nth-child(2) { animation-delay: 0.2s; }
.wa-typing .d:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse { 50% { opacity: 0.2; transform: scale(0.85); } }

.fake-call {
  width: 100%;
  max-width: 260px;
  background: linear-gradient(180deg, #2d1a24 0%, #0E0A0C 100%);
  border-radius: 22px;
  padding: 40px 30px;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}
.fake-call .ring {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: ring 1.6s var(--ease) infinite;
}
.fake-call .ring::before, .fake-call .ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ringWave 1.6s var(--ease) infinite;
}
.fake-call .ring::after { animation-delay: 0.8s; }
@keyframes ringWave {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.8); }
}
@keyframes ring {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.96); }
}
.fake-call .who {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.fake-call .status {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.fake-call .waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 30px;
  margin-top: 20px;
}
.fake-call .bar {
  width: 3px;
  background: var(--accent-soft);
  border-radius: 2px;
  animation: wave 0.9s var(--ease) infinite;
}
.fake-call .bar:nth-child(1) { height: 10px; animation-delay: 0s; }
.fake-call .bar:nth-child(2) { height: 22px; animation-delay: 0.1s; }
.fake-call .bar:nth-child(3) { height: 14px; animation-delay: 0.2s; }
.fake-call .bar:nth-child(4) { height: 26px; animation-delay: 0.3s; }
.fake-call .bar:nth-child(5) { height: 12px; animation-delay: 0.15s; }
.fake-call .bar:nth-child(6) { height: 20px; animation-delay: 0.25s; }
.fake-call .bar:nth-child(7) { height: 16px; animation-delay: 0.35s; }
@keyframes wave { 50% { transform: scaleY(0.4); } }

.fake-pass {
  width: 100%;
  max-width: 280px;
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.fake-pass .e {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.fake-pass .nm {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.fake-pass .gst {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fake-pass .qr {
  width: 130px; height: 130px;
  margin: 0 auto 14px;
  background:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%) 0 0/14px 14px,
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%) 7px 7px/14px 14px,
    var(--white);
  border-radius: 8px;
  border: 2px solid var(--ink);
}
.fake-pass .det {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.fake-panel {
  width: 100%;
  max-width: 360px;
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.fake-panel .ph {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.fake-panel .pt {
  font-family: var(--serif);
  font-size: 1.05rem;
}
.fake-panel .live {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 6px;
}
.fake-panel .live::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.2s ease infinite;
}
@keyframes blink { 50% { opacity: 0.2; } }
.fake-panel .stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.fake-panel .st-cell {
  background: var(--bg);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.fake-panel .st-n {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
}
.fake-panel .st-n em { color: var(--accent); font-style: italic; }
.fake-panel .st-l {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.fake-panel .gst-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}
.fake-panel .gst-row .gn { color: var(--ink-2); }
.fake-panel .gst-row .badge-ok {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1DAF53;
  background: rgba(29,175,83,0.1);
  padding: 3px 8px;
  border-radius: 100px;
}
.fake-panel .gst-row .badge-pen {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  padding: 3px 8px;
  border-radius: 100px;
}

.flow-progress {
  display: flex;
  gap: 4px;
  margin-top: 28px;
  height: 2px;
}
.flow-progress .bar {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.flow-progress .bar .fill {
  height: 100%;
  background: var(--accent-soft);
  transform-origin: left;
  transform: scaleX(0);
}
.flow-progress .bar.active .fill {
  animation: fillBar 4s linear forwards;
}
.flow-progress .bar.done .fill { transform: scaleX(1); }
@keyframes fillBar {
  to { transform: scaleX(1); }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.svc {
  background: var(--bg);
  padding: 44px 36px;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.svc:hover { background: var(--white); }
.svc .idx {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--line-2);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
  font-style: italic;
}
.svc:hover .idx { color: var(--accent); }
.svc h3 { margin-bottom: 12px; }
.svc h3 em { color: var(--accent); font-style: italic; }
.svc p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 22px;
}
.svc .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.svc .tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(185,30,90,0.22);
  padding: 4px 9px;
  border-radius: 100px;
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing { background: var(--bg-2); }
.pricing-head {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-head .eyebrow { justify-content: center; }
.pricing-head .lead { margin: 22px auto 0; }
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.plan {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  background: var(--white);
  position: relative;
  transition: transform 0.3s var(--ease);
}
.plan:hover { transform: translateY(-3px); }
.plan.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.plan-tag {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.plan-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.plan-tag-line {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.55;
}
.plan.featured .plan-tag-line { color: rgba(255,255,255,0.6); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-price .cur {
  font-size: 1rem;
  color: var(--accent);
}
.plan.featured .cur { color: var(--accent-soft); }
.plan-price .amt {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-price .lbl {
  font-size: 0.85rem;
  color: var(--muted);
}
.plan.featured .lbl { color: rgba(255,255,255,0.5); }
.plan-note {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.plan.featured .plan-note { color: rgba(255,255,255,0.45); }
.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.plan.featured ul { border-top-color: rgba(255,255,255,0.12); }
.plan li {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.5;
}
.plan.featured li { color: rgba(255,255,255,0.7); }
.plan li::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 10px;
}
.plan.featured li::before { background: var(--accent-soft); }
.plan li.hl { color: var(--ink); font-weight: 400; }
.plan.featured li.hl { color: var(--white); }
.plan-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.plan:not(.featured) .plan-btn {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.plan:not(.featured) .plan-btn:hover { background: var(--ink); color: var(--white); }
.plan.featured .plan-btn {
  background: var(--white);
  color: var(--ink);
  font-weight: 500;
}
.plan.featured .plan-btn:hover { background: var(--accent-soft); }

/* =========================================================
   CASOS DE ÉXITO
   ========================================================= */
.cases-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 56px;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}
.case:hover { transform: translateY(-3px); }
.case-img {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(135deg, var(--line) 0 1px, var(--bg) 1px 9px);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
}
.case-img.b { background: repeating-linear-gradient(135deg, var(--accent-soft) 0 1px, var(--bg) 1px 9px); }
.case-img.c { background: repeating-linear-gradient(135deg, var(--gold-soft) 0 1px, var(--bg) 1px 9px); }
.case-img .placeholder-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  background: rgba(255,255,255,0.85);
  padding: 4px 8px;
  border-radius: 4px;
}
.case-body { padding: 28px 30px 32px; }
.case-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.case-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.2;
}
.case-title em { color: var(--accent); font-style: italic; }
.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.case-metric .n {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.case-metric .n em { color: var(--accent); font-style: italic; }
.case-metric .l {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.4;
}

/* =========================================================
   WEDDING PLANNERS B2B
   ========================================================= */
.planners {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.planners-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 70px;
}
.planners-head h2 { margin-bottom: 22px; }
.planners-head .lead { margin-bottom: 28px; max-width: 100%; }
.planners-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.planners-perks li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-2);
  align-items: baseline;
}
.planners-perks li::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
  top: -3px;
}
.planners-roi {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  background: var(--bg);
}
.roi-h {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.roi-q {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 22px;
}
.roi-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.roi-row:first-of-type { border-top: 0; padding-top: 0; }
.roi-row .k { font-size: 0.88rem; color: var(--ink-2); }
.roi-row .v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
}
.roi-row .v.big {
  font-size: 1.8rem;
  color: var(--ink);
}

.plan-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.plan-tier {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  background: var(--bg);
  text-align: center;
  transition: all 0.25s var(--ease);
}
.plan-tier:hover { border-color: var(--accent); background: var(--white); transform: translateY(-2px); }
.plan-tier.featured {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.plan-tier .tn {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.plan-tier.featured .tn { color: var(--accent-soft); }
.plan-tier .te {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.plan-tier.featured .te { color: rgba(255,255,255,0.7); }
.plan-tier .tp {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-tier .tp .cur { font-size: 0.95rem; color: var(--accent); }
.plan-tier.featured .tp .cur { color: var(--accent-soft); }
.plan-tier .tx {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.plan-tier.featured .tx { color: rgba(255,255,255,0.7); }
.plan-tier .td {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 14px;
}
.plan-tier.featured .td {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}
.planners-cta {
  text-align: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
}
.planners-cta p {
  font-size: 0.94rem;
  color: var(--ink-2);
  margin-bottom: 22px;
  line-height: 1.65;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.faq-head { position: sticky; top: 100px; align-self: flex-start; }
.faq-head h2 { margin-bottom: 20px; }
.faq-head .lead { margin-bottom: 24px; }
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .ic {
  width: 32px; height: 32px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--ink);
}
.faq-item.open .faq-q .ic {
  background: var(--ink);
  color: var(--bg);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner {
  padding-bottom: 28px;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 56ch;
  font-weight: 300;
}
.faq-item.open .faq-a { max-height: 400px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-head {
  text-align: center;
  margin-bottom: 64px;
}
.testi-head .eyebrow { justify-content: center; }
.testi-head h2 { margin-bottom: 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.testi .stars {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
}
.testi .q {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 28px;
  flex: 1;
}
.testi .person {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.testi .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: repeating-linear-gradient(45deg, var(--accent-soft) 0 2px, var(--bg) 2px 8px);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.testi .nm {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 400;
}
.testi .ev {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(185,30,90,0.18), transparent 60%);
  pointer-events: none;
}
.cta-wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta .eyebrow { color: var(--accent-soft); justify-content: center; }
.cta .eyebrow::before { background: var(--accent-soft); }
.cta h2 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}
.cta h2 em { color: var(--accent-soft); }
.cta .lead {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 40px;
  max-width: 48ch;
  text-align: center;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-note::before {
  content: '';
  width: 8px; height: 8px;
  background: #1DAF53;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(29,175,83,0.2);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand .mark em { color: var(--accent-soft); font-style: italic; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 32ch;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bot p, .footer-bot a {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  :root { --gutter: 24px; }
  section { padding: 90px 0; }
  .hero { padding-top: 120px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .phone-stage { min-height: auto; }
  .demo-grid { grid-template-columns: 1fr; gap: 56px; }
  .demo-stage { order: -1; }
  .versus-grid { grid-template-columns: 1fr; gap: 16px; }
  .vs-mark { display: none; }
  .flow-stage { grid-template-columns: 1fr; gap: 40px; }
  .flow-canvas { min-height: 360px; }
  .planners-head { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
  .services-grid, .cases-grid, .testi-grid, .plan-tiers { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --gutter: 20px; }
  section { padding: 72px 0; }
  .nav { padding: 14px 20px; }
  .nav-menu { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-cell { border-left: 0; padding-left: 0; }
  .trust-cell:nth-child(2n)  { border-left: 1px solid var(--line); padding-left: 20px; }
  .services-head, .cases-head, .pricing-head, .versus-head { grid-template-columns: 1fr; gap: 24px; }
  .services-grid, .cases-grid, .testi-grid, .plans, .plan-tiers, .footer-grid { grid-template-columns: 1fr; }
  .plans { gap: 28px; }
  .demo-phone { width: 280px; height: 580px; }
  .hero-callout.one { left: 4%; top: -10px; }
  .hero-callout.two { right: 4%; bottom: -10px; }
  .phone { width: 260px; height: 535px; }
  .svc { min-height: auto; }
  .plan { padding: 32px 24px; }
  .vs-card { padding: 28px 22px; }
  .flow-canvas { padding: 20px; min-height: 320px; }
}

/* ============================================================
   v3 ADDITIONS — RSVP fields, CallAgent flow, builder
   ============================================================ */

/* RSVP: quantity + message field */
.inv-rsvp .qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.inv-rsvp .qty-l {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.inv-rsvp .qty-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 4px 10px;
}
.inv-rsvp .qty-ctrl span {
  font-size: 0.95rem;
  line-height: 1;
  color: var(--accent-soft);
  width: 14px;
  text-align: center;
}
.inv-rsvp .qty-ctrl b {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  min-width: 14px;
  text-align: center;
}
.inv-rsvp .msg-field {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
}

/* Panel scene: call buttons */
.fake-panel .call-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  padding: 11px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px -8px rgba(185,30,90,0.5);
}
.fake-panel .gst-row .call-btn {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 4px 12px;
}

/* Call scene: keypad 1/2/3 */
.fake-call .keypad {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 18px;
  width: 100%;
}
.fake-call .key {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 9px 14px;
  text-align: left;
}
.fake-call .key b {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--accent-soft);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.fake-call .key span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
}

/* WhatsApp confirmation bubble */
.wa-bubble.confirm {
  align-self: stretch;
  background: rgba(29,175,83,0.1);
  border-color: rgba(29,175,83,0.28);
}
.wa-bubble.confirm strong { color: var(--white); }
.wa-actions {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 6px;
}
.wa-actions .wa-link {
  text-align: center;
  padding: 8px;
  font-size: 0.8rem;
  color: #5fd08a;
}
.wa-actions .wa-link:first-child { border-bottom: 1px solid rgba(255,255,255,0.08); }

/* Check-in scene */
.fake-checkin {
  width: 100%;
  max-width: 300px;
  background: #11261c;
  border: 1.5px solid rgba(95,208,138,0.5);
  border-radius: 20px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.fake-checkin .ci-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5fd08a;
  border: 1px solid rgba(95,208,138,0.4);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.fake-checkin .ci-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(95,208,138,0.16);
  color: #5fd08a;
  font-family: var(--serif);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.fake-checkin .ci-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.fake-checkin .ci-meta {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}
.fake-checkin .ci-cell {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 78px;
}
.fake-checkin .ci-cell b {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}
.fake-checkin .ci-cell span {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  display: block;
}
.fake-checkin .ci-welcome {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: #5fd08a;
}

/* Builder · Arma tu paquete */
.builder {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  padding: 44px;
  text-align: center;
  box-shadow: 0 30px 60px -40px rgba(26,20,24,0.25);
}
.builder-head .eyebrow { justify-content: center; }
.builder-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--t-h3);
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.builder-head h3 em { color: var(--accent); font-style: italic; }
.builder-head p {
  max-width: 56ch;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.builder-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 30px auto 30px;
  max-width: 720px;
}
.builder-chips .chip {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 8px 16px;
  background: var(--bg);
  transition: all 0.2s var(--ease);
}
.builder-chips .chip:hover { border-color: var(--accent); color: var(--accent); }
.builder-chips .chip.add {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}
@media (max-width: 720px) {
  .builder { padding: 32px 22px; }
  .builder-chips { gap: 8px; }
}

/* ============================================================
   v4 — Demo section index + scrolling invitation
   ============================================================ */
.demo-index {
  display: grid;
  gap: 0;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.sec-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.demo-index .sec-link:last-child { border-bottom: 0; }
.sec-link .idx {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  flex-shrink: 0;
}
.sec-link .nm {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--ink-2);
}
.sec-link:hover { background: var(--bg); }
.sec-link.active { background: var(--ink); }
.sec-link.active .idx { color: var(--accent-soft); }
.sec-link.active .nm { color: var(--white); font-style: italic; }
.demo-cta { margin-top: 2px; }

.demo-scroll {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 36px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.demo-scroll::-webkit-scrollbar { display: none; }
.demo-scroll .inv-section {
  min-height: 100%;
  justify-content: center;
  scroll-snap-align: start;
  padding-top: 58px;
}

/* invitation section pieces */
.inv-quote {
  margin-top: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 230px;
  line-height: 1.5;
}
.inv-cap {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.placeholder-tag {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.inv-story {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 250px;
  margin-top: 8px;
  text-align: left;
}
.inv-story .st-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.inv-story .st-item:last-child { border-bottom: 0; }
.inv-story .st-y {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent);
}
.inv-story .st-t {
  font-size: 0.82rem;
  color: var(--ink-2);
  line-height: 1.45;
}

.inv-where {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 250px;
  margin-top: 6px;
}
.wh-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  background: var(--bg);
  text-align: center;
}
.wh-card .wh-t {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.wh-card .wh-time {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1;
}
.wh-card .wh-pl {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}
.inv-map {
  width: 100%;
  max-width: 250px;
  height: 64px;
  margin-top: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, var(--line) 0 1px, var(--bg) 1px 9px);
}

.inv-dress {
  width: 100%;
  max-width: 250px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--bg), var(--white));
  text-align: center;
}
.dr-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.dr-swatches {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.dr-swatches span {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
}
.dr-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.inv-gifts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 250px;
  margin-top: 6px;
}
.inv-gifts .gf {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  background: var(--bg);
}
.inv-gifts .gf-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
}
.inv-gifts .gf-c {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.inv-hotel {
  width: 100%;
  max-width: 250px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.inv-hotel .ht-img {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(135deg, var(--gold-soft) 0 1px, var(--bg) 1px 9px);
}
.inv-hotel .ht-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 14px 16px 4px;
}
.inv-hotel .ht-note {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 16px 16px;
}

.inv-media {
  width: 100%;
  max-width: 250px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.md-player {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 16px;
  background: var(--bg);
}
.md-play {
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--accent);
  flex-shrink: 0;
}
.md-bar {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: var(--line);
  position: relative;
}
.md-bar span {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 40%;
  border-radius: 3px;
  background: var(--accent);
}
.md-song {
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.md-video {
  height: 128px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, var(--accent-soft) 0 1px, var(--bg) 1px 9px);
}
