/* ===================================================
   Aperibusiness.it — Design System 2026
   Font: Inter · Palette: Warm neutral + Orange
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== Design Tokens ===== */
:root {
  /* Brand */
  --orange:        #ea580c;
  --orange-hover:  #c2410c;
  --orange-light:  rgba(234, 88, 12, 0.08);
  --orange-glow:   rgba(234, 88, 12, 0.25);
  --amber:         #d97706;
  --amber-light:   rgba(217, 119, 6, 0.10);

  /* Neutrals */
  --bg:            #fafaf9;
  --surface:       #ffffff;
  --surface-warm:  #fff8f2;
  --border:        #e7e5e4;
  --border-light:  #f5f4f2;

  /* Text */
  --text:          #1c1917;
  --text-muted:    #78716c;
  --text-faint:    #a8a29e;

  /* Typography */
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-sm:   6px;
  --r:      10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 9999px;

  /* Shadows */
  --s-xs:   0 1px 2px rgba(0,0,0,0.05);
  --s-sm:   0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --s:      0 4px 16px rgba(0,0,0,0.08);
  --s-lg:   0 12px 40px rgba(0,0,0,0.10);
  --s-xl:   0 24px 64px rgba(0,0,0,0.14);
  --s-glow: 0 8px 32px rgba(234, 88, 12, 0.30);

  /* Transitions */
  --t:   0.18s ease;
  --t-s: 0.36s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-w:    1160px;
  --sect-pad: 6rem 1.5rem;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--t);
}
a:hover { color: var(--orange-hover); }

ul { list-style: none; padding: 0; }

/* ===== Scroll-reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ===== Lucide icons ===== */
[class^="icon-"],
[class*=" icon-"] {
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--r);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none !important;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t),
    transform var(--t),
    box-shadow var(--t);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-lg {
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Primary */
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--s-glow);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  background: var(--orange-light);
  color: var(--orange);
  transform: translateY(-1px);
}

/* Ghost (for CTA on dark bg) */
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-1px);
}

/* White (for CTA on dark bg) */
.btn-white {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
  box-shadow: var(--s-lg);
}

/* Small variants for header */
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  background: var(--orange);
  color: #fff;
  border-radius: var(--r);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary-sm:hover {
  background: var(--orange-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--s-glow);
}

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--r);
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none !important;
  transition: color var(--t), background var(--t);
}
.btn-ghost-sm:hover {
  color: var(--text);
  background: var(--border-light);
}


/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 1.5rem;
  background: rgba(250, 250, 249, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.site-header.scrolled {
  background: rgba(250, 250, 249, 0.95);
  border-color: var(--border);
  box-shadow: var(--s-sm);
}

.site-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--text);
  letter-spacing: -0.03em;
  text-decoration: none !important;
  flex-shrink: 0;
}
.logo-text:hover { color: var(--text); }
.logo-icon {
  width: 30px;
  height: 30px;
  background: var(--orange);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.header-logo {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* Site nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
}
.site-nav a {
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none !important;
  transition: color var(--t), background var(--t);
}
.site-nav a:hover {
  color: var(--text);
  background: var(--border-light);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--text);
  margin-left: auto;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.6rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none !important;
  transition: color var(--t), background var(--t);
}
.mobile-nav a:hover {
  color: var(--text);
  background: var(--border-light);
}


/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
}

/* Background blobs */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}
.hero-blob-1 {
  width: 600px;
  height: 600px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(234,88,12,0.14) 0%, transparent 70%);
  animation: blobDrift 10s ease-in-out infinite alternate;
}
.hero-blob-2 {
  width: 440px;
  height: 440px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(217,119,6,0.12) 0%, transparent 70%);
  animation: blobDrift 13s ease-in-out 2s infinite alternate-reverse;
}
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(24px, -24px) scale(1.08); }
}

/* Dot grid */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(28,20,16,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: center;
  width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.875rem;
  background: var(--orange-light);
  border: 1px solid rgba(234,88,12,0.18);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* H1 */
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

/* Lead */
.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2rem;
}

/* Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

/* Social proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.hero-avatars {
  display: flex;
}
.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover;
  margin-left: -10px;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-proof-stars {
  font-size: 0.75rem;
  color: #f59e0b;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}
.hero-proof-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.hero-proof-text strong { color: var(--text); }


/* ===========================
   PHONE MOCKUP
   =========================== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-wrap {
  position: relative;
  width: 280px;
}

/* Floating pills */
.float-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--r-pill);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  z-index: 4;
}
.float-pill-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-pill-1 {
  top: -18px;
  right: -32px;
  animation: floatUp 5s ease-in-out infinite;
}
.float-pill-2 {
  bottom: 32px;
  left: -40px;
  animation: floatUp 7s ease-in-out 1.5s infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Phone device */
.phone-mockup {
  position: relative;
  width: 100%;
  background: var(--surface);
  border-radius: 40px;
  border: 7px solid var(--text);
  box-shadow: var(--s-xl), inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  z-index: 2;
}
.phone-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background: var(--text);
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  padding: 30px 0 0;
  min-height: 500px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

/* Phone header */
.phone-header {
  background: var(--surface);
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-restaurant-name {
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--orange);
  letter-spacing: -0.01em;
}
.phone-badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--orange-light);
  color: var(--orange);
  padding: 0.15rem 0.45rem;
  border-radius: var(--r-pill);
}

/* Phone body */
.phone-body {
  padding: 0.75rem 0.875rem;
  flex: 1;
}
.phone-section { margin-bottom: 0.875rem; }
.phone-cat {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1.5px solid rgba(234,88,12,0.2);
  padding-bottom: 0.2rem;
  margin-bottom: 0.45rem;
  display: inline-block;
}
.phone-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 0.3rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text);
}
.phone-price {
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

/* QR row */
.phone-qr-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 0 0.5rem;
  border-top: 1px solid var(--border);
}
.phone-qr {
  width: 52px;
  height: 52px;
  background: var(--text);
  border-radius: 7px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 1.5px;
  padding: 5px;
  flex-shrink: 0;
}
.phone-qr span {
  border-radius: 1px;
  background: var(--bg);
}
.phone-qr span.on { background: var(--text); }
.phone-qr-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
}


/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 1.5rem;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}
.trust-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
}
.chip i { font-size: 0.875rem; color: var(--orange); }


/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  padding: 3rem 1.5rem;
  background: var(--bg);
}
.stats-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 1rem;
}
.stat-item {
  text-align: center;
  grid-column: span 1;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 auto;
}
.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-plus, .stat-unit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
}
.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}


/* ===========================
   SECTION COMMONS
   =========================== */
.section {
  padding: var(--sect-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 3rem;
}
.section-head.centered {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--orange-light);
  border: 1px solid rgba(234,88,12,0.15);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}
.section-label.light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
}

.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 540px;
}
.section-head.centered .section-sub {
  margin-left: auto;
  margin-right: auto;
}


/* ===========================
   FEATURES BENTO
   =========================== */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bento-large {
  grid-column: span 7;
  grid-row: span 2;
}
.bento-tall {
  grid-column: span 5;
}
.bento-wide {
  grid-column: span 12;
}

/* Base card */
.bento-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--s-xs);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s-lg);
  border-color: rgba(234,88,12,0.18);
}

.bento-card.warm {
  background: var(--surface-warm);
}
.bento-card.dark {
  background: linear-gradient(145deg, #1c1917 0%, #292524 100%);
  border-color: #292524;
}
.bento-card.dark h3,
.bento-card.dark p { color: rgba(255,255,255,0.9); }
.bento-card.dark h3 { color: #fff; }

/* Card icon */
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.125rem;
  flex-shrink: 0;
}
.card-icon.orange { background: var(--orange-light); color: var(--orange); }
.card-icon.amber  { background: var(--amber-light);  color: var(--amber); }
.card-icon.light  { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }

.bento-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.bento-large h3 { font-size: 1.3125rem; }

.bento-card p {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* Card tag */
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange);
}
.card-tag.light { color: rgba(255,255,255,0.6); }

/* Visual area */
.card-visual {
  flex: 1;
  margin-top: 1.25rem;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
}

