/* ============================================
   INVITA+ — Premium Landing Stylesheet
   Editorial design system. Mobile-first.
   ============================================ */

/* ---------- 1. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.logo-img{max-width:140px;}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 2. Design Tokens ---------- */
:root {
  /* Colors — refined palette, brand essence preserved */
  --bg: #FAF6EE;
  --bg-warm: #F4EDDF;
  --surface: #FFFFFF;
  --surface-2: #FBF8F1;
  --ink: #0E1A26;
  --ink-2: #2A3744;
  --muted: #5C6B78;
  --muted-2: #8694A1;
  --brand: #0F2A40;
  --brand-deep: #081C2D;
  --brand-soft: rgba(15, 42, 64, 0.08);
  --accent: #C9A961;
  --accent-deep: #A88A3F;
  --accent-soft: #EFE3C7;
  --success: #2D7B3F;
  --danger: #C33C3C;
  --border: rgba(14, 26, 38, 0.10);
  --border-soft: rgba(14, 26, 38, 0.06);

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing scale (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;
  --space-11: 12rem;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows — subtle, premium */
  --shadow-sm: 0 1px 2px rgba(15, 42, 64, 0.04), 0 1px 3px rgba(15, 42, 64, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 42, 64, 0.08), 0 2px 4px rgba(15, 42, 64, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(15, 42, 64, 0.18);
  --shadow-glow: 0 8px 32px rgba(201, 169, 97, 0.25);

  /* Container */
  --container: 1200px;
  --container-narrow: 880px;
  --container-wide: 1360px;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- 3. Typography (fluid) ---------- */
.display-1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw + 0.5rem, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-style: normal;
}
.display-1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand);
}
.display-2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw + 0.5rem, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display-2 em { font-style: italic; font-weight: 300; color: var(--brand); }
.display-3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.lead {
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
}
.body-lg { font-size: 1.0625rem; line-height: 1.65; color: var(--ink-2); }
.small { font-size: 0.875rem; color: var(--muted); }
.tiny { font-size: 0.75rem; letter-spacing: 0.04em; color: var(--muted-2); }
.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ---------- 4. Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.5rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  line-height: 1;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  position: relative;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--brand-deep); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { background: var(--accent-deep); color: #fff; box-shadow: var(--shadow-glow); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--bg); box-shadow: var(--shadow-md); }
.btn--lg { padding: 1.125rem 2rem; font-size: 1rem; }
.btn--xl { padding: 1.25rem 2.5rem; font-size: 1.0625rem; }
.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- 6. Header / Nav ---------- */
.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: var(--space-4);
  transition: background 0.3s var(--ease-out), backdrop-filter 0.3s, border-color 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--border);
  padding-block: var(--space-3);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
}
.nav__list { display: none; align-items: center; gap: var(--space-2); }
.nav__link {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  transition: background 0.2s, color 0.2s;
}
.nav__link:hover { background: var(--brand-soft); color: var(--ink); }
.nav__cta { display: none; gap: var(--space-2); align-items: center; }
.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
}
.nav__toggle-bars { width: 18px; height: 2px; background: currentColor; position: relative; transition: transform 0.3s; }
.nav__toggle-bars::before, .nav__toggle-bars::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor; transition: transform 0.3s, top 0.3s;
}
.nav__toggle-bars::before { top: -6px; }
.nav__toggle-bars::after { top: 6px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 6rem var(--gutter) 3rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-out);
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__list { display: grid; gap: var(--space-2); margin-bottom: var(--space-5); }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu__cta { display: grid; gap: var(--space-3); }

@media (min-width: 880px) {
  .nav__list { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .mobile-menu { display: none; }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 169, 97, 0.15), transparent 70%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(15, 42, 64, 0.06), transparent 70%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__top { text-align: center; max-width: 920px; margin-inline: auto; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 0.875rem 0.4rem 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.hero__badge-dot {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.75rem;
}
.hero__headline { margin-bottom: var(--space-5); }
.hero__sub { max-width: 620px; margin: 0 auto var(--space-6); }
.hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-4);
}
.hero__notes {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--muted);
}
.hero__notes li { display: inline-flex; align-items: center; gap: var(--space-2); }
.hero__notes svg { color: var(--success); flex-shrink: 0; }

