/* ==============================================
   ЕЛТМС Landing Page — Premium UI
   Design tokens from manager dashboard app.css
   ============================================== */

/* ── TOKENS ── */
:root {
  --primary:        #4f6df5;
  --primary-2:      #7f56d9;
  --primary-dark:   #3d56e8;
  --bg-0:           #f4f7ff;
  --bg-1:           #ecf2ff;
  --bg-dark:        #0b1220;
  --bg-dark-2:      #151e32;
  --bg-dark-3:      #0f172a;
  --text-main:      #1a2440;
  --text-muted:     #6b7694;
  --text-on-dark:   #cbd5e1;
  --success:        #12b76a;
  --danger:         #f04438;
  --surface:        rgba(255,255,255,0.82);
  --surface-stroke: rgba(95,118,255,0.18);
  --shadow-soft:    0 16px 42px rgba(36,50,100,0.12);
  --shadow-card:    0 8px 32px rgba(36,50,100,0.10);
  --radius-sm:      10px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: Inter, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-0);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ── TYPOGRAPHY ── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(79,109,245,0.1), var(--shadow-card);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Brand logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
  flex-shrink: 0;
}
.brand-dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 4px 12px rgba(79,109,245,0.45);
  flex-shrink: 0;
}
.brand-name {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--primary);
  background: rgba(79,109,245,0.07);
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.btn-login {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(79,109,245,0.35);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,109,245,0.45);
}
.btn-login:active { transform: translateY(0); }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* BG effects */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(150deg, #f4f7ff 0%, #ecf2ff 40%, #ede8ff 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,109,245,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,109,245,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 40%, transparent 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,109,245,0.25), transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(127,86,217,0.2), transparent 70%);
  bottom: -100px; left: -80px;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(18,183,106,0.12), transparent 70%);
  top: 40%; right: 30%;
}

.hero-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero content */
.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(79,109,245,0.1);
  border: 1px solid rgba(79,109,245,0.2);
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 0.9rem; }

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 20px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary);
}
.hero-title-plain {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 24px rgba(79,109,245,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(79,109,245,0.5);
}
.btn-primary--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(79,109,245,0.25);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: rgba(79,109,245,0.06);
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.35;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(79,109,245,0.2);
  flex-shrink: 0;
}

/* ── MOCKUP ── */
.hero-visual { position: relative; }

.mockup-shell {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(20,30,80,0.18), 0 2px 0 rgba(255,255,255,0.8) inset;
  overflow: hidden;
  border: 1px solid rgba(79,109,245,0.12);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-dark-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-url {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: #94a3b8;
  font-family: monospace;
}
.mockup-body {
  display: flex;
  min-height: 332px;
}

/* Sidebar */
.mockup-sidebar {
  width: 56px;
  background: linear-gradient(180deg, var(--bg-dark-2), var(--bg-dark-3));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.mockup-nav-item {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #526081;
  font-size: 1rem;
  cursor: default;
  transition: var(--transition);
}
.mockup-nav-item.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 4px 12px rgba(79,109,245,0.45);
}

/* Content area */
.mockup-content {
  flex: 1;
  padding: 16px 16px 12px;
  background: var(--bg-0);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.mockup-metric-row {
  display: flex;
  gap: 10px;
}
.mockup-metric {
  flex: 1;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(79,109,245,0.1);
}
.mockup-metric.blue .mockup-metric-val { color: var(--primary); }
.mockup-metric.violet .mockup-metric-val { color: var(--primary-2); }
.mockup-metric.green .mockup-metric-val { color: var(--success); }
.mockup-metric-val {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.mockup-metric-lbl {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

.mockup-orders-panel {
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(92,110,170,0.12);
  box-shadow: 0 8px 24px rgba(36,50,100,0.06);
  overflow: hidden;
}
.mockup-orders-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7694;
  border-bottom: 1px solid rgba(92,110,170,0.1);
  background: rgba(248,250,255,0.9);
}
.mockup-orders-head .bi {
  font-size: 0.75rem;
  color: var(--primary);
}
.mockup-order-list {
  overflow: hidden;
}
.mockup-order {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem 0.55rem;
  padding: 0.42rem 0.75rem;
  border-bottom: 1px solid rgba(92,110,170,0.08);
  font-size: 0.7rem;
}
.mockup-order:last-child { border-bottom: none; }
.mockup-order-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
}
.mockup-order-route {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.mockup-order-route-line {
  display: block;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-main);
  overflow-wrap: anywhere;
}
.mockup-order-route-line--sep::before {
  content: "→ ";
  color: #94a3b8;
  font-weight: 500;
}
/* Статусы — как в кабинете менеджера (app.css .status-pill) */
.mockup-order .status-pill {
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.2;
}
.mockup-order .status-assigned { background: rgba(2, 132, 199, 0.12); color: #0369a1; }
.mockup-order .status-transit  { background: rgba(245, 158, 11, 0.14); color: #b45309; }
.mockup-order .status-done     { background: rgba(18, 183, 106, 0.14); color: #067647; }

/* Исполнение заявки — как в деталях панели менеджера */
.mockup-fulfillment.order-fulfillment--compact {
  border-radius: 8px;
  border: 1px solid rgba(92, 110, 170, 0.12);
  background: rgba(248, 250, 255, 0.88);
  padding: 0.35rem 0.5rem;
  box-shadow: none;
  line-height: 1.2;
  margin-bottom: 10px;
}
.mockup-fulfillment .order-fulfillment-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.55rem;
}
.mockup-fulfillment .order-fulfillment-title {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #5c6eaa;
  white-space: nowrap;
  flex-shrink: 0;
}
.mockup-fulfillment .order-fulfillment-title .bi {
  font-size: 0.75rem;
  color: var(--primary);
}
.mockup-fulfillment .order-fulfillment-stat {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #8898b0;
  white-space: nowrap;
}
.mockup-fulfillment .order-fulfillment-stat strong {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #1e3a6e;
}
.mockup-fulfillment .order-fulfillment-stat--remain {
  color: #b45309;
  font-weight: 600;
}
.mockup-fulfillment .order-fulfillment-progress-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex: 1 1 3.5rem;
  min-width: 2.75rem;
  max-width: 7.5rem;
  margin: 0;
}
.mockup-fulfillment .order-fulfillment-progress-track {
  flex: 1 1 auto;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(92, 110, 170, 0.14);
  overflow: hidden;
}
.mockup-fulfillment .order-fulfillment-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 109, 245, 0.5), rgba(79, 109, 245, 0.8));
  min-width: 0;
  animation: mockup-fulfillment-grow 2s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}
