/* =========================================
   FLEVER — Design System
   ========================================= */

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

:root {
  /* Brand colors */
  --orange: #FF6B2B;
  --orange-soft: #FFB088;
  --orange-tint: #FFF1E8;
  --orange-deep: #C44A14;

  --green: #00B894;
  --green-tint: #E1F5EE;
  --green-deep: #007F66;

  /* Neutrals - warm tinted */
  --ink: #14141C;
  --ink-2: #2B2B3A;
  --slate-700: #4A4A5C;
  --slate-500: #6B6B7E;
  --slate-400: #9595A6;
  --slate-300: #C8C8D2;
  --slate-200: #E8E8EE;
  --slate-100: #F4F4F7;
  --slate-50:  #FAFAFB;
  --paper: #FCFAF7;
  --white: #FFFFFF;

  /* Typo */
  --font-display: 'Instrument Serif', 'Outfit', serif;
  --font-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', ui-monospace, Menlo, monospace;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20,20,28,0.04), 0 0 0 1px rgba(20,20,28,0.04);
  --shadow-md: 0 8px 24px rgba(20,20,28,0.06), 0 2px 6px rgba(20,20,28,0.04);
  --shadow-lg: 0 24px 56px rgba(20,20,28,0.10), 0 8px 16px rgba(20,20,28,0.05);
  --shadow-xl: 0 40px 96px rgba(20,20,28,0.18), 0 12px 32px rgba(20,20,28,0.08);
  --shadow-orange: 0 24px 48px rgba(255,107,43,0.25);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --r-full: 999px;

  /* Container */
  --container: 1180px;
  --gutter: 24px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* =========================================
   Typography
   ========================================= */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px;
  background: currentColor; opacity: 0.5;
}
.eyebrow.green { color: var(--green-deep); }
.eyebrow.light { color: rgba(255,255,255,0.55); }

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-style: normal;
}
.h-mega {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.h-1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
}
.h-2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.h-3 {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.italic-serif { font-style: italic; font-family: var(--font-display); font-weight: 400; }

.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--slate-700);
  line-height: 1.55;
  max-width: 56ch;
  text-wrap: pretty;
}
.kicker { color: var(--slate-500); font-size: 15px; }
.muted { color: var(--slate-500); }
.accent-orange { color: var(--orange); }
.accent-green { color: var(--green-deep); }

/* =========================================
   Layout primitives
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-large { padding: 128px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
  max-width: 760px;
}
.section-head .lede { margin-top: 4px; }

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange); transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--slate-300);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--slate-200);
}
.btn-light:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-arrow svg { transition: transform 0.18s ease; }
.btn-arrow:hover svg { transform: translateX(3px); }

/* =========================================
   Navigation
   ========================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(252,250,247,0.78);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  border-bottom: 1px solid rgba(20,20,28,0.06);
  transition: background 0.2s ease;
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 26px; font-weight: 400; letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--ink); color: var(--orange);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-size: 22px;
  line-height: 1;
}
.logo-mark span { transform: translateY(-1px); }

.nav-toggle {
  display: inline-flex;
  background: var(--slate-100);
  border-radius: var(--r-full);
  padding: 4px;
  position: relative;
  border: 1px solid var(--slate-200);
}
.nav-toggle a {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-500);
  border-radius: var(--r-full);
  transition: color 0.18s ease;
  position: relative;
  z-index: 1;
}
.nav-toggle a.active {
  color: var(--white);
  background: var(--ink);
}
.nav-toggle a:not(.active):hover { color: var(--ink); }

.nav-cta-row { display: flex; align-items: center; gap: 12px; }
.nav-link {
  font-size: 14px; color: var(--slate-700); font-weight: 500;
  padding: 8px 12px;
}
.nav-link:hover { color: var(--orange); }

/* =========================================
   Hero — B2C
   ========================================= */
.hero {
  padding: 132px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 50% at 90% 0%, rgba(255,107,43,0.08), transparent 60%),
    radial-gradient(40% 40% at 0% 70%, rgba(0,184,148,0.06), transparent 60%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 500;
  color: var(--slate-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .pill {
  background: var(--orange-tint); color: var(--orange-deep);
  font-size: 11px; font-weight: 600; padding: 3px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.hero-badge .dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,184,148,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0,184,148,0); }
}

