/* ═══════════════════════════════════════════════════════════════
   OnPos — Professional Light Theme Design System
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Global Selection & Scrollbar */
::selection { background: var(--accent); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 10px; border: 2px solid #f8fafc; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

:root {
  /* Core Palette */
  --white:    #ffffff;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;

  /* Brand */
  --accent:        #e63946;
  --accent-light:  #fef2f2;
  --accent-mid:    rgba(230,57,70,0.12);
  --accent-border: rgba(230,57,70,0.25);
  --teal:          #0d9488;
  --teal-light:    #f0fdfa;
  --blue:          #2563eb;
  --blue-light:    #eff6ff;
  --amber:         #d97706;
  --amber-light:   #fffbeb;

  /* Surfaces */
  --bg:         var(--white);
  --bg-subtle:  var(--gray-50);
  --bg-muted:   var(--gray-100);
  --border:     var(--gray-200);
  --border-mid: var(--gray-300);

  /* Text */
  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-500);
  --text-muted:     var(--gray-400);

  /* Typography */
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;

  /* Spacing & Shape */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --px:         clamp(24px, 5vw, 80px);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl:  0 24px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Scroll Progress ── */
.scroll-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #f97316);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
}

/* ── Custom Cursor (High-Fidelity) ── */
body, a, button, .btn, .qs, .bcard, .r-card, .dt, .pt, .staff-row { cursor: none !important; }

.cursor-dot, .cursor-outline {
  position: fixed; top: 0; left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%; z-index: 10001; 
  pointer-events: none; transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
  will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; background: var(--accent); }
.cursor-outline {
  width: 32px; height: 32px;
  border: 1px solid var(--accent);
  background: transparent;
}
.cursor-outline.expand {
  width: 64px; height: 64px; background: rgba(230,57,70,0.05);
  border-color: rgba(230,57,70,0.2);
}
.cursor-outline.click {
  width: 24px; height: 24px; background: var(--accent); border-color: var(--accent);
  opacity: 0.5;
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-outline { display: none; }
  body, a, button, .btn, .qs, .bcard, .r-card, .dt, .pt, .staff-row { cursor: auto !important; }
}

/* ── Bento Card Spotlight ── */
.bcard {
  --mouse-x: 0px; --mouse-y: 0px;
  position: relative; overflow: hidden;
}
.bcard::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(230,57,70,0.035), transparent 80%);
  opacity: 0; transition: opacity 0.4s; z-index: 0; pointer-events: none;
}
.bcard:hover::before { opacity: 1; }
.bcard > * { position: relative; z-index: 1; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0 var(--px);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 800; font-size: 20px;
  color: var(--text-primary);
}
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230,57,70,0.3);
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-mark { transform: rotate(-8deg) scale(1.08); }
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: 12px; font-size: 14px; font-weight: 600;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: none; border: 1px solid transparent; position: relative;
}
/* Ensure transform is instant for magnetic effect */
.btn-primary:active, .btn-secondary:active { transform: scale(0.96); }
.btn-ghost {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-subtle); color: var(--text-primary);
  border-color: var(--border-mid);
}
.btn-solid {
  background: var(--accent); color: white;
  box-shadow: 0 2px 8px rgba(230,57,70,0.25);
}
.btn-solid:hover {
  background: #d42f3b;
  box-shadow: 0 6px 20px rgba(230,57,70,0.35);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 14px 32px; font-size: 15px; font-weight: 700;
}
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--gray-400); background: var(--bg-subtle);
}