.hero__preview {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
}
.hero__preview-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -20px rgba(15, 42, 64, 0.25), 0 12px 32px -8px rgba(15, 42, 64, 0.12);
  padding: clamp(0.75rem, 1.5vw, 1.5rem);
}
.hero__preview-img { border-radius: var(--r-lg); width: 100%; display: block; }
.hero__preview-tag {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.5rem 0.875rem 0.5rem 0.5rem;
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.hero__preview-tag .icon {
  width: 26px; height: 26px;
  border-radius: var(--r-pill);
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.hero__preview-tag.t-rsvp { top: 12%; left: -3%; }
.hero__preview-tag.t-qr { bottom: 18%; right: -4%; animation-delay: -3s; }
.hero__preview-tag.t-album { top: 38%; right: -5%; animation-delay: -1.5s; }
@media (min-width: 1100px) { .hero__preview-tag { display: inline-flex; } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- 8. Trust strip ---------- */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-6);
  background: var(--surface-2);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  align-items: center;
}
.trust__stat { text-align: center; }
.trust__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--brand);
  display: block;
  letter-spacing: -0.02em;
}
.trust__stat-num em { font-style: italic; font-weight: 300; }
.trust__stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: var(--space-2);
  letter-spacing: 0.02em;
}
@media (min-width: 720px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 9. Pain → Solution ---------- */
.pain {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pain::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(201, 169, 97, 0.12), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(201, 169, 97, 0.08), transparent 50%);
  pointer-events: none;
}
.pain__inner { position: relative; max-width: 880px; margin-inline: auto; text-align: center; }
.pain__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-5);
}
.pain__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  color: #fff;
}
.pain__headline strong { font-weight: 500; color: var(--accent); font-style: italic; }
.pain__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto var(--space-7);
  line-height: 1.6;
}
.pain__list {
  display: grid;
  gap: var(--space-4);
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}
.pain__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pain__item-x {
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  display: grid; place-items: center;
  background: rgba(195, 60, 60, 0.15);
  color: #ff8a8a;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.pain__item-arrow {
  display: block;
  color: var(--accent);
  margin-top: var(--space-2);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pain__item-arrow::before { content: "→ "; }
.pain__item-text { color: rgba(255, 255, 255, 0.95); font-size: 1.0625rem; }

/* ---------- 10. Benefits ---------- */
.benefits__head { text-align: center; max-width: 720px; margin: 0 auto var(--space-8); }
.benefits__head .eyebrow { margin-bottom: var(--space-4); }
.benefits__grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits__grid { grid-template-columns: repeat(4, 1fr); } }

.benefit {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-soft);
}
.benefit__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--brand);
  display: grid; place-items: center;
  font-size: 1.5rem;
}
.benefit__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.benefit__desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.6; }

/* ---------- 11. Showcase / Builder ---------- */
.showcase { background: var(--bg-warm); position: relative; overflow: hidden; }
.showcase__grid {
  display: grid;
  gap: var(--space-7);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .showcase__grid { grid-template-columns: 1fr 1.1fr; gap: var(--space-9); } }
.showcase__text .eyebrow { margin-bottom: var(--space-4); }
.showcase__text h2 { margin-bottom: var(--space-5); }
.showcase__chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-6); }
.chip {
  padding: 0.4rem 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-2);
}
.chip--filled { background: var(--ink); color: #fff; border-color: var(--ink); }

.showcase__device { position: relative; perspective: 2000px; }
.showcase__device-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: rotateY(-4deg) rotateX(3deg);
  transition: transform 0.6s var(--ease-out);
}
.showcase__device-frame:hover { transform: rotateY(0) rotateX(0); }
.showcase__device-frame img { display: block; width: 100%; }

/* ---------- 12. How it works ---------- */
.how__head { text-align: center; max-width: 720px; margin: 0 auto var(--space-8); }
.how__steps {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 880px) { .how__steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.15;
}
.step__desc { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; }
.step__time {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-4);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.02em;
}

