/* ============================================================
   landing.css — SelfCheckin Marketing Site
   Landing + Pricing + (future: Privacy/Terms/Contact)
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --bg:       #080b12;
  --bg2:      #0e1220;
  --bg3:      #141826;
  --bg4:      #1c2235;
  --border:   #1e2640;
  --border2:  #2a3558;
  --text:     #e3e8fa;
  --text2:    #8892b4;
  --text3:    #4a5278;
  --accent:   #5b7fff;
  --accent2:  #3d5de8;
  --accent3:  #2244c4;
  --accent-soft: rgba(91, 127, 255, 0.12);
  --green:    #00e5a8;
  --green-soft: rgba(0, 229, 168, 0.15);
  --red:      #ff4d6a;
  --yellow:   #ffb930;
  --orange:   #ff7a3d;
  --purple:   #a855f7;
  --font:     'Inter', system-ui, -apple-system, sans-serif;
  --radius:   12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
  --container: 1180px;
  --header-h: 70px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg:       #f7f9ff;
  --bg2:      #ffffff;
  --bg3:      #f0f4fc;
  --bg4:      #e8edf9;
  --border:   #e1e6f4;
  --border2:  #c8d0ec;
  --text:     #0f172a;
  --text2:    #475569;
  --text3:    #94a3b8;
  --accent:   #3d5de8;
  --accent2:  #2244c4;
  --accent-soft: rgba(61, 93, 232, 0.1);
  --green:    #00a67e;
  --green-soft: rgba(0, 166, 126, 0.1);
  --shadow:   0 4px 20px rgba(0,0,50,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,50,0.15);
}

/* v5.5 — Purple / Galaxy theme */
[data-theme="purple"] {
  --bg:       #0b0618;
  --bg2:      #130a24;
  --bg3:      #1a0f33;
  --bg4:      #251745;
  --border:   #2d1b52;
  --border2:  #3f2770;
  --text:     #ede4ff;
  --text2:    #a892d6;
  --text3:    #6b5b9e;
  --accent:   #a855f7;
  --accent2:  #8b3dd4;
  --accent3:  #6c24b0;
  --accent-soft: rgba(168, 85, 247, 0.14);
  --green:    #34d399;
  --green-soft: rgba(52, 211, 153, 0.15);
  --red:      #fb7185;
  --yellow:   #fbbf24;
  --orange:   #fb923c;
  --purple:   #c084fc;
  --shadow:   0 4px 24px rgba(168,85,247,0.28);
  --shadow-lg: 0 20px 70px rgba(168,85,247,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Utilities ── */
.lp-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(91, 127, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 127, 255, 0.5);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg4);
  border-color: var(--border2);
}
.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius);
}
.btn-full { width: 100%; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(8, 11, 18, 0.7);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
[data-theme="light"] .lp-header {
  background: rgba(255, 255, 255, 0.75);
}
.lp-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8, 11, 18, 0.92);
}
[data-theme="light"] .lp-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.lp-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.lp-nav-links {
  display: flex; gap: 28px;
  flex: 1;
  justify-content: center;
}
.lp-nav-links a {
  color: var(--text2);
  font-weight: 500;
  font-size: 14px;
  transition: color .15s;
  position: relative;
}
.lp-nav-links a:hover { color: var(--text); }
.lp-nav-links a.active {
  color: var(--accent);
}

.lp-nav-cta {
  display: flex; align-items: center; gap: 10px;
}
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--text2);
  transition: all .2s;
}
.theme-toggle:hover { background: var(--bg3); color: var(--text); }

.mobile-menu-btn {
  display: none;
  color: var(--text);
  padding: 8px;
}

.lp-mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column; gap: 4px;
  z-index: 99;
}
.lp-mobile-menu.active { display: flex; }
.lp-mobile-menu a {
  padding: 12px 8px;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
}
.lp-mobile-menu a:hover { background: var(--bg3); }