/* ── SECTION BASE ── */
section { padding: 100px var(--px); }
.section-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px;
  background: var(--accent-light); border: 1px solid var(--accent-border);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); margin-bottom: 20px;
}
.section-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.08; letter-spacing: -0.5px;
  color: var(--text-primary); margin-bottom: 16px;
}
.section-h2 em { font-style: italic; color: var(--accent); }
.section-p {
  font-size: 17px; color: var(--text-secondary); line-height: 1.7;
  max-width: 520px; font-weight: 400;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 130px var(--px) 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; overflow: hidden;
  background: var(--white);
}
.hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 500px at -5% 50%, rgba(230,57,70,0.06), transparent),
    radial-gradient(ellipse 500px 400px at 105% 30%, rgba(13,148,136,0.04), transparent);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light); border: 1px solid var(--accent-border);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: blink 2s infinite; }
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.05; letter-spacing: -1px;
  color: var(--text-primary); margin-bottom: 20px;
}
.hero-h1 em { color: var(--accent); font-style: italic; }
.hero-p {
  font-size: 18px; color: var(--text-secondary); line-height: 1.7;
  max-width: 460px; margin-bottom: 36px; font-weight: 400;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px dashed var(--border);
}
.h-stat {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-radius: 14px;
  background: #fdfdfd; border: 1px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.2,0,0,1);
}
.h-stat:hover {
  background: var(--white); border-color: var(--accent-border);
  box-shadow: 0 10px 25px -10px rgba(230,57,70,0.12);
  transform: translateY(-2px);
}
.h-stat-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.h-stat:hover .h-stat-icon { transform: scale(1.1) rotate(-5deg); }
.h-stat-icon svg { width: 17px; height: 17px; stroke-width: 2.5; }
.hero-stat-num {
  font-family: var(--font-sans); font-size: 18px; font-weight: 800;
  color: var(--text-primary); line-height: 1; margin-bottom: 2px;
}
.hero-stat-label {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-screen {
  background: var(--gray-900); border-radius: 20px;
  padding: 18px; box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.08);
}
.screen-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.sd-r { background: #ff5f57; } .sd-y { background: #febc2e; } .sd-g { background: #28c840; }
.dash {
  background: #0f0f0f; border-radius: 12px; overflow: hidden;
  position: relative; height: 340px;
}
.dash-sidebar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 52px; background: #0a0a0a; padding: 12px 6px;
  display: flex; flex-direction: column; gap: 6px;
}
.dash-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background 0.2s;
}
.dash-icon.active { background: var(--accent); }
.dash-main { margin-left: 58px; padding: 14px 14px 0; }
.dash-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 12px; }
.kpi {
  background: rgba(255,255,255,0.04); border-radius: 10px;
  padding: 10px 12px; border-left: 3px solid;
}
.kpi:nth-child(1){border-color:#e63946} .kpi:nth-child(2){border-color:#2563eb}
.kpi:nth-child(3){border-color:#0d9488} .kpi:nth-child(4){border-color:#d97706}
.kpi-val { font-weight: 800; font-size: 16px; color: #fff; font-family: var(--font-sans); }
.kpi-lbl { font-size: 9px; color: #555; margin-top: 2px; }
.dash-tables { display: grid; grid-template-columns: repeat(6,1fr); gap: 5px; }
.dt {
  aspect-ratio: 1; border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff; gap: 2px;
  border: 1px solid rgba(255,255,255,0.06);
}
.dt.empty { background: rgba(255,255,255,0.04); color: #555; }
.dt.run   { background: rgba(37,99,235,0.55); border-color: #2563eb; }
.dt.billed { background: rgba(230,57,70,0.45); border-color: #e63946; }
.dt small { font-size: 8px; opacity: 0.7; }

/* Floating cards on hero */
.hero-float {
  position: absolute; background: white; border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 12px 16px;
}
.hf-notif { bottom: -20px; left: -28px; display: flex; gap: 10px; align-items: center; min-width: 210px; }
.hf-notif-icon { width: 34px; height: 34px; border-radius: 10px; background: #f0fdfa; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hf-badge { top: -16px; right: -16px; background: var(--accent); color: white; font-size: 11px; font-weight: 700; padding: 8px 14px; }
.hf-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.hf-sub   { font-size: 11px; color: var(--text-muted); }

/* Ticker */
.ticker {
  position: absolute; top: 40px; right: -70px;
  width: 170px; display: flex; flex-direction: column; gap: 8px;
}
.tick-item {
  background: white; border-radius: 12px; padding: 10px 14px;
  box-shadow: var(--shadow-md); font-size: 11px; font-weight: 600;
  border-left: 3px solid var(--teal);
  display: flex; align-items: center; gap: 7px;
}

/* ── LOGOS STRIP ── */
.logos-strip-container {
  padding: 60px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: white; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.logos-label-wrap {
  text-align: center;
}
.logos-label {
  font-size: 11px; font-weight: 800; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.15em;
  opacity: 0.6;
}
.logos-strip {
  width: 100%; position: relative;
  overflow: hidden;
  /* Hide scrollbars just in case */
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Premium fade on edges */
  mask-image: linear-gradient(
    to right, 
    transparent, 
    black 15%, 
    black 85%, 
    transparent
  );
}
.logos-strip::-webkit-scrollbar { display: none; }

.logos-track {
  display: flex; gap: 80px; align-items: center;
  width: max-content;
  animation: logoScroll 40s linear infinite;
  will-change: transform;
}
.logos-track:hover { animation-play-state: paused; }

.logo-name {
  font-weight: 800; font-size: 20px; color: var(--gray-200);
  white-space: nowrap; letter-spacing: 0.08em; font-family: var(--font-sans);
  transition: all 0.3s; cursor: default;
}
.logo-name:hover { color: var(--accent); transform: scale(1.05); }

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── FEATURES BENTO ── */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto; gap: 16px; margin-top: 56px;
}
.bc-1 { grid-column: span 5; grid-row: span 2; }
.bc-2 { grid-column: span 4; }
.bc-3 { grid-column: span 3; }
.bc-4 { grid-column: span 4; }
.bc-5 { grid-column: span 3; }
.bc-6 { grid-column: span 5; }
.bc-7 { grid-column: span 4; }
.bc-8 { grid-column: span 3; }

.bcard {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.2,0,0,1);
  position: relative; overflow: hidden;
}
.bcard:hover {
  box-shadow: var(--shadow-lg); border-color: var(--border-mid);
  transform: translateY(-5px);
}
/* Individual Glows */
.bc-1:hover { border-color: rgba(230,57,70,0.3); box-shadow: 0 10px 40px rgba(230,57,70,0.06); }
.bc-2:hover, .bc-6:hover { border-color: rgba(13,148,136,0.3); box-shadow: 0 10px 40px rgba(13,148,136,0.06); }
.bc-3:hover, .bc-7:hover { border-color: rgba(37,99,235,0.3); box-shadow: 0 10px 40px rgba(37,99,235,0.06); }
.bc-4:hover, .bc-8:hover { border-color: rgba(217,119,6,0.3); box-shadow: 0 10px 40px rgba(217,119,6,0.06); }

.bcard-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.2,0,0,1);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.bcard:hover .bcard-icon { transform: scale(1.15) rotate(-8deg); animation-play-state: paused; }

.live-dot { 
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal); 
  position: relative;
}
.live-dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; background: var(--teal);
  opacity: 0.4; animation: pulse-ripple 2s infinite;
}
@keyframes pulse-ripple {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(3); opacity: 0; }
}
.bcard-h3 {
  font-family: var(--font-sans); font-weight: 700; font-size: 18px;
  color: var(--text-primary); margin-bottom: 8px;
}
.bcard-p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.65; font-weight: 400;
}
.bcard-tag {
  display: inline-block; margin-top: 14px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
}
.live-indicator {
  display: flex; align-items: center; gap: 8px; margin-top: 16px;
  background: var(--teal-light); border: 1px solid rgba(13,148,136,0.15);
  border-radius: 10px; padding: 10px 14px;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: blink 1.5s infinite; }
.live-txt { font-size: 12px; color: var(--teal); font-weight: 600; }
.pwa-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.pwa-pill {
  background: var(--bg-muted); border-radius: 8px; padding: 5px 10px;
  font-size: 11px; font-weight: 600; color: var(--text-secondary);
  display: flex; align-items: center; gap: 4px;
  transition: all 0.2s;
}
.pwa-pill:hover { background: var(--gray-200); color: var(--text-primary); }
.plan-mini { display: flex; gap: 8px; margin-top: 14px; }
.plan-mini-card {
  flex: 1; background: var(--bg-subtle); border-radius: 12px;
  padding: 12px; border: 1px solid var(--border); font-size: 11px;
  transition: all 0.2s;
}
.plan-mini-card:hover { background: var(--accent-light); border-color: var(--accent-border); }
.plan-mini-card.hot { background: var(--accent-light); border-color: var(--accent-border); }

/* ── DEMO LOADER ── */
#demoLoader {
  position: fixed; inset: 0; z-index: 99999;
  background: white;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.5s ease;
}
#demoLoader.active { opacity: 1; pointer-events: all; }

.loader-content {
  width: 100%; max-width: 320px;
  display: flex; flex-direction: column; align-items: center;
}
.loader-logo {
  margin-bottom: 32px; position: relative;
}
.loader-logo::after {
  content: ""; position: absolute; inset: -15px; border-radius: 50%;
  border: 1px solid var(--accent); opacity: 0;
  animation: loaderPulse 2s cubic-bezier(0.24, 0, 0.64, 1) infinite;
}
@keyframes loaderPulse {
  0% { transform: scale(0.6); opacity: 0; }
  50% { opacity: 0.3; }
  100% { transform: scale(1.4); opacity: 0; }
}

.loader-text-wrap { width: 100%; text-align: center; }
.loader-status {
  font-size: 11px; font-weight: 800; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px; height: 14px;
}
.loader-progress-wrap {
  width: 100%; height: 2px; background: var(--gray-100);
  border-radius: 99px; overflow: hidden; position: relative;
}
.loader-bar {
  height: 100%; width: 0%; background: var(--accent);
  transition: width 1.6s cubic-bezier(.65,0,.35,1);
  box-shadow: 0 0 10px rgba(230,57,70,0.5);
}
.loader-footer {
  margin-top: 40px; font-size: 10px; color: var(--gray-400);
  font-weight: 600; letter-spacing: 0.05em;
}

/* Fix .reveal — start visible if JS fails */
.ts-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.ts-pill { display: flex; align-items: center; gap: 5px; background: var(--bg-subtle); border-radius: 8px; padding: 5px 10px; font-size: 11px; font-weight: 600; }
.ts-dot { width: 7px; height: 7px; border-radius: 50%; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--bg-subtle); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-top: 56px; }
.step-card { position: relative; }
.step-num {
  font-family: var(--font-serif); font-size: 52px; font-style: italic;
  color: var(--gray-200); line-height: 1; margin-bottom: 12px;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 16px; background: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  margin-bottom: 18px; box-shadow: 0 8px 24px rgba(230,57,70,0.25);
  transition: all 0.35s cubic-bezier(0.2,0,0,1);
}
.step-card:hover .step-icon { transform: scale(1.1) rotate(-8deg); box-shadow: 0 14px 36px rgba(230,57,70,0.35); }
.step-h { font-weight: 700; font-size: 17px; color: var(--text-primary); margin-bottom: 8px; }
.step-p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.step-arrow { position: absolute; top: 64px; right: -16px; color: var(--gray-300); font-size: 20px; }