.mockup-fulfillment .order-fulfillment-progress-fill--progress {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.6), rgba(251, 191, 36, 0.85));
}
.mockup-fulfillment .order-fulfillment-progress-pct {
  flex: 0 0 auto;
  font-size: 0.625rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #6b7c9a;
  min-width: 1.65rem;
  text-align: right;
}
@keyframes mockup-fulfillment-grow {
  from { width: 0 !important; }
}

/* Floating notification cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(20,30,80,0.14);
  border: 1px solid rgba(79,109,245,0.12);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  animation: float-y 4s ease-in-out infinite;
}
.float-card i { font-size: 1rem; }
.float-card-1 {
  bottom: -16px;
  left: -32px;
  animation-delay: 0s;
}
.float-card-1 i { color: var(--success); }
.float-card-2 {
  top: -16px;
  right: -32px;
  animation-delay: 2s;
}
.float-card-2 i { color: var(--primary); }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   TRUST / PLATFORM SHOWCASE
   ============================================================ */
.trust-section {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-0) 55%, var(--bg-1) 100%);
  border-top: 1px solid rgba(79, 109, 245, 0.08);
  border-bottom: 1px solid rgba(79, 109, 245, 0.08);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(79, 109, 245, 0.08) 0%, transparent 68%);
  pointer-events: none;
}

.trust-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.trust-showcase-copy {
  text-align: left;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(79, 109, 245, 0.08);
  border: 1px solid rgba(79, 109, 245, 0.16);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}

.trust-title {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text-main);
  margin-bottom: 14px;
}

.trust-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0;
  line-height: 1.65;
}

/* Module tabs */
.trust-modules {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}

.trust-module {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  font-family: inherit;
}

.trust-module:hover {
  background: #fff;
  border-color: rgba(79, 109, 245, 0.14);
  transform: translateX(3px);
}

.trust-module.is-active {
  background: #fff;
  border-color: rgba(79, 109, 245, 0.28);
  box-shadow: 0 8px 28px rgba(79, 109, 245, 0.1);
}

.trust-module-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-module-icon--blue   { background: rgba(79, 109, 245, 0.12); color: var(--primary); }
.trust-module-icon--violet { background: rgba(127, 86, 217, 0.12); color: var(--primary-2); }
.trust-module-icon--green  { background: rgba(18, 183, 106, 0.12); color: var(--success); }

.trust-module-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trust-module-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.trust-module-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.trust-module.is-active .trust-module-name {
  color: var(--primary);
}

/* Visual / mockup */
.trust-showcase-visual {
  position: relative;
  min-width: 0;
}

.trust-mockup {
  box-shadow: 0 40px 100px rgba(20, 30, 80, 0.16), 0 2px 0 rgba(255, 255, 255, 0.85) inset;
}

.trust-mockup .mockup-body {
  min-height: 360px;
}

.trust-screen {
  display: none;
  animation: trustScreenIn 0.38s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.trust-screen.is-active {
  display: block;
}

@keyframes trustScreenIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Trust mockup panels */
.mockup-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(92, 110, 170, 0.12);
  box-shadow: 0 8px 24px rgba(36, 50, 100, 0.05);
  overflow: hidden;
}

.mockup-panel-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7694;
  border-bottom: 1px solid rgba(92, 110, 170, 0.1);
  background: rgba(248, 250, 255, 0.9);
}

.mockup-panel-head .bi {
  color: var(--primary);
  font-size: 0.75rem;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  padding: 16px 20px 10px;
  height: 120px;
}

.mockup-chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  max-width: 56px;
  height: 100%;
  justify-content: flex-end;
}

.mockup-chart-col span {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mockup-chart-bar {
  width: 100%;
  border-radius: 6px 6px 2px 2px;
  min-height: 8px;
}

.mockup-chart-bar--revenue { background: linear-gradient(to top, var(--primary), rgba(79, 109, 245, 0.55)); }
.mockup-chart-bar--cost    { background: linear-gradient(to top, var(--primary-2), rgba(127, 86, 217, 0.55)); }
.mockup-chart-bar--margin  { background: linear-gradient(to top, #12b76a, rgba(18, 183, 106, 0.55)); }

.mockup-finance-rows {
  padding: 8px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(92, 110, 170, 0.08);
}

.mockup-finance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.mockup-finance-row strong {
  font-size: 0.72rem;
  color: var(--text-main);
  font-weight: 700;
  white-space: nowrap;
}

.mockup-fleet-list {
  padding: 4px 0;
}

.mockup-fleet-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid rgba(92, 110, 170, 0.08);
  font-size: 0.68rem;
  color: var(--text-muted);
}

.mockup-fleet-row:last-child { border-bottom: none; }

.mockup-fleet-plate {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}

.mockup-to-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(92, 110, 170, 0.12);
  background: rgba(248, 250, 255, 0.88);
  font-size: 0.68rem;
}

.mockup-to-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: #5c6eaa;
  white-space: nowrap;
  flex-shrink: 0;
}

