/* ── Virtual Waitress Landing Page ─────────────────────────────── */

:root {
  --lp-bg:          #07050B;
  --lp-surface:     #0E0B17;
  --lp-surface-2:   #17122A;
  --lp-red:         #C41E3A;
  --lp-red-dark:    #9B1426;
  --lp-orange:      #C41E3A;
  --lp-orange-glow: rgba(196, 30, 58, 0.18);
  --lp-gold:        #C89040;
  --lp-cream:       #F0E6D3;
  --lp-cream-dim:   rgba(240, 230, 211, 0.55);
  --lp-muted:       #6B5F7A;
  --lp-border:      rgba(240, 230, 211, 0.07);
  --lp-border-s:    rgba(240, 230, 211, 0.14);
  --lp-green:       #3ECC8A;
  --lp-font:        'DM Sans', system-ui, sans-serif;
  --lp-serif:       'Playfair Display', Georgia, serif;
  --lp-max:         1120px;
  --lp-radius:      16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--lp-bg);
  color: var(--lp-cream);
  font-family: var(--lp-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.hidden { display: none !important; }

/* ── Container ── */
.lp-container {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────
   NAV
────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.lp-nav.scrolled {
  background: rgba(7, 5, 11, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--lp-border);
}

.lp-nav-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.lp-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--lp-orange);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

.lp-logo-word {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lp-cream);
  letter-spacing: -0.01em;
}

.lp-nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.lp-nav-links a,
.lp-footer-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lp-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.lp-nav-links a:hover { color: var(--lp-cream); }

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: rgba(196, 30, 58, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  border: 1.5px solid rgba(196, 30, 58, 0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.2);
}

.lp-nav-cta:hover {
  background: rgba(196, 30, 58, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
}

.lp-nav-login {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(240, 230, 211, 0.85);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  border: 1.5px solid rgba(240, 230, 211, 0.2);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.lp-nav-login:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(240, 230, 211, 0.35);
  color: #fff;
  transform: translateY(-1px);
}

.lp-nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--lp-border-s);
  color: var(--lp-cream);
  font-size: 1.1rem;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
}

.lp-mobile-menu {
  background: rgba(14, 11, 23, 0.98);
  border-top: 1px solid var(--lp-border);
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-cream-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--lp-border);
}

.lp-mobile-menu a:last-child { border-bottom: none; }

.lp-mobile-cta {
  margin-top: 8px;
  padding: 12px 0 !important;
  color: var(--lp-orange) !important;
  border-bottom: none !important;
}

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.lp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.lp-hero-glow {
  position: absolute;
  top: -200px;
  left: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Eyebrow */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 24px;
}

.lp-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--lp-green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Headline */
.lp-hero-headline {
  font-family: var(--lp-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--lp-cream);
  margin-bottom: 24px;
}

.lp-hero-headline em {
  font-style: italic;
  color: var(--lp-orange);
}

.lp-hero-sub {
  font-size: 1.05rem;
  color: var(--lp-cream-dim);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Buttons */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: rgba(196, 30, 58, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  font-family: var(--lp-font);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  border: 1.5px solid rgba(196, 30, 58, 0.8);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.28);
}

.lp-btn-primary:hover {
  background: rgba(196, 30, 58, 0.48);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 30, 58, 0.42);
}

.lp-btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: transparent;
  color: var(--lp-cream-dim);
  font-family: var(--lp-font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid var(--lp-border-s);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}

