/*
 * ═══════════════════════════════════════════════════════════════════
 *  DIJITALBUM LANDING — landing.css
 *
 *  All styles for index.html (landing page + onboarding modal).
 *  Requires theme.css to be linked first for design tokens.
 *  Font faces (Nunito + Playfair Display) must be loaded via <link>
 *  in the page <head>.
 * ═══════════════════════════════════════════════════════════════════
 */

/* ── Reset ──────────────────────────────────────────────────────── */
*, ::after, ::before { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 88px 0; }

/* ── Shared section headings ────────────────────────────────────── */
.section-tag {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--rose); margin-bottom: 14px; text-align: center;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7em, 3.5vw, 2.5em);
  font-weight: 700; text-align: center;
  color: var(--text); margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-title em  { color: var(--rose); font-style: italic; }
.section-subtitle  {
  text-align: center; color: var(--text-mid); font-size: 1em;
  max-width: 520px; margin: 0 auto 52px; line-height: 1.8;
}
.section-label { display: none; }

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,246,240,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
  font-family: var(--font-heading); font-style: italic;
  font-size: 19px; font-weight: 400;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.navbar-logo:hover { opacity: 0.8; }
.logo-rose    { color: var(--rose); }
.navbar-title { display: none; }
.navbar-actions { display: flex; align-items: center; gap: 8px; }
.nav-btn {
  padding: 8px 20px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: all 0.2s; border: none;
  font-family: var(--font-body);
}
.nav-btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-m);
  color: var(--text);
}
.nav-btn-outline:hover { background: var(--blush); border-color: var(--rose); }
.nav-btn-solid {
  background: var(--rose); color: #fff;
  box-shadow: 0 2px 10px rgba(212,132,122,0.30);
}
.nav-btn-solid:hover { background: var(--rose-dark); transform: translateY(-1px); }

/* Profile / hamburger menu */
.profile-menu { position: relative; }
.profile-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text); width: 40px; height: 40px;
  border-radius: var(--radius-sm); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px; transition: all 0.2s; padding: 0;
}
.profile-btn:hover { background: var(--blush); }
.profile-btn .bar { width: 16px; height: 1.5px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.profile-btn.open .bar:first-child  { transform: translateY(5.5px) rotate(45deg); }
.profile-btn.open .bar:nth-child(2) { opacity: 0; }
.profile-btn.open .bar:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + 8px); right: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-modal); border: 1px solid var(--border);
  min-width: 220px; overflow: hidden; z-index: 200;
}
.dropdown-menu.open { display: block; }
.dropdown-header { padding: 14px 18px; background: var(--blush); border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-soft); font-weight: 600; }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 12px 18px; color: var(--text); text-decoration: none; font-size: 13px; transition: background 0.15s; }
.dropdown-item:hover  { background: var(--blush); }
.dropdown-item.danger { color: #dc2626; }
.dropdown-divider { height: 1px; background: var(--border); }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero-wrapper {
  position: relative; overflow: hidden;
  background: var(--grad-hero);
}
.hero {
  position: relative; text-align: center;
  padding: 60px 24px 48px;
  max-width: 860px; margin: 0 auto; z-index: 1;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--rose); margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 400; color: var(--text);
  line-height: 1.15; margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero p {
  font-size: 16px; font-weight: 300;
  color: var(--text-mid); max-width: 440px;
  margin: 0 auto 28px; line-height: 1.7;
}
.hero-hint { font-size: 11px; font-weight: 300; color: var(--text-soft); margin-top: 12px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Hero buttons */
.btn-hero {
  padding: 15px 36px; font-size: 15px; border: none;
  border-radius: var(--radius-pill); cursor: pointer;
  transition: all 0.25s ease; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); letter-spacing: 0.2px;
}
.btn-hero-primary  { background: var(--rose); color: #fff; box-shadow: var(--shadow-cta); }
.btn-hero-primary:hover  { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,132,122,0.48); }
.btn-hero-secondary { background: var(--white); color: var(--text); border: 1.5px solid var(--border-m); box-shadow: var(--shadow-card); }
.btn-hero-secondary:hover { background: var(--blush); transform: translateY(-2px); }

/* Social proof */
.social-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap; margin-top: 36px;
}
.proof-stat { text-align: center; }
.proof-stat strong { display: block; font-family: var(--font-heading); font-size: 1.4em; color: var(--text); font-weight: 400; line-height: 1; margin-bottom: 2px; }
.proof-stat span   { font-size: 11px; color: var(--text-soft); }