.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic;
  color: var(--orange);
  position: relative;
  white-space: nowrap;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-top: 32px;
}
.hero-trust {
  margin-top: 28px;
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--slate-500);
}
.hero-trust .avatars {
  display: flex;
}
.hero-trust .avatars span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--paper);
  background: var(--orange-soft);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  color: var(--white);
  font-family: var(--font-sans);
}
.hero-trust .avatars span:first-child { margin-left: 0; background: #FF8C42; }
.hero-trust .avatars span:nth-child(2) { background: #00B894; }
.hero-trust .avatars span:nth-child(3) { background: #6366F1; }
.hero-trust .avatars span:nth-child(4) { background: var(--ink); }

/* =========================================
   Phone mockup (iPhone-like)
   ========================================= */
.phone-stage {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 640px;
}
.phone {
  position: relative;
  width: 320px;
  aspect-ratio: 320 / 660;
  background: var(--ink);
  border-radius: 48px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.phone::before {
  content: '';
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px;
  background: var(--ink); border-radius: var(--r-full);
  z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--white);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}
.statusbar {
  height: 48px;
  display: flex; align-items: flex-end;
  justify-content: space-between;
  padding: 0 22px 8px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.statusbar .icons { display: flex; gap: 5px; align-items: center; }
.statusbar .icons svg { width: 14px; height: 14px; }

.app-header {
  padding: 16px 20px 12px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--slate-100);
}
.app-header .title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  letter-spacing: -0.02em;
}
.app-header .cta-mini {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}

/* Receipt screen */
.receipt-screen { padding: 14px 18px 18px; }
.receipt-meta {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--slate-50);
  border-radius: var(--r-md);
  margin-bottom: 12px;
}
.receipt-meta .where {
  font-family: var(--font-display); font-size: 16px; font-weight: 400;
  letter-spacing: -0.01em;
}
.receipt-meta .when {
  font-size: 11px; color: var(--slate-500);
  font-family: var(--font-mono);
}
.receipt-meta-icon {
  width: 32px; height: 32px;
  border-radius: 8px; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  flex-shrink: 0;
}
.receipt-line {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 4px;
  border-bottom: 1px dashed var(--slate-200);
  font-size: 13px;
  position: relative;
  transition: background 0.4s ease;
}
.receipt-line .check {
  width: 20px; height: 20px;
  border: 1.5px solid var(--slate-300);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  transition: all 0.3s ease;
}
.receipt-line .check svg { opacity: 0; transform: scale(0.5); transition: all 0.3s ease; width: 12px; height: 12px; }
.receipt-line.checked .check {
  background: var(--orange); border-color: var(--orange);
}
.receipt-line.checked .check svg { opacity: 1; transform: scale(1); color: var(--white); }
.receipt-line.checked {
  background: linear-gradient(90deg, rgba(255,107,43,0.04), transparent);
  border-radius: 8px;
}
.receipt-line .label { color: var(--ink); font-weight: 500; }
.receipt-line .qty { color: var(--slate-400); font-size: 11px; margin-left: 4px; font-family: var(--font-mono); }
.receipt-line .price {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  font-size: 13px;
}
.receipt-line.checked .price { color: var(--orange-deep); }

.receipt-total {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 14px;
  margin-top: 6px;
}
.receipt-total .lbl {
  font-size: 12px; color: var(--slate-500);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font-mono);
}
.receipt-total .amount {
  font-family: var(--font-display);
  font-size: 32px; letter-spacing: -0.02em;
  font-weight: 400;
}
.receipt-cta {
  margin-top: 14px;
  display: flex; gap: 8px; align-items: center;
  background: var(--ink); color: var(--white);
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 13px; font-weight: 500;
  justify-content: space-between;
}
.receipt-cta .right { display: flex; align-items: center; gap: 6px; }

/* Scan beam */
.scan-beam {
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255,107,43,0), rgba(255,107,43,0.18) 50%, rgba(255,107,43,0));
  pointer-events: none;
  animation: scan-move 3.2s ease-in-out infinite;
  z-index: 4;
  mix-blend-mode: multiply;
}
@keyframes scan-move {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(540px); opacity: 0; }
}

