/* ================================================================
   InviteHost — Landing Page Stylesheet
   ================================================================ */

/* ── Reset / Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --brand:       #6c63ff;
  --brand-dark:  #4f46e5;
  --brand-light: #f0eeff;
  --brand-50:    rgba(108, 99, 255, 0.08);
  --text:        #0f0e17;
  --text-muted:  #6b7280;
  --surface:     #ffffff;
  --bg:          #fafbff;
  --border:      rgba(0,0,0,.07);
  --nav-h:       72px;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.12);
  --transition:  .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body.landing-body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ── Animations ───────────────────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .7s ease forwards;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .36s; }
.delay-4 { animation-delay: .5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Navbar ───────────────────────────────────────────────────── */
.lp-nav {
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  z-index: 1000;
}
.lp-nav.scrolled {
  background: rgba(255,255,255,.95) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.lp-nav .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-weight: 500;
  font-size: .9rem;
  transition: color var(--transition);
  padding: .5rem .75rem;
}
.lp-nav.scrolled .nav-link { color: var(--text-muted) !important; }
.lp-nav .nav-link:hover,
.lp-nav.scrolled .nav-link:hover { color: var(--brand) !important; }

.lp-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff !important;
  letter-spacing: -.3px;
}
.lp-nav.scrolled .lp-brand { color: var(--brand) !important; }
.brand-icon { font-size: 1.4rem; line-height: 1; }
.brand-name  { line-height: 1; }