/* ── Hero Phone Mockup ──────────────────────────────────────────── */
.hero-phone-wrap { width: 460px; max-width: 90vw; margin: 48px auto 0; position: relative; }
.hero-notif {
  position: absolute; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 8px 13px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 18px rgba(61,43,38,0.10);
  font-size: 11px; font-weight: 600; color: var(--text);
  white-space: nowrap; z-index: 3;
}
.hero-notif-tl { top: 15%; left: 2%; animation: floatA 4s ease-in-out infinite; }
.hero-notif-mr { top: 42%; right: 2%; animation: floatB 4.5s ease-in-out infinite; }
.hero-notif-bl { bottom: 12%; left: 2%; animation: floatA 5s ease-in-out infinite 1s; }
.notif-time { font-size: 9px; font-weight: 300; color: var(--text-soft); margin-top: 1px; }

.hero-phone {
  background: var(--white); border-radius: 36px;
  border: 6px solid var(--text);
  box-shadow: var(--shadow-modal);
  overflow: hidden; width: 220px; margin: 0 auto;
}
.hero-phone-screen { background: var(--cream); padding: 0 0 12px; }
.hero-phone-header {
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 100%);
  padding: 12px 12px 10px; text-align: center;
}
.hero-phone-name { font-family: var(--font-heading); font-style: italic; font-size: 13px; color: var(--text); }
.hero-phone-date { font-size: 8px; font-weight: 300; color: var(--text-soft); letter-spacing: 1.5px; margin-top: 2px; }
.hero-phone-feed { padding: 8px 8px 0; display: flex; flex-direction: column; gap: 6px; }
.hero-feed-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-card); position: relative;
}
.hero-feed-thumb { height: 72px; }
.hero-feed-badge {
  position: absolute; top: 5px; right: 5px;
  background: rgba(253,246,240,0.92); border-radius: var(--radius-pill);
  padding: 2px 6px; font-size: 8px; font-weight: 600; color: var(--rose);
  display: flex; align-items: center; gap: 3px;
}
.hero-feed-info    { padding: 5px 8px; display: flex; align-items: center; justify-content: space-between; }
.hero-feed-avatar  { width: 18px; height: 18px; border-radius: 50%; background: var(--blush); margin-right: 5px; flex-shrink: 0; }
.hero-feed-name    { font-size: 9px; font-weight: 600; color: var(--text); flex: 1; }
.hero-feed-hearts  { font-size: 10px; }

@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }
@keyframes fadeInCard { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }

/* ── How It Works ───────────────────────────────────────────────── */
.how-section { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow-soft);
}
.step-number {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1em; font-weight: 700;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(212,132,122,0.32);
}
.step-emoji { font-size: 2em; margin-bottom: 12px; display: block; }
.step-card h3 { font-family: var(--font-heading); color: var(--text); margin-bottom: 8px; font-size: 1.05em; font-weight: 400; }
.step-card p  { color: var(--text-mid); font-size: 13px; line-height: 1.65; margin-bottom: 14px; font-weight: 300; }
.step-pill    { display: inline-block; background: var(--blush); border: 1px solid var(--border-m); color: var(--rose-dark); padding: 4px 14px; border-radius: var(--radius-pill); font-size: 10px; font-weight: 600; }

/* ── QR Demo ────────────────────────────────────────────────────── */
.qr-demo-dark { background: var(--cream-d); padding: 80px 40px; text-align: left; }
.qr-demo-dark-card {
  background: #3B2318;
  border-radius: 32px;
  padding: 56px 64px;
  max-width: 980px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  box-shadow: 0 28px 80px rgba(61,43,38,0.22);
  position: relative;
  overflow: hidden;
}
.qr-demo-dark-card::before {
  content: '🌸';
  position: absolute; top: 24px; right: 200px;
  font-size: 72px; opacity: 0.06; pointer-events: none;
}
.qr-demo-left  { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.qr-demo-right { display: flex; flex-direction: column; align-items: center; gap: 18px; flex-shrink: 0; }
.qr-real-img   { width: 156px; height: 156px; border-radius: 14px; display: block; border: 3px solid rgba(255,252,250,0.12); }
.qr-gallery-caption { font-size: 0.76em; color: rgba(255,252,250,0.42); letter-spacing: 0.5px; }
.btn-scan-demo {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,252,250,0.1); color: rgba(255,252,250,0.82);
  padding: 10px 20px; border-radius: 100px;
  font-weight: 600; font-size: 0.82em;
  text-decoration: none; border: 1px solid rgba(255,252,250,0.2);
  font-family: var(--font-body); transition: all 0.2s; white-space: nowrap;
}
.btn-scan-demo:hover { background: rgba(255,252,250,0.18); }