.lp-btn-ghost:hover {
  color: var(--lp-cream);
  border-color: rgba(240, 230, 211, 0.35);
  transform: translateY(-1px);
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust bar */
.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lp-trust-item {
  display: flex;
  flex-direction: column;
}

.lp-trust-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--lp-cream);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.lp-trust-label {
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.lp-trust-divider {
  width: 1px;
  height: 32px;
  background: var(--lp-border-s);
}

/* ── Phone Mockup ── */
.lp-hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.lp-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.lp-phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(196, 30, 58, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lp-phone {
  width: 248px;
  min-height: 490px;
  background: #0A0810;
  border-radius: 44px;
  border: 7px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 30px rgba(0,0,0,0.6),
    0 60px 100px rgba(0,0,0,0.85);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.lp-phone-notch {
  width: 72px;
  height: 20px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lp-phone-screen {
  display: flex;
  flex-direction: column;
  height: calc(100% - 20px);
  overflow: hidden;
}

/* Mock app content */
.lp-mock-hero-band {
  background: linear-gradient(135deg, #1A0D06 0%, #2A1408 100%);
  padding: 12px 14px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lp-mock-restaurant-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: #F0E6D3;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.lp-mock-tagline {
  font-size: 0.6rem;
  color: rgba(240,230,211,0.45);
  margin-top: 2px;
}

.lp-mock-table-badge {
  background: var(--lp-orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.lp-mock-tabs {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  background: #100D1A;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lp-mock-tabs::-webkit-scrollbar { display: none; }

.lp-mock-tab {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(240,230,211,0.4);
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
  cursor: default;
}

.lp-mock-tab-active {
  background: var(--lp-orange);
  color: #fff;
}

.lp-mock-items {
  flex: 1;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #0E0B1A;
  overflow: hidden;
}

.lp-mock-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}

.lp-mock-item-selected {
  border-color: rgba(196, 30, 58, 0.35);
  background: rgba(196, 30, 58, 0.07);
}

.lp-mock-item-name {
  font-size: 0.64rem;
  font-weight: 600;
  color: rgba(240,230,211,0.85);
  line-height: 1.3;
}

.lp-mock-item-price {
  font-size: 0.6rem;
  color: var(--lp-orange);
  font-weight: 700;
  margin-top: 2px;
}

.lp-mock-add-btn {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(240,230,211,0.7);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  flex-shrink: 0;
}

.lp-mock-add-active {
  background: var(--lp-orange);
  border-color: var(--lp-orange);
  color: #fff;
}

.lp-mock-action-bar {
  display: flex;
  gap: 6px;
  padding: 8px 10px 10px;
  background: #0E0B1A;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-mock-call-btn,
.lp-mock-order-btn {
  flex: 1;
  text-align: center;
  padding: 7px 4px;
  border-radius: 9px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.lp-mock-call-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(240,230,211,0.7);
}

.lp-mock-order-btn {
  background: var(--lp-orange);
  color: #fff;
}

/* Ada float */
.lp-ada-float {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 140px;
  opacity: 0.85;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* ──────────────────────────────────────────────
   SECTION SHARED
────────────────────────────────────────────── */
.lp-section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 16px;
}

.lp-section-headline {
  font-family: var(--lp-serif);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--lp-cream);
  margin-bottom: 20px;
}

.lp-section-sub {
  font-size: 1.05rem;
  color: var(--lp-cream-dim);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ──────────────────────────────────────────────
   PROBLEM
────────────────────────────────────────────── */
.lp-problem {
  padding: 100px 0 80px;
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border-radius: var(--lp-radius);
  overflow: hidden;
  border: 1px solid var(--lp-border-s);
}

.lp-compare-col {
  padding: 36px 32px;
}

.lp-compare-before {
  background: rgba(255,255,255,0.02);
}

.lp-compare-after {
  background: rgba(196, 30, 58, 0.05);
  border-left: 1px solid rgba(196, 30, 58, 0.2);
}

.lp-compare-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted);
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 24px;
}

.lp-compare-label-after {
  color: var(--lp-orange);
  background: rgba(196, 30, 58, 0.12);
}

.lp-compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  background: var(--lp-surface-2);
  border-left: 1px solid var(--lp-border);
  border-right: 1px solid var(--lp-border);
}

.lp-compare-arrow {
  font-size: 1.2rem;
  color: var(--lp-orange);
  writing-mode: horizontal-tb;
}

.lp-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-compare-list li {
  font-size: 0.88rem;
  color: var(--lp-cream-dim);
  line-height: 1.5;
  padding-left: 0;
}

.lp-compare-list-after li {
  color: var(--lp-cream);
}

.lp-compare-list-after li::before {
  content: '✓ ';
  color: var(--lp-green);
  font-weight: 800;
}

/* ──────────────────────────────────────────────
   HOW IT WORKS
────────────────────────────────────────────── */
.lp-how {
  padding: 100px 0;
  background: var(--lp-bg);
}

.lp-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 56px;
}

.lp-step {
  position: relative;
  padding: 40px 28px 36px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.lp-step:hover {
  border-color: var(--lp-orange);
  box-shadow: 0 0 0 1px var(--lp-orange), 0 20px 40px rgba(196, 30, 58, 0.08);
}

.lp-step-num-bg {
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--lp-serif);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(240,230,211,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.lp-step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.lp-step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--lp-cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.lp-step-desc {
  font-size: 0.88rem;
  color: var(--lp-cream-dim);
  line-height: 1.6;
}

.lp-step-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-border-s), var(--lp-border));
  flex-shrink: 0;
  position: relative;
}

.lp-step-line::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--lp-border-s);
  border-right: 2px solid var(--lp-border-s);
  transform: rotate(45deg);
}

/* ──────────────────────────────────────────────
   FEATURES
────────────────────────────────────────────── */
.lp-features {
  padding: 100px 0;
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-border);
}