/* Floating notification card */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  z-index: 10;
  border: 1px solid var(--slate-200);
}
.float-card.notif {
  top: 60px; left: -40px;
  animation: float-in 0.6s 0.3s both;
}
.float-card.split {
  bottom: 80px; right: -52px;
  animation: float-in 0.6s 0.6s both;
}
@keyframes float-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.float-card .icon-blob {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange-tint); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display); font-style: italic; font-size: 16px;
}
.float-card .icon-blob.green { background: var(--green-tint); color: var(--green-deep); }
.float-card .text { font-size: 12px; line-height: 1.3; }
.float-card .text strong { display: block; font-weight: 600; color: var(--ink); }
.float-card .text span { color: var(--slate-500); }

/* =========================================
   Logos / press strip
   ========================================= */
.strip {
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 28px 0;
  background: var(--white);
}
.strip-inner {
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; justify-content: space-between;
}
.strip-label {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--slate-500);
}
.strip-logos {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 22px; color: var(--slate-400);
}
.strip-logos span { transition: color 0.2s ease; }
.strip-logos span:hover { color: var(--ink); }

/* =========================================
   How it works
   ========================================= */
.how {
  padding: 120px 0;
  background: var(--paper);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: stepc;
}
.step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-soft);
}
.step .num {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  color: var(--orange);
  font-style: italic;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--slate-500); line-height: 1.5; }
.step .visual {
  margin-top: auto;
  padding-top: 18px;
}
.step-icon-mini {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--orange-tint);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 28px; right: 28px;
}

/* =========================================
   Demo flow
   ========================================= */
.demo {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.demo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 80% 30%, rgba(255,107,43,0.15), transparent 60%),
    radial-gradient(30% 40% at 10% 80%, rgba(0,184,148,0.10), transparent 60%);
  pointer-events: none;
}
.demo .container { position: relative; z-index: 1; }
.demo .section-head { color: var(--white); }
.demo .h-2 { color: var(--white); }
.demo .lede { color: rgba(255,255,255,0.7); }

.demo-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.demo-tabs {
  display: flex; flex-direction: column;
  gap: 12px;
}
.demo-tab {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.demo-tab:hover { background: rgba(255,255,255,0.07); }
.demo-tab.active {
  background: rgba(255,107,43,0.10);
  border-color: rgba(255,107,43,0.5);
}
.demo-tab .tab-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.demo-tab.active .tab-num { color: var(--orange); }
.demo-tab .tab-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin-bottom: 6px;
}
.demo-tab .tab-desc {
  font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.demo-tab .progress {
  position: absolute; left: 0; bottom: -1px;
  height: 2px; width: 0%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 4s linear;
}
.demo-tab.active .progress { width: 100%; }

.demo-canvas {
  position: relative;
  display: flex; justify-content: center;
  min-height: 620px;
  align-items: center;
}
.demo-screen {
  position: absolute;
  width: 320px;
  aspect-ratio: 320 / 620;
  opacity: 0;
  transform: scale(0.96) translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.demo-screen.active { opacity: 1; transform: scale(1) translateY(0); }

/* =========================================
   Restaurateurs section (B2B inset)
   ========================================= */
.resto-section {
  padding: 120px 0;
  background: var(--paper);
}
.resto-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.resto-visual {
  position: relative;
  min-height: 580px;
  display: flex; align-items: center; justify-content: center;
}
.resto-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 28px;
}
.resto-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--slate-200);
  transition: all 0.2s ease;
}
.resto-list li:hover {
  border-color: var(--green);
  transform: translateX(4px);
}
.resto-list .dot {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
}
.resto-list span.text { font-size: 15px; line-height: 1.45; color: var(--slate-700); }
.resto-list span.text strong { color: var(--ink); font-weight: 600; }

.resto-cta-row {
  margin-top: 32px;
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}