/* ---------- 13. Feature deep-dives ---------- */
.features-section {
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 30% at 50% 0%, rgba(201, 169, 97, 0.06), transparent);
  pointer-events: none;
}
.features__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-9);
  position: relative;
}
.features__head .eyebrow { margin-bottom: var(--space-4); }
.features__grid {
  display: grid;
  gap: var(--space-6);
  position: relative;
}
.feature-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 880px) {
  .feature-card { grid-template-columns: 1.1fr 1fr; }
  .feature-card--reverse { grid-template-columns: 1fr 1.1fr; }
  .feature-card--reverse .feature-card__visual { order: 2; }
  .feature-card--reverse .feature-card__body { order: 1; }
}
.feature-card__visual {
  position: relative;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  min-height: 280px;
}
.feature-card__visual img {
  width: 100%;
  max-width: 480px;
}
.feature-card__body {
  padding: var(--space-6) var(--space-6) var(--space-7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (min-width: 880px) {
  .feature-card__body { padding: var(--space-7) var(--space-7) var(--space-8); }
}
.feature-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--accent-soft);
  letter-spacing: -0.04em;
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  opacity: 0.7;
}
@media (min-width: 880px) {
  .feature-card__num { font-size: 5rem; top: var(--space-6); right: var(--space-6); }
}
.feature-card__body .eyebrow { margin-bottom: var(--space-3); }
.feature-card__body .display-3 { margin-bottom: var(--space-4); }
.feature-card__body .body-lg { margin-bottom: var(--space-4); }
.feature-card__list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.feature-card__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: center;
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.4;
}
.feature-card__check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: var(--r-pill);
  background: var(--brand);
  color: #fff;
  font-size: 0.625rem;
  flex-shrink: 0;
}

/* ---------- 14. Comparison table ---------- */
.compare__head { text-align: center; max-width: 760px; margin: 0 auto var(--space-7); }
.compare__table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
.compare__table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare__table th, .compare__table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9375rem;
}
.compare__table thead th {
  background: var(--bg-warm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.compare__table thead th.us {
  background: var(--ink);
  color: #fff;
  position: relative;
}
.compare__table thead th.us::after {
  content: "Recomendado";
  position: absolute;
  top: -10px;
  right: var(--space-4);
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare__table tbody tr:last-child td { border-bottom: 0; }
.compare__table .label { font-weight: 600; color: var(--ink); }
.compare__table .yes { color: var(--success); font-weight: 600; }
.compare__table .no { color: var(--danger); font-weight: 600; }
.compare__table .meh { color: var(--muted); }
.compare__table td.us { background: rgba(15, 42, 64, 0.03); }

/* ---------- 15. Pricing ---------- */
.pricing { background: var(--bg-warm); }
.pricing__head { text-align: center; max-width: 720px; margin: 0 auto var(--space-8); }

.pricing__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 920px;
  margin-inline: auto;
}
@media (min-width: 880px) { .pricing__main { grid-template-columns: 1.1fr 1fr; } }

.pricing__hero-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--space-7);
  position: relative;
  overflow: hidden;
}
.pricing__hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(201, 169, 97, 0.15), transparent 60%);
  pointer-events: none;
}
.pricing__hero-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: var(--space-5);
  position: relative;
}
.pricing__hero-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  color: #fff;
  position: relative;
}
.pricing__hero-card h3 em { font-style: italic; font-weight: 300; color: var(--accent); }
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  position: relative;
}
.pricing__price-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
}
.pricing__price-cur { color: var(--accent); font-size: 1.25rem; font-weight: 600; }
.pricing__price-after { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; }
.pricing__features { display: grid; gap: var(--space-3); margin-bottom: var(--space-6); position: relative; }
.pricing__features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
}
.pricing__features svg { color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.pricing__cta { position: relative; }

.pricing__addons { display: grid; gap: var(--space-4); }
.addon {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: var(--space-5);
}
.addon__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}
.addon__desc { font-size: 0.875rem; color: var(--muted); margin-bottom: var(--space-3); }
.addon__price { font-weight: 700; color: var(--brand); font-size: 1.0625rem; }