/* ── COUNTER SECTION ── */
.counter-section {
  background: var(--gray-900); padding: 80px var(--px);
}
.counter-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.c-val {
  font-family: var(--font-serif); font-size: clamp(48px, 6vw, 72px);
  font-style: italic; color: white; line-height: 1;
}
.c-val span { color: var(--accent); }
.c-lbl { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 8px; }

/* ── WAITER POS ── */
.pos-section { background: var(--bg); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.pos-feat-list { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.qr-steps-list { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.qs {
  padding: 20px; border-radius: 16px; border: 1px solid transparent;
  display: flex; gap: 16px; transition: all 0.3s ease; cursor: pointer;
}
.qs.active {
  background: white; border-color: var(--border);
  box-shadow: var(--shadow-md);
}
.qs.active .qs-num { background: var(--accent); color: white; border-color: var(--accent); }

.qs-num {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--text-muted); flex-shrink: 0;
  transition: all 0.3s ease;
}
.qs-h { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.qs-p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── SIMPLE SETUP ── */
.setup-section { background: #fcfcfd; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.setup-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; margin-top: 64px; }

/* Process Line */
.setup-line {
  position: absolute; top: 44px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray-200), var(--gray-200) 4px, transparent 4px, transparent 8px);
  z-index: 1; opacity: 0.5;
}

.step-card {
  position: relative; z-index: 2;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.step-card:hover { transform: translateY(-8px); }

.step-icon-box {
  width: 56px; height: 56px; border-radius: 18px;
  background: white; border: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.step-card:hover .step-icon-box { border-color: var(--accent); box-shadow: 0 10px 20px -5px rgba(230,57,70,0.15); }

.step-icon-box svg { color: var(--accent); }

/* Editorial Numbers */
.step-num-bg {
  position: absolute; top: -30px; right: -10px;
  font-family: var(--font-serif); font-size: 84px; font-weight: 400;
  color: transparent; -webkit-text-stroke: 1px var(--gray-100);
  line-height: 1; z-index: -1; pointer-events: none;
  transition: all 0.4s ease; opacity: 0.6;
}
.step-card:hover .step-num-bg { -webkit-text-stroke-color: rgba(230,57,70,0.1); opacity: 1; transform: scale(1.05); }

.step-h { font-weight: 700; font-size: 18px; margin-bottom: 12px; color: var(--gray-900); }
.step-p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

@media (max-width: 991px) {
  .setup-grid { grid-template-columns: 1fr 1fr; }
  .setup-line { display: none; }
}
@media (max-width: 640px) {
  .setup-grid { grid-template-columns: 1fr; }
}

/* ── High-Fidelity Mobile Mockup ── */
.qr-phone {
  width: 290px; height: 580px; 
  background: #080808; 
  border-radius: 44px;
  padding: 10px; /* Internal Bezel */
  position: relative; 
  box-shadow: 
    0 50px 100px -20px rgba(0,0,0,0.3),
    inset 0 0 2px 1px rgba(255,255,255,0.1),
    0 0 0 1px rgba(255,255,255,0.05);
  border: 1px solid #1a1a1a;
}

/* Side Buttons */
.qr-phone::before, .qr-phone::after {
  content: ''; position: absolute; left: -2px; width: 2px;
  background: #1a1a1a; border-radius: 2px 0 0 2px;
}
.qr-phone::before { top: 80px; height: 40px; } /* Volume Up */
.qr-phone::after { top: 130px; height: 40px; } /* Volume Down */
.qr-phone-power { 
  position: absolute; right: -2px; top: 100px; width: 2px; height: 70px; 
  background: #1a1a1a; border-radius: 0 2px 2px 0; 
}

.qr-screen-container { 
  width: 100%; height: 100%; 
  background: #fff; 
  border-radius: 34px; 
  position: relative; 
  overflow: hidden; 
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}
/* Screen Glare & Reflection overlays */
.screen-glare, .qr-screen-container::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0.08) 0%, transparent 40%, rgba(255,255,255,0.04) 60%, transparent 100%);
  pointer-events: none; z-index: 120;
}
.hero-screen .screen-glare, .pos-screen .screen-glare {
  background: linear-gradient(125deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  z-index: 10;
}

/* Dynamic Island with Lens optics */
.qr-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 75px; height: 24px; background: #000; border-radius: 12px;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
}
.qr-notch::after {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: radial-gradient(circle at center, #1a1a2e 0%, #000 100%);
  box-shadow: 18px 0 0 #080808, 18px 0 4px rgba(255,255,255,0.05); 
  margin-left: 20px;
}

/* Status Bar */
.qr-status-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 35px;
  padding: 0 22px; display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; font-weight: 700; color: #000; z-index: 90;
}
.qr-status-icons { display: flex; gap: 4px; align-items: center; }
.qr-bat { width: 16px; height: 8px; border: 1px solid currentColor; border-radius: 2px; position: relative; }
.qr-bat::after { content: ''; position: absolute; right: -2px; top: 2px; width: 1px; height: 2px; background: currentColor; }

/* Home Bar */
.qr-home-bar {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 4px; background: rgba(0,0,0,0.1); border-radius: 10px; z-index: 90;
}

.qr-scr {
  position: absolute; inset: 0; padding: 45px 20px 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}
.qr-scr.active { opacity: 1; pointer-events: auto; }

/* SCR 1: Print */
.scr-print-body { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.print-card {
  padding: 24px; background: #f8fafc; border: 1px dashed #cbd5e1;
  border-radius: 12px; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.print-qr-placeholder {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 4px; width: 80px;
}
.print-label { font-weight: 800; font-size: 14px; text-transform: uppercase; color: #1e293b; }
.print-btn {
  background: var(--accent); color: white; border: none; padding: 12px 20px;
  border-radius: 10px; font-weight: 700; font-size: 12px; display: flex; gap: 8px; align-items: center;
}

/* SCR 2: Menu Modern App Look */
.qr-scr.scr-2 { padding: 0; background: #fdfdfd; display: flex; flex-direction: column; }
.qr-app-header {
  padding: 40px 20px 15px; background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.q-app-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.q-logo { font-family: var(--font-serif); font-weight: 700; font-size: 14px; color: var(--gray-900); }
.q-back, .q-search { color: var(--gray-400); }
.q-meta { font-size: 10px; color: var(--text-muted); text-align: center; margin-bottom: 12px; }
.q-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
.q-tabs::-webkit-scrollbar { display: none; }
.q-tab {
  padding: 6px 14px; background: #f1f5f9; border-radius: 99px;
  font-size: 10px; font-weight: 700; color: #64748b; white-space: nowrap;
}
.q-tab.active { background: #fee2e2; color: var(--accent); }

.qr-scr.scr-2 .qr-screen-body {
  padding: 15px; flex: 1; overflow-y: auto;
  display: flex; flex-direction: column; gap: 12px;
}
.qr-item {
  display: flex; gap: 12px; align-items: center;
  padding: 10px; background: #fff; border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.03);
}
.qr-img {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.qr-info { flex: 1; }
.qr-item-name { font-weight: 700; font-size: 13px; color: var(--text-primary); }
.qr-item-price { font-size: 11px; color: var(--accent); font-weight: 700; margin-top: 2px; }

.qr-add {
  width: 28px; height: 28px; border-radius: 50%; background: #fee2e2;
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 400; border: none; box-shadow: 0 2px 4px rgba(230,57,70,0.1);
}

.qr-footer {
  padding: 15px; background: linear-gradient(0deg, #fff 70%, transparent);
}
.qr-place {
  background: var(--accent); color: #fff; padding: 14px;
  border-radius: 14px; text-align: center; font-weight: 700; font-size: 12px;
  box-shadow: 0 4px 12px rgba(230,57,70,0.3);
}

/* SCR 3: Modern Dashboard POS */
.qr-scr.scr-3 { background: #f8fafc; color: var(--gray-900); display: flex; flex-direction: column; padding: 0; }
.pos-header { 
  background: white; padding: 40px 15px 15px; 
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pos-status { font-weight: 800; font-size: 13px; color: var(--accent); display: flex; align-items: center; gap: 6px; }
.pos-status::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.pos-time { font-size: 11px; font-weight: 700; color: var(--gray-400); }

.pos-body { padding: 15px; flex: 1; overflow-y: auto; }
.pos-alert {
  background: white; border: 1px solid rgba(0,0,0,0.04); padding: 20px;
  border-radius: 16px; margin-bottom: 24px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
  border-left: 4px solid var(--accent);
}
.pulsing-pos { animation: posPulse 2s infinite; }
@keyframes posPulse { 
  0% { box-shadow: 0 4px 12px rgba(230,57,70,0.1); } 
  70% { box-shadow: 0 4px 20px 10px rgba(230,57,70,0); } 
  100% { box-shadow: 0 4px 12px rgba(230,57,70,0.1); } 
}
.alert-hd { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.alert-table { font-family: var(--font-serif); font-weight: 700; font-size: 20px; color: var(--gray-900); margin-bottom: 4px; }
.alert-items { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.alert-actions { display: flex; gap: 10px; }
.a-btn { 
  flex: 1; padding: 12px; border-radius: 10px; 
  text-align: center; font-size: 11px; font-weight: 700; 
  transition: all 0.2s; border: 1px solid rgba(0,0,0,0.05);
}
.a-btn.primary { background: var(--accent); color: white; border: none; box-shadow: 0 4px 8px rgba(230,57,70,0.2); }
.a-btn:not(.primary) { background: #f1f5f9; color: var(--gray-600); }

.pos-bg-list { display: flex; flex-direction: column; gap: 10px; }
.pos-bg-label { font-size: 10px; font-weight: 800; color: var(--gray-400); text-transform: uppercase; margin-bottom: 5px; }
.pos-bg-item { 
  font-size: 11px; padding: 12px; background: white; 
  border-radius: 12px; border: 1px solid rgba(0,0,0,0.03);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--gray-600);
}
.pos-bg-item .s-badge { background: #f1f5f9; padding: 3px 8px; border-radius: 6px; font-size: 9px; font-weight: 700; }

.pos-screen {
  background: var(--bg-subtle); border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.2,0,0,1);
}
.pos-screen:hover { transform: perspective(1000px) rotateY(-3deg) rotateX(1deg); box-shadow: var(--shadow-xl); }
.pos-screen-hd {
  background: var(--gray-900); padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.pos-screen-title { font-weight: 700; font-size: 13px; color: white; }
.pos-screen-body { padding: 18px; }
.pos-tg { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-bottom: 12px; }
.pt {
  aspect-ratio: 1; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; gap: 2px; cursor: pointer;
  transition: transform 0.2s; border: 1px solid transparent;
}
.pt:hover { transform: scale(1.08) translateY(-2px); }
.pt.empty { background: white; color: var(--gray-300); border-color: var(--border); }
.pt.run { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.pt.billed { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.pt small { font-size: 9px; font-weight: 400; opacity: 0.8; }

/* ── REPORTS ── */
.reports-section { background: var(--bg-subtle); }
.report-cards-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.r-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 22px;
  display: flex; gap: 16px; align-items: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.2,0,0,1);
  position: relative; overflow: hidden;
}
.r-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.2,0,0,1);
  border-radius: 0 2px 2px 0;
}
.r-card:hover::before { transform: scaleY(1); }
.r-card:hover { border-color: rgba(230,57,70,0.2); transform: translateX(6px); box-shadow: var(--shadow-md); }
.r-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: transform 0.3s ease;
}
.r-card:hover .r-icon { transform: scale(1.1) rotate(-5deg); }
.r-title { font-weight: 700; font-size: 14px; color: var(--text-primary); margin-bottom: 3px; }
.r-desc  { font-size: 13px; color: var(--text-secondary); }
.chart-wrap {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.chart-wrap:hover { box-shadow: var(--shadow-md); border-color: var(--border-mid); }
.chart-title { font-weight: 700; font-size: 14px; margin-bottom: 20px; color: var(--text-primary); }
.bars { display: flex; gap: 8px; align-items: flex-end; height: 140px; }
.bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.bar {
  width: 100%; border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(230,57,70,0.25) 100%);
  height: 0; min-height: 3px;
  transition: filter 0.2s; cursor: pointer;
}
.bar:hover { filter: brightness(1.1); }
.bar-lbl { font-size: 10px; color: var(--text-muted); }
.chart-summary { display: flex; gap: 20px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.cs-item { flex: 1; }
.cs-val { font-weight: 800; font-size: 20px; color: var(--text-primary); }
.cs-lbl { font-size: 11px; color: var(--text-muted); }

/* ── MULTI-BRANCH ── */
.branch-section { background: var(--bg); }
.branch-map {
  position: relative; aspect-ratio: 4/3;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f3f4f6 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-grid {
  position: absolute; inset: 0; opacity: 0.15; pointer-events: none;
  background-image: 
    linear-gradient(var(--gray-300) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-300) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-grid::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--gray-400) 0.5px, transparent 0.5px);
  background-size: 10px 10px; opacity: 0.5;
}

/* Networking SVG layer */
.net-svg { position: absolute; inset: 0; width:100%; height:100%; z-index: 1; pointer-events: none; }
.net-path { stroke: rgba(230,57,70,0.12); stroke-dasharray: 4 4; animation: flowDash 20s linear infinite; }
.net-particle { fill: var(--accent); filter: blur(1px); animation: flowParticle 4s linear infinite; }

@keyframes flowDash { to { stroke-dashoffset: -400; } }
@keyframes flowParticle {
  0% { offset-distance: 0%; opacity: 0; }
  10%, 90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.branch-pin {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); cursor: pointer; z-index: 10;
  box-shadow: 0 0 0 4px rgba(230,57,70,0.12);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.branch-pin:hover { transform: scale(1.4); box-shadow: 0 0 0 8px rgba(230,57,70,0.2); }
.branch-pin::after {
  content: attr(data-name);
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  white-space: nowrap; font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); color: var(--text-primary);
  opacity: 0.9; pointer-events: none;
}
.bp1{top:25.5%;left:20.5%;}
.bp2{top:55.5%;left:60.5%;}
.bp3{top:20.5%;left:68.5%;}
.bp4{top:68.5%;left:33.5%;}
.branch-pin::before {
  content: ""; position: absolute; inset: -10px;
  border-radius: 50%; background: var(--accent); opacity: 0.15;
  animation: pinpulse 3s infinite;
}
@keyframes pinpulse {
  0%   { transform: scale(0.5); opacity: 0.4; }
  100% { transform: scale(2.5); opacity: 0; }
}
.map-badge {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: white; border-radius: 10px; padding: 10px 18px;
  font-size: 12px; font-weight: 700; box-shadow: var(--shadow-md);
  white-space: nowrap; color: var(--text-primary);
}
.branch-feats { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.b-feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; border-radius: var(--radius-lg);
  background: var(--bg-subtle); border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.2,0,0,1);
}
.b-feat:hover { border-color: var(--accent-border); background: var(--accent-light); transform: translateX(6px); }
.b-feat-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; transition: transform 0.3s; }
.b-feat:hover .b-feat-icon { transform: scale(1.15) rotate(-8deg); }
.b-feat-h { font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.b-feat-p { font-size: 13px; color: var(--text-secondary); }

/* ── QR SECTION ── */
.qr-section { background: var(--bg-subtle); }
.qr-phone {
  margin: 0 auto; width: 250px;
  background: var(--gray-900); border-radius: 36px; padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.2,0,0,1);
}
.qr-phone:hover { transform: scale(1.02) rotate(0.5deg); box-shadow: 0 40px 80px rgba(0,0,0,0.18); }
.qr-notch { width: 70px; height: 18px; background: #0a0a0a; border-radius: 999px; margin: 0 auto 10px; }
.qr-screen { background: #0d0d0d; border-radius: 26px; overflow: hidden; padding: 16px; }
.qr-top { text-align: center; margin-bottom: 14px; }
.qr-top h4 { font-size: 13px; font-weight: 700; color: white; }
.qr-top p  { font-size: 10px; color: #555; }
.qr-code {
  width: 80px; height: 80px; margin: 0 auto 12px;
  background: white; border-radius: 8px; padding: 6px;
  display: grid; grid-template-columns: repeat(5,1fr); gap: 2px;
}
.qr-c { border-radius: 1px; background: #111; }
.qr-c.w { background: white; }
.qr-items { display: flex; flex-direction: column; gap: 6px; }
.qr-item {
  background: rgba(255,255,255,0.05); border-radius: 8px;
  padding: 8px 10px; display: flex; justify-content: space-between; align-items: center;
}
.qr-item-name { font-size: 10px; font-weight: 600; color: white; }
.qr-item-price { font-size: 10px; color: var(--accent); font-weight: 700; }
.qr-add {
  width: 19px; height: 19px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: white; cursor: pointer;
  transition: transform 0.2s; line-height: 1;
}
.qr-add:hover { transform: scale(1.2) rotate(90deg); }
.qr-place {
  background: var(--accent); border-radius: 8px; padding: 9px;
  text-align: center; font-size: 11px; font-weight: 700; color: white; margin-top: 8px;
}
.qr-steps-list { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.qs {
  display: flex; gap: 14px; align-items: flex-start;
}
.qs-num {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-light); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; color: var(--accent);
  transition: all 0.3s;
}
.qs:hover .qs-num { background: var(--accent); color: white; transform: scale(1.1); }
.qs-h { font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.qs-p { font-size: 13px; color: var(--text-secondary); }

/* ── POS FEATURES ── */
.pos-feat-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.pos-feat {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.2,0,0,1);
  box-shadow: var(--shadow-sm);
}
.pos-feat:hover { transform: translateX(8px); border-color: rgba(230,57,70,0.2); box-shadow: var(--shadow-md); }
.pos-feat-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pos-feat-title { font-family: var(--font-serif); font-weight: 700; font-size: 16px; color: var(--gray-900); margin-bottom: 4px; }
.pos-feat-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* ── PRICING ── */
.pricing-section { background: #fff; padding: 100px clamp(24px,5vw,80px); }
.plans-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
  max-width: 1200px; margin: 56px auto 0;
}
.plan {
  background: white; border: 1px solid var(--border); border-radius: 24px;
  padding: 40px; display: flex; flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2,0,0,1);
  position: relative;
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--border-mid); }

.plan-tier { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 20px; }
.plan-price { font-family: var(--font-serif); font-size: 44px; line-height: 1; color: var(--gray-900); margin-bottom: 8px; }
.plan-period { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

.plan-feats { list-style: none; padding: 0; margin: 0 0 40px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.plan-feats li { display: flex; gap: 12px; align-items: center; font-size: 14px; line-height: 1.4; color: var(--text-primary); }
.plan-feats li svg { flex-shrink: 0; color: var(--accent); }
.plan-feats li.f-no { color: var(--gray-400); opacity: 0.6; }
.plan-feats li.f-no svg { color: var(--gray-300); }

.plan-cta {
  display: block; width: 100%; padding: 16px; border-radius: 14px;
  text-align: center; font-weight: 700; font-size: 14px; border: 1px solid var(--border);
  transition: all 0.3s ease; text-decoration: none;
}
.plan:not(.featured) .plan-cta:hover { background: var(--gray-50); border-color: var(--gray-300); color: var(--gray-900); }

.plan.featured {
  background: var(--gray-900); color: white; border: 1px solid var(--gray-800);
  transform: scale(1.05); z-index: 2; box-shadow: 0 30px 60px -12px rgba(0,0,0,0.25);
}
.plan.featured:hover { transform: scale(1.05) translateY(-8px); }
.plan.featured .plan-tier { color: var(--accent); }
.plan.featured .plan-price { color: white; }
.plan.featured .plan-period { color: rgba(255,255,255,0.4); }
.plan.featured .plan-feats li { color: rgba(255,255,255,0.9); }
.plan.featured .plan-feats li.f-no { color: rgba(255,255,255,0.3); }
.plan.featured .plan-cta { border-color: rgba(255,255,255,0.1); color: white; }
.plan.featured .plan-cta:hover { background: rgba(255,255,255,0.05); }

.plan-badge {
  background: var(--accent); color: white; padding: 6px 12px;
  border-radius: 99px; font-size: 10px; font-weight: 800; text-transform: uppercase;
  display: inline-block; margin-bottom: 20px; align-self: flex-start;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--gray-900); position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 500px at 50% 50%, rgba(230,57,70,0.12), transparent);
}
.cta-inner { position: relative; z-index: 1; }
.cta-h2 { font-family: var(--font-serif); font-size: clamp(36px,5vw,64px); color: white; margin-bottom: 16px; }
.cta-h2 em { color: var(--accent); font-style: italic; }
.cta-p { font-size: 17px; color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.25); }
.btn-cta-primary {
  background: var(--accent); color: white; padding: 16px 40px;
  border-radius: 999px; font-weight: 800; font-size: 16px;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 0 0 0 rgba(230,57,70,0.4);
  animation: cta-pulse 2.5s ease-in-out infinite;
  transition: all 0.25s;
}
@keyframes cta-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(230,57,70,0.4)} 50%{box-shadow:0 0 0 20px rgba(230,57,70,0)} }
.btn-cta-primary:hover { background: #d42f3b; transform: scale(1.04); }
.btn-cta-secondary {
  padding: 16px 36px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.2);
  color: white; background: transparent; font-weight: 700; font-size: 15px;
  cursor: pointer; text-decoration: none; transition: all 0.25s;
}
.btn-cta-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

/* ── FOOTER ── */
footer {
  background: var(--gray-900); border-top: 1px solid rgba(255,255,255,0.07);
  padding: 56px var(--px) 32px;
  color: rgba(255,255,255,0.4);
}
footer {
  background: #0a0a0a; color: rgba(255,255,255,0.4);
  padding: 100px clamp(24px,5vw,80px) 48px;
}
.footer-top {
  display: flex; justify-content: space-between; gap: 80px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}
.footer-brand-col { max-width: 320px; }
.footer-brand { 
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: white;
  margin-bottom: 20px;
}
.footer-tagline { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); margin-bottom: 28px; }

.footer-socials { display: flex; gap: 16px; }
.s-link {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
  transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.05);
}
.s-link:hover { background: var(--accent); color: white; border-color: var(--accent); transform: translateY(-3px); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
.footer-col h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: white; margin-bottom: 24px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 500; margin-bottom: 14px; transition: all 0.2s; }
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }

.footer-bottom { 
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 500;
}
.fb-right { display: flex; align-items: center; gap: 6px; }

@media (max-width:1024px) {
  .footer-top { flex-direction: column; gap: 60px; }
  .footer-brand-col { max-width: 100%; }
  .footer-links { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}
@media (max-width: 700px) {
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── MOTION REVEAL CLASSES ── */
.reveal { opacity: 0; transform: translateY(36px); }
.reveal.left  { transform: translateX(-36px); }
.reveal.right { transform: translateX(36px); }
.reveal.scale { transform: scale(0.94); }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px var(--px) 60px; }
  .hero-visual { display: none; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6,.bc-7,.bc-8 { grid-column: span 2; }
  .bc-2,.bc-3 { grid-column: span 1; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; flex-wrap: wrap; }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6,.bc-7,.bc-8 { grid-column: span 1; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }
}