/* ── Features ───────────────────────────────────────────────────── */
.features-section { background: var(--cream-d); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card {
  background: var(--white); padding: 24px 20px;
  border-radius: 20px; border: 1px solid var(--border);
  transition: all 0.25s; box-shadow: var(--shadow-card);
}
.feature-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.feature-icon    { font-size: 1.75em; margin-bottom: 12px; display: block; }
.feature-card h3 { font-family: var(--font-heading); color: var(--text); margin-bottom: 7px; font-size: 16px; font-weight: 400; }
.feature-card p  { color: var(--text-mid); font-size: 13px; line-height: 1.65; font-weight: 300; }
.feature-tag     { display: inline-block; margin-top: 10px; background: linear-gradient(135deg, var(--blush), #fff0ed); color: var(--rose); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-pill); }

/* ── Loading Preview (modal) ────────────────────────────────────── */
.loading-preview { border-radius: var(--radius-md); overflow: hidden; height: 120px; position: relative; margin-bottom: 16px; }
.loading-preview-inner { position: absolute; inset: 0; background: rgba(0,0,0,0.18); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.loading-preview-name { font-family: var(--font-heading); font-style: italic; font-size: 20px; color: #fff; }
.loading-preview-date { font-size: 10px; color: rgba(255,255,255,0.8); margin-top: 4px; letter-spacing: 1px; }
.loading-msg      { font-size: 13px; font-weight: 300; color: var(--text-soft); margin-bottom: 14px; }
.loading-pill-row { font-size: 12px; font-weight: 500; padding: 7px 14px; border-radius: var(--radius-pill); transition: all 0.4s; margin-bottom: 7px; }
.loading-pill-row.pending { background: var(--cream); border: 1px solid var(--border); color: var(--text-soft); opacity: 0.35; }
.loading-pill-row.done    { background: var(--green-bg); border: 1px solid rgba(107,174,138,0.35); color: var(--green); opacity: 1; }

/* ── Pricing ────────────────────────────────────────────────────── */
.pricing-section { padding: 88px 0; background: var(--cream-d); }
.pricing-cards {
  display: flex; gap: 20px;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-left: 12px;
  padding: 8px 12px 16px; margin: 0 auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
}
.pricing-cards::-webkit-scrollbar { display: none; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: all 0.25s; position: relative;
  min-width: clamp(280px, 34vw, 360px); flex: 0 0 auto;
  scroll-snap-align: start; box-shadow: var(--shadow-card);
}
.pricing-card.featured { border-color: var(--rose); border-width: 2px; box-shadow: 0 12px 48px rgba(212,132,122,0.18); }
.pricing-card.featured::before { content: "EN POPÜLER"; position: absolute; top: 18px; right: 18px; background: var(--rose); color: #fff; padding: 4px 14px; border-radius: var(--radius-pill); font-size: 10px; font-weight: 700; letter-spacing: 0.8px; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-modal); }
.pricing-header { padding: 32px 28px 16px; }
.pricing-package-icon { font-size: 1.7em; margin-bottom: 10px; display: block; }
.pricing-header h3 { font-family: var(--font-heading); font-size: 1.3em; margin-bottom: 4px; color: var(--text); font-weight: 700; }
.pricing-tagline { color: var(--text-soft); font-size: 13px; margin-bottom: 16px; }
.price        { font-family: var(--font-heading); font-size: 2.5em; font-weight: 700; color: var(--text); letter-spacing: -1px; line-height: 1; }
.price-period { font-size: 13px; color: var(--text-soft); margin-top: 4px; }
.price-sup    { font-size: 0.5em; opacity: 0.6; }
.pricing-divider { height: 1px; background: var(--border); margin: 20px 28px 0; }
.pricing-body  { padding: 16px 28px 0; }
.feature-list  { list-style: none; margin-bottom: 24px; }
.feature-list li { padding: 9px 0; color: var(--text-mid); display: flex; align-items: center; gap: 10px; font-size: 13px; border-bottom: 1px solid var(--border); }
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: "✦"; color: var(--rose); font-size: 10px; font-weight: 700; flex-shrink: 0; }
.feature-list li.unavailable { opacity: 0.38; }
.feature-list li.unavailable::before { content: "—"; color: var(--text-soft); }
.pricing-footer { padding: 0 28px 28px; }
.btn-package {
  width: 100%; padding: 13px; text-align: center;
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 700;
  text-decoration: none; display: block; transition: all 0.2s;
  font-family: var(--font-body); border: 1.5px solid var(--border-m);
  background: var(--white); color: var(--text);
}
.btn-package:hover { background: var(--blush); }
.pricing-card.featured .btn-package { background: var(--rose); color: #fff; border-color: var(--rose); box-shadow: 0 4px 14px rgba(212,132,122,0.30); }
.pricing-card.featured .btn-package:hover { background: var(--rose-dark); }

/* ── Testimonials ───────────────────────────────────────────────── */
.testimonials-section { background: var(--cream); padding: 88px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card {
  background: var(--white); border-radius: 20px;
  padding: 22px 20px; border: 1px solid var(--border);
  box-shadow: var(--shadow-card); transition: all 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.testimonial-stars  { color: var(--rose); font-size: 12px; margin-bottom: 10px; letter-spacing: 1px; }
.testimonial-quote  { font-size: 1.5em; color: var(--blush); line-height: 0; vertical-align: -6px; margin-right: 2px; }
.testimonial-text   { font-family: var(--font-heading); font-style: italic; color: var(--text-mid); font-size: 13px; line-height: 1.65; margin-bottom: 14px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--blush); flex-shrink: 0; }
.testimonial-name   { font-weight: 600; font-size: 13px; color: var(--text); }
.testimonial-role   { font-size: 11px; font-weight: 300; color: var(--text-soft); }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-section   { max-width: 680px; margin: 0 auto; }
.faq-item      { border-bottom: 1px solid var(--border); }
.faq-question  {
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--rose); }
.faq-question h3 { font-size: 15px; font-weight: 600; margin: 0; color: inherit; }
.faq-toggle      { font-size: 1em; color: var(--text-soft); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-toggle.open { transform: rotate(180deg); }
.faq-answer      { padding: 0 0 22px; color: var(--text-mid); font-size: 13px; line-height: 1.75; display: none; }
.faq-answer.show { display: block; }

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner { background: var(--grad-cta); padding: 80px 24px; text-align: center; color: var(--text); }
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400; margin-bottom: 14px; line-height: 1.25;
}
.cta-banner h2 em { font-style: italic; color: var(--rose); }
.cta-banner p {
  color: var(--text-mid); margin-bottom: 36px; font-size: 16px;
  max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.cta-banner .btn-cta {
  background: var(--rose); color: #fff;
  padding: 15px 44px; border-radius: var(--radius-pill);
  font-weight: 700; text-decoration: none; font-size: 15px;
  display: inline-block; transition: all 0.2s;
  font-family: var(--font-body); box-shadow: var(--shadow-cta);
  letter-spacing: 0.2px; border: none; cursor: pointer;
}
.cta-banner .btn-cta:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(212,132,122,0.52); }
.trust-badges { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 36px; }
.trust-badge  { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-soft); font-weight: 600; }

/* ── Footer ─────────────────────────────────────────────────────── */
footer {
  background: var(--white); color: var(--text-soft);
  text-align: center; padding: 36px 24px;
  border-top: 1px solid var(--border);
}
.footer-logo { font-family: var(--font-heading); font-style: italic; font-size: 20px; color: var(--text); display: block; margin-bottom: 10px; font-weight: 400; }
footer p { margin-bottom: 8px; font-size: 13px; }
footer a { color: var(--text-soft); text-decoration: none; margin: 0 14px; font-size: 13px; transition: color 0.2s; }
footer a:hover { color: var(--rose); }

/* ── Onboarding Modal ───────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(44,20,16,0.5); backdrop-filter: blur(6px);
  align-items: flex-start; justify-content: center;
  padding: 5vh 16px 16px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white); border-radius: var(--radius-xl);
  width: 100%; max-width: 420px; max-height: 85vh;
  overflow-y: auto; box-shadow: var(--shadow-modal);
  position: relative; border: 1px solid var(--border);
  margin: auto;
}
.modal-header {
  padding: 24px 28px 18px; text-align: center;
  position: sticky; top: 0; background: var(--white);
  z-index: 2; border-bottom: 1px solid var(--border);
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--blush); border: 1px solid var(--border);
  color: var(--text-mid); width: 28px; height: 28px;
  border-radius: 50%; cursor: pointer; font-size: 13px;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.modal-close:hover { background: var(--border-m); color: var(--text); }
.modal-logo { font-family: var(--font-heading); font-size: 1.1em; color: var(--rose-dark); font-weight: 700; margin-bottom: 12px; }

/* Progress dots */
.dots { display: flex; justify-content: center; gap: 6px; }
.dot       { height: 6px; width: 6px; border-radius: 3px; background: var(--blush); transition: all 0.3s; flex-shrink: 0; }
.dot.active { background: var(--rose); width: 20px; }
.dot.done   { background: rgba(212,132,122,0.4); width: 6px; }

.modal-body { padding: 28px 22px 24px; }

/* Modal headings */
.modal-step-title { font-family: var(--font-heading); font-size: 21px; font-weight: 700; color: var(--text); margin-bottom: 8px; text-align: center; }
.modal-step-title em { font-style: italic; color: var(--rose); }
.modal-step-sub { color: var(--text-soft); font-size: 13px; font-weight: 300; text-align: center; margin-bottom: 28px; line-height: 1.7; }

/* Event type selector */
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.type-btn {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px 12px;
  text-align: center; cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body);
}
.type-btn:hover, .type-btn.selected { border-color: var(--rose); background: var(--blush); }
.type-btn .type-icon  { font-size: 1.8em; margin-bottom: 8px; display: block; }
.type-btn .type-label { font-size: 13px; font-weight: 700; color: var(--text); }

/* Form inputs */
.modal-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--text); background: var(--cream);
  outline: none; transition: all 0.2s; margin-bottom: 8px;
}
.modal-input:focus { border-color: var(--rose); background: var(--white); box-shadow: 0 0 0 3px rgba(212,132,122,0.12); }
.modal-input-hint { font-size: 13px; color: var(--text-soft); margin-bottom: 24px; }

/* Theme selection */
.theme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
.theme-btn {
  border-radius: 14px; height: 120px; cursor: pointer;
  transition: all 0.2s; border: 2px solid transparent;
  text-align: center; font-family: var(--font-body);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 0; overflow: hidden; position: relative;
}
.theme-btn:hover { transform: translateY(-2px); }
.theme-btn.selected { border: 2.5px solid var(--rose) !important; box-shadow: 0 0 0 3px rgba(212,132,122,0.18); }
.theme-btn-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 10px 8px;
}
.theme-btn .theme-name { font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.6px; }
.theme-btn .theme-desc { font-size: 9px; color: rgba(255,255,255,0.75); margin-top: 2px; }
/* Fallback for theme-btn without overlay (legacy swatch style) */
.theme-btn .theme-swatch { width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 10px; border: 2px solid rgba(0,0,0,0.06); }
.theme-blossom  { background: var(--grad-blossom); }
.theme-ivory    { background: var(--grad-ivory); }
.theme-sage     { background: var(--grad-sage); }
.theme-midnight { background: var(--grad-midnight); }

/* Plan selection */
.plan-grid { display: grid; gap: 10px; margin-bottom: 24px; }
.plan-card {
  border: 1.5px solid var(--border); border-radius: 15px;
  padding: 18px 20px; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-body); background: var(--white);
}
.plan-card:hover, .plan-card.selected { border-color: var(--rose); background: var(--blush); }
.plan-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border-m); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.plan-card.selected .plan-radio { border-color: var(--rose); background: var(--rose); }
.plan-card.selected .plan-radio::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.plan-info  { flex: 1; }
.plan-name  { font-weight: 700; font-size: 15px; color: var(--text); }
.plan-desc  { font-size: 11px; color: var(--text-soft); margin-top: 2px; }
.plan-badge { background: var(--rose); color: #fff; padding: 3px 10px; border-radius: var(--radius-pill); font-size: 10px; font-weight: 700; letter-spacing: 0.8px; flex-shrink: 0; }
.plan-price { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text); }