.mockup-to-label .bi { color: var(--primary); }

.mockup-to-track {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(92, 110, 170, 0.14);
  overflow: hidden;
}

.mockup-to-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.mockup-to-val {
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Driver PWA screen */
.mockup-body--driver {
  min-height: 360px;
  background: linear-gradient(160deg, var(--bg-dark-3) 0%, #1a2340 100%);
}

.mockup-content--driver {
  background: transparent;
  padding: 20px;
  justify-content: center;
  gap: 16px;
}

.mockup-driver-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-pwa-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(79, 109, 245, 0.25);
  color: #a5b4fc;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mockup-driver-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.mockup-driver-trip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-driver-trip-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.mockup-driver-route {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.mockup-driver-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mockup-driver-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 600;
}

.mockup-driver-btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
  color: #fff;
}

.mockup-driver-stats {
  display: flex;
  gap: 12px;
}

.mockup-driver-stats div {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mockup-driver-stats strong {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.mockup-driver-stats span {
  font-size: 0.65rem;
  color: #94a3b8;
}

/* GPS map */
.mockup-panel--map .mockup-panel-head { border-bottom: none; }

.mockup-map {
  position: relative;
  height: 140px;
  margin: 0 12px;
  border-radius: 10px;
  background: linear-gradient(145deg, #e8eef9 0%, #dce6f5 100%);
  border: 1px solid rgba(92, 110, 170, 0.15);
  overflow: hidden;
}

.mockup-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 109, 245, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 109, 245, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.mockup-map-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 4px 12px rgba(79, 109, 245, 0.4);
  animation: float-y 4s ease-in-out infinite;
}

.mockup-map-pin--1 { top: 28%; left: 22%; animation-delay: 0s; }
.mockup-map-pin--2 { top: 52%; left: 58%; animation-delay: 1.2s; }
.mockup-map-pin--3 { top: 38%; left: 78%; animation-delay: 2.4s; }

.mockup-gps-list {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-gps-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.mockup-gps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mockup-gps-dot--live {
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.2);
}

.mockup-gps-dot--idle {
  background: #94a3b8;
}

/* Documents & Excel */
.mockup-doc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
}

.mockup-doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(79, 109, 245, 0.08);
  border: 1px solid rgba(79, 109, 245, 0.12);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-main);
}

.mockup-doc-chip i { color: var(--primary); }

.mockup-doc-chip--cloud {
  background: rgba(18, 183, 106, 0.08);
  border-color: rgba(18, 183, 106, 0.15);
  color: #067647;
}

.mockup-doc-chip--cloud i { color: var(--success); }

.mockup-excel {
  padding: 0 12px 8px;
}

.mockup-excel-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr 4.5rem 4rem;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(92, 110, 170, 0.08);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.mockup-excel-row:last-child { border-bottom: none; }

.mockup-excel-row--head {
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.6rem;
}

.mockup-excel-export {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 12px 12px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(18, 183, 106, 0.1);
  border: 1px dashed rgba(18, 183, 106, 0.35);
  font-size: 0.68rem;
  font-weight: 700;
  color: #067647;
}

.mockup-excel-export .bi { font-size: 0.85rem; }