.btn-ghost-nav {
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .9rem;
  padding: .45rem 1rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.3);
  background: transparent;
  text-decoration: none;
  transition: var(--transition);
}
.lp-nav.scrolled .btn-ghost-nav { color: var(--brand); border-color: var(--brand); }
.btn-ghost-nav:hover { background: rgba(255,255,255,.15); color: #fff; }
.lp-nav.scrolled .btn-ghost-nav:hover { background: var(--brand-light); }

.btn-nav-cta {
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  font-size: .88rem;
  padding: .5rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.lp-nav.scrolled .btn-nav-cta { background: var(--brand); color: #fff; }
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(108,99,255,.3); color: var(--brand-dark); }
.lp-nav.scrolled .btn-nav-cta:hover { color: #fff; }

.toggler-icon { color: rgba(255,255,255,.9); }
.lp-nav.scrolled .toggler-icon { color: var(--text); }

/* ── Section Globals ──────────────────────────────────────────── */
.lp-section { padding: 96px 0; }
.section-tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #3730a3 0%, #6c63ff 45%, #a78bfa 100%);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-shapes { position:absolute;inset:0;pointer-events:none; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.shape-1 { width:600px;height:600px;top:-200px;right:-150px; }
.shape-2 { width:400px;height:400px;bottom:-150px;left:-100px; }
.shape-3 { width:200px;height:200px;top:40%;left:10%; opacity:.5; }
.shape-4 { width:120px;height:120px;bottom:20%;right:15%; opacity:.4; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.95);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-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;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(74,222,128,.3)} 50%{box-shadow:0 0 0 6px rgba(74,222,128,.1)} }

.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.heading-gradient {
  background: linear-gradient(135deg, #fde68a, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-subtext strong { color: #fff; }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  background: var(--brand-light);
  color: var(--brand-dark);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}

.hero-note {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}

/* ── Mockup ───────────────────────────────────────────────────── */
.hero-mockup {
  margin-top: 64px;
  position: relative;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.mockup-browser {
  background: #1e1b4b;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #2d2a5e;
  padding: 10px 16px;
}
.dot { width:11px;height:11px;border-radius:50%; }
.dot.red    { background:#ff5f57; }
.dot.yellow { background:#ffbd2e; }
.dot.green  { background:#28c840; }
.url-bar {
  flex:1;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-family: monospace;
  padding: 3px 10px;
  border-radius: 6px;
  margin-left: 8px;
}
.mockup-screen { background: #f4f6fb; padding: 0; }

.mock-dash {
  display: flex;
  height: 320px;
}
.mock-sidebar {
  width: 140px;
  background: #1e1b4b;
  padding: 12px 8px;
  flex-shrink: 0;
}
.mock-logo {
  width: 80px; height: 10px;
  background: rgba(255,255,255,.3);
  border-radius: 4px;
  margin: 0 4px 16px;
}
.mock-nav-item {
  font-size: .65rem;
  color: rgba(255,255,255,.5);
  padding: 5px 8px;
  border-radius: 6px;
  margin-bottom: 2px;
}
.mock-nav-item.active {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.mock-main { flex:1; padding: 12px 14px; overflow: hidden; }
.mock-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.mock-title {
  font-size: .75rem;
  font-weight: 700;
  color: #1e1b4b;
}
.mock-btn {
  font-size: .6rem;
  background: #6c63ff;
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
}
.mock-cards { display:flex; flex-direction:column; gap:5px; margin-bottom: 10px; }
.mock-event-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 7px;
  padding: 6px 8px;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.mock-event-icon { font-size: .9rem; }
.mock-event-info { flex:1; }
.mock-event-name { font-size: .62rem; font-weight: 700; color: #1e1b4b; }
.mock-event-meta { font-size: .55rem; color: #999; }
.mock-event-badge {
  font-size: .55rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.mock-event-badge.success { background:#dcfce7; color:#166534; }
.mock-event-badge.warning { background:#fef9c3; color:#854d0e; }
.mock-event-badge.info    { background:#e0f2fe; color:#0369a1; }

.mock-stats {
  display: flex;
  gap: 6px;
}
.mock-stat {
  flex:1;
  background: #fff;
  border-radius: 7px;
  padding: 6px 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.mock-stat-n { font-size: .8rem; font-weight: 800; color: #1e1b4b; }
.mock-stat-l { font-size: .5rem; color: #999; }

/* Floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: floatBob 3s ease-in-out infinite;
}
.float-card-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.float-card-2 { top: 30px; right: -30px; animation-delay: .8s; }
.float-card-3 { bottom: 60px; right: -20px; animation-delay: 1.6s; }

@keyframes floatBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ── Trust Bar ────────────────────────────────────────────────── */
.lp-trust {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-stat {
  text-align: center;
  padding: 4px 24px;
}
.trust-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.trust-label {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
@media (max-width: 576px) { .trust-divider { display:none; } }

/* ── Features ─────────────────────────────────────────────────── */
.lp-features { background: var(--bg); }

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108,99,255,.2);
}

.fc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.fc-purple { background:#f0eeff; color:#6c63ff; }
.fc-blue   { background:#eff6ff; color:#3b82f6; }
.fc-green  { background:#f0fdf4; color:#22c55e; }
.fc-orange { background:#fff7ed; color:#f97316; }
.fc-teal   { background:#f0fdfa; color:#14b8a6; }
.fc-red    { background:#fff1f2; color:#ef4444; }

.fc-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.fc-desc {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.fc-list {
  list-style: none;
  padding: 0; margin: 0;
}
.fc-list li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
}
.fc-list li .bi { color: #22c55e; }

/* ── How It Works ─────────────────────────────────────────────── */
.lp-how { background: #fff; }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  text-align: right;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .35;
}
.step-item:hover .step-num { opacity: 1; }
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.step-desc {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.65;
}
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.step-tags span {
  font-size: .75rem;
  background: var(--brand-light);
  color: var(--brand);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}

/* Invitation Demo Card */
.how-visual { position: relative; text-align: center; }
.invite-card-demo {
  display: inline-block;
  width: 100%;
  max-width: 380px;
}
.icd-bg {
  background: linear-gradient(160deg, #fdf0e8 0%, #fff9f0 40%, #fdf0e8 100%);
  border: 2px solid #e8d5c0;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
}
.icd-ornament {
  position: absolute;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #c9a96e, #e8c98a);
  opacity: .3;
  border-radius: 50%;
}
.icd-ornament.top-left  { top:-20px;  left:-20px; }
.icd-ornament.top-right { top:-20px;  right:-20px; }
.icd-ornament.bot-left  { bottom:-20px; left:-20px; }
.icd-ornament.bot-right { bottom:-20px; right:-20px; }

.icd-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c9a96e;
  font-weight: 700;
  margin-bottom: 8px;
}
.icd-event {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #5c3d11;
  margin-bottom: 4px;
}
.icd-subtitle {
  font-size: .82rem;
  color: #9a7b4f;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.icd-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  margin: 16px 0;
}
.icd-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .82rem;
  color: #7a5c30;
  margin-bottom: 16px;
}
.icd-details .bi { margin-right: 6px; color: #c9a96e; }
.icd-guest {
  font-size: .9rem;
  color: #5c3d11;
  margin-bottom: 20px;
  font-style: italic;
}
.icd-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c9a96e, #e8c98a);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(201,169,110,.4);
  transition: var(--transition);
}
.icd-btn:hover { transform: translateY(-2px); color: #fff; }

.how-visual-label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

/* ── Occasions ────────────────────────────────────────────────── */
.lp-occasions { background: var(--bg); }

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.occasion-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.occasion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108,99,255,.25);
}
.oc-emoji {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
  transition: transform var(--transition);
}
.occasion-card:hover .oc-emoji { transform: scale(1.2) rotate(-5deg); }
.oc-name {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.oc-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.oc-badge {
  position: absolute;
  top: -9px; right: 12px;
  background: var(--brand);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: .05em;
}

/* ── Multilingual ─────────────────────────────────────────────── */
.lp-multilingual {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #fff;
}
.lp-multilingual .section-tag { background:rgba(255,255,255,.1); color:rgba(255,255,255,.9); }
.lp-multilingual .section-heading { color: #fff; }
.lp-multilingual .section-sub { color: rgba(255,255,255,.7); }

.language-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.lang-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  transition: var(--transition);
}
.lang-pill:hover { background: rgba(255,255,255,.2); }

.rtl-note {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  padding: 12px 16px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  border-left: 3px solid rgba(108,99,255,.6);
}

.multi-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.multi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 16px;
  transition: var(--transition);
}
.multi-card:hover { background: rgba(255,255,255,.12); }
.mc-lang { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.mc-text { font-size: .82rem; color: rgba(255,255,255,.8); margin-bottom: 4px; }
.mc-text em { color: #fbbf24; font-style: normal; font-weight: 600; }
.mc-name { font-size: .88rem; font-weight: 700; color: #fff; line-height: 1.4; }

/* ── Testimonials ─────────────────────────────────────────────── */
.lp-testimonials { background: var(--bg); }

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.tc-stars { color: #fbbf24; margin-bottom: 14px; font-size: .9rem; gap: 2px; display: flex; }
.tc-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  border: none;
  padding: 0;
}
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.tc-purple { background:#f0eeff; color:#6c63ff; }
.tc-blue   { background:#eff6ff; color:#3b82f6; }
.tc-orange { background:#fff7ed; color:#f97316; }
.tc-teal   { background:#f0fdfa; color:#14b8a6; }
.tc-green  { background:#f0fdf4; color:#22c55e; }
.tc-red    { background:#fff1f2; color:#ef4444; }
.tc-name { font-size: .9rem; font-weight: 700; color: var(--text); }
.tc-role { font-size: .78rem; color: var(--text-muted); }

/* ── FAQ ──────────────────────────────────────────────────────── */
.lp-faq { background: #fff; }

.faq-accordion { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.faq-item {
  border: none;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-btn {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  padding: 18px 20px;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.faq-btn:not(.collapsed) {
  color: var(--brand);
  background: var(--brand-50);
}
.faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236c63ff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-body {
  font-size: .92rem;
  color: var(--text-muted);
  padding: 0 20px 18px;
  line-height: 1.7;
  background: var(--brand-50);
}

/* ── CTA ──────────────────────────────────────────────────────── */
.lp-cta {
  position: relative;
  background: linear-gradient(135deg, #3730a3 0%, #6c63ff 60%, #a78bfa 100%);
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg-shapes { position:absolute;inset:0;pointer-events:none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-shape-1 { width:500px;height:500px;top:-200px;right:-100px; }
.cta-shape-2 { width:300px;height:300px;bottom:-100px;left:-50px; }

.cta-icon {
  font-size: 3rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  display: block;
}
.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: var(--transition);
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.25); color: var(--brand-dark); }
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: var(--transition);
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.5); }
.cta-reassurance {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.cta-reassurance span { display: flex; align-items: center; }

/* ── Footer ───────────────────────────────────────────────────── */
.lp-footer {
  background: #0f0e17;
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-main { padding-bottom: 48px; }

.footer-brand {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-about {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-social a:hover { background: var(--brand); color: #fff; border-color: transparent; transform: translateY(-2px); }

.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.9);
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-langs { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-langs p { line-height: 1.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-copy strong { color: rgba(255,255,255,.6); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .lp-hero { padding-top: calc(var(--nav-h) + 40px); }
  .lp-section { padding: 64px 0; }
  .hero-mockup { margin-top: 48px; }
  .float-card { display: none; }
  .multi-demo { grid-template-columns: 1fr; }
  .mock-sidebar { width: 90px; }
  .mock-nav-item { font-size: .55rem; }
}

@media (max-width: 767.98px) {
  .lp-nav .btn-ghost-nav { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; max-width: 280px; justify-content: center; }
  .trust-inner { gap: 12px; }
  .trust-stat { padding: 4px 12px; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-cta-primary, .btn-cta-ghost { width: 100%; max-width: 280px; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .multi-demo { grid-template-columns: 1fr; }
  .mock-dash { height: 260px; }
}

/* ── Utility ──────────────────────────────────────────────────── */
.text-brand { color: var(--brand) !important; }
.bg-brand   { background: var(--brand) !important; }
::selection { background: var(--brand); color: #fff; }
