/* ================================================================
   Invitofy — Landing Page Stylesheet (clean rewrite)
   Every class matches the HTML. No external conflicts.
   ================================================================ */

/* ── Variables ────────────────────────────────────────────────── */
:root {
  --brand:       #6c63ff;
  --brand-dark:  #4f46e5;
  --brand-light: #f0eeff;
  --text:        #0f0e17;
  --muted:       #6b7280;
  --bg:          #fafbff;
  --white:       #ffffff;
  --border:      rgba(0,0,0,.08);
  --nav-h:       68px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);
  --trans:       .22s ease;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}
img { max-width: 100%; }
a { text-decoration: none; }

/* ── Scroll animations — default VISIBLE, animate on reveal ───── */
/* Elements are always visible. JS adds is-visible to trigger anim */
.animate-on-scroll { opacity: 1; transform: none; }
.animate-on-scroll.is-visible { animation: revealUp .55s ease forwards; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
.delay-4 { animation-delay: .32s; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes floatBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: .45; }
}

/* ── Section shared ───────────────────────────────────────────── */
.lp-section  { padding: 80px 0; }
.lp-features { background: var(--bg); padding: 80px 0; }
.lp-how      { background: var(--white); padding: 80px 0; }
.lp-faq      { background: var(--white); padding: 80px 0; }
.lp-occasions { background: var(--bg); padding: 80px 0; }
.lp-testimonials { background: var(--bg); padding: 80px 0; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Navbar ───────────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  height: var(--nav-h);
  transition: background var(--trans), box-shadow var(--trans);
}
.lp-nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.lp-nav .navbar-brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--trans);
}
.lp-nav.scrolled .navbar-brand { color: var(--text); }
.lp-nav .nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 6px 14px;
  border-radius: 8px;
  transition: background var(--trans), color var(--trans);
}
.lp-nav.scrolled .nav-link { color: var(--text); }
.lp-nav .nav-link:hover { background: rgba(255,255,255,.12); color: #fff; }
.lp-nav.scrolled .nav-link:hover { background: var(--brand-light); color: var(--brand); }

.btn-nav-signin {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  padding: 7px 16px;
  border-radius: 8px;
  transition: var(--trans);
}
.btn-nav-signin:hover { background: rgba(255,255,255,.12); color: #fff; }
.lp-nav.scrolled .btn-nav-signin { color: var(--text); }
.lp-nav.scrolled .btn-nav-signin:hover { background: var(--brand-light); color: var(--brand); }

.btn-nav-cta {
  font-size: .88rem;
  font-weight: 700;
  background: var(--white);
  color: var(--brand);
  padding: 8px 20px;
  border-radius: 8px;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-1px);
}
.lp-nav.scrolled .btn-nav-cta {
  background: var(--brand);
  color: var(--white);
}
.lp-nav .navbar-toggler {
  border: none;
  padding: 4px 8px;
  filter: invert(1);
}
.lp-nav.scrolled .navbar-toggler { filter: none; }

/* ── Hero ─────────────────────────────────────────────────────── */
.lp-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #3730a3 0%, #6c63ff 50%, #a78bfa 100%);
  padding: calc(var(--nav-h) + 64px) 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(255,255,255,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(0,0,0,.12) 0%, transparent 60%);
  pointer-events: none;
}

.lp-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.95);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,.3);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.hero-lead {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.btn-primary-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  white-space: nowrap;
}
.btn-primary-brand:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}
.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.35);
  transition: var(--trans);
  white-space: nowrap;
}
.btn-outline-brand:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  color: rgba(255,255,255,.75);
}
.hero-trust-item i { color: #4ade80; font-size: .9rem; }

/* ── Phone Mockup ─────────────────────────────────────────────── */
.phone-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 24px 60px;
}
.phone-frame {
  width: 234px;
  background: #111;
  border-radius: 40px;
  padding: 14px 10px;
  box-shadow:
    0 40px 80px rgba(0,0,0,.4),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 0 2px rgba(255,255,255,.04);
  position: relative;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 62px; height: 16px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 10px;
}
.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #faf8f4;
  height: 432px;
  overflow-y: auto;
  scrollbar-width: none;
}
.phone-screen::-webkit-scrollbar { display: none; }

