/* ===== See Your Future Self — landing styles ===== */

/* HERO */
.fs-hero {
  padding: 28px 0 48px;
  background: linear-gradient(180deg, #F7EFE2 0%, #f3ece1 100%);
  position: relative;
  overflow: hidden;
}
.fs-hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(212,165,116,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.fs-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .fs-hero { padding: 72px 0 100px; }
  .fs-hero-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}
.fs-hero-text { text-align: center; }
@media (min-width: 960px) {
  .fs-hero-text { text-align: left; }
}
.fs-hero-text .eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.fs-hero-text h1 { margin-bottom: 20px; }
.fs-hero-text h1 em {
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 800;
}
.fs-hero-text .sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 540px;
}
@media (max-width: 959px) {
  .fs-hero-text .sub { margin-left: auto; margin-right: auto; }
}
.fs-hero-text .hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
@media (min-width: 540px) {
  .fs-hero-text .hero-ctas { flex-direction: row; }
}
@media (max-width: 959px) {
  .fs-hero-text .hero-ctas { justify-content: center; }
}
.fs-hero-text .stars { margin-bottom: 20px; }
.hero-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 959px) {
  .hero-bullets { align-items: center; }
}

/* HERO VISUAL — before/after slider */
.fs-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fs-hero-visual .caption {
  font-size: 0.86rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* Drag-to-reveal before/after slider */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  cursor: ew-resize;
  box-shadow: var(--shadow-lg);
  background: #2a1e16;
}
@media (min-width: 960px) {
  .ba-slider { aspect-ratio: 1 / 1; }
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-slider .ba-after {
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}
.ba-slider .ba-tag {
  position: absolute;
  top: 14px;
  z-index: 3;
  background: rgba(26,22,20,0.78);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-slider .ba-tag-now { left: 14px; }
.ba-slider .ba-tag-future { right: 14px; }

.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 14px rgba(0,0,0,0.45);
  will-change: left;
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  display: grid;
  place-items: center;
  z-index: 3;
  pointer-events: none;
  will-change: left;
}
.ba-knob::before,
.ba-knob::after {
  content: '';
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.ba-knob::before {
  border-right: 7px solid var(--ink);
  margin-right: 4px;
}
.ba-knob::after {
  border-left: 7px solid var(--ink);
  margin-left: 4px;
}

@media (min-width: 960px) {
  .ba-slider { max-width: none; }
}

/* Hero slider only — shrink on mobile so it doesn't dominate the fold. */
@media (max-width: 959px) {
  .fs-hero-visual .ba-slider { max-width: 70%; }
}

/* Showcase grid of multiple sliders */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}
.ba-grid .ba-slider { aspect-ratio: 4 / 5; }

/* ============================================
   3-STEP ONBOARDING FORM
   ============================================ */

.step-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px 18px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) {
  .step-form { padding: 32px 36px 40px; }
}

/* Progress bar */
.step-progress {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.step-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.step-counter {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.step-counter strong { color: var(--accent-dark); font-weight: 800; }
.step-microcopy {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}
@media (max-width: 540px) {
  .step-progress-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
  .step-microcopy { text-align: left; }
}
.step-progress-track {
  height: 6px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
}
.step-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 100%);
  border-radius: 999px;
  transition: width .5s cubic-bezier(.4, .2, .2, 1);
  box-shadow: 0 0 12px rgba(200,153,104,0.4);
}

/* Step panels with transitions */
.step-panel {
  display: none;
  animation: stepIn .4s cubic-bezier(.4, .2, .2, 1) both;
}
.step-panel.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-head { margin-bottom: 26px; }
.step-head h2 {
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  margin-bottom: 8px;
}
.step-head p { font-size: 1rem; color: var(--ink-soft); }

