/* ═══════════════════════════════════════════════════════════════
   Servio — Landing Page Styles
   Light version · Stripe-inspired · Brand: #02ae3e
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --brand:        #02ae3e;
  --brand-light:  #ffc222;
  --brand-dark:   #024f2d;
  --brand-50:     #e6f7ec;
  --brand-100:    #c0ecd0;
  --brand-200:    #9bdfb3;
  --brand-300:    #75d397;

  --white:        #FFFFFF;
  --gray-50:      #F9FAFB;
  --gray-100:     #F2F4F7;
  --gray-200:     #EAECF0;
  --gray-300:     #D0D5DD;
  --gray-500:     #667085;
  --gray-700:     #344054;
  --gray-900:     #012817;

  --text-primary:   #012817;
  --text-secondary: #344054;
  --text-muted:     #667085;
  --border:         #EAECF0;

  --shadow-sm:  0 1px 2px rgba(16,24,40,.05);
  --shadow-md:  0 4px 8px -2px rgba(16,24,40,.1), 0 2px 4px -2px rgba(16,24,40,.06);
  --shadow-lg:  0 12px 16px -4px rgba(16,24,40,.08), 0 4px 6px -2px rgba(16,24,40,.03);
  --shadow-xl:  0 24px 48px -12px rgba(16,24,40,.18);
  --shadow-brand: 0 8px 24px rgba(2, 174, 62, 0.25);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 100px;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; } /* Lenis handles smooth scroll — native smooth causes double-smoothing */
/* Required for Lenis + ScrollTrigger: correct scroll height and marker positioning */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; font-family: inherit; border: none; background: none; }