@media (max-width: 840px) {
  .lp-nav-links, .lp-nav-cta > .btn-ghost, .lp-nav-cta > .btn-primary { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.lp-hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(91,127,255,0.2) 0%, transparent 60%);
  filter: blur(60px);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 350px; height: 350px;
  top: 20%; left: 10%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
}
.hero-orb-2 {
  width: 250px; height: 250px;
  top: 40%; right: 15%;
  background: linear-gradient(135deg, var(--green), var(--accent));
  animation-delay: 4s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(91,127,255,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex; gap: 22px;
  flex-wrap: wrap;
  color: var(--text2);
  font-size: 13px;
  font-weight: 500;
}

/* Hero Visual (phone mockup) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 340px; height: 600px;
  background: var(--bg2);
  border: 3px solid var(--border2);
  border-radius: 40px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 22px;
  background: var(--bg);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 28px;
  padding: 50px 20px 24px;
  overflow: hidden;
}

.mock-checkin {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mock-header {
  display: flex; gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.mock-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 18px;
}
.mock-hotel { font-size: 14px; font-weight: 700; }
.mock-subtitle { font-size: 11px; color: var(--text2); }

.mock-steps {
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 20px;
}
.mock-step {
  width: 28px; height: 28px;
  background: var(--bg3);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  color: var(--text3);
  transition: all .3s;
}
.mock-step.mock-done {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.mock-step.mock-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.mock-line {
  flex: 1;
  height: 2px;
  background: var(--border);
}
.mock-line.mock-done-line { background: var(--green); }
.mock-line.mock-active-line {
  background: linear-gradient(90deg, var(--green) 50%, var(--border) 50%);
}

.mock-title {
  font-size: 14px; font-weight: 600;
  margin-bottom: 14px;
}

.mock-scanner {
  flex: 1;
  background: var(--bg3);
  border: 2px dashed var(--border2);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  margin-bottom: 14px;
  min-height: 180px;
}
.mock-scan-frame {
  position: absolute;
  inset: 20px;
  border: 2px solid var(--accent);
  border-radius: 10px;
}
.mock-scan-frame::before, .mock-scan-frame::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 3px solid var(--accent);
}
.mock-scan-frame::before {
  top: -3px; left: -3px;
  border-right: 0; border-bottom: 0;
}
.mock-scan-frame::after {
  bottom: -3px; right: -3px;
  border-left: 0; border-top: 0;
}
.mock-scan-line {
  position: absolute;
  left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px var(--accent);
  animation: scan 2s ease-in-out infinite;
}
@keyframes scan {
  0% { top: 20%; }
  50% { top: 80%; }
  100% { top: 20%; }
}
.mock-camera-icon {
  color: var(--text3);
  opacity: 0.5;
}

.mock-detected {
  display: flex; align-items: center; gap: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  background: var(--green-soft);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.mock-cta {
  padding: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  width: 100%;
}

.hero-badge-float {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 8px;
}
.hero-badge-float small { color: var(--text2); font-weight: 500; }
.hero-badge-float-1 {
  top: 15%; right: -10px;
  animation: float-badge 4s ease-in-out infinite;
}
.hero-badge-float-2 {
  bottom: 20%; left: -20px;
  animation: float-badge 4s ease-in-out infinite 2s;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.5s infinite;
}

/* Hero trust logos */
.hero-logos {
  margin-top: 80px;
  text-align: center;
}
.logos-label {
  font-size: 12px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 20px;
}
.logos-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 40px;
}
.logo-item {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text3);
  opacity: 0.6;
  transition: all .2s;
  letter-spacing: 0.05em;
}
.logo-item:hover { opacity: 1; color: var(--text2); }

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.lp-stats {
  padding: 60px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 13px;
  color: var(--text2);
  margin-top: 8px;
}

/* ═══════════════════════════════════════
   SECTION HEAD (shared)
═══════════════════════════════════════ */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════ */
.lp-features {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature-icon-blue   { background: rgba(91,127,255,0.15);  color: var(--accent); }
.feature-icon-green  { background: rgba(0,229,168,0.15);    color: var(--green); }
.feature-icon-purple { background: rgba(168,85,247,0.15);   color: var(--purple); }
.feature-icon-orange { background: rgba(255,122,61,0.15);   color: var(--orange); }
.feature-icon-yellow { background: rgba(255,185,48,0.15);   color: var(--yellow); }
.feature-icon-red    { background: rgba(255,77,106,0.15);   color: var(--red); }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.lp-how {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.how-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.how-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  min-width: 80px;
  opacity: 0.3;
  font-variant-numeric: tabular-nums;
}
.how-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.how-content p {
  font-size: 15px;
  color: var(--text2);
}

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.lp-pricing {
  padding: 100px 0;
}

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.pricing-toggle {
  display: flex;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}
.pricing-toggle button {
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.pricing-toggle button.active {
  background: var(--accent);
  color: #fff;
}
.discount-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  background: var(--green);
  color: #0a1f18;
  border-radius: 100px;
  text-transform: uppercase;
}
.pricing-toggle button.active .discount-badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .3s var(--ease);
}
.price-card:hover {
  border-color: var(--border2);
}
.price-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(91,127,255,0.2), 0 10px 40px rgba(91,127,255,0.15);
  transform: scale(1.03);
}
.price-card-featured:hover {
  transform: scale(1.04) translateY(-2px);
}
.price-card-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(91,127,255,0.4);
}