/* QR table card visual */
.table-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  width: 280px;
  position: absolute;
  z-index: 2;
}
.table-card.tc-1 { top: 20px; left: 0; transform: rotate(-3deg); }
.table-card.tc-2 { bottom: 20px; right: 0; transform: rotate(3deg); }
.table-card .tc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--slate-200);
}
.table-card .tc-head .table-name {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: -0.02em;
  font-weight: 400;
}
.table-card .tc-head .resto-name {
  font-size: 11px; color: var(--slate-500);
  font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.table-card .qr {
  width: 180px; height: 180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 1px;
  background: var(--ink);
  padding: 12px;
  border-radius: 12px;
}
.table-card .qr div { background: transparent; aspect-ratio: 1; border-radius: 1px; }
.table-card .qr div.on { background: var(--white); }
.table-card .tc-foot {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
}

/* Dashboard mock */
.dash-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  width: 320px;
  position: relative;
  z-index: 3;
}
.dash-card .dh {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--slate-100);
}
.dash-card .dh .title {
  font-family: var(--font-display);
  font-size: 22px;
}
.dash-card .dh .live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--green-deep);
  background: var(--green-tint);
  padding: 4px 8px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dash-card .dh .live::before {
  content: ''; width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.dash-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 4px;
}
.dash-row.alive { background: var(--orange-tint); }
.dash-row .tnum {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-style: italic;
  flex-shrink: 0;
}
.dash-row.alive .tnum { background: var(--orange); color: var(--white); }
.dash-row .tinfo { flex: 1; min-width: 0; }
.dash-row .tlabel { font-weight: 600; font-size: 13px; color: var(--ink); }
.dash-row .tmeta { font-size: 11px; color: var(--slate-500); margin-top: 1px; font-family: var(--font-mono); }
.dash-row.alive .tmeta { color: var(--orange-deep); }
.dash-row .tamount {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.dash-row:not(.alive) .tamount { color: var(--slate-400); }

/* =========================================
   Compare Before/After
   ========================================= */
.compare {
  padding: 120px 0;
  background: var(--white);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}
.compare-col {
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.compare-col.before {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}
.compare-col.after {
  background: var(--ink);
  color: var(--white);
}
.compare-col .col-title {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
  border-color: rgba(20,20,28,0.08);
}
.compare-col.after .col-title { border-color: rgba(255,255,255,0.1); }
.compare-col .col-title h3 {
  font-family: var(--font-display);
  font-size: 30px; letter-spacing: -0.02em;
  font-weight: 400;
}
.compare-col .col-title .lbl {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.compare-col.before .col-title .lbl {
  background: #FCE5E5; color: #B91C1C;
}
.compare-col.after .col-title .lbl {
  background: rgba(0,184,148,0.18); color: #6CDFB7;
}
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.5;
}
.compare-list li .ico {
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  font-size: 12px; font-weight: 700;
}
.compare-col.before .ico { background: #FCE5E5; color: #B91C1C; }
.compare-col.after .ico { background: rgba(0,184,148,0.18); color: #6CDFB7; }
.compare-col.after p { color: rgba(255,255,255,0.85); }

/* =========================================
   Payflow — paiement à 2 temps
   ========================================= */
.payflow {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.payflow-stage {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.payflow-card {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  position: relative;
}
.payflow-card--b {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.payflow-step {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.payflow-step .step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
}
.payflow-card--b .step-num {
  background: var(--orange);
  color: var(--ink);
}
.payflow-step .step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
}
.payflow-card--b .step-label { color: rgba(255,255,255,0.55); }

.payflow-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.payflow-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate-700);
  max-width: 620px;
  margin-bottom: 32px;
}
.payflow-card--b .payflow-desc { color: rgba(255,255,255,0.78); }
.payflow-card--b .payflow-desc strong { color: var(--white); }

/* Diagram A: créateur → resto */
.payflow-diagram {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
}
.pf-node {
  display: flex; align-items: center; gap: 12px;
}
.pf-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  flex-shrink: 0;
}
.pf-avatar--resto {
  background: var(--ink);
  color: var(--orange);
}
.pf-avatar--lg {
  width: 64px; height: 64px;
  font-size: 28px;
  box-shadow: 0 0 0 6px rgba(255,107,43,0.15);
}
.pf-avatar--sm {
  width: 32px; height: 32px;
  font-size: 14px;
  background: var(--slate-100);
  color: var(--ink);
}
.pf-meta { display: flex; flex-direction: column; line-height: 1.2; }
.pf-role {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
}
.pf-name {
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}
.pf-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--slate-300);
  position: relative;
}
.pf-arrow svg { width: 100%; height: 24px; display: block; }
.pf-amount {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--orange);
}
.pf-method {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
}