/* Album plans grid */
.album-plans {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  margin-top: var(--space-7);
}
@media (min-width: 600px) { .album-plans { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .album-plans { grid-template-columns: repeat(4, 1fr); } }

.plan {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan--featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow-glow);
}
.plan--featured::before {
  content: "Más popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.plan__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.plan__price small { font-family: var(--font-body); font-size: 0.875rem; color: var(--muted); font-weight: 500; }
.plan__duration {
  font-size: 0.8125rem;
  color: var(--muted-2);
  margin-top: var(--space-2);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-soft);
}
.plan__list { display: grid; gap: var(--space-2); font-size: 0.875rem; color: var(--ink-2); flex-grow: 1; }
.plan__list li { display: flex; gap: var(--space-2); align-items: center; }
.plan__list .yes { color: var(--success); }
.plan__list .no { color: var(--muted-2); }

/* ---------- 16. Big Testimonial ---------- */
.testimonial-hero { background: var(--ink); color: #fff; }
.testimonial-hero__inner {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .testimonial-hero__inner { grid-template-columns: 1fr 1.5fr; gap: var(--space-9); }
}
.testimonial-hero__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--brand-deep);
}
.testimonial-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-hero__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-5);
}

.testimonial-hero__attr { display: flex; flex-direction: column; gap: var(--space-1); }
.testimonial-hero__name { font-size: 1.0625rem; font-weight: 600; color: #fff; }
.testimonial-hero__role { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- 17. Reviews grid ---------- */
.reviews__head { text-align: center; max-width: 720px; margin: 0 auto var(--space-7); }
.reviews__grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.review__stars { color: var(--accent); font-size: 0.9375rem; letter-spacing: 0.1em; }
.review__text {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.65;
  flex-grow: 1;
}
.review__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-soft);
}
.review__avatar {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  object-fit: cover;
  background: var(--bg-warm);
}
.review__name { font-weight: 600; color: var(--ink); font-size: 0.9375rem; line-height: 1.2; }
.review__event { font-size: 0.8125rem; color: var(--muted); }

/* ---------- 18. FAQ ---------- */
.faq__head { text-align: center; max-width: 700px; margin: 0 auto var(--space-7); }
.faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: var(--space-3);
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq__item[open] { border-color: var(--brand); box-shadow: var(--shadow-md); }
.faq__summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: var(--r-pill);
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  transition: transform 0.3s, background 0.2s;
  font-size: 0.875rem;
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
}
.faq__body {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--ink-2);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---------- 19. Final CTA ---------- */
.final-cta { padding-block: clamp(4rem, 9vw, 7rem); }
.final-cta__card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 169, 97, 0.18), transparent 70%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(201, 169, 97, 0.1), transparent 70%);
  pointer-events: none;
}
.final-cta__inner { position: relative; max-width: 720px; margin-inline: auto; }
.final-cta__eyebrow {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(201, 169, 97, 0.18);
  color: var(--accent);
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: var(--space-5);
}
.final-cta__headline em { font-style: italic; font-weight: 300; color: var(--accent); }
.final-cta__sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto var(--space-7);
  line-height: 1.55;
}
.final-cta__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-5);
}
.final-cta__notes {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ---------- 20. Footer ---------- */
.footer {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.75);
  padding-block: var(--space-8) var(--space-5);
}
.footer__grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--space-6); } }
.footer__brand-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.footer__about { font-size: 0.875rem; line-height: 1.6; max-width: 320px; margin-bottom: var(--space-5); }
.footer__social { display: flex; gap: var(--space-2); }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  display: grid; place-items: center;
  color: #fff;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}
.footer__social a:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); }
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-4);
}
.footer__col ul { display: grid; gap: var(--space-2); }
.footer__col a { font-size: 0.875rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- 21. WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: var(--r-pill);
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out);
  font-size: 1.5rem;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: var(--r-pill);
  border: 2px solid #25D366;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* ---------- 22. Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 23. Misc helpers ---------- */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