/* Mini invitation inside phone */
.mi-hero {
  background: #2d2926;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.mi-hero-text {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: .62rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #f5efe6;
  text-align: center;
}
.mi-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-top: none;
  padding: 16px 14px 20px;
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  color: #2d2926;
}
.mi-ornament {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 auto 12px;
}
.mi-orn-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, #c9a96e, transparent);
}
.mi-orn-diamond {
  width: 5px; height: 5px;
  background: #c9a96e;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.mi-ornament-sm { margin-bottom: 8px; }
.mi-ornament-sm .mi-orn-diamond { width: 4px; height: 4px; }
.mi-label {
  text-align: center;
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 2px;
}
.mi-guest {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: #2d2926;
  line-height: 1.2;
  margin-bottom: 8px;
}
.mi-couple {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: #2d2926;
  line-height: 1.3;
  margin-bottom: 3px;
}
.mi-event {
  text-align: center;
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #2d2926;
  margin-bottom: 12px;
}
.mi-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.mi-detail { text-align: center; }
.mi-detail-icon  { display: block; font-size: .85rem; margin-bottom: 2px; }
.mi-detail-label {
  display: block;
  font-size: .48rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1px;
}
.mi-detail-value { font-size: .65rem; color: #2d2926; line-height: 1.4; }
.mi-rsvp {
  display: block;
  text-align: center;
  padding: 7px 0;
  border: 1px solid #c9a96e;
  color: #c9a96e;
  font-family: inherit;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Floating cards */
.phone-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  animation: floatBob 3.5s ease-in-out infinite;
}
.card-bottom-left { bottom: 30px; left: 0; animation-delay: 0s; }
.card-top-right   { top: 50px; right: 0; animation-delay: 1s; }
.float-card-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .62rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 3px;
}
.float-card-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.float-card-body { font-size: .75rem; font-weight: 700; color: var(--text); }
.float-card-stat {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 2px;
}

/* ── Stats strip ──────────────────────────────────────────────── */
.lp-stats {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { display: block; font-size: .82rem; color: var(--muted); }

/* ── Feature cards ────────────────────────────────────────────── */
.feature-card-large {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.feature-card-large:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card-large h3 { font-size: 1.15rem; font-weight: 700; margin: 14px 0 8px; }
.feature-card-large p  { color: var(--muted); line-height: 1.7; margin: 0; font-size: .95rem; }

.feature-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.feature-icon-violet { background: #ede9fe; color: #7c3aed; }
.feature-icon-green  { background: #dcfce7; color: #16a34a; }
.feature-icon-amber  { background: #fef9c3; color: #d97706; }

.feature-card-small {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  border: 1px solid var(--border);
}
.feature-card-small h4 { font-size: .98rem; font-weight: 700; margin: 10px 0 6px; }
.feature-card-small p  { font-size: .88rem; color: var(--muted); margin: 0; }
.feature-icon-sm {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ── How it works ─────────────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 48px;
}
.step-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--border);
  text-align: center;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin: 12px 0 8px; }
.step-card p  { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.6; }
.step-number-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}
.step-connector-line {
  width: 36px; height: 2px;
  background: linear-gradient(to right, var(--brand), var(--brand-light));
  border-radius: 2px;
}

/* ── Occasions ────────────────────────────────────────────────── */
.occasions-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 28px 0;
}
.occ-filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: .84rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  font-family: inherit;
}
.occ-filter-btn:hover,
.occ-filter-btn.active { background: var(--brand-dark); color: var(--white); border-color: var(--brand-dark); }

.occasion-card.hidden { display: none; }

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.occasion-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  cursor: default;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.occasion-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(108,99,255,.25);
}
.occasion-emoji { display: block; font-size: 1.5rem; margin-bottom: 6px; }
.occasion-name  { display: block; font-size: .78rem; font-weight: 600; color: var(--text); }
.occasion-badge {
  position: absolute;
  top: -8px; right: 8px;
  background: var(--brand-dark);
  color: var(--white);
  font-size: .58rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: .04em;
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name  { display: block; font-size: .88rem; font-weight: 700; color: var(--text); }
.author-city  { display: block; font-size: .78rem; color: var(--muted); }

/* ── FAQ ──────────────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  padding: 16px 20px;
}
.accordion-button:not(.collapsed) {
  background: var(--brand-light);
  color: var(--brand-dark);
  box-shadow: none;
}
.accordion-button::after { filter: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-body { font-size: .92rem; color: var(--muted); line-height: 1.7; }

/* ── CTA section ──────────────────────────────────────────────── */
.lp-cta {
  background: linear-gradient(135deg, #3730a3 0%, #6c63ff 60%, #a78bfa 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin: 12px auto 32px;
  line-height: 1.7;
}
.btn-white-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--brand);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white-brand:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}
.cta-reassurance {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.cta-reassurance-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  color: rgba(255,255,255,.75);
}
.cta-reassurance-item i { color: #4ade80; }

/* ── Footer ───────────────────────────────────────────────────── */
.lp-footer {
  background: #0f0e17;
  padding: 64px 0 0;
}
.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--trans);
}
.footer-social a:hover { background: var(--brand); color: var(--white); }
.footer-col-title { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--trans); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.65); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.65); transition: color var(--trans); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .lp-hero { padding-top: calc(var(--nav-h) + 40px); min-height: auto; padding-bottom: 60px; }
  .phone-float-card { display: none; }
  .phone-mockup-wrap { padding: 20px 20px; }
  .steps-row { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
}

@media (max-width: 767.98px) {
  .lp-hero h1 { font-size: 2rem; }
  .hero-cta-row { flex-direction: column; }
  .btn-primary-brand, .btn-outline-brand { width: 100%; max-width: 300px; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; padding: 12px; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .lp-footer { padding-top: 48px; }
}

@media (max-width: 480px) {
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .phone-frame { width: 200px; }
  .phone-screen { height: 370px; }
}
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: black;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 9999;
}
/* ── Utility ──────────────────────────────────────────────────── */
::selection { background: var(--brand); color: var(--white); }