/* Diagram B: éventail rembours. */
.payflow-fan {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.fan-center {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.fan-center-label {
  font-size: 13px; font-weight: 600;
  color: var(--white);
}
.fan-center-total {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--orange);
}
.fan-spokes {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
}
.fan-spoke {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
}
.spoke-line {
  height: 2px;
  background-image: linear-gradient(to right, transparent, transparent 50%, rgba(255,107,43,0.5) 50%);
  background-size: 8px 2px;
}
.spoke-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.spoke-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,107,43,0.4);
}
.spoke-head { display: flex; align-items: center; gap: 10px; }
.spoke-name { font-size: 14px; font-weight: 600; color: var(--white); }
.spoke-amount {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--orange);
}
.spoke-method {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot--green { background: #00B894; }
.dot--purple { background: #6366F1; }
.dot--blue { background: #3B82F6; }

/* Bridge */
.payflow-bridge {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 0;
  color: var(--slate-300);
}
.bridge-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--slate-500);
  margin-bottom: 4px;
}
.payflow-bridge svg { width: 24px; height: 60px; }

/* Foot */
.payflow-foot {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.payflow-foot-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-md);
  font-size: 13px;
  line-height: 1.5;
  color: var(--slate-700);
}
.payflow-foot-item svg { color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.payflow-foot-item strong { color: var(--ink); font-weight: 600; }

@media (max-width: 980px) {
  .payflow-card { padding: 32px 28px; }
  .payflow-title { font-size: 28px; }
  .payflow-diagram { grid-template-columns: 1fr; gap: 12px; padding: 20px; justify-items: center; }
  .pf-node { width: 100%; max-width: 280px; justify-content: center; }
  .pf-arrow { flex-direction: row; gap: 12px; width: auto; }
  .pf-arrow svg { width: 60px; height: 16px; transform: rotate(90deg); }
  .payflow-fan { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
  .fan-spoke { grid-template-columns: 32px 1fr; gap: 10px; }
  .payflow-foot { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 640px) {
  .payflow { padding: 80px 0; }
  .payflow-card { padding: 28px 22px; }
  .payflow-title { font-size: 24px; }
  .spoke-card { grid-template-columns: 1fr auto; gap: 8px; padding: 10px 12px; }
  .spoke-method { grid-column: 1 / -1; margin-top: 2px; }
}

/* =========================================
   Pricing
   ========================================= */
.pricing {
  padding: 120px 0;
  background: var(--paper);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.price-card.featured h3 { color: var(--white); }
.price-card .pc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate-500);
  margin-bottom: 10px;
}
.price-card.featured .pc-tag { color: var(--orange); }
.price-card h3 {
  font-family: var(--font-display);
  font-size: 32px; letter-spacing: -0.02em;
  margin-bottom: 6px;
  font-weight: 400;
}
.price-card .pc-price {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: -0.03em;
  margin: 12px 0 4px;
  font-weight: 400;
  line-height: 1;
}
.price-card .pc-price small {
  font-size: 16px; color: var(--slate-500);
  font-family: var(--font-sans); font-weight: 500;
}
.price-card.featured .pc-price small { color: rgba(255,255,255,0.55); }
.price-card .pc-tagline {
  font-size: 14px;
  color: var(--slate-500);
  margin-bottom: 22px;
}
.price-card.featured .pc-tagline { color: rgba(255,255,255,0.65); }
.price-card .pc-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}
.price-card .pc-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--slate-700);
}
.price-card.featured .pc-list li { color: rgba(255,255,255,0.85); }
.price-card .pc-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.price-card .pc-cta {
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 500;
}

/* =========================================
   Map / Restos partenaires
   ========================================= */
.map-section {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.map-stage {
  position: relative;
  margin-top: 48px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, #F4F4F7 0%, #FFF1E8 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--slate-200);
}
.map-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.75;
}
.map-pin {
  position: absolute;
  width: 36px; height: 36px;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.2s ease;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
}
.map-pin::after {
  content: '';
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.3;
  animation: pin-pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes pin-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.4); opacity: 0; }
}
.map-pin:hover { transform: scale(1.15); }
.map-pin .tooltip {
  position: absolute;
  top: -52px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 12px; font-style: normal;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.map-pin .tooltip::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--ink);
}
.map-pin:hover .tooltip { opacity: 1; }
.map-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.map-stat {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
}
.map-stat .num {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.03em;
  color: var(--orange);
  font-weight: 400;
  line-height: 1;
}
.map-stat .lbl {
  margin-top: 8px;
  color: var(--slate-500);
  font-size: 14px;
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  padding: 120px 0;
  background: var(--paper);
}
.faq-list {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 820px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--orange-soft); }
.faq-item:hover { border-color: var(--orange); }
.faq-item summary {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.01em;
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 24px; height: 24px;
  background:
    linear-gradient(currentColor, currentColor) center / 12px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 12px no-repeat;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  background: linear-gradient(currentColor, currentColor) center / 12px 1.5px no-repeat;
  transform: rotate(180deg);
}
.faq-item p {
  margin-top: 14px;
  color: var(--slate-700);
  line-height: 1.6;
  font-size: 15px;
}