/* Step nav (buttons row) */
.step-nav {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.step-nav .btn { flex: 1; }
@media (min-width: 540px) {
  .step-nav { flex-direction: row; justify-content: space-between; }
  .step-nav .btn { flex: 0 1 auto; min-width: 140px; }
  .step-nav .btn-accent { margin-left: auto; }
}
.step-nav .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================
   STEP 1 — Upload card
   ============================================ */
.upload-card {
  display: block;
  position: relative;
  border: 2px dashed var(--line);
  border-radius: 20px;
  background: var(--bg-soft);
  padding: 36px 24px;
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
  margin-bottom: 16px;
}
.upload-card:hover {
  border-color: var(--accent);
  background: #fdf8f0;
}
.upload-card.drag {
  border-color: var(--accent);
  background: #fdf2e3;
  transform: scale(1.01);
}
.upload-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.upload-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  color: var(--accent-dark);
  box-shadow: var(--shadow);
  margin-bottom: 4px;
}
.upload-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.upload-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.upload-text span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.upload-hint {
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.upload-filled {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
.upload-filled img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}
.upload-remove {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s;
}
.upload-remove:hover { background: #000; }

.trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 14px 0 0;
}
.trust-line svg { color: var(--accent-dark); }

/* ============================================
   STEP 2 — Select cards (age + mood)
   ============================================ */
.select-grid {
  display: grid;
  gap: 10px;
}
.age-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 540px) { .age-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .age-grid { grid-template-columns: repeat(6, 1fr); } }

.mood-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 540px) { .mood-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px) { .mood-grid { grid-template-columns: repeat(5, 1fr); } }

.select-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  text-align: center;
  transition: all .15s ease;
  font-family: inherit;
  line-height: 1.25;
  min-height: 50px;
}
.select-card:hover {
  border-color: var(--accent);
  background: #fdf8f0;
  transform: translateY(-1px);
}
.select-card.selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 8px 22px rgba(26,22,20,0.22);
}

.mood-card {
  flex-direction: column;
  padding: 18px 12px;
  gap: 8px;
  min-height: 96px;
}
.mood-card .card-icon {
  font-size: 1.5rem;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  transition: background .15s;
}
.mood-card.selected .card-icon {
  background: rgba(255,255,255,0.15);
}
.mood-card .card-label {
  font-size: 0.86rem;
  font-weight: 600;
}

/* Live preview box */
.live-preview {
  margin-top: 28px;
  background: linear-gradient(135deg, #fdf8f0 0%, #f5e9d4 100%);
  border: 1px solid var(--accent-soft);
  border-radius: 16px;
  padding: 20px 22px;
  text-align: center;
}
.live-preview-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 6px;
}
.live-preview-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.live-preview-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* ============================================
   STEP 3 — Delivery packages
   ============================================ */
.same-quality {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
  font-style: italic;
}

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }

.pkg-card {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  cursor: pointer;
  text-align: center;
  transition: all .2s ease;
  font-family: inherit;
}
.pkg-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.pkg-card.selected {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fdf8f0 0%, #fff 100%);
  box-shadow:
    0 0 0 4px rgba(200,153,104,0.15),
    0 14px 32px rgba(200,153,104,0.22);
  transform: translateY(-2px);
}
.pkg-card.selected::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.5) 0%, transparent 30%),
    radial-gradient(circle at 80% 100%, rgba(212,165,116,0.25) 0%, transparent 30%);
  opacity: 0.7;
}
.pkg-card-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(200,153,104,0.4);
  z-index: 2;
}
.pkg-card-name {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.pkg-card-price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.pkg-card-time {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.consent-small {
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
  margin-top: 22px;
  line-height: 1.5;
}
.consent-small a { color: var(--accent-dark); text-decoration: underline; }

/* --- Discount code (compact, collapsible) --- */
.promo-toggle {
  margin-top: 18px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.promo-toggle > summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-align: center;
  padding: 6px 10px;
  user-select: none;
}
.promo-toggle > summary::-webkit-details-marker { display: none; }
.promo-toggle > summary::after {
  content: '+';
  display: inline-block;
  margin-left: 6px;
  transition: transform .2s ease;
}
.promo-toggle[open] > summary::after { content: '−'; }
.promo-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.promo-row input {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  background: #fff;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.promo-row input:focus {
  outline: none;
  border-color: var(--accent);
}
.promo-status {
  font-size: 0.78rem;
  color: var(--muted);
  min-height: 1.1em;
  flex-basis: 100%;
  text-align: center;
}
.promo-status.ok { color: #2f8a55; font-weight: 600; }
.promo-status.err { color: #c0392b; font-weight: 600; }

.final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.final-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}
.final-trust svg { color: var(--accent-dark); }

/* ============================================
   Loading overlay
   ============================================ */
.loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  z-index: 10;
  border-radius: 26px;
  animation: fadeIn .25s ease both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.loading-overlay p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}
.loading-fallback {
  font-size: 0.86rem !important;
  font-weight: 400 !important;
  color: var(--muted) !important;
  margin-top: 18px;
  animation: fallbackFadeIn 0s 2.5s both;
  opacity: 0;
}
.loading-fallback a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}
@keyframes fallbackFadeIn {
  to { opacity: 1; }
}
.loader-anim {
  display: flex;
  gap: 8px;
}
.loader-anim span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  animation: loaderBounce 1.2s infinite ease-in-out;
}
.loader-anim span:nth-child(2) { animation-delay: .15s; }
.loader-anim span:nth-child(3) { animation-delay: .3s; }
@keyframes loaderBounce {
  0%, 80%, 100% { transform: scale(0.5); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* ============================================
   Sticky CTA — in-form mode swaps button text
   ============================================ */
.sticky-cta.in-form {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   Success state (inline)
   ============================================ */
.step-success {
  text-align: center;
  padding: 20px 0 8px;
}
.step-success .success-heart {
  font-size: 3rem;
  margin-bottom: 16px;
  display: inline-block;
  animation: heartIn .6s cubic-bezier(.4,.2,.2,1) both;
}
@keyframes heartIn {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.step-success h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 12px;
}
.step-success .success-text {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 28px;
}
.success-summary {
  max-width: 460px;
  margin: 0 auto 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: left;
}
.success-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
.success-line:last-child { border-bottom: none; }
.success-line span {
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
}
.success-line strong {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}
.step-success .step-nav {
  justify-content: center;
}

/* TRUST BAR */
.trust-bar {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  align-items: center;
}
@media (min-width: 880px) {
  .trust-row {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
  }
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.trust-item strong {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.trust-item span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.3;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.14);
  margin: 0 auto;
  display: none;
}
@media (min-width: 880px) { .trust-divider { display: block; } }

/* Micro trust line under hero CTAs */
.micro-trust {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 959px) {
  .micro-trust { text-align: center; }
}

/* Examples grid with captions */
.ex-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 640px) { .ex-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .ex-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; } }
.ex-item { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ex-item .ba-slider { aspect-ratio: 4 / 5; }
.ex-item figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 4px;
}
.ex-item figcaption strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
}
.ex-item figcaption span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Pricing preview cards */
.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1020px;
  margin: 0 auto;
}
@media (min-width: 720px) { .preview-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.preview-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.preview-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.preview-card.preview-popular {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.p-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(200,153,104,0.35);
}
.p-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 6px;
}
.p-price {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--ink);
}
.p-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.p-features li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.94rem;
  border-bottom: 1px solid var(--line);
}
.p-features li:last-child { border-bottom: none; }
.p-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent);
  font-weight: 800;
}

/* Use cases */
.use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 720px) { .use-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.use-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}
.use-card .u-icon {
  font-size: 1.8rem;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: grid; place-items: center;
}
.use-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

/* Legal note */
.legal-note {
  text-align: center;
  margin: 32px auto 0;
  max-width: 580px;
  font-size: 0.84rem;
  color: var(--muted);
  font-style: italic;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(26,22,20,0.08);
  transition: transform .25s ease, opacity .2s ease;
}
.sticky-cta.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 760px) {
  .sticky-cta { display: none; }
}
@media (max-width: 759px) {
  body { padding-bottom: 88px; }
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 960px) { .gallery { gap: 22px; } }

.g-card {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.g-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.g-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.12) 0%, transparent 50%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.g-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.4);
  padding: 5px 10px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}