.price-card-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.price-card-head h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.price-card-head > p {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 16px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transition: all .3s var(--ease);
}
.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.price-period {
  font-size: 14px;
  color: var(--text2);
  margin-left: 4px;
}
.price-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text);
}
.price-features li svg { flex-shrink: 0; color: var(--green); }
.price-features li.disabled {
  color: var(--text3);
  text-decoration: line-through;
}
.price-features li.disabled svg { color: var(--text3); }

.pricing-footnote {
  text-align: center;
  margin-top: 40px;
}
.pricing-footnote a {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* ═══════════════════════════════════════
   PRICING COMPARE TABLE (only on /pricing)
═══════════════════════════════════════ */
.pricing-page-head { padding: calc(var(--header-h) + 60px) 0 60px; }
.pricing-compare {
  padding: 80px 0 100px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg3);
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg4);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: sticky;
  top: 0;
}
.compare-table th.th-featured {
  color: var(--accent);
}
.compare-table td:first-child { color: var(--text2); width: 40%; }
.compare-table td:not(:first-child) { text-align: center; font-weight: 500; }
.compare-table td .tick { color: var(--green); font-weight: 700; }
.compare-table td .cross { color: var(--text3); }
.compare-table .tr-group td {
  background: var(--bg4);
  font-weight: 700;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  text-align: left;
}
.compare-footnote {
  margin-top: 30px;
  text-align: center;
  color: var(--text2);
  font-size: 13px;
  line-height: 1.8;
}
.compare-footnote code {
  background: var(--bg4);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.lp-faq {
  padding: 100px 0;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all .2s var(--ease);
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(91,127,255,0.1);
}
.faq-item summary {
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text2);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '–';
  color: var(--accent);
}
.faq-item p {
  margin-top: 14px;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
.lp-cta-final {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.cta-box {
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-box p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 32px;
}
.cta-box .btn-primary {
  background: #fff;
  color: var(--accent2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.cta-box .btn-primary:hover {
  background: #fff;
  transform: translateY(-2px) scale(1.02);
}
.cta-box .btn-ghost {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.cta-box .btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.lp-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-col .lp-brand { margin-bottom: 12px; }
.footer-brand-col p {
  color: var(--text2);
  font-size: 13px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}
.footer-col a {
  display: block;
  padding: 4px 0;
  color: var(--text2);
  font-size: 13px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text3);
}
.footer-badges {
  display: flex;
  gap: 16px;
}
.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-title { font-size: 42px; }
  .section-title { font-size: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; transform: scale(0.85); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card-featured { transform: none; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 620px) {
  .hero-title { font-size: 34px; }
  .section-title { font-size: 26px; }
  .hero-sub { font-size: 15px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-step { flex-direction: column; gap: 16px; padding: 24px; }
  .how-num { font-size: 36px; min-width: auto; }
  .cta-box { padding: 40px 24px; }
  .cta-box h2 { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-badge-float-1, .hero-badge-float-2 { display: none; }
  .phone-mockup { transform: scale(0.8); }
}

/* ═══ Phase 9: Live pulse + Testimonials + Demo ═══ */

/* Live pulse — "son 24h" canlı nabız */
.stat-live .live-pulse-wrap {
  display: inline-flex; align-items: center; gap: 10px;
  justify-content: center;
}
.live-pulse {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ef4444;
  position: relative;
  flex-shrink: 0;
}
.live-pulse::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  background: #ef4444; opacity: 0.5;
  animation: live-pulse-ring 1.8s ease-out infinite;
}
@keyframes live-pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Demo section */
.lp-demo { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(91,127,255,0.03)); }
.demo-wrap { max-width: 1100px; margin: 48px auto 0; }
.demo-frame {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0,0,60,0.12);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.demo-browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: #f3f4f6; border-bottom: 1px solid #e5e7eb;
}
.dot-r, .dot-y, .dot-g { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.demo-url {
  flex: 1; max-width: 360px; margin: 0 auto;
  padding: 4px 14px;
  background: #fff; border-radius: 100px; border: 1px solid #e5e7eb;
  font-size: 12px; color: #6b7280; text-align: center;
  font-family: 'SF Mono', Menlo, monospace;
}
.demo-steps {
  display: flex; align-items: center;
  padding: 32px 24px; gap: 12px;
  flex-wrap: wrap; justify-content: center;
}
.demo-step {
  display: flex; align-items: center; gap: 10px;
  flex: 1 1 180px; min-width: 180px;
  padding: 14px 16px;
  background: #f9fafb; border: 1px solid #e5e7eb;
  border-radius: 10px;
  animation: demo-fade-in 0.6s ease-out forwards;
  animation-delay: calc(var(--step, 0) * 0.3s);
  opacity: 0;
}
.demo-step[data-step="1"] { --step: 0; }
.demo-step[data-step="2"] { --step: 1; }
.demo-step[data-step="3"] { --step: 2; }
.demo-step[data-step="4"] { --step: 3; }
@keyframes demo-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.demo-step-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(91,127,255,0.15); color: #5b7fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; flex-shrink: 0;
}
.demo-step-done .demo-step-icon { background: #00e5a8; color: #fff; }
.demo-step-text { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.demo-step-text strong { color: #1a1f38; font-weight: 700; }
.demo-step-text span { color: #6b7280; font-size: 11.5px; }
.demo-arrow {
  color: #9ca3af; font-size: 20px; font-weight: 300;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .demo-arrow { transform: rotate(90deg); }
  .demo-steps { flex-direction: column; }
  .demo-step { flex: none; width: 100%; }
}

/* Testimonials */
.lp-testimonials { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.testimonial-card {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 16px; padding: 28px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,60,0.08);
  border-color: rgba(91,127,255,0.4);
}
.testimonial-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  margin: 0;
  font-size: 15px; line-height: 1.6;
  color: #1f2937; font-weight: 400;
  flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid #f3f4f6;
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; color: #1a1f38; }
.author-role { font-size: 12px; color: #6b7280; margin-top: 1px; }

/* ════════════════════════════════════════════════════════════
   v5.5 POLISH — tema geçişi + mor aurası + scrollbar
   ════════════════════════════════════════════════════════════ */
html { transition: background-color .25s ease; }
body, .lp-header, .feature-card, .pricing-card, .step-card, .btn-primary, .btn-ghost,
.theme-toggle, .faq-item, .lp-nav-links a {
  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    box-shadow .2s ease,
    transform .18s ease;
}

/* Scrollbar (dark/purple'da şık, light'ta subtle) */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--border2) transparent;
}
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 10px;
  border: 2px solid var(--bg);
}
[data-theme="purple"] *::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent2) 100%);
}

/* Selection & focus */
::selection { background: var(--accent-soft); color: var(--text); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Purple aura — tüm landing boyunca subtle mor glow */
[data-theme="purple"] body {
  background-image:
    radial-gradient(circle at 10% 5%,  rgba(168,85,247,0.18) 0%, transparent 50%),
    radial-gradient(circle at 90% 95%, rgba(192,132,252,0.14) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(109,24,176,0.06) 0%, transparent 60%);
}
[data-theme="purple"] .lp-header.scrolled {
  background: color-mix(in srgb, var(--bg2) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}

/* Theme-toggle butonu — tüm modlarda tutarlı */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text2);
  display: flex; align-items: center; justify-content: center;
}
.theme-toggle:hover {
  color: var(--text);
  border-color: var(--accent);
}
[data-theme="purple"] .theme-toggle {
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent),
              0 0 16px rgba(168,85,247,0.25);
  color: var(--purple, #c084fc);
}

/* Purple modda CTA butonları mor glow */
[data-theme="purple"] .btn-primary,
[data-theme="purple"] .hero-cta-primary {
  background: linear-gradient(135deg, var(--accent), var(--purple, #c084fc));
  box-shadow: 0 8px 30px rgba(168,85,247,0.4);
}
[data-theme="purple"] .btn-primary:hover,
[data-theme="purple"] .hero-cta-primary:hover {
  box-shadow: 0 12px 40px rgba(168,85,247,0.55);
  transform: translateY(-2px);
}

/* Gradient text — mor modda daha zengin */
[data-theme="purple"] .gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #e879f9 50%, var(--purple, #c084fc) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
