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

/* HERO */
.fs-hero {
  padding: 28px 0 48px;
  background: linear-gradient(180deg, #faf6f0 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; }
}

/* 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, #c89968 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); }