/* ── Custom Cursor — Figma-style minimal ────────────────────────── */
.cursor {
  width: 5px;
  height: 5px;
  background: #0a0a0f;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(10, 10, 15, 0.22);
  border-radius: 50%;
  background: transparent;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* ── Typography helpers ─────────────────────────────────────────── */
.gt {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 60%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gt em { font-style: normal; }

/* ── Layout ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: var(--shadow-brand);
  transform: translateY(-1px);
}
.btn-primary.btn-lg { font-size: 15px; padding: 13px 28px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: transparent;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.btn-ghost.btn-lg { font-size: 15px; padding: 12px 28px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-300); color: var(--text-primary); transform: translateY(-1px); }
.btn-outline.btn-full { width: 100%; }
.btn-sm { font-size: 13px; padding: 8px 16px; }

/* ── Section Header ──────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--brand);
  flex-shrink: 0;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* fade-up is a marker class — GSAP handles the animation */
.fade-up { will-change: transform, opacity; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition-slow), box-shadow var(--transition-slow), border-bottom var(--transition-slow);
}
.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
  flex-shrink: 0;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  font-family: var(--font-display);
}
.nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--brand); background: var(--brand-50); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-login {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: color var(--transition);
}
.nav-login:hover { color: var(--brand); }
.nav-mobile-toggle { display: none; }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.hero-glow.g1 {
  width: 700px; height: 700px;
  background: var(--brand);
  top: -200px; right: -100px;
  animation: glowFloat1 8s ease-in-out infinite;
}
.hero-glow.g2 {
  width: 500px; height: 500px;
  background: var(--brand-light);
  top: 100px; right: 300px;
  animation: glowFloat2 10s ease-in-out infinite;
}
.hero-glow.g3 {
  width: 400px; height: 400px;
  background: var(--brand-300);
  bottom: -100px; right: 100px;
  animation: glowFloat3 12s ease-in-out infinite;
}
@keyframes glowFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}
@keyframes glowFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(0.95); }
}
@keyframes glowFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(1.08); }
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(2,174,62,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2,174,62,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.badge-pulse {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-headline .hl {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em; /* prevent descender clipping */
}
.hero-headline em { font-style: normal; }
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.td { opacity: 0.4; }

/* ── Hero Visual ─────────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  height: 520px;
}
.mockup-main {
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}
.tb-dots { display: flex; gap: 5px; }
.tb-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}
.tb-dots span:nth-child(1) { background: #FF5F57; }
.tb-dots span:nth-child(2) { background: #FEBC2E; }
.tb-dots span:nth-child(3) { background: #28C840; }
.tb-label { font-size: 11px; color: var(--text-muted); font-family: var(--font-body); margin-left: 4px; }
.mockup-body { padding: 16px; }
.mock-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.mock-stat {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}
.mock-stat.accent-stat { background: var(--gray-100); border-color: var(--gray-200); }
.msv {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.accent-stat .msv { color: var(--text-primary); }
.msl { font-size: 10px; color: var(--text-muted); font-weight: 500; }
.mock-orders-list { display: flex; flex-direction: column; gap: 8px; }
.mock-order-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.mor-left { display: flex; flex-direction: column; gap: 2px; }
.mor-table { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--text-primary); }
.mor-items { font-size: 11px; color: var(--text-muted); }
.mor-price { font-size: 11px; font-weight: 600; color: var(--text-secondary); text-align: right; margin-top: 4px; }

/* Status badges */
.status-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.status-badge.preparing { background: #FFF6E5; color: #B54708; }
.status-badge.new-order { background: #EFF8FF; color: #175CD3; }
.status-badge.ready { background: #ECFDF3; color: #027A48; }

/* ── Floating Cards ──────────────────────────────────────────────── */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.fc-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--text-primary); }
.fc-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.float-qr { bottom: 60px; left: -24px; animation: floatA 6s ease-in-out infinite; }
.float-notif { top: 120px; left: -32px; animation: floatB 7s ease-in-out infinite 1s; }
.float-req { bottom: 160px; right: -16px; animation: floatA 8s ease-in-out infinite 2s; }
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.notif-dot {
  width: 10px; height: 10px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--brand-100);
  animation: pulse 2s ease-in-out infinite;
}
.req-emoji { font-size: 18px; }

/* ═══════════════════════════════════════════════════════════════
   LOGO BAR
   ═══════════════════════════════════════════════════════════════ */
.logo-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}
.lb-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lb-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 40px;
}
.lb-track span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ═══════════════════════════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════════════════════════ */
.problem {
  padding: 96px 0;
  background: var(--white);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.problem-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.problem-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pc-icon {
  width: 40px; height: 40px;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.problem-card p { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

.problem-bridge {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.bridge-line { flex: 1; height: 1px; background: var(--border); }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.how-section {
  height: 280vh;
  position: relative;
  background: var(--gray-50);
}
.how-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.how-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 48px;
}
.how-steps-list { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  gap: 20px;
  padding: 20px 0 20px 16px;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  opacity: 0.35;
  transition: opacity 0.4s ease, border-color 0.4s ease;
  cursor: default;
}
.how-step:first-child { padding-top: 0; }
.how-step:last-child { border-bottom: none; }
.how-step.active { opacity: 1; border-left-color: var(--brand); }
.hs-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 4px;
  flex-shrink: 0;
  width: 28px;
}
.hs-body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.hs-body p { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* ── How Right – Mockup Frame ────────────────────────────────────── */
.how-right { position: relative; }
.how-mockup-frame {
  position: relative;
  height: 400px;
  width: 100%;
}
.how-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.how-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.slide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  width: 100%;
  max-width: 340px;
}

/* Menu Builder card */
.mb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.mb-logo { font-size: 24px; }
.mb-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); }
.mb-sub { font-size: 11px; color: var(--text-muted); }
.mb-cats { display: flex; gap: 6px; margin-bottom: 14px; }
.mb-cat {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  color: var(--text-muted);
  cursor: pointer;
}
.mb-cat.active { background: var(--brand); color: #fff; }
.mb-items { display: flex; flex-direction: column; gap: 8px; }
.mb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.mb-img {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  flex-shrink: 0;
}
.mb-info { flex: 1; }
.mb-iname { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.mb-price { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.mb-add {
  width: 26px; height: 26px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

/* QR Manager card */
.qr-manager-card { padding: 20px; }
.qm-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; }
.qm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.qm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.qm-dl {
  font-size: 11px;
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
}
.qm-print-btn {
  width: 100%;
  padding: 10px;
  background: var(--brand-50);
  border: 1.5px solid var(--brand-200);
  color: var(--brand);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  text-align: center;
  transition: background var(--transition);
}
.qm-print-btn:hover { background: var(--brand-100); }

/* Phone mockup card */
.phone-mockup-card { display: flex; justify-content: center; padding: 24px; }
.phone-frame {
  width: 180px;
  background: var(--gray-900);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.phone-screen {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  padding: 10px;
}
.ps-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.ps-logo { font-size: 16px; }
.ps-name { font-size: 9px; font-weight: 700; font-family: var(--font-display); color: var(--text-primary); }
.ps-table { font-size: 8px; color: var(--text-muted); }
.ps-cats { display: flex; gap: 4px; margin-bottom: 8px; }
.ps-cat {
  font-size: 8px;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--text-muted);
}
.ps-cat.active { background: var(--brand); color: #fff; }
.ps-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 4px;
}
.ps-img {
  width: 26px; height: 26px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  flex-shrink: 0;
}
.ps-item-info { flex: 1; }
.ps-iname { font-size: 8px; font-weight: 600; color: var(--text-primary); }
.ps-iprice { font-size: 7px; color: var(--text-muted); }
.ps-add {
  width: 18px; height: 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ps-cart-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  margin-top: 8px;
  font-size: 8px;
  font-weight: 600;
  font-family: var(--font-display);
}

/* Kanban card */
.kanban-card { padding: 16px; }
.kb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.kb-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); }
.kb-live { font-size: 10px; color: #027A48; font-weight: 600; }
.kb-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

.kb-col-header {
  font-size: 9px;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 3px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kb-col-header span {
  background: rgba(255,255,255,.4);
  border-radius: 10px;
  padding: 0 4px;
}
.new-h { background: #EFF8FF; color: #175CD3; }
.prep-h { background: #FFF6E5; color: #B54708; }
.ready-h { background: #ECFDF3; color: #027A48; }
.kb-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 8px;
  margin-bottom: 4px;
  box-shadow: var(--shadow-sm);
}
.kbc-table { font-size: 9px; font-weight: 700; color: var(--text-primary); font-family: var(--font-display); }
.kbc-items { font-size: 8px; color: var(--text-muted); margin: 2px 0; }
.kbc-time { font-size: 7px; color: var(--gray-300); }

/* ═══════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════ */
.features-section {
  padding: 96px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch; /* equal height per row */
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.feat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feat-card.feat-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  align-items: center;
  padding: 28px 28px 28px 32px;
}
.feat-icon {
  width: 40px; height: 40px;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.feat-card p { font-size: 13px; line-height: 1.6; color: var(--text-muted); margin-bottom: 0; }
/* ── Feature card label ──────────────────────────────────────────── */
.feat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.feat-card-top { margin-bottom: 20px; }
.feat-card-top h3 { margin-bottom: 8px; }
/* Demo sections grow to fill card height */
.feat-demo-modifier,
.feat-demo-tracking,
.feat-demo-service,
.feat-demo-search { flex: 1; }

/* ══ DEMO 1: Phone mockup — Instant Access ══════════════════════ */
.feat-demo-phone {
  position: relative;
  margin-top: 4px;
  display: flex;
  justify-content: center;
}
.fdp-frame {
  width: 188px;
  background: var(--gray-900);
  border-radius: 18px;
  padding: 7px;
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.fdp-bar {
  background: var(--white);
  border-radius: 10px 10px 0 0;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.fdp-bar-dot {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.fdp-url {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: var(--text-muted);
  flex: 1;
  justify-content: center;
}
.fdp-screen {
  background: var(--white);
  border-radius: 0 0 10px 10px;
  padding: 10px;
  overflow: hidden;
}
.fdp-rest-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
}
.fdp-emoji { font-size: 15px; }
.fdp-rname { font-size: 9px; font-weight: 700; font-family: var(--font-display); color: var(--text-primary); }
.fdp-rtable { font-size: 7px; color: var(--text-muted); }
.fdp-cats { display: flex; gap: 3px; margin-bottom: 8px; overflow: hidden; }
.fdp-cat {
  font-size: 8px;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--text-muted);
  white-space: nowrap;
}
.fdp-cat.active { background: var(--brand); color: #fff; }
.fdp-items { display: flex; flex-direction: column; gap: 5px; margin-bottom: 8px; }
.fdp-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
}
.fdp-item-img {
  width: 28px; height: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, #f3e8ff, #e9d7fe);
  flex-shrink: 0;
}
.fdp-img-2 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.fdp-item-body { flex: 1; min-width: 0; }
.fdp-item-name { font-size: 8px; font-weight: 700; font-family: var(--font-display); color: var(--text-primary); }
.fdp-item-desc { font-size: 7px; color: var(--text-muted); margin: 1px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fdp-item-price { font-size: 8px; font-weight: 600; color: var(--text-secondary); }
.fdp-add {
  width: 18px; height: 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.fdp-cart-pill {
  background: var(--brand);
  color: #fff;
  border-radius: 7px;
  padding: 6px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  font-weight: 600;
  font-family: var(--font-display);
}
.fdp-cart-price { font-weight: 700; }
.fdp-qr-float {
  position: absolute;
  bottom: 12px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-display);
  animation: floatA 5s ease-in-out infinite;
}

/* ══ DEMO 2: Modifier selector ══════════════════════════════════ */
.feat-demo-modifier {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  margin-top: 20px;
}
.fdm-item-name { font-size: 12px; font-weight: 700; font-family: var(--font-display); color: var(--text-primary); margin-bottom: 12px; }
.fdm-section { margin-bottom: 10px; }
.fdm-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fdm-req {
  background: #FEF3F2;
  color: #B42318;
  font-size: 8px;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
}
.fdm-options { display: flex; gap: 5px; }
.fdm-opt {
  flex: 1;
  text-align: center;
  padding: 5px 4px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 9px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
}
.fdm-opt.selected { border-color: var(--brand); color: var(--brand); background: var(--brand-50); font-weight: 700; }
.fdm-opt span { display: block; font-size: 8px; opacity: 0.7; }
.fdm-checkrow {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
  font-size: 10px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.fdm-checkrow:last-child { border-bottom: none; }
.fdm-checkrow span { margin-left: auto; font-size: 9px; }
.fdm-checkrow.checked { color: var(--text-primary); }
.fdm-check {
  width: 14px; height: 14px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  flex-shrink: 0;
}
.fdm-checkrow.checked .fdm-check { background: var(--brand); border-color: var(--brand); color: #fff; }
.fdm-add-btn {
  width: 100%;
  margin-top: 12px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 8px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  text-align: center;
  cursor: pointer;
}

/* ══ DEMO 3: Order tracking timeline ════════════════════════════ */
.feat-demo-tracking {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  margin-top: 20px;
}
.fdt-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.fdt-title { font-size: 10px; font-weight: 700; font-family: var(--font-display); color: var(--text-primary); }
.fdt-time { font-size: 9px; color: var(--text-muted); }
.fdt-timeline { display: flex; align-items: flex-start; gap: 0; }
.fdt-step { display: flex; flex-direction: column; align-items: center; flex: 1; }
.fdt-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  flex-shrink: 0;
  z-index: 1;
}
.done-dot { background: var(--brand); border-color: var(--brand); }
.active-dot {
  background: var(--white);
  border-color: var(--brand);
  border-width: 2px;
  box-shadow: 0 0 0 3px rgba(2,174,62,.15);
  animation: pulse 2s ease-in-out infinite;
}
.fdt-line {
  width: 100%;
  height: 1.5px;
  background: var(--gray-200);
  margin-top: -6px;
  position: relative;
  z-index: 0;
}
.done-line { background: var(--brand); }
.fdt-last { background: var(--gray-200); }
.fdt-label { font-size: 8px; color: var(--text-muted); margin-top: 6px; text-align: center; white-space: nowrap; }
.fdt-step.done .fdt-label, .fdt-step.active .fdt-label { color: var(--text-primary); font-weight: 600; }
.fdt-eta { margin-top: 14px; font-size: 10px; color: var(--text-muted); text-align: center; }
.fdt-eta strong { color: var(--text-primary); }

/* ══ DEMO 4: Service request buttons ════════════════════════════ */
.feat-demo-service {
  margin-top: 20px;
}
.fds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.fds-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.fds-btn:hover { border-color: var(--brand); background: var(--brand-50); }
.fds-btn.active-svc { border-color: var(--brand); background: var(--brand-50); color: var(--brand); }
.fds-emoji { font-size: 18px; }
.fds-sent {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #027A48;
  background: #ECFDF3;
  border: 1px solid #ABEFC6;
  border-radius: var(--radius-md);
  padding: 8px 12px;
}

/* ══ DEMO 5: Search & filter ════════════════════════════════════ */
.feat-demo-search {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fds-searchbar {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--brand);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  box-shadow: 0 0 0 3px rgba(2,174,62,.08);
}
.fds-cursor-blink {
  color: var(--brand);
  animation: blink 1s step-end infinite;
  font-weight: 300;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.fds-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.fds-tag {
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
}
.fds-tag.active-tag { background: var(--brand); color: #fff; border-color: var(--brand); }
.fds-results { display: flex; flex-direction: column; gap: 6px; }
.fds-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.fds-res-img {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f3e8ff, #e9d7fe);
  flex-shrink: 0;
}
.fds-img2 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.fds-res-name { font-size: 11px; font-weight: 600; font-family: var(--font-display); color: var(--text-primary); }
.fds-res-price { font-size: 10px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   SPLIT LAYOUTS (Dashboard + Service)
   ═══════════════════════════════════════════════════════════════ */
.dashboard-section {
  padding: 96px 0;
  background: var(--gray-50);
}
.service-section {
  padding: 96px 0;
  background: var(--white);
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
.split-text .section-tag { display: inline-block; margin-bottom: 12px; }
.split-text .section-headline { text-align: left; margin-bottom: 16px; }
.split-text .section-sub { text-align: left; margin: 0 0 28px; }

.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.ck {
  width: 18px; height: 18px;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Dashboard preview mockup */
.dash-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  overflow: hidden;
  height: 340px;
}
.dp-sidebar {
  width: 72px;
  background: var(--gray-900);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.dp-logo {
  width: 32px; height: 32px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.dp-nav { display: flex; flex-direction: column; gap: 4px; width: 100%; }
.dp-nav-item {
  font-size: 8px;
  font-weight: 600;
  font-family: var(--font-display);
  color: rgba(255,255,255,.4);
  padding: 6px 4px;
  border-radius: 6px;
  text-align: center;
  cursor: default;
  transition: background var(--transition), color var(--transition);
}
.dp-nav-item.active-nav { background: rgba(2,174,62,.3); color: var(--brand-light); }
.dp-main { flex: 1; padding: 16px; overflow: hidden; }
.dp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dp-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); }
.dp-live { font-size: 10px; color: #027A48; font-weight: 600; }
.dp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.dp-stat {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
}
.dp-stat.accent-dp { background: var(--gray-100); border-color: var(--gray-200); }
.dps-val { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text-primary); }
.accent-dp .dps-val { color: var(--text-primary); }
.dps-label { font-size: 9px; color: var(--text-muted); font-weight: 500; }
.dp-orders { display: flex; flex-direction: column; gap: 6px; }
.dp-order-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.dor-t {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--brand);
  width: 20px;
  flex-shrink: 0;
}
.dor-i { font-size: 10px; color: var(--text-secondary); flex: 1; }
.dp-badge {
  font-size: 9px;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}
.preparing-dp { background: #FFF6E5; color: #B54708; }
.new-dp { background: #EFF8FF; color: #175CD3; }
.ready-dp { background: #ECFDF3; color: #027A48; }

/* Service buttons */
.service-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.svc-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-50); }

/* Service inbox */
.service-inbox {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
}
.si-header {
  padding: 14px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}
.si-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.si-item:last-child { border-bottom: none; }
.si-item.new-si { background: var(--brand-50); }
.si-emoji { font-size: 20px; }
.si-content { flex: 1; }
.si-type { font-size: 13px; font-weight: 600; font-family: var(--font-display); color: var(--text-primary); }
.si-table { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.si-badge {
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.new-si-badge { background: var(--brand); color: #fff; }
.ack-si-badge { background: #FFF6E5; color: #B54708; }
.done-si-badge { background: #ECFDF3; color: #027A48; }

/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */
.pricing-section {
  padding: 96px 0;
  background: var(--gray-50);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured-card {
  background: var(--gray-900);
  border-color: var(--gray-900);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}
.pricing-card.featured-card:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card.featured-card .pc-plan  { color: rgba(255,255,255,.55); font-weight: 500; }
.pricing-card.featured-card .pc-amount { color: var(--white); }
.pricing-card.featured-card .pc-per   { color: rgba(255,255,255,.4); }
.pricing-card.featured-card .pc-desc  { color: rgba(255,255,255,.45); }
.pricing-card.featured-card .pc-features li { color: rgba(255,255,255,.7); }
.pricing-card.featured-card .pc-features li::before { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
.pricing-card.featured-card .btn-primary { background: var(--brand); }
.pricing-card.featured-card .btn-primary:hover { background: var(--brand-light); }
.pc-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pc-plan {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}
.pc-price { display: flex; align-items: baseline; gap: 2px; }
.pc-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.featured-card .pc-amount { color: var(--brand); }
.pc-per { font-size: 14px; color: var(--text-muted); }
.pc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-top: -4px; }
.pc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  flex: 1;
}
.pc-features li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-features li::before {
  content: '✓';
  width: 16px; height: 16px;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pc-features li.feat-disabled { opacity: 0.4; }
.pc-features li.feat-disabled::before { content: '✕'; background: var(--gray-100); color: var(--gray-300); }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 96px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.test-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.test-stars { color: var(--brand); font-size: 16px; letter-spacing: 2px; }
.test-quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  font-style: italic;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.test-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); }
.test-role { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: 120px 0;
  background: var(--gray-900);
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.cta-glow.cg1 { width: 500px; height: 500px; background: var(--brand); top: -100px; left: -100px; animation: glowFloat1 10s ease-in-out infinite; }
.cta-glow.cg2 { width: 400px; height: 400px; background: var(--brand-light); bottom: -80px; right: -80px; animation: glowFloat2 12s ease-in-out infinite; }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 36px; line-height: 1.65; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.cta-actions .btn-primary {
  background: #fff;
  color: var(--brand);
}
.cta-actions .btn-primary:hover {
  background: var(--brand-50);
  box-shadow: 0 8px 24px rgba(255,255,255,.2);
}
.cta-actions .btn-ghost {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.25);
}
.cta-actions .btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-fine { font-size: 13px; color: rgba(255,255,255,.35); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 0 32px;
}
.footer .nav-logo .logo-text { color: #fff; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.35); margin-top: 10px; max-width: 200px; }
.footer-cols { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.fc-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.25);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 420px; }
  .float-notif { left: 0; }
  .float-qr { left: 0; }
  .how-container { grid-template-columns: 1fr; gap: 40px; }
  .how-section { height: auto; }
  .how-sticky { position: relative; height: auto; padding: 80px 0; }
  .how-mockup-frame { height: 360px; position: relative; }
  .split-layout { grid-template-columns: 1fr; gap: 48px; }
  .split-layout.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; flex-direction: column; gap: 4px; padding: 8px; }
  .nav-mobile-toggle span { width: 20px; height: 1.5px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card.feat-large { grid-column: span 1; grid-template-columns: 1fr; }
  .fdp-qr-float { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured-card { transform: scale(1); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-cols { flex-wrap: wrap; gap: 32px; }
  .hero-visual { display: none; }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}