.g-1 { background: linear-gradient(135deg, #D3A45E 0%, #5a3a22 100%); }
.g-2 { background: linear-gradient(135deg, #a8794e 0%, #3a2418 100%); }
.g-3 { background: linear-gradient(135deg, #d4b094 0%, #6e4a30 100%); }
.g-4 { background: linear-gradient(135deg, #8b6a4a 0%, #2a1810 100%); }
.g-5 { background: linear-gradient(135deg, #e0b896 0%, #7a5538 100%); }
.g-6 { background: linear-gradient(135deg, #b08864 0%, #4a3020 100%); }

/* BENEFITS */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 600px) { .benefits { grid-template-columns: repeat(2, 1fr); } }

.benefit {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.benefit .b-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.benefit h3 { margin-bottom: 8px; font-size: 1.15rem; }
.benefit p { font-size: 0.96rem; }


/* PACKAGES */
.packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 760px) { .packages { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.pkg {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pkg:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pkg.popular {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(200,153,104,0.35);
}
.pkg-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.pkg-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pkg-tag {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.pkg-price {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1;
}
.pkg-price-meta {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex: 1;
}
.pkg-features li {
  padding: 9px 0 9px 28px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--accent);
  font-weight: 800;
}

.pkg-foot {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.88rem;
}
.pkg-foot strong { color: var(--ink); }

/* ============================================================
   ✦ CINEMATIC REPOSITIONING — Future Self
   ============================================================ */

.fs-cinematic {
  background: #0b0a0d;
  color: #f5f0e8;
}
.fs-cinematic body,
.fs-cinematic p { color: rgba(245, 240, 232, 0.78); }
.fs-cinematic h1, .fs-cinematic h2, .fs-cinematic h3, .fs-cinematic h4 {
  color: #faf6ef;
  font-family: 'Playfair Display', 'Inter', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.fs-cinematic a { color: inherit; }

/* ---- Nav glass ---- */
.nav.nav-glass {
  background: rgba(11, 10, 13, 0.6);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fs-cinematic .brand { color: #faf6ef; }
.fs-cinematic .brand span { color: #e8b87a; }
.fs-cinematic .nav-links a { color: rgba(245,240,232,0.78); }
.fs-cinematic .nav-links a:hover { color: #faf6ef; }
.fs-cinematic .mobile-menu { background: #0b0a0d; }
.fs-cinematic .mobile-menu a { color: rgba(245,240,232,0.85); border-color: rgba(255,255,255,0.06); }

/* ---- Buttons ---- */
.btn-cine {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8b87a 0%, #D3A45E 50%, #98682E 100%);
  color: #0b0a0d;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(232, 184, 122, 0.25), inset 0 0 0 1px rgba(255,255,255,0.2);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-cine:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 50px rgba(232, 184, 122, 0.4), inset 0 0 0 1px rgba(255,255,255,0.25);
  filter: brightness(1.05);
}
.btn-cine:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.btn-cine-lg { padding: 20px 36px; font-size: 1.1rem; }
.btn-cine.btn-block { display: flex; justify-content: center; width: 100%; }

.btn-cine-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  color: #f5f0e8;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-cine-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
}
.btn-cine-ghost.btn-block { display: flex; justify-content: center; width: 100%; }

/* ---- HERO ---- */
.cine-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.cine-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.cine-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 12s ease-in-out infinite;
}
.cine-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #e8b87a 0%, transparent 70%);
  top: -100px; left: -100px;
}
.cine-glow-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #9b7fc4 0%, transparent 70%);
  bottom: -200px; right: -150px;
  opacity: 0.35;
  animation-delay: -4s;
}
.cine-glow-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #5e9bcc 0%, transparent 70%);
  top: 30%; left: 40%;
  opacity: 0.2;
  animation-delay: -8s;
}
.cine-glow-final {
  width: 800px; height: 800px;
  background: radial-gradient(circle, #e8b87a 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}
@keyframes float {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(40px, -30px); }
}

.cine-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.cine-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8b87a;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
.cine-h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.04;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.cine-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 36px;
  color: rgba(245,240,232,0.72);
}
.cine-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cine-micro {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.02em;
}

/* Hero rotator */
.cine-hero-visual { position: relative; }
.cine-rotator {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.cine-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.cine-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05) saturate(1.05);
}
.cine-frame.active { opacity: 1; }
.cine-frame-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(11,10,13,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #faf6ef;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255,255,255,0.1);
}
.cine-frame-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,10,13,0.5) 100%);
  pointer-events: none;
}
.cine-visual-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  font-style: italic;
}

/* ---- Marquee ---- */
.cine-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  background: rgba(255,255,255,0.015);
}
.cine-marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(245,240,232,0.55);
  letter-spacing: 0.02em;
}
.cine-marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Sections ---- */
.cine-section { padding: 100px 0; position: relative; }
.cine-section-soft { background: rgba(255,255,255,0.02); }
.cine-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.cine-h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cine-section-sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.62);
  line-height: 1.5;
}

/* ---- Category grid ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease, border-color .35s ease;
}
.cat-card.reveal-in {
  opacity: 1;
  transform: translateY(0);
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .5s ease;
}
.cat-card:hover { border-color: rgba(232,184,122,0.4); }
.cat-card:hover .cat-card-bg {
  transform: scale(1.08);
  filter: brightness(1.1);
}
.cat-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(11,10,13,0.92) 70%);
  z-index: 2;
}
.cat-icon {
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #e8b87a;
}
.cat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: #faf6ef;
}
.cat-card p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.4;
}

/* Per-category gradient backgrounds */
.cat-career .cat-card-bg    { background: linear-gradient(135deg, #2a1810 0%, #6b3d1f 60%, #D3A45E 120%); }
.cat-family .cat-card-bg    { background: linear-gradient(135deg, #2a1620 0%, #6b3046 60%, #d68faa 120%); }
.cat-wealth .cat-card-bg    { background: linear-gradient(135deg, #1a1808 0%, #5b4f1a 60%, #e8c66d 120%); }
.cat-travel .cat-card-bg    { background: linear-gradient(135deg, #0c1c2a 0%, #1f4a6b 60%, #68a4c8 120%); }
.cat-healing .cat-card-bg   { background: linear-gradient(135deg, #1a1228 0%, #3d2868 60%, #9582d4 120%); }
.cat-fitness .cat-card-bg   { background: linear-gradient(135deg, #0e1a14 0%, #1c4030 60%, #5fa481 120%); }
.cat-luxury .cat-card-bg    { background: linear-gradient(135deg, #1a1410 0%, #3d2d1e 60%, #b9a48a 120%); }
.cat-couples .cat-card-bg   { background: linear-gradient(135deg, #1a0a18 0%, #4d1a3c 60%, #cc6e9c 120%); }

@media (max-width: 920px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; gap: 14px; }
  .cat-card { aspect-ratio: 4 / 3; }
}

/* ---- How it works ---- */
.cine-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.cine-step {
  text-align: center;
  padding: 32px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.cine-step.reveal-in { opacity: 1; transform: translateY(0); }
.cine-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #e8b87a;
  margin-bottom: 16px;
  line-height: 1;
}
.cine-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: #faf6ef;
}
.cine-step p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.5;
}
.cine-step-line {
  align-self: center;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,184,122,0.4), transparent);
  margin-top: 60px;
}
@media (max-width: 820px) {
  .cine-steps { grid-template-columns: 1fr; }
  .cine-step-line { display: none; }
}

/* ---- Reviews ---- */
.cine-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cine-review {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease, border-color .3s ease, background .3s ease;
}
.cine-review.reveal-in { opacity: 1; transform: translateY(0); }
.cine-review:hover {
  border-color: rgba(232,184,122,0.2);
  background: rgba(255,255,255,0.05);
}
.cine-review-stars {
  color: #e8b87a;
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.cine-review-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #faf6ef;
  margin-bottom: 20px;
  font-style: italic;
}
.cine-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cine-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0b0a0d;
  font-size: 0.95rem;
}
.cine-review-author strong {
  display: block;
  font-size: 0.92rem;
  color: #faf6ef;
  font-weight: 600;
}
.cine-review-author span {
  display: block;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.02em;
}
@media (max-width: 920px) {
  .cine-reviews { grid-template-columns: 1fr; }
}

/* ---- Viral / social proof ---- */
.viral-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.viral-phone {
  background: linear-gradient(135deg, #1a1820 0%, #0b0a0d 100%);
  border-radius: 28px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  aspect-ratio: 9 / 16;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.viral-phone.reveal-in { opacity: 1; transform: translateY(0); }
.viral-phone-screen {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #0b0a0d;
  display: flex;
  flex-direction: column;
}
.viral-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: rgba(11,10,13,0.7);
  backdrop-filter: blur(10px);
  color: #faf6ef;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}
.viral-img {
  flex: 1;
  background-size: cover;
  background-position: center;
}
.viral-img-1 { background: linear-gradient(135deg, #2a1810, #D3A45E); }
.viral-img-2 { background: linear-gradient(135deg, #1a1228, #9582d4); }
.viral-img-3 { background: linear-gradient(135deg, #0c1c2a, #68a4c8); }
.viral-caption {
  padding: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #faf6ef;
  font-style: italic;
  line-height: 1.3;
}
.viral-stats {
  padding: 0 14px 16px;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.55);
  letter-spacing: 0.04em;
}
@media (max-width: 820px) {
  .viral-grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* ---- Pricing ---- */
.cine-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.cine-price-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease, border-color .3s ease, background .3s ease;
}
.cine-price-card.reveal-in { opacity: 1; transform: translateY(0); }
.cine-price-card:hover {
  border-color: rgba(232,184,122,0.3);
}
.cine-price-popular {
  background: linear-gradient(180deg, rgba(232,184,122,0.08), rgba(232,184,122,0.02));
  border-color: rgba(232,184,122,0.35);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(232,184,122,0.1);
}
.cine-price-popular.reveal-in { transform: translateY(-8px); }
.cine-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e8b87a, #D3A45E);
  color: #0b0a0d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.cine-price-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #faf6ef;
  margin-bottom: 8px;
}
.cine-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 300;
  color: #faf6ef;
  line-height: 1;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.cine-price-currency {
  font-size: 1.5rem;
  margin-top: 6px;
  color: rgba(245,240,232,0.6);
}
.cine-price-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.cine-price-feat li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 22px;
  position: relative;
}
.cine-price-feat li:last-child { border-bottom: none; }
.cine-price-feat li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 10px;
  color: #e8b87a;
  font-size: 0.8rem;
}
.cine-price-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.5);
  font-style: italic;
}
@media (max-width: 920px) {
  .cine-pricing { grid-template-columns: 1fr; }
  .cine-price-popular { transform: none; }
  .cine-price-popular.reveal-in { transform: none; }
}

/* ---- FAQ ---- */
.cine-faq details {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.cine-faq summary {
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #faf6ef;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.cine-faq summary::-webkit-details-marker { display: none; }
.cine-faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  color: #e8b87a;
  transition: transform .3s ease;
}
.cine-faq details[open] summary::after { transform: rotate(45deg); }
.cine-faq details p {
  margin-top: 12px;
  color: rgba(245,240,232,0.7);
  line-height: 1.6;
}

/* ---- Final CTA ---- */
.cine-final {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cine-final-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.cine-final-h {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #faf6ef;
}
.cine-final-sub {
  font-size: 1.2rem;
  max-width: 580px;
  margin: 0 auto 40px;
  color: rgba(245,240,232,0.72);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 300;
}
.cine-final-micro {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.04em;
}

/* ---- Footer override on dark ---- */
.fs-cinematic footer {
  background: #0b0a0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(245,240,232,0.6);
}
.fs-cinematic footer h4 { color: #faf6ef; }
.fs-cinematic footer a { color: rgba(245,240,232,0.7); }
.fs-cinematic footer a:hover { color: #e8b87a; }
.fs-cinematic footer .brand { color: #faf6ef; }
.fs-cinematic footer .bottom { color: rgba(245,240,232,0.4); }

/* ---- Sticky CTA on dark ---- */
.sticky-cta.sticky-cta-cine {
  background: rgba(11,10,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   FORM PAGE — 5-STEP CINEMATIC
   ============================================================ */
.fs-cinematic.page-form { background: #0b0a0d; }

.cine-form-section {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 60px 0 100px;
  isolation: isolate;
}
.cine-form-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.cine-form-bg .cine-glow-1 {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  opacity: 0.25;
}
.cine-form-bg .cine-glow-2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  opacity: 0.2;
}

.cine-form {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  padding: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (max-width: 640px) {
  .cine-form { padding: 28px 20px; border-radius: 20px; }
}

/* Progress */
.cine-progress { margin-bottom: 40px; }
.cine-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.cine-progress-step {
  color: rgba(245,240,232,0.6);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.cine-progress-step strong { color: #e8b87a; font-weight: 700; }
.cine-progress-pct {
  color: #e8b87a;
  font-weight: 600;
}
.cine-progress-track {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.cine-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #e8b87a, #D3A45E);
  border-radius: 999px;
  transition: width .5s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 16px rgba(232,184,122,0.5);
}
.cine-progress-microcopy {
  margin-top: 14px;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.65);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* Panels */
.cine-panel {
  display: none;
  animation: panelFade .5s ease;
}
.cine-panel.active { display: block; }
@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.cine-panel-head {
  text-align: center;
  margin-bottom: 32px;
}
.cine-panel-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #faf6ef;
}
.cine-panel-head p {
  color: rgba(245,240,232,0.65);
  font-size: 1rem;
}

/* Upload */
.cine-upload {
  display: block;
  border: 1.5px dashed rgba(232,184,122,0.35);
  border-radius: 20px;
  padding: 48px 24px;
  cursor: pointer;
  text-align: center;
  background: rgba(232,184,122,0.03);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.cine-upload:hover,
.cine-upload.drag {
  border-color: rgba(232,184,122,0.7);
  background: rgba(232,184,122,0.06);
}
.cine-upload-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(232,184,122,0.12);
  display: grid;
  place-items: center;
  color: #e8b87a;
}
.cine-upload-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #faf6ef;
  margin-bottom: 4px;
}
.cine-upload-text span {
  color: rgba(245,240,232,0.55);
  font-size: 0.95rem;
}
.cine-upload-hint {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.04em;
}
.cine-upload-filled {
  position: relative;
}
.cine-upload-filled img {
  max-height: 360px;
  margin: 0 auto;
  border-radius: 12px;
  display: block;
}
.cine-upload-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(11,10,13,0.7);
  backdrop-filter: blur(8px);
  color: #faf6ef;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}
.cine-trust-line {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.55);
}

/* Theme grid */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.theme-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 14px;
  cursor: pointer;
  text-align: center;
  transition: all .3s ease;
  color: #faf6ef;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}
.theme-card:hover {
  border-color: rgba(232,184,122,0.4);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.theme-card.selected {
  border-color: #e8b87a;
  background: rgba(232,184,122,0.1);
  box-shadow: 0 0 0 1px #e8b87a, 0 10px 30px rgba(232,184,122,0.2);
}
.theme-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 0%, rgba(232,184,122,0.25), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.theme-card.selected .theme-card-glow { opacity: 1; }
.theme-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #e8b87a;
}
.theme-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Emotional questions */
.cine-question { margin-bottom: 24px; }
.cine-question label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #faf6ef;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.cine-question textarea,
.cine-question input[type="text"] {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 18px;
  color: #faf6ef;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  resize: vertical;
  transition: border-color .25s ease, background .25s ease;
}
.cine-question textarea:focus,
.cine-question input[type="text"]:focus {
  outline: none;
  border-color: rgba(232,184,122,0.5);
  background: rgba(255,255,255,0.06);
}
.cine-question textarea::placeholder,
.cine-question input::placeholder {
  color: rgba(245,240,232,0.32);
  font-style: italic;
}

/* Style grid */
.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.style-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: grid;
  place-items: end;
  padding: 14px;
}
.style-card:hover { transform: translateY(-2px); }
.style-card.selected {
  border-color: #e8b87a;
  box-shadow: 0 0 0 1px #e8b87a, 0 10px 30px rgba(232,184,122,0.25);
}
.style-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #faf6ef;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}
.style-cinematic   { background: linear-gradient(135deg, #1a0f08, #6b3d1f); }
.style-luxury      { background: linear-gradient(135deg, #1a1410, #8a6f4a); }
.style-cozy        { background: linear-gradient(135deg, #2a1810, #D3A45E); }
.style-emotional   { background: linear-gradient(135deg, #1a0a18, #6b2046); }
.style-peaceful    { background: linear-gradient(135deg, #0c1c2a, #5e9bcc); }
.style-vintage     { background: linear-gradient(135deg, #1a1408, #8a7548), repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px); }
.style-realistic   { background: linear-gradient(135deg, #1a1a1a, #5a5a5a); }
.style-futuristic  { background: linear-gradient(135deg, #0c0a1a, #4a3d7a, #8a7fc4); }
@media (max-width: 720px) {
  .style-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Package grid (form) */
.cine-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cine-pkg-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px 18px;
  cursor: pointer;
  text-align: left;
  transition: all .3s ease;
  color: #faf6ef;
  font-family: 'Inter', sans-serif;
}
.cine-pkg-card:hover {
  border-color: rgba(232,184,122,0.35);
  transform: translateY(-2px);
}
.cine-pkg-card.selected {
  border-color: #e8b87a;
  background: rgba(232,184,122,0.08);
  box-shadow: 0 0 0 1px #e8b87a, 0 12px 32px rgba(232,184,122,0.15);
}
.cine-pkg-badge {
  position: absolute;
  top: -10px;
  left: 18px;
  background: linear-gradient(135deg, #e8b87a, #D3A45E);
  color: #0b0a0d;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.cine-pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #faf6ef;
  margin-bottom: 6px;
}
.cine-pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #e8b87a;
  margin-bottom: 14px;
  line-height: 1;
}
.cine-pkg-feat {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cine-pkg-feat li {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
  padding: 4px 0 4px 16px;
  position: relative;
}
.cine-pkg-feat li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: rgba(232,184,122,0.7);
  font-size: 0.7rem;
}
@media (max-width: 720px) {
  .cine-pkg-grid { grid-template-columns: 1fr; }
}

/* Field row */
.cine-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.cine-field label {
  display: block;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.cine-field input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: #faf6ef;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color .25s ease;
}
.cine-field input:focus {
  outline: none;
  border-color: rgba(232,184,122,0.5);
}
@media (max-width: 600px) {
  .cine-field-row { grid-template-columns: 1fr; }
}

/* Promo */
.cine-promo {
  margin-top: 20px;
  font-size: 0.88rem;
}
.cine-promo summary {
  cursor: pointer;
  color: rgba(245,240,232,0.55);
  list-style: none;
  padding: 4px 0;
}
.cine-promo summary::-webkit-details-marker { display: none; }
.cine-promo summary:hover { color: #faf6ef; }
.cine-promo-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}
.cine-promo-row input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  color: #faf6ef;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cine-promo-row input:focus { outline: none; border-color: rgba(232,184,122,0.4); }
.cine-promo-status {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
}
.cine-promo-status.err { color: #ff7f6e; }

/* Consent + nav */
.cine-consent {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  text-align: center;
  line-height: 1.5;
}
.cine-consent a { color: rgba(232,184,122,0.75); text-decoration: underline; }
.cine-step-nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 32px;
}
.cine-step-nav .btn-cine,
.cine-step-nav .btn-cine-ghost { flex: 1; justify-content: center; }
.cine-final-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
}

/* Success */
.cine-success {
  text-align: center;
  padding: 40px 0;
}
.cine-success-mark {
  font-size: 3rem;
  color: #e8b87a;
  margin-bottom: 16px;
  animation: floatMark 3s ease-in-out infinite;
}
@keyframes floatMark {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.cine-success-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245,240,232,0.7);
  margin-bottom: 28px;
}
.cine-success-summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 0 auto 28px;
  max-width: 420px;
  text-align: left;
}
.cine-success-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
}
.cine-success-line:last-child { border-bottom: none; }
.cine-success-line span { color: rgba(245,240,232,0.55); }
.cine-success-line strong { color: #faf6ef; font-weight: 600; }

/* Sticky mobile CTA shown on form? hide on form */
.page-form .sticky-cta { display: none; }