/* =========================================
   Big CTA download
   ========================================= */
.bigcta {
  padding: 140px 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.bigcta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 50% 100%, rgba(255,107,43,0.30), transparent 60%),
    radial-gradient(40% 50% at 0% 0%, rgba(0,184,148,0.10), transparent 60%);
}
.bigcta .container { position: relative; z-index: 1; }
.bigcta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bigcta h2 { color: var(--white); margin-bottom: 24px; }
.bigcta .lede { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.qr-block {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 28px;
  display: flex; gap: 20px; align-items: center;
  box-shadow: var(--shadow-xl);
  margin-left: auto;
  max-width: 460px;
}
.qr-block .qr-img {
  width: 160px; height: 160px;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 1px;
  padding: 10px;
  background: var(--ink);
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.qr-block .qr-img div { background: transparent; aspect-ratio: 1; }
.qr-block .qr-img div.on { background: var(--white); }
.qr-block .qr-text { color: var(--ink); }
.qr-block .qr-text .small {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate-500);
  margin-bottom: 6px;
}
.qr-block .qr-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.qr-block .qr-text p {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.4;
}

.email-form {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.06);
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  max-width: 460px;
  transition: border-color 0.2s ease;
}
.email-form:focus-within { border-color: var(--orange); }
.email-form input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--white);
}
.email-form input::placeholder { color: rgba(255,255,255,0.5); }
.email-form button {
  padding: 12px 22px;
  background: var(--orange);
  color: var(--white);
  border: 0;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  transition: background 0.18s ease, transform 0.18s ease;
}
.email-form button:hover { background: var(--orange-deep); transform: translateY(-1px); }
.form-success {
  display: none;
  padding: 14px 22px;
  background: rgba(0,184,148,0.18);
  color: #6CDFB7;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  max-width: 460px;
  align-items: center;
  gap: 8px;
}
.form-success.show { display: flex; }
.email-note { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.5); }

/* =========================================
   Footer
   ========================================= */
.footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--slate-200);
  background: var(--paper);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--slate-500);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--slate-700);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--orange); }
.footer-brand p {
  margin-top: 14px;
  color: var(--slate-500);
  font-size: 14px;
  max-width: 36ch;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
  font-size: 13px;
  color: var(--slate-500);
}
.footer-bottom .made { font-style: italic; font-family: var(--font-display); font-size: 16px; }

/* =========================================
   Reveal animations
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-text { max-width: 100%; }
  .phone-stage { min-height: 580px; }
  .demo-stage { grid-template-columns: 1fr; gap: 40px; }
  .demo-canvas { min-height: 560px; }
  .resto-grid { grid-template-columns: 1fr; gap: 56px; }
  .resto-visual { min-height: 480px; order: -1; }
  .compare-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .bigcta-grid { grid-template-columns: 1fr; gap: 40px; }
  .qr-block { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section, .how, .demo, .resto-section, .compare, .pricing, .map-section, .faq { padding: 80px 0; }
  .bigcta { padding: 100px 0; }
  .nav-toggle { display: none; }
  .nav-link { display: none; }
  .hero { padding: 110px 0 60px; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .step { min-height: 0; padding: 26px 22px; }
  .step .num { font-size: 48px; }
  .float-card { display: none; }
  .map-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .qr-block { flex-direction: column; text-align: center; padding: 22px; }
  .qr-block .qr-text { text-align: center; }
  .table-card { width: 230px; padding: 20px; }
  .table-card .qr { width: 140px; height: 140px; }
  .dash-card { width: 280px; }
  .compare-col { padding: 28px 24px; }
  .resto-visual { min-height: 440px; }
}