.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.lp-feat {
  padding: 32px 28px;
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.lp-feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lp-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.lp-feat:hover {
  border-color: rgba(196, 30, 58, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(196, 30, 58, 0.1);
}

.lp-feat:hover::before {
  transform: scaleX(1);
}

.lp-feat-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.lp-feat-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--lp-cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.lp-feat-desc {
  font-size: 0.87rem;
  color: var(--lp-cream-dim);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────
   PRICING
────────────────────────────────────────────── */
.lp-pricing {
  padding: 100px 0;
  background: var(--lp-bg);
}

.lp-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 56px auto 0;
}

.lp-plan {
  padding: 36px 32px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-s);
  border-radius: var(--lp-radius);
  display: flex;
  flex-direction: column;
  position: relative;
}

.lp-plan-pro {
  border-color: rgba(196, 30, 58, 0.4);
  background: linear-gradient(160deg, rgba(196, 30, 58, 0.07) 0%, var(--lp-surface) 50%);
  box-shadow: 0 0 0 1px rgba(196, 30, 58, 0.15), 0 30px 60px rgba(196, 30, 58, 0.08);
}

.lp-plan-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.lp-plan-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: 16px;
}

.lp-plan-price-row {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 4px;
}

.lp-plan-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-cream);
  margin-top: 10px;
}

.lp-plan-amount {
  font-family: var(--lp-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--lp-cream);
  line-height: 1;
  letter-spacing: -0.03em;
}

.lp-plan-cycle {
  font-size: 0.8rem;
  color: var(--lp-muted);
  margin-bottom: 28px;
}

.lp-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 32px;
}

.lp-plan-features li {
  font-size: 0.87rem;
  line-height: 1.5;
}

.lp-feat-on {
  color: var(--lp-cream);
  padding-left: 20px;
  position: relative;
}

.lp-feat-on::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lp-green);
  font-weight: 800;
}

.lp-feat-off {
  color: var(--lp-muted);
  padding-left: 20px;
  position: relative;
  text-decoration: line-through;
  text-decoration-color: rgba(107, 95, 122, 0.4);
}

.lp-feat-off::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--lp-muted);
}