/* Divider */
.or-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--text-soft); font-size: 13px; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Google sign-in */
.btn-google {
  width: 100%; padding: 13px; background: var(--white); color: var(--text);
  border: 1.5px solid var(--border-m); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 16px;
}
.btn-google:hover { background: var(--blush); border-color: var(--rose); }

/* Loading step */
.loading-step { text-align: center; padding: 12px 0; }
.loading-spinner { width: 52px; height: 52px; border-radius: 50%; border: 3px solid var(--blush); border-top-color: var(--rose); animation: lspin 0.9s linear infinite; margin: 0 auto 24px; }
@keyframes lspin { to { transform: rotate(360deg); } }
.loading-status { color: var(--rose-dark); font-weight: 700; margin-bottom: 24px; font-size: 15px; }
.loading-checklist { list-style: none; text-align: left; max-width: 240px; margin: 0 auto; }
.loading-checklist li { padding: 8px 0; font-size: 13px; color: var(--text-mid); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); opacity: 0.5; transition: all 0.4s; }
.loading-checklist li.done { opacity: 1; color: var(--text); }
.loading-checklist li:last-child { border-bottom: none; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 10px; color: transparent; transition: all 0.4s; }
.loading-checklist li.done .check-icon { background: var(--green); color: #fff; }

/* Ready screen */
.ready-step        { text-align: center; }
.ready-icon        { font-size: 3em; margin-bottom: 12px; }
.ready-qr-card     { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 24px 20px; margin: 20px 0; }
.ready-qr-box      { width: 120px; height: 120px; margin: 0 auto 14px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 3em; border: 2px solid var(--border-m); }
.ready-gallery-name { font-family: var(--font-heading); font-size: 1.1em; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ready-gallery-date { font-size: 13px; color: var(--text-soft); margin-bottom: 14px; }
.ready-url-row     { display: flex; gap: 8px; align-items: stretch; }
.ready-url         { flex: 1; padding: 10px 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; color: var(--text-mid); word-break: break-all; text-align: left; }

/* Shared modal buttons */
.btn-copy {
  padding: 10px 14px; background: var(--blush); border: 1px solid var(--border-m);
  border-radius: var(--radius-sm); color: var(--rose-dark); font-weight: 700;
  cursor: pointer; font-size: 13px; font-family: var(--font-body);
  transition: all 0.2s; white-space: nowrap;
}
.btn-copy:hover { background: var(--rose); color: #fff; }
.btn-primary {
  width: 100%; padding: 13px; background: var(--rose); color: #fff;
  border: none; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.25s; box-shadow: var(--shadow-cta);
}
.btn-primary:hover    { background: var(--rose-dark); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-ghost {
  width: 100%; padding: 12px; background: transparent; color: var(--text-soft);
  border: 1.5px solid var(--border); border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.btn-ghost:hover { color: var(--rose); border-color: var(--border-m); }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 0 16px; }
  .nav-btn { padding: 7px 14px; font-size: 13px; }
  .hero { padding: 56px 20px 48px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero p  { font-size: 15px; }
  .social-proof { flex-wrap: wrap; gap: 8px; }
  .proof-stat { padding: 6px 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature-card  { padding: 24px 18px; }
  .steps-grid    { grid-template-columns: 1fr; gap: 20px; }
  .pricing-cards { gap: 12px; padding: 4px 12px 12px; }
  .pricing-card  { min-width: 80vw; }
  .pricing-card.featured { transform: none; }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .btn-hero      { justify-content: center; }
  .container     { padding: 0 20px; }
  .section       { padding: 64px 0; }
  .section-subtitle { margin-bottom: 40px; }
  .cta-banner    { padding: 64px 20px; }
  .qr-demo-dark  { padding: 48px 20px; }
  .qr-demo-dark-card { padding: 36px 28px; grid-template-columns: 1fr; gap: 36px; }
  .qr-demo-right { padding-top: 8px; border-top: 1px solid rgba(255,252,250,0.1); }
  .qr-demo-dark-card::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .modal-overlay { padding: 16px; }
  .modal-box     { max-height: 92vh; }
}
@media (min-width: 1024px) {
  .pricing-cards { justify-content: center; overflow-x: visible; }
}

/* ── Hero badge ─────────────────────────────────────────────────── */
.hero-badge {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 16px;
}

/* ── Navbar logo rose span ──────────────────────────────────────── */
/* .logo-rose already defined above */

/* ── Hero phone mockup details ──────────────────────────────────── */
.notif-emoji { font-size: 16px; line-height: 1; }
.phone-notch { width: 60px; height: 16px; background: var(--text); border-radius: 0 0 10px 10px; margin: 0 auto; }
.hero-phone-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(145deg, var(--blush), #B5635A);
  border: 2px solid var(--white); margin: 0 auto 6px;
  box-shadow: 0 3px 10px rgba(212,132,122,0.4);
}
.name-sep { color: var(--rose); font-style: normal; font-size: 0.77em; }
.hero-feed-card:nth-child(1) { animation: fadeInCard 0.4s ease 0.1s both; }
.hero-feed-card:nth-child(2) { animation: fadeInCard 0.4s ease 0.4s both; }
.hero-feed-card:nth-child(3) { animation: fadeInCard 0.4s ease 0.7s both; }
.thumb-rose  { background: linear-gradient(135deg,#e8c5c0,#d4a09a,#c08080); }
.thumb-warm  { background: linear-gradient(135deg,#c8b0a8,#e0c4b8,#d4a898); }
.thumb-mauve { background: linear-gradient(135deg,#d8c0c8,#e8d0d4,#c8a8b0); }
.badge-dot   { width: 4px; height: 4px; border-radius: 50%; background: #4CAF50; }
.feed-info-left { display: flex; align-items: center; }

/* ── QR Demo section (dark card) ──────────────────────────────────── */
.qr-demo-dark-card .section-tag { color: rgba(212,132,122,0.8); background: rgba(212,132,122,0.12); border-color: rgba(212,132,122,0.25); }
.qr-demo-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5em, 3vw, 2.1em);
  color: #FFFCFA; margin: 0;
  font-weight: 400; line-height: 1.25;
}
.qr-demo-left h2 em { color: var(--blush); }
.qr-demo-left > p {
  color: rgba(255,252,250,0.6); font-size: 0.93em;
  margin: 0; max-width: 360px; line-height: 1.7;
}
.btn-qr-demo {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,252,250,0.12); color: #FFFCFA;
  padding: 12px 26px; border-radius: 100px;
  font-weight: 700; font-size: 0.88em;
  text-decoration: none; border: 1px solid rgba(255,252,250,0.28);
  font-family: var(--font-body); transition: all 0.2s; margin-top: 4px;
}
.btn-qr-demo:hover { background: rgba(255,252,250,0.22); transform: translateY(-1px); }

/* ── Testimonial avatar gradients ───────────────────────────────── */
.avatar-rose   { background: linear-gradient(135deg,#e8c0c0,#d4a0a0); }
.avatar-blue   { background: linear-gradient(135deg,#c0d4e8,#a0b8d4); }
.avatar-purple { background: linear-gradient(135deg,#d4c0e8,#b8a0d4); }

/* ── CTA banner extras ──────────────────────────────────────────── */
.cta-emoji { font-size: 2.75em; margin-bottom: 18px; }
.cta-hint  { font-size: 0.75em; font-weight: 300; color: var(--text-soft); margin-top: 12px; }

/* ── Footer link rows ───────────────────────────────────────────── */
.footer-links       { margin-top: 20px; margin-bottom: 12px; }
.footer-links-legal { margin-bottom: 20px; }
.footer-copy        { opacity: 0.4; font-size: 0.8em; }

/* ── Print options step ─────────────────────────────────────────── */
.print-option-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 12px;
  margin-bottom: 8px; transition: border-color 0.2s, background 0.2s;
}
.print-option-card.has-qty { border-color: var(--rose); background: var(--blush); }
.print-option-icon  { font-size: 1.6em; flex-shrink: 0; }
.print-option-info  { flex: 1; min-width: 0; }
.print-option-name  { font-weight: 700; font-size: 13px; color: var(--text); }
.print-option-desc  { font-size: 11px; color: var(--text-soft); margin-top: 2px; line-height: 1.4; }
.print-option-price { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--rose); margin-top: 4px; }
.print-unit-label   { font-size: 0.85em; font-weight: 400; color: var(--text-soft); }
.qty-stepper { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border-m); background: var(--white);
  color: var(--text); font-size: 16px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; line-height: 1; font-family: var(--font-body);
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.qty-val { width: 28px; text-align: center; font-weight: 700; font-size: 14px; color: var(--text); }
.price-total-row {
  background: var(--cream-d); border-radius: var(--radius-sm);
  padding: 14px 16px; margin: 12px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.price-total-label { font-size: 13px; color: var(--text-mid); }
.price-total-value { font-family: var(--font-heading); font-size: 1.35em; font-weight: 700; color: var(--text); }

/* ── Plan price note & icon wrap ────────────────────────────────── */
.plan-price-note { font-size: 10px; color: var(--rose); font-weight: 600; margin-top: 3px; }
.plan-icon-wrap  { font-size: 1.4em; margin-right: 4px; flex-shrink: 0; }

/* ── Email note ─────────────────────────────────────────────────── */
.email-note {
  background: var(--blush); border: 1px solid var(--border-m);
  border-radius: var(--radius-sm); padding: 10px 14px;
  margin-bottom: 16px; font-size: 12px; color: var(--text-mid);
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;
}

/* ── Payment step ───────────────────────────────────────────────── */
.payment-summary { background: var(--cream-d); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 16px; }
.payment-summary-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-mid); padding: 4px 0; }
.payment-summary-row.total { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; font-weight: 700; color: var(--text); font-size: 15px; }
.payment-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.payment-field { margin-bottom: 10px; }
.payment-field label { font-size: 11px; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.8px; display: block; margin-bottom: 5px; }
.secure-notice { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; color: var(--text-soft); margin: 8px 0 4px; }

/* ── Success step ───────────────────────────────────────────────── */
.success-step { text-align: center; padding: 4px 0; }
.qr-thumb-wrap { width: 80px; margin: 0 auto 12px; }
.success-badges { display: flex; flex-direction: column; gap: 8px; margin: 14px 0; text-align: left; }
.success-badge-row { display: flex; align-items: flex-start; gap: 10px; background: var(--cream-d); border-radius: var(--radius-sm); padding: 10px 14px; }
.success-badge-icon  { font-size: 1.2em; flex-shrink: 0; margin-top: 1px; }
.success-badge-text  { flex: 1; }
.success-badge-label { font-weight: 700; color: var(--text); font-size: 12px; }
.success-badge-val   { color: var(--text-mid); font-size: 11px; margin-top: 2px; line-height: 1.4; }

/* ── Per-unit extra cost display ───────────────────────────────── */
.print-unit-extra {
  font-size: 11px; font-weight: 700; color: var(--rose);
  min-height: 14px; line-height: 1; margin-top: 2px;
}

/* ── Modal body compact for long steps ─────────────────────────── */
.modal-box { overflow-y: auto; }

/* ── Guest count stepper ────────────────────────────────────────── */
.guest-stepper {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin: 20px 0 8px;
}
.guest-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--border-m); background: var(--white);
  color: var(--text); font-size: 18px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; font-family: var(--font-body);
}
.guest-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.guest-val-wrap { text-align: center; }
.guest-val { font-family: var(--font-heading); font-size: 2.4em; font-weight: 400; color: var(--text); display: block; line-height: 1; }
.guest-lbl { font-size: 11px; font-weight: 600; color: var(--text-soft); text-transform: uppercase; letter-spacing: 1px; }
.guest-fine { display: flex; justify-content: center; gap: 10px; margin: 4px 0 20px; }
.guest-btn-sm {
  padding: 5px 18px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-m); background: var(--white);
  color: var(--text-mid); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.15s; font-family: var(--font-body);
}
.guest-btn-sm:hover { background: var(--blush); border-color: var(--rose); color: var(--rose); }

/* ── Print suggested badge ──────────────────────────────────────── */
.print-suggested {
  display: inline-block; background: var(--rose); color: #fff;
  font-size: 9px; font-weight: 700; padding: 2px 7px;
  border-radius: var(--radius-pill); vertical-align: middle; margin-left: 5px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