/* Floating badges */
.trust-float {
  position: absolute;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(20, 30, 80, 0.14);
  border: 1px solid rgba(79, 109, 245, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  animation: float-y 4s ease-in-out infinite;
  z-index: 2;
}

.trust-float.is-visible { display: flex; }

.trust-float i { font-size: 1rem; }

.trust-float-1 {
  bottom: 24px;
  left: -20px;
  animation-delay: 0s;
}
.trust-float-1 i { color: var(--success); }

.trust-float-2 {
  top: 12px;
  right: -16px;
  animation-delay: 1.5s;
}
.trust-float-2 i { color: var(--primary); }

.trust-float-3 {
  bottom: 80px;
  right: -24px;
  animation-delay: 0.8s;
}
.trust-float-3 i { color: var(--primary-2); }

.trust-float-4 {
  top: 48%;
  left: -28px;
  animation-delay: 2.2s;
}
.trust-float-4 i { color: var(--primary); }

@media (max-width: 1024px) {
  .trust-showcase {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .trust-showcase-copy { text-align: center; }
  .trust-subtitle { margin: 0 auto; }
  .trust-modules { max-width: 520px; margin-left: auto; margin-right: auto; }
  .trust-float-1 { left: 0; bottom: 8px; }
  .trust-float-2 { right: 0; top: -8px; }
  .trust-float-3, .trust-float-4 { display: none !important; }
}

@media (max-width: 640px) {
  .trust-section { padding: 64px 0 72px; }
  .trust-module { padding: 10px 12px; }
  .trust-float { font-size: 0.72rem; padding: 8px 12px; }
  .trust-mockup .mockup-body { min-height: 320px; }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(79,109,245,0.08);
  border: 1px solid rgba(79,109,245,0.16);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   ROLES SECTION
   ============================================================ */
.roles-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg-0) 100%);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.role-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 36px 28px 28px;
  background: #fff;
  border: 1px solid var(--surface-stroke);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.role-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

/* Glow on hover */
.role-card-glow {
  position: absolute;
  top: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  filter: blur(40px);
}
.role-card:hover .role-card-glow { opacity: 0.35; }
.role-card--manager .role-card-glow { background: var(--primary); }
.role-card--director .role-card-glow { background: var(--primary-2); }
.role-card--driver .role-card-glow { background: var(--success); }

/* Director card — featured */
.role-card--director {
  background: linear-gradient(135deg, var(--bg-dark-2) 0%, var(--bg-dark-3) 100%);
  border-color: rgba(127,86,217,0.3);
  color: #e2e8f0;
  transform: scale(1.02);
}
.role-card--director:hover { transform: scale(1.02) translateY(-6px); }
.role-card--director .role-title { color: #fff; }
.role-card--director .role-desc { color: #94a3b8; }
.role-card--director .role-features li { color: #94a3b8; }
.role-card--director .role-features i { color: var(--primary-2); }

.role-featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.role-icon-wrap { margin-bottom: 20px; }
.role-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.role-card--manager .role-icon {
  background: rgba(79,109,245,0.1);
  color: var(--primary);
}
.role-card--director .role-icon {
  background: rgba(127,86,217,0.2);
  color: #a78bfa;
}
.role-card--driver .role-icon {
  background: rgba(18,183,106,0.1);
  color: var(--success);
}

.role-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.role-card--manager .role-label { color: var(--primary); }
.role-card--director .role-label { color: #a78bfa; }
.role-card--driver .role-label { color: var(--success); }

.role-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.role-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.role-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.role-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.role-features i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.9rem;
  font-weight: 900;
}

.role-card-footer { border-top: 1px solid rgba(79,109,245,0.1); padding-top: 16px; }
.role-card--director .role-card-footer { border-color: rgba(127,86,217,0.2); }
.role-access-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.role-card--director .role-access-badge { color: #64748b; }

/* ============================================================
   FEATURES / BENTO GRID
   ============================================================ */
/* ============================================================
   FEATURES BENTO
   ============================================================ */
.features-section { background: var(--bg-0); }

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- Base card --- */
.bento-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--surface-stroke);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(79,109,245,0.13);
}
.bento-card--wide { grid-column: span 2; }

/* --- Dark featured card --- */
.bento-card--dark {
  background: linear-gradient(135deg, #0f172a 0%, #1a2340 55%, #0f172a 100%);
  border-color: rgba(255,255,255,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.bento-card--dark:hover {
  box-shadow: 0 20px 60px rgba(79,109,245,0.25);
}
.bento-card-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 36px 36px;
  border-radius: inherit;
  pointer-events: none;
}

/* --- Full-width horizontal card --- */
.bento-card--full {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 28px;
}
.bento-card--full .bento-icon { flex-shrink: 0; margin-bottom: 0; }
.bento-full-body { flex: 1; min-width: 0; }
.bento-full-body h3 { margin-bottom: 4px; }
.bento-full-body p  { margin: 0; }

/* --- Icons --- */
.bento-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.bento-icon--blue   { background: rgba(79,109,245,0.12); color: var(--primary); }
.bento-icon--violet { background: rgba(127,86,217,0.12); color: var(--primary-2); }
.bento-icon--green  { background: rgba(18,183,106,0.12); color: #12b76a; }
.bento-icon--glow {
  background: linear-gradient(135deg, rgba(79,109,245,0.35), rgba(127,86,217,0.35));
  color: #a5b4fc;
  box-shadow: 0 0 24px rgba(79,109,245,0.4);
}

/* --- Typography --- */
.bento-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text-main);
}
.bento-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.bento-card p:last-child { margin-bottom: 0; }
.bento-card--dark h3 { color: #fff; }
.bento-card--dark p  { color: #94a3b8; }

/* --- Status flow --- */
.bento-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.bento-flow-arrow { color: rgba(255,255,255,0.2); font-size: 0.75rem; line-height: 1; }
.bento-pill {
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.bento-card--dark .bento-pill.created    { background: rgba(79,109,245,0.28); color: #a5b4fc; }
.bento-card--dark .bento-pill.assigned   { background: rgba(14,165,233,0.22); color: #7dd3fc; }
.bento-card--dark .bento-pill.in-transit { background: rgba(251,191,36,0.2);  color: #fcd34d; }
.bento-card--dark .bento-pill.done       { background: rgba(18,183,106,0.22); color: #6ee7b7; }

/* light-mode pills (for other cards if needed) */
.bento-pill.created    { background: rgba(61,86,201,0.1);  color: #3d56c9; }
.bento-pill.assigned   { background: rgba(3,105,161,0.1);  color: #0369a1; }
.bento-pill.in-transit { background: rgba(180,83,9,0.1);   color: #b45309; }
.bento-pill.done       { background: rgba(6,118,71,0.1);   color: #067647; }

/* --- Unit tags --- */
.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}
.bento-tags span {
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(127,86,217,0.08);
  border: 1px solid rgba(127,86,217,0.18);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-2);
  letter-spacing: 0.01em;
}

/* --- Finance mini bar chart --- */
.bento-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 76px;
  margin-top: 4px;
}
.bento-chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}
.bento-chart-bar {
  width: 100%;
  border-radius: 8px 8px 4px 4px;
  transition: opacity var(--transition);
}
.bento-chart-bar--revenue { background: linear-gradient(to top, var(--primary) 0%, rgba(79,109,245,0.55) 100%); }
.bento-chart-bar--cost    { background: linear-gradient(to top, var(--primary-2) 0%, rgba(127,86,217,0.55) 100%); }
.bento-chart-bar--margin  { background: linear-gradient(to top, #12b76a 0%, rgba(18,183,106,0.55) 100%); }
.bento-chart-lbl {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  text-align: center;
}

/* --- Document chips --- */
.bento-doc-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}
.bento-doc-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-0);
  border: 1px solid rgba(79,109,245,0.12);
  border-radius: 10px;
  padding: 7px 11px;
}
.bento-doc-chip i { color: var(--primary); font-size: 0.85rem; }

/* --- GPS decorative pin --- */
.bento-card--pos-rel { position: relative; }
.bento-map-deco {
  position: absolute;
  bottom: -14px;
  right: -10px;
  font-size: 6.5rem;
  color: rgba(127,86,217,0.07);
  line-height: 1;
  pointer-events: none;
}

/* --- Push notification bubble --- */
.bento-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-0);
  border: 1px solid rgba(79,109,245,0.12);
  border-radius: 12px;
  padding: 10px 13px;
  margin-top: 4px;
}
.bento-notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(79,109,245,0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(79,109,245,0.5); }
  50%       { box-shadow: 0 0 16px rgba(79,109,245,0.9); }
}
.bento-notif-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bento-notif-app  { font-size: 0.7rem; font-weight: 700; color: var(--primary); letter-spacing: 0.04em; text-transform: uppercase; }
.bento-notif-text { font-size: 0.78rem; font-weight: 500; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* --- ТО progress meter --- */
.bento-meter {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-0);
  border: 1px solid rgba(127,86,217,0.14);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 260px;
}
.bento-meter-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.bento-meter-track {
  flex: 1;
  height: 7px;
  background: rgba(127,86,217,0.12);
  border-radius: 99px;
  overflow: hidden;
}
.bento-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 99px;
  transition: width 1s ease;
}
.bento-meter-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-2);
  white-space: nowrap;
}

/* --- Excel preview --- */
.bento-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.bento-excel-preview {
  background: var(--bg-0);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(79,109,245,0.1);
  font-size: 0.75rem;
}
.excel-row {
  display: grid;
  grid-template-columns: 28px 1fr 56px 80px;
  gap: 8px;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(79,109,245,0.07);
  color: var(--text-main);
  font-weight: 500;
  align-items: center;
}
.excel-row:last-child { border-bottom: none; }
.excel-row--alt { background: rgba(79,109,245,0.03); }
.excel-row--sum {
  font-weight: 700;
  color: var(--primary);
  border-top: 1px solid rgba(79,109,245,0.15) !important;
  border-bottom: none;
}
.excel-row.excel-header {
  background: rgba(79,109,245,0.07);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg-0) 100%);
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr 52px 1fr;
  column-gap: 0;
  align-items: start;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.how-step-visual {
  position: relative;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.how-connector {
  align-self: start;
  width: 100%;
  height: 2px;
  margin-top: 43px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}
.how-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary-2);
  border-top: 2px solid var(--primary-2);
  transform: translateY(-50%) rotate(45deg);
}

.how-step-num {
  position: absolute;
  top: -4px;
  right: calc(50% - 58px);
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, rgba(79,109,245,0.18), rgba(127,86,217,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 0;
  pointer-events: none;
  user-select: none;
}

.how-step-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(79,109,245,0.35);
  margin: 0;
  flex-shrink: 0;
}

.how-step-body {
  width: 100%;
  text-align: center;
  padding: 0 8px;
}

.how-step h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 auto 10px;
  color: var(--text-main);
  line-height: 1.35;
  min-height: 2.7em;
  max-width: 220px;
}

.how-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================================
   ADVANTAGES
   ============================================================ */
.advantages-section { background: var(--bg-0); }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advantage-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  border: 1px solid var(--surface-stroke);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.adv-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79,109,245,0.12), rgba(127,86,217,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.advantage-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
  letter-spacing: -0.01em;
}
.advantage-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PRICING — Premium 4-column
   ============================================================ */