/* Mini menu */
.mini-menu {
  padding: 0.875rem;
  flex: 1;
}
.mini-cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 0 0.4rem 0.3rem;
  margin-bottom: 0.35rem;
  border-bottom: 1.5px solid rgba(234,88,12,0.18);
  display: inline-block;
}
.mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 0.3rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text);
}
.mini-price { color: var(--orange); font-weight: 700; }

/* QR visual */
.qr-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex: 1;
  padding: 1rem;
}
.mini-qr {
  width: 60px;
  height: 60px;
  background: var(--text);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 6px;
}
.mini-qr span { border-radius: 1px; background: var(--bg); }
.mini-qr span.on { background: var(--text); }
.qr-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

/* PDF badges */
.pdf-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
}
.pdf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pdf-badge.primary {
  background: var(--orange-light);
  border-color: rgba(234,88,12,0.2);
  color: var(--orange);
}
.pdf-ok {
  color: #16a34a;
  font-size: 0.75rem;
  margin-left: 0.125rem;
}


/* ===========================
   HOW IT WORKS
   =========================== */
.how-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sect-pad);
}
.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  opacity: 0.3;
  border-radius: 2px;
  margin-top: 40px;
  flex-shrink: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  box-shadow: 0 4px 14px var(--orange-glow);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(234,88,12,0.18);
}
.step-icon {
  font-size: 1.375rem;
  color: var(--orange);
  margin-bottom: 0.875rem;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
}
.link-example { color: var(--orange); font-weight: 600; }
.step-time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.875rem;
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-pill);
  background: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
}
.step-time.done {
  background: rgba(22,163,74,0.09);
  color: #16a34a;
}


/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--s-xs);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--s);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.testimonial blockquote {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-faint);
}


/* ===========================
   PRICING
   =========================== */
.pricing-section {
  background: var(--bg);
  padding: var(--sect-pad);
}
.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s-lg);
}
.pricing-card-featured {
  background: var(--surface);
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--s);
}
.pricing-card-featured:hover {
  box-shadow: 0 0 0 1px var(--orange), var(--s-lg);
}
.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.875rem;
  background: var(--orange);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.pricing-card-head { display: flex; flex-direction: column; gap: 0.5rem; }
.plan-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.plan-amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}
.plan-period {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}
.plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.plan-features li svg { color: var(--orange); flex-shrink: 0; }
.feature-off {
  color: var(--text-faint) !important;
}
.feature-off svg { color: var(--text-faint) !important; }


/* ===========================
   CTA SECTION
   =========================== */
.cta-wrap {
  padding: 4rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.cta-section {
  position: relative;
  background: linear-gradient(145deg, #ea580c 0%, #9a3412 100%);
  border-radius: var(--r-xl);
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}
/* Dot grid overlay */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  border-radius: inherit;
}
.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -200px;
  right: -120px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.cta-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}


/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.site-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 4rem;
  align-items: start;
}
.footer-brand {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.55;
}
.footer-nav {
  display: flex;
  gap: 3rem;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
  margin-bottom: 0.25rem;
}
.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none !important;
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-faint);
}


/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
  }
  .bento-large { grid-column: span 6; grid-row: span 1; }
  .bento-tall  { grid-column: span 3; }
  .bento-wide  { grid-column: span 6; }

  .stats-bar-inner {
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  }
  .stat-divider { height: 40px; }

  .steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }
  .step-connector { width: 48px; }
}

@media (max-width: 768px) {
  :root { --sect-pad: 4rem 1.25rem; }

  .hero {
    padding: 7rem 1.25rem 4rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof  { justify-content: center; }
  .hero-visual { display: none; }

  .site-nav, .header-actions { display: none; }
  .mobile-menu-btn { display: flex; }

  .bento {
    grid-template-columns: 1fr;
  }
  .bento-large, .bento-tall, .bento-wide {
    grid-column: span 1;
    grid-row: auto;
  }
  .bento-card.bento-wide {
    flex-direction: column;
  }

  .steps {
    grid-template-columns: 1fr;
  }
  .step-connector { display: none; }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-divider { display: none; }
  .stat-item { grid-column: span 1; }

  .cta-section { padding: 3.5rem 1.5rem; }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-nav { gap: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.25rem; }
  .trust-sep { display: none; }
  .footer-nav { flex-direction: column; gap: 1.5rem; }
}