.lp-plan-btn {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.lp-plan-btn-ghost {
  border: 1.5px solid var(--lp-border-s);
  color: var(--lp-cream-dim);
  background: transparent;
}

.lp-plan-btn-ghost:hover {
  border-color: rgba(240,230,211,0.3);
  color: var(--lp-cream);
  transform: translateY(-1px);
}

.lp-plan-btn-pro {
  background: rgba(196, 30, 58, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(196, 30, 58, 0.75);
  color: #fff;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.22);
}

.lp-plan-btn-pro:hover {
  background: rgba(196, 30, 58, 0.46);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 30, 58, 0.38);
}

.lp-pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--lp-muted);
  margin-top: 36px;
}

.lp-pricing-note strong { color: var(--lp-cream-dim); }

/* ──────────────────────────────────────────────
   CTA BAND
────────────────────────────────────────────── */
.lp-cta-band {
  padding: 80px 0;
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-border);
  position: relative;
  overflow: hidden;
}

.lp-cta-band-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(196, 30, 58, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.lp-cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--lp-surface-2);
  border: 1px solid var(--lp-border-s);
  border-radius: 24px;
  padding: 48px;
  position: relative;
}

.lp-cta-ada {
  width: 120px;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.lp-cta-headline {
  font-family: var(--lp-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--lp-cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.lp-cta-sub {
  font-size: 1rem;
  color: var(--lp-cream-dim);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.lp-footer {
  padding: 48px 0 32px;
  background: #050408;
  border-top: 1px solid var(--lp-border);
}

.lp-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.lp-footer-tagline {
  font-size: 0.83rem;
  color: var(--lp-muted);
  margin-top: 10px;
  max-width: 200px;
  line-height: 1.5;
}

.lp-footer-nav {
  display: flex;
  gap: 28px;
  padding-top: 6px;
}

.lp-footer-nav a { color: var(--lp-muted); }
.lp-footer-nav a:hover { color: var(--lp-cream); }

.lp-footer-bottom {
  border-top: 1px solid var(--lp-border);
  padding-top: 24px;
}

.lp-footer-bottom p {
  font-size: 0.8rem;
  color: var(--lp-muted);
}

.lp-footer-bottom a {
  color: var(--lp-cream-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.lp-footer-bottom a:hover { color: var(--lp-orange); }

/* ──────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .lp-hero-text { order: 1; }
  .lp-hero-visual { order: 2; }

  .lp-eyebrow,
  .lp-hero-trust,
  .lp-hero-actions {
    justify-content: center;
  }

  .lp-hero-sub { max-width: 100%; }

  .lp-ada-float { right: -20px; width: 110px; }

  .lp-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-step-line {
    width: 2px;
    height: 24px;
    margin: 0 auto;
  }

  .lp-step-line::after {
    right: -4px;
    top: auto;
    bottom: -5px;
    transform: rotate(135deg);
    border-top: 2px solid var(--lp-border-s);
    border-right: 2px solid var(--lp-border-s);
  }

  .lp-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-compare {
    grid-template-columns: 1fr;
  }

  .lp-compare-divider {
    padding: 16px 0;
    border: none;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    background: var(--lp-surface-2);
  }

  .lp-compare-arrow {
    display: block;
    text-align: center;
    transform: rotate(90deg);
  }

  .lp-compare-after {
    border-left: none;
    border-top: 1px solid rgba(196, 30, 58, 0.2);
  }

  .lp-plans {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .lp-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 24px;
  }

  .lp-footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .lp-footer-nav { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 600px) {
  .lp-nav-links,
  .lp-nav-cta, .lp-nav-login { display: none; }

  .lp-nav-hamburger { display: flex; align-items: center; }

  .lp-hero { padding: 96px 0 60px; }

  .lp-hero-headline { font-size: 2.4rem; }

  .lp-feat-grid { grid-template-columns: 1fr; }

  .lp-phone { width: 210px; min-height: 420px; border-radius: 36px; }

  .lp-ada-float { width: 90px; right: -10px; }

  .lp-compare-col { padding: 24px 20px; }

  .lp-step { padding: 28px 22px 24px; }

  .lp-pricing-note br { display: none; }

  .lp-section-headline { font-size: 1.8rem; }
}