.pricing-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--bg-0) 100%);
}
.pricing-section .container {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.pricing-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pricing-section-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 109, 245, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 109, 245, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.pricing-section-glow {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-42%);
  width: min(720px, 85vw);
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(79, 109, 245, 0.10) 0%, rgba(127, 86, 217, 0.06) 42%, transparent 72%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 18px;
  overflow: visible;
}

/* ── Period toggle ── */
.pricing-period {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  padding-top: 36px;
}
.pricing-toggle {
  position: relative;
  display: inline-flex;
  background: var(--bg-1);
  border: 1px solid var(--surface-stroke);
  border-radius: 50px;
  padding: 4px;
  gap: 2px;
}
.pricing-toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(20, 30, 80, 0.10);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}
.pricing-toggle-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}
.pricing-toggle-btn.active {
  background: transparent;
  color: var(--text-main);
  box-shadow: none;
}
.toggle-discount {
  background: linear-gradient(100deg, #4f6df5, #7f56d9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}
.pricing-period-hint {
  font-size: 0.82rem;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
}
.pricing-period-hint.is-visible {
  opacity: 1;
  max-height: 48px;
  margin-top: 4px;
}
.pricing-period-hint i { font-size: 0.9rem; }

/* Annual price details — always in DOM, opacity toggle keeps layout stable */
.pc-price-old,
.pc-price-annual-note {
  font-size: 0.75rem;
  line-height: 1.5;
  min-height: 1.2em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.pc-price-old s { text-decoration: line-through; }
.pc-price-old { color: var(--text-muted); }
.pc-price-annual-note { color: var(--success); font-weight: 600; }
.pc--corporate .pc-price-annual-note { color: #34d399; }

/* Filler placeholders on free/custom cards — never shown */
.pc-price-filler { visibility: hidden !important; opacity: 0 !important; }

/* Show when grid is in annual mode */
.pricing-grid.annual .pc-price-old:not(.pc-price-filler),
.pricing-grid.annual .pc-price-annual-note:not(.pc-price-filler) {
  opacity: 1;
  pointer-events: auto;
}

/* Price change animation */
.pc-price-big.price-changing {
  animation: priceFlip 0.3s ease;
}
@keyframes priceFlip {
  0%   { opacity: 1; transform: translateY(0); }
  40%  { opacity: 0; transform: translateY(-8px); }
  60%  { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Slot wrapper ── */
.pc-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.pc-slot > .pc {
  flex: 1 1 auto;
  height: 100%;
  width: 100%;
}
.pc-slot--featured {
  z-index: 3;
}

/* ── Popular badge — centered on top edge of featured card ── */
.pc-slot--featured .pc-popular-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 20px;
  border-radius: 50px;
  background: linear-gradient(100deg, #4f6df5 0%, #7f56d9 50%, #818cf8 75%, #4f6df5 100%);
  background-size: 200% 100%;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  overflow: hidden;
  animation: badge-shimmer 4s linear infinite;
  box-shadow: 0 4px 16px rgba(79,109,245,0.35);
  pointer-events: none;
}
.pc-slot--featured .pc-popular-label::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  animation: badge-shine 4s ease-in-out infinite;
}

/* ── Base card ── */
.pc {
  position: relative;
  background: #fff;
  border: 1px solid rgba(79,109,245,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.pc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

/* Coloured top stripe */
.pc-accent {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
}
.pc-accent--blue      { background: linear-gradient(90deg, var(--primary), #818cf8); }
.pc-accent--violet    { background: linear-gradient(90deg, #818cf8, var(--primary-2)); }
.pc-accent--indigo    { background: linear-gradient(90deg, var(--primary-2), #6366f1); }
.pc-accent--corporate { background: linear-gradient(90deg, #7c3aed, #c4b5fd); }

/* ── Featured card ── */
.pc-slot--featured .pc {
  border-color: rgba(79,109,245,0.22);
  box-shadow:
    0 20px 56px rgba(79,109,245,0.18),
    0 0 0 1.5px rgba(79,109,245,0.14),
    inset 0 1px 0 rgba(255,255,255,0.65);
  z-index: 2;
}
.pc-slot--featured .pc:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 68px rgba(79,109,245,0.26),
    0 0 0 1.5px rgba(79,109,245,0.2),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

/* Keep old class for compatibility */
.pc--featured {
  z-index: 2;
}

@keyframes badge-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes badge-shine {
  0%        { left: -60%; }
  35%, 100% { left: 120%; }
}

/* ── Corporate card ── */
.pc--corporate {
  background: linear-gradient(160deg, #0f172a 0%, #1a0f3a 100%);
  border-color: rgba(196,181,253,0.18);
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(196,181,253,0.22);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pc--corporate .pc-li {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
}
.pc--corporate .pc-li i {
  font-size: 0.95rem;
}

/* ── Card zones (equalised by JS) ── */
.pc-head {
  padding: 22px 22px 16px;
  /* min-height set by JS to align across cards */
}

.pc-commercial {
  margin: 0 14px 16px;
  background: #f8faff;
  border: 1px solid rgba(79, 109, 245, 0.08);
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  /* min-height set by JS */
}
.pc--corporate .pc-commercial {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(196, 181, 253, 0.12);
}

.pc-price-zone {
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* min-height set by JS */
}

.pc-desc-zone {
  padding: 10px 16px 12px;
  /* min-height set by JS */
}


.pc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(79,109,245,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.pc-icon--violet { background: rgba(127,86,217,0.12); color: var(--primary-2); }
.pc-icon--indigo { background: rgba(99,102,241,0.12); color: #6366f1; }
.pc-icon--white  { background: rgba(255,255,255,0.15); color: #fff; }
.pc-icon--purple { background: rgba(196,181,253,0.15); color: #c4b5fd; }

.pc-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin-bottom: 3px;
}
.pc--featured .pc-name  { color: var(--text-main); }
.pc--corporate .pc-name { color: #fff; }

.pc-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0;
  font-weight: 500;
}
.pc--featured .pc-tagline  { color: var(--text-muted); }
.pc--corporate .pc-tagline { color: #64748b; }

.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 4px;
}
.pc-price-big {
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}
.pc--featured .pc-price-big { color: var(--text-main); }
.pc--corporate .pc-price-big { color: #fff; }

.pc-price-unit {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 4px;
}
.pc--featured .pc-price-unit  { color: var(--text-muted); }
.pc--corporate .pc-price-unit { color: #475569; }

.pc-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.pc--featured .pc-desc  { color: var(--text-muted); }
.pc--corporate .pc-desc { color: #64748b; }

/* CTA button */
.pc-footer .pc-btn {
  width: 100%;
}
.pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.pc-btn--outline {
  border: 1.5px solid rgba(79,109,245,0.28);
  color: var(--primary);
  background: transparent;
}
.pc-btn--outline:hover {
  background: rgba(79,109,245,0.06);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.pc-btn--white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.pc-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.pc-btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 4px 16px rgba(79,109,245,0.35);
}
.pc-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,109,245,0.5);
}
.pc-btn--dim {
  border: 1.5px solid rgba(196,181,253,0.25);
  color: #c4b5fd;
  background: transparent;
}
.pc-btn--dim:hover {
  background: rgba(196,181,253,0.1);
  border-color: #c4b5fd;
  transform: translateY(-2px);
}

/* Divider */
.pc-divider {
  height: 1px;
  background: rgba(79,109,245,0.08);
  margin: 0 22px 4px;
  flex-shrink: 0;
}
.pc--featured .pc-divider  { background: rgba(79,109,245,0.1); }
.pc--corporate .pc-divider { background: rgba(196,181,253,0.12); }

/* Features list */
.pc-list {
  padding: 10px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  background: #fff;
}
.pc-li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
}
.pc-li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
  font-size: 0.72rem;
  font-weight: 800;
}
.pc-li--yes       { color: var(--text-main); }
.pc-li--yes i     { background: rgba(18, 183, 106, 0.12); color: var(--success); }
.pc-li--no        { color: var(--text-muted); opacity: 0.72; }
.pc-li--no i      { background: rgba(148, 163, 184, 0.14); color: #94a3b8; }

.pc--featured .pc-li--yes   { color: var(--text-main); }
.pc--featured .pc-li--yes i { background: rgba(18, 183, 106, 0.12); color: var(--success); }
.pc--corporate .pc-list {
  margin: 0;
  padding: 10px 22px 16px;
  border-radius: 0;
  background: transparent;
}
.pc--corporate .pc-li--yes   { color: #e2e8f0; }
.pc--corporate .pc-li--yes i { background: rgba(52, 211, 153, 0.14); color: #34d399; }
.pc--corporate .pc-li--no    { color: #64748b; opacity: 0.72; }
.pc--corporate .pc-li--no i  { background: rgba(148, 163, 184, 0.12); color: #64748b; }

/* API integration items */
.pc-li--api {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-main);
}
.pc-li--api i {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--success);
}

/* Footnote inside card */
.pc-footnote-mark {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  cursor: default;
  vertical-align: super;
  line-height: 1;
}
.pc-footnote {
  margin: 0 22px 18px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(79,109,245,0.05);
  border: 1px solid rgba(79,109,245,0.1);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.pc-footnote-num {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* ── Card footer (button above divider) ── */
.pc-footer {
  padding: 0 16px 16px;
}

/* GPS footnote superscript */
.pc-gps-sup {
  font-size: 0.6em;
  font-weight: 700;
  color: var(--primary);
  vertical-align: super;
  line-height: 0;
}

/* Global footnote below grid */
.pricing-footnote {
  margin-top: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(79, 109, 245, 0.04);
  border: 1px solid rgba(79, 109, 245, 0.08);
  border-radius: 12px;
  line-height: 1.55;
}
.pricing-footnote > .bi {
  color: var(--primary);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-footnote-mark {
  color: var(--primary);
  font-weight: 700;
}

/* Guarantee */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-guarantee i { color: var(--success); font-size: 1rem; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; padding-top: 18px; }
  .pricing-period { padding-top: 28px; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark-3) 0%, var(--bg-dark-2) 50%, #1e1344 100%);
}
.cta-bg { position: absolute; inset: 0; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,109,245,0.4), transparent 70%);
  top: -200px; left: -100px;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(127,86,217,0.4), transparent 70%);
  bottom: -150px; right: -80px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 36px;
}
.cta-actions { margin-bottom: 28px; }

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cta-features span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}
.cta-features i { color: var(--success); font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark-3);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 40px;
}
.footer-brand .brand-logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.87rem;
  color: #526081;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #526081;
  margin-bottom: 4px;
}
.footer-links-col a {
  font-size: 0.87rem;
  color: #4a5878;
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
  color: #334876;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content { max-width: 100%; }
  .hero-visual { display: none; }
  .roles-grid { grid-template-columns: 1fr; }
  .role-card--director { transform: scale(1); }
  .role-card--director:hover { transform: translateY(-6px); }
  .features-bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento-card--wide  { grid-column: span 2; }
  .bento-card--full  { flex-direction: column; align-items: flex-start; }
  .bento-meter       { width: 100%; min-width: 0; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .how-connector {
    width: 2px;
    height: 32px;
    margin: 0 auto;
    justify-self: center;
  }
  .how-connector::after {
    right: -3px;
    top: auto;
    bottom: -4px;
    transform: rotate(135deg);
  }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }

  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-soft);
    z-index: 99;
  }
  .nav-burger { display: flex; }

  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-stats { flex-direction: row; justify-content: center; }

  .features-bento {
    grid-template-columns: 1fr;
  }
  .bento-card--wide  { grid-column: span 1; }
  .bento-card--full  { flex-direction: column; align-items: flex-start; }
  .bento-content-row { grid-template-columns: 1fr; }
  .bento-excel-preview { display: none; }
  .bento-map-deco    { font-size: 4rem; }
  .bento-meter       { width: 100%; min-width: 0; flex-wrap: wrap; }

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

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-group { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-features { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .hero-stat-value { font-size: 1.6rem; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  background: linear-gradient(180deg, var(--bg-0) 0%, #fff 100%);
}

/* ── Toggle ── */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.pricing-toggle {
  display: inline-flex;
  background: var(--bg-1);
  border: 1px solid rgba(79, 109, 245, 0.16);
  border-radius: 50px;
  padding: 5px;
  gap: 4px;
}

.pricing-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.pricing-toggle-btn.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(79, 109, 245, 0.16);
}

.pricing-toggle-save {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.6;
}

/* ── Base card ── */
.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--surface-stroke);
  border-radius: var(--radius-xl);
  padding: 28px 24px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

/* ── Featured card ── */
.pricing-card--featured {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-2) 100%);
  border-color: transparent;
  box-shadow: 0 20px 56px rgba(79, 109, 245, 0.42);
  transform: translateY(-8px);
  color: #fff;
}

.pricing-card--featured:hover {
  transform: translateY(-13px);
  box-shadow: 0 28px 64px rgba(79, 109, 245, 0.52);
}

/* ── Dark card ── */
.pricing-card--dark {
  background: linear-gradient(135deg, var(--bg-dark-2) 0%, var(--bg-dark-3) 100%);
  border-color: rgba(127, 86, 217, 0.25);
  color: #e2e8f0;
}

.pricing-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 5px 16px;
  border-radius: 50px;
  background: #fff;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(79, 109, 245, 0.25);
}

/* ── Plan header ── */
.pricing-plan-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.pricing-card--featured .pricing-plan-name { color: #fff; }
.pricing-card--dark    .pricing-plan-name { color: #e2e8f0; }

.pricing-plan-target {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

.pricing-card--featured .pricing-plan-target { color: rgba(255, 255, 255, 0.72); }
.pricing-card--dark    .pricing-plan-target { color: #64748b; }

/* ── Amount block ── */
.pricing-amount-block {
  margin: 20px 0 4px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}

.pricing-amount-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  align-self: flex-start;
  padding-top: 6px;
}

.pricing-card--featured .pricing-amount-currency { color: rgba(255, 255, 255, 0.7); }
.pricing-card--dark    .pricing-amount-currency { color: #64748b; }

.pricing-amount-value {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-main);
  line-height: 1;
}

.pricing-card--featured .pricing-amount-value { color: #fff; }
.pricing-card--dark    .pricing-amount-value { color: #e2e8f0; }

.pricing-amount-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  align-self: flex-end;
  padding-bottom: 4px;
}

.pricing-card--featured .pricing-amount-period { color: rgba(255, 255, 255, 0.65); }
.pricing-card--dark    .pricing-amount-period { color: #64748b; }

.pricing-amount--free {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.pricing-amount--custom {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #e2e8f0;
  line-height: 1.2;
}

.pricing-amount-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin: 6px 0 0;
  min-height: 1.1em;
}

.pricing-card--featured .pricing-amount-note { color: rgba(255, 255, 255, 0.6); }
.pricing-card--dark    .pricing-amount-note { color: #526081; }

/* ── CTA buttons ── */
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  margin-top: 20px;
  margin-bottom: 4px;
  border: none;
}

.pricing-cta:hover { transform: translateY(-2px); }

.pricing-cta--outline {
  background: transparent;
  border: 1.5px solid rgba(79, 109, 245, 0.3);
  color: var(--primary);
}
.pricing-cta--outline:hover {
  background: rgba(79, 109, 245, 0.06);
  border-color: var(--primary);
}

.pricing-cta--ghost {
  background: rgba(79, 109, 245, 0.08);
  color: var(--primary);
  border: 1.5px solid rgba(79, 109, 245, 0.18);
}
.pricing-cta--ghost:hover {
  background: rgba(79, 109, 245, 0.14);
  border-color: var(--primary);
}

.pricing-cta--white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.pricing-cta--white:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.pricing-cta--dim {
  background: rgba(255, 255, 255, 0.07);
  color: #94a3b8;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}
.pricing-cta--dim:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
}

/* ── Feature list ── */
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(79, 109, 245, 0.1);
  flex: 1;
}

.pricing-card--featured .pricing-features { border-color: rgba(255, 255, 255, 0.18); }
.pricing-card--dark    .pricing-features { border-color: rgba(255, 255, 255, 0.07); }

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-feature i {
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--success);
  font-weight: 900;
}

.pricing-feature strong { color: var(--text-main); font-weight: 700; }

.pricing-feature--no { opacity: 0.45; }
.pricing-feature--no i { color: var(--text-muted); }

.pricing-card--featured .pricing-feature       { color: rgba(255, 255, 255, 0.8); }
.pricing-card--featured .pricing-feature i     { color: rgba(255, 255, 255, 0.85); }
.pricing-card--featured .pricing-feature strong { color: #fff; }

.pricing-card--dark .pricing-feature       { color: #64748b; }
.pricing-card--dark .pricing-feature i     { color: var(--primary-2); }
.pricing-card--dark .pricing-feature strong { color: #94a3b8; }

/* ── Guarantee ── */
.pricing-guarantee {
  text-align: center;
  margin-top: 36px;
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pricing-guarantee i { color: var(--success); font-size: 1rem; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-5px); }
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-toggle-btn { padding: 9px 16px; font-size: 0.85rem; }
}
