﻿/* ============================================================
   CliqPOS Landing Page v2 - Clean & Complete
   Brand: Gold #F5A800 / Blue #1A2FA0 / Navy #090E2E
   ============================================================ */

/* ROOT VARIABLES */
:root {
  --gold:        #F5A800;
  --gold-dark:   #D4900A;
  --gold-light:  #FFD166;
  --gold-pale:   #FFF8E7;
  --blue:        #1A2FA0;
  --blue-dark:   #101E78;
  --blue-mid:    #2540C8;
  --blue-light:  #EEF1FF;
  --navy:        #090E2E;
  --white:       #FFFFFF;
  --text:        #0D1240;
  --muted:       #5B6390;
  --surface:     #F7F8FF;
  --border:      #E2E6FF;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  font-optical-sizing: auto;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* TYPOGRAPHY BASE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* SCROLL PROGRESS BAR */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-mid));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ========================================
   NAVIGATION
   ======================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(180deg, rgba(9,14,46,0.72) 0%, transparent 100%);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(26, 47, 160, 0.10);
}

/* Restore dark colors once nav has a white background */
nav.scrolled .nav-links a {
  color: var(--text);
}
nav.scrolled .nav-links a:hover {
  color: var(--blue);
}
nav.scrolled .nav-logo span {
  color: var(--blue);
}
nav.scrolled .btn-ghost {
  color: var(--blue);
  border-color: var(--blue);
}
nav.scrolled .btn-ghost:hover {
  background: var(--blue);
  color: white;
}

/* White text + outline on dark hero (before scroll) */
nav:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.88);
}
nav:not(.scrolled) .nav-links a:hover {
  color: white;
}
nav:not(.scrolled) .nav-logo span {
  color: white;
}
nav:not(.scrolled) .btn-ghost {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
  background: transparent;
}
nav:not(.scrolled) .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.9);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links .has-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: -100px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(26, 47, 160, 0.15);
  padding: 1.25rem;
  min-width: 480px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown-menu {
  display: grid;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  font-size: 0.85rem;
  font-weight: 500;
}

.dropdown-item:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.dropdown-item .icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 0.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.nav-login-link:hover {
  color: var(--gold);
}

.btn-ghost {
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--blue);
  background: transparent;
  border: 2px solid var(--blue);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: var(--blue);
  color: white;
}

.btn-primary {
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--gold);
  color: var(--navy);
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ========================================
   HERO
   ======================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #070712;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 60% 45%, rgba(6,2,151,0.5) 0%, transparent 65%),
    radial-gradient(ellipse 50% 30% at 100% 0%, rgba(255,178,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(255,178,0,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,178,0,0.7) 35%, rgba(255,178,0,0.4) 65%, transparent 100%);
  z-index: 1;
}

.hero-section .hero {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-circles::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 168, 0, 0.15) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation: floatA 8s ease-in-out infinite;
}

.hero-bg-circles::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 47, 160, 0.30) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  animation: floatB 10s ease-in-out infinite;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 50px 50px;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.04); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  /* left column */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 168, 0, 0.12);
  border: 1px solid rgba(245, 168, 0, 0.30);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
  white-space: normal;
  max-width: 100%;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 168, 0, 0.6); }
  50% { box-shadow: 0 0 0 7px rgba(245, 168, 0, 0); }
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  color: white;
  margin-bottom: 1.35rem;
  animation: fadeInUp 0.7s ease 0.1s both;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s ease 0.2s both;
  max-width: 520px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-hero-primary {
  padding: 0.85rem 1.85rem;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  animation: heroPulse 2.5s ease-in-out infinite;
  white-space: nowrap;
}

.btn-hero-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  animation: none;
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 168, 0, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(245, 168, 0, 0); }
}

.btn-hero-secondary {
  padding: 0.85rem 1.65rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.20);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-trust {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.hero-proof-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-proof-card {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: grid;
  gap: 0.35rem;
}

.hero-proof-card strong {
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-proof-card span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 0.83rem;
}

.hero-stats {
  margin-top: 2.5rem;
  display: flex;
  gap: 2.25rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.5s both;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.60);
  margin-top: 4px;
  white-space: nowrap;
}

/* HERO VISUAL (right column) */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.9s ease 0.3s both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(36px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.dashboard-mockup {
  background: linear-gradient(135deg, #1a2260, #0d1545);
  border-radius: 20px;
  border: 1px solid rgba(245, 168, 0, 0.20);
  padding: 1.5rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.50);
  animation: floatDash 6s ease-in-out infinite;
}

@keyframes floatDash {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.dash-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
}

.dash-date {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
}

.dash-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.kpi-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kpi-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.kpi-change {
  font-size: 0.62rem;
  color: #4ade80;
  margin-top: 3px;
}

.kpi-change.neg {
  color: #f87171;
}

.dash-chart {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 0.85rem;
  margin-bottom: 1rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 54px;
}

.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(245, 168, 0, 0.25);
  transition: all 0.3s;
  min-width: 0;
}

.chart-bar-h40 { height: 40%; }
.chart-bar-h45 { height: 45%; }
.chart-bar-h55 { height: 55%; }
.chart-bar-h65 { height: 65%; }
.chart-bar-h70 { height: 70%; }
.chart-bar-h80 { height: 80%; }
.chart-bar-h95 { height: 95%; }

.chart-bar.active {
  background: var(--gold);
}

.dash-orders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.order-row {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 9px;
  padding: 0.65rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

.order-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(245, 168, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.order-info .name {
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
}

.order-info .sub {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.30);
}

.order-amt {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}

/* Floating badges on the dashboard */
.float-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 9px 13px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 10;
}

.float-badge-1 {
  top: -18px;
  right: -24px;
  animation: floatBadge1 4s ease-in-out infinite;
}

.float-badge-2 {
  bottom: 18px;
  left: -36px;
  animation: floatBadge2 5s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

.float-badge-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.float-badge-text .title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
}

.float-badge-text .sub {
  font-size: 0.6rem;
  color: var(--muted);
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */
.social-proof-bar {
  background: linear-gradient(180deg, #0f117b, var(--blue));
  padding: 1.3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.95rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  min-width: 240px;
  max-width: 320px;
}

.proof-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.proof-item strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.proof-item span {
  display: block;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
  font-size: 0.8rem;
}

/* ========================================
   SECTIONS - SHARED
   ======================================== */
section {
  padding: 96px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ========================================
   VERTICALS / SOLUTIONS
   ======================================== */
.verticals {
  background: var(--surface);
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}

.vertical-card {
  background: white;
  border-radius: 20px;
  padding: 1.75rem;
  border: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.vertical-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(245, 168, 0, 0.10);
}

.vert-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  transition: all 0.3s;
}

.vertical-card:hover .vert-icon {
  background: var(--gold);
}

.vert-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.vert-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.vert-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  margin-bottom: 1.2rem;
}

.vert-features li {
  font-size: 0.82rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}

.vert-features li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.vert-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.vert-link:hover {
  gap: 8px;
}

/* ========================================
   FEATURES
   ======================================== */
.features-wrap {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 4rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-row.flip {
  direction: rtl;
}

.feature-row.flip > * {
  direction: ltr;
}

.feat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.feature-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.9rem;
  letter-spacing: -0.2px;
}

.feature-text p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
}

.feature-bullets li .check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.7rem;
  line-height: 1;
}

.feature-visual {
  background: linear-gradient(135deg, var(--navy), #1a2260);
  border-radius: 22px;
  padding: 2rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(245, 168, 0, 0.14);
  box-shadow: 0 28px 72px rgba(26, 47, 160, 0.14);
  position: relative;
  overflow: hidden;
}

.feature-visual::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 168, 0, 0.12), transparent 70%);
  pointer-events: none;
}

.fv-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fv-metric {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.5rem 0;
  line-height: 1.1;
}

.fv-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.30);
}

.fv-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 72px;
  margin-top: 1.5rem;
}

.fv-bar {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: rgba(245, 168, 0, 0.20);
  min-width: 0;
}

.fv-bar.hi {
  background: var(--gold);
}

.fv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 1.5rem;
}

.fv-tag {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.fv-tag.active {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

/* ========================================
   ALL FEATURES GRID
   ======================================== */
.all-features {
  background: var(--surface);
  padding: 5rem 0 4rem;
}

.af-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.af-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.af-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,47,160,.1);
  border-color: var(--blue);
}

.af-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .25rem;
}

.af-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}

.af-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.af-list li {
  font-size: .825rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}

.af-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: .75rem;
  top: .1rem;
}

.af-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.af-cta p {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.af-cta-note {
  font-size: .8rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .af-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how {
  background: var(--blue);
}

.how .section-label {
  color: rgba(255, 255, 255, 0.80);
}

.how .section-title {
  color: white;
}

.how .section-subtitle {
  color: rgba(255, 255, 255, 0.80);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.steps-grid::after {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 1.75rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(245, 168, 0, 0.40);
}

.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.7rem;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.steps-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.toggle-label.active {
  color: var(--blue);
}

.toggle-track {
  width: 50px;
  height: 26px;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}

.toggle-track.on {
  background: var(--blue);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.toggle-track.on .toggle-thumb {
  left: 27px;
}

.save-badge {
  background: var(--gold-pale);
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.price-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 2rem;
  border: 2px solid var(--border);
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card.popular {
  background: var(--blue);
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 28px 72px rgba(26, 47, 160, 0.22);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.price-card.popular .price-tier {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-subtitle {
  max-width: 760px;
}

.pricing-value-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.75rem auto 1.25rem;
}

.pricing-value-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(26, 47, 160, 0.06);
  border: 1px solid rgba(26, 47, 160, 0.10);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.pricing-billing-helper {
  text-align: center;
  margin: -0.15rem auto 1.5rem;
  max-width: 680px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-audience {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.price-card.popular .price-audience {
  color: rgba(255, 255, 255, 0.92);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 0.4rem;
  flex-wrap: nowrap;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.price-card.popular .price-currency {
  color: white;
}

.price-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.price-card.popular .price-num {
  color: var(--gold);
}

.price-period {
  font-size: 0.82rem;
  color: var(--muted);
  flex-shrink: 0;
}

.price-card.popular .price-period {
  color: rgba(255, 255, 255, 0.45);
}

.price-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.price-card.popular .price-desc {
  color: rgba(255, 255, 255, 0.55);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.price-features li {
  font-size: 0.84rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
}

.price-card.popular .price-features li {
  color: rgba(255, 255, 255, 0.80);
}

.price-features li .chk {
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}

.price-features li .no {
  color: var(--border);
  font-weight: 800;
  flex-shrink: 0;
}

.btn-price-primary {
  width: 100%;
  padding: 0.82rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--gold);
  color: var(--navy);
  border: none;
  transition: all 0.2s;
  text-align: center;
  display: block;
  text-decoration: none;
}

.btn-price-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-price-outline {
  width: 100%;
  padding: 0.82rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--border);
  transition: all 0.2s;
  text-align: center;
  display: block;
  text-decoration: none;
}

.btn-price-outline:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.price-card-actions {
  margin-top: auto;
}

.price-secondary-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.price-secondary-link:hover {
  color: var(--blue);
}

.price-card.popular .price-secondary-link {
  color: rgba(255, 255, 255, 0.76);
}

.price-card.popular .price-secondary-link:hover {
  color: #fff;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.pricing-urgency {
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.84rem;
  color: var(--text);
  font-weight: 600;
}

.pricing-footer-cta {
  max-width: 760px;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.94));
  border: 1px solid rgba(26, 47, 160, 0.10);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.pricing-footer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

/* ========================================
   INTEGRATIONS
   ======================================== */
.integrations {
  background: var(--surface);
}

.integ-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.integ-card {
  background: white;
  border-radius: 14px;
  padding: 1.2rem 0.75rem;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.integ-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(245, 168, 0, 0.09);
}

.integ-icon {
  font-size: 1.7rem;
  line-height: 1;
}

.integ-name {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  background: var(--navy);
}

.testimonials .section-label {
  color: rgba(255, 255, 255, 0.80);
}

.testimonials .section-title {
  color: white;
}

.testimonial-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.testimonial-trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.84);
  font-size: 0.82rem;
  font-weight: 700;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 1.75rem;
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: rgba(245, 168, 0, 0.28);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
}

.testi-role {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 1px;
}

/* ========================================
   DEMO FORM
   ======================================== */
.demo-section {
  background: linear-gradient(135deg, var(--gold-pale), var(--blue-light));
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 168, 0, 0.12), transparent 70%);
  pointer-events: none;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 0 2rem;
}

.demo-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.65rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.demo-text p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.demo-trust-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.demo-trust-card {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(26, 47, 160, 0.08);
  display: grid;
  gap: 0.35rem;
}

.demo-trust-card strong {
  color: var(--text);
  font-size: 0.92rem;
}

.demo-trust-card span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.demo-contact-card {
  margin-top: 1rem;
  padding: 1.15rem 1.2rem;
  background: rgba(245,168,0,0.08);
  border-radius: 16px;
  border: 1px solid rgba(245,168,0,0.2);
  display: grid;
  gap: 0.3rem;
}

.demo-contact-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.demo-contact-card strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  color: var(--blue);
}

.demo-contact-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.demo-contact-card a:hover {
  text-decoration: underline;
}

.demo-helper-copy {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.demo-helper-copy a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.demo-helper-copy a:hover {
  text-decoration: underline;
}

.demo-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-perks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

.demo-perks li span {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  color: var(--navy);
  font-weight: 800;
}

.demo-form-card {
  background: white;
  border-radius: 22px;
  padding: 2.25rem;
  box-shadow: 0 28px 72px rgba(26, 47, 160, 0.09);
}

.form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.form-intro {
  margin: -0.4rem 0 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 0.38rem;
}

.form-input {
  width: 100%;
  padding: 0.72rem 0.95rem;
  border-radius: 9px;
  border: 2px solid var(--border);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--blue);
}

.form-input::placeholder {
  color: #b0b8ce;
}

.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235B6390' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-color: white;
  padding-right: 2.5rem;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 0.95rem;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 800;
  background: var(--blue);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.4rem;
}

.btn-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}

.form-trust {
  text-align: center;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.7rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
  max-width: 700px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
  line-height: 1.45;
  font-family: 'Inter', sans-serif;
}

.faq-q:hover,
.faq-q.open {
  color: var(--blue);
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--gold);
}

.faq-q.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}

.faq-a.open {
  max-height: 240px;
  padding-bottom: 1.2rem;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner > .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-primary {
  padding: 0.95rem 2.25rem;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 800;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-cta-ghost {
  padding: 0.95rem 1.9rem;
  border-radius: 10px;
  font-size: 0.97rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.20);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-brand .logo-wrap span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.footer-brand .logo-wrap img {
  height: 34px;
  width: auto;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.1rem;
  letter-spacing: 0.3px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col ul a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
}

/* ========================================
   MOBILE DRAWER
   ======================================== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 92vw);
  background: white;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.mobile-drawer.open .drawer-overlay {
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer.open .drawer-panel {
  transform: none;
  pointer-events: all;
}

.drawer-close {
  float: right;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  padding: 4px;
  line-height: 1;
}

.drawer-links {
  list-style: none;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}

.drawer-links a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.drawer-links a:hover {
  color: var(--blue);
}

.drawer-ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ========================================
   STICKY MOBILE CTA
   ======================================== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.85rem 1rem;
  background: white;
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.10);
}

.sticky-mobile-cta a {
  display: block;
  width: 100%;
  padding: 0.9rem;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.97rem;
  text-decoration: none;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 800;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(26, 47, 160, 0.30);
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.3s;
  border: none;
  color: white;
  font-size: 1rem;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ========================================
   CHAT BUBBLE (WhatsApp)
   ======================================== */
.chat-bubble {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.40);
  border: none;
  font-size: 1.4rem;
  transition: all 0.2s;
  animation: waPulse 3s ease-in-out infinite;
  text-decoration: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.40); }
  50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.40), 0 0 0 10px rgba(37, 211, 102, 0.10); }
}

.chat-bubble:hover {
  transform: scale(1.08);
  animation: none;
}

/* ========================================
   EXIT INTENT MODAL
   ======================================== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.exit-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.exit-modal {
  background: white;
  border-radius: 22px;
  padding: 2.75rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s;
}

.exit-overlay.show .exit-modal {
  transform: scale(1);
}

.exit-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  line-height: 1;
}

.exit-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.exit-modal h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.7rem;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.exit-modal > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  line-height: 1.65;
}

.exit-form {
  display: flex;
  gap: 0.6rem;
}

.exit-form input {
  flex: 1;
  padding: 0.72rem 0.95rem;
  border-radius: 9px;
  border: 2px solid var(--border);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
  min-width: 0;
}

.exit-form input:focus {
  border-color: var(--blue);
}

.exit-form button {
  padding: 0.72rem 1.1rem;
  border-radius: 9px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}

.exit-form button:hover {
  background: var(--gold-dark);
}

.exit-skip {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   TOAST
   ======================================== */
#toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 5000;
  background: var(--blue);
  color: white;
  padding: 0.9rem 1.4rem;
  border-radius: 11px;
  box-shadow: 0 10px 36px rgba(26, 47, 160, 0.28);
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateY(-120px);
  transition: transform 0.4s ease;
  max-width: 300px;
}

#toast.show {
  transform: translateY(0);
}

.toast-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast-title {
  font-weight: 700;
  font-size: 0.87rem;
  line-height: 1.3;
}

.toast-sub {
  font-size: 0.78rem;
  opacity: 0.72;
  margin-top: 1px;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-proof-cards {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row.flip {
    direction: ltr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-value-strip {
    justify-content: stretch;
  }

  .pricing-value-pill {
    width: 100%;
  }

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

  .price-card.popular {
    transform: none;
  }

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

  .steps-grid::after {
    display: none;
  }

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

  .demo-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0;
  }

  .demo-trust-cards {
    grid-template-columns: 1fr;
  }

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

  .integ-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta .btn-ghost {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav {
    padding: 0 1.25rem;
  }

  section {
    padding: 72px 0;
  }

  .container {
    padding: 0 1.25rem;
  }

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

  .hero {
    padding: 100px 0 64px;
  }

  .hero-inner {
    padding: 0 1.25rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .hero-stats {
    gap: 1.25rem;
    justify-content: space-around;
  }

  .sticky-mobile-cta {
    display: block;
  }

  .integ-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .social-proof-bar {
    gap: 1.25rem;
    padding: 1rem 1.25rem;
  }

  .proof-item {
    font-size: 0.8rem;
    min-width: 100%;
    max-width: none;
  }

  .exit-form {
    flex-direction: column;
  }

  .demo-section {
    padding: 72px 0;
  }

  .dropdown-menu {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
    letter-spacing: -0.1px;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .social-proof-bar {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1.25rem;
  }

  .pricing-toggle {
    gap: 0.75rem;
  }

  .cta-banner h2 {
    font-size: 1.65rem;
  }

  .integ-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .back-top {
    bottom: 4.5rem;
    right: 1rem;
  }

  .chat-bubble {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }
}

/* ========================================
   Homepage Conversion Refresh
   ======================================== */
:root {
  --gold: #FFB200;
  --gold-dark: #d99600;
  --blue: #060297;
  --blue-dark: #050172;
  --navy: #05083a;
  --text: #11183f;
  --muted: #5d648a;
  --surface: #f6f8ff;
  --border: #dfe5ff;
}

.hero {
  padding-top: 132px;
  padding-bottom: 88px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.25rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 178, 0, 0.12);
  border: 1px solid rgba(255, 178, 0, 0.22);
  color: #fff5d1;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 1.1rem;
  max-width: 11ch;
}

.hero-sub {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.78;
  color: var(--text-muted, rgba(255, 255, 255, 0.78));
  max-width: 500px;
  margin-bottom: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-primary-lg,
.btn-primary,
.btn-price-primary,
.btn-price-outline,
.btn-cta-primary,
.btn-cta-ghost,
.btn-submit {
  min-height: 54px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(6, 2, 151, 0.12);
}

.btn-primary-lg,
.btn-primary,
.btn-price-primary,
.btn-cta-primary,
.btn-submit {
  background: var(--gold);
  color: #1d1700;
}

.hero-text-link {
  font-family: 'DM Sans', 'Inter', sans-serif;
  color: var(--text-muted, rgba(255, 255, 255, 0.78));
  font-size: 16px;
  text-decoration: none;
  padding: 16px 0;
  display: inline-block;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: color 0.2s ease;
}

.hero-text-link:hover {
  color: var(--amber, #FFB200);
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 1rem;
}

.hero-social-avatars {
  display: flex;
  align-items: center;
}

.hero-social-avatar {
  width: 34px;
  height: 34px;
  margin-left: -0.5rem;
  border-radius: 999px;
  border: 2px solid rgba(6, 2, 151, 0.9);
  background: linear-gradient(135deg, rgba(255, 178, 0, 0.9), rgba(255, 255, 255, 0.95));
  color: #060297;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-social-avatar:first-child {
  margin-left: 0;
}

.hero-social-copy {
  font-family: 'DM Sans', 'Inter', sans-serif;
  color: var(--text-muted, rgba(255, 255, 255, 0.78));
  font-size: 15px;
  line-height: 1.5;
}

.hero-social-copy strong {
  color: #fff;
}

.btn-price-outline {
  border: 1px solid rgba(6, 2, 151, 0.18);
  background: #fff;
  color: var(--blue);
}

.hero-micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.hero-micro-trust span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.hero-micro-trust span::before {
  content: "•";
  color: var(--gold);
  margin-right: 0.45rem;
}

.hero-micro-trust span:first-child::before {
  content: "";
  margin-right: 0;
}

.hero-proof-card,
.problem-card,
.solution-card,
.feature-simple-card,
.african-fit-point,
.price-card,
.demo-form-card,
.demo-trust-card,
.demo-contact-card {
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(6, 2, 151, 0.1);
}

.hero-visual {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-visual-note {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.28rem;
}

.hero-visual-note-label {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual-note strong {
  color: #fff;
  font-size: 1rem;
}

.hero-visual-note-copy {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.hero-stats {
  margin-top: 1.75rem;
  gap: 1.6rem;
  padding-top: 1.4rem;
}

.stat-item {
  min-width: 120px;
  text-align: left;
}

.stat-num {
  font-size: 1.55rem;
}

.stat-label {
  white-space: normal;
  line-height: 1.45;
}

.dashboard-mockup {
  border-radius: 22px;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(14, 22, 72, 0.98) 0%, rgba(9, 14, 46, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(4, 9, 45, 0.38);
}

.dash-kpis {
  gap: 0.75rem;
}

.kpi-card,
.dash-chart,
.order-row {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.kpi-label,
.dash-date,
.order-info .sub {
  color: rgba(255, 255, 255, 0.48);
}

.order-row {
  padding: 0.75rem;
}

.social-proof-bar {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin: -20px auto 0;
  max-width: 1200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(6, 2, 151, 0.08);
}

.trust-strip-intro,
.proof-item {
  padding: 1.25rem 1.35rem;
}

.trust-strip-intro strong,
.trust-strip-intro span {
  display: block;
}

.trust-strip-intro strong {
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.trust-strip-intro span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.problem-solution,
#features,
.african-fit-section,
#pricing,
.testimonials,
.demo-section,
#faq,
.cta-banner {
  padding: 88px 0;
}

.problem-solution {
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.problem-solution-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.problem-card,
.solution-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border);
}

.problem-card {
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
}

.solution-card {
  background: linear-gradient(180deg, #f6f8ff 0%, #eef2ff 100%);
}

.ps-card-kicker {
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ps-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.ps-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.ps-list li > div {
  display: grid;
  gap: 0.32rem;
}

.ps-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.ps-icon-problem {
  background: #fff1f2;
  color: #dc2626;
}

.ps-icon-solution {
  background: #ecfdf5;
  color: #16a34a;
}

.ps-list strong,
.feature-simple-card h3,
.african-fit-point strong {
  display: block;
  margin-bottom: 0.2rem;
}

.ps-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-simple-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.2rem;
}

.feature-simple-card {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
}

.feature-simple-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 178, 0, 0.14);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-simple-card p,
.african-fit-point span,
.price-payback {
  color: var(--muted);
}

.feature-simple-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.feature-simple-list li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 800;
  margin-right: 0.55rem;
}

.african-fit-section {
  background: linear-gradient(135deg, #060297 0%, #0d1daa 100%);
}

.african-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.african-fit-copy .section-title,
.african-fit-copy .section-subtitle,
.african-fit-copy .section-label {
  color: #fff;
}

.african-fit-copy .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.african-fit-points {
  display: grid;
  gap: 1rem;
}

.african-fit-point {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.african-fit-point strong,
.african-fit-point span {
  color: #fff;
}

.african-fit-point span {
  color: rgba(255, 255, 255, 0.82);
}

#pricing .section-title {
  max-width: 820px;
  margin-inline: auto;
}

.price-card {
  border: 1px solid var(--border);
}

.price-card.popular {
  border-color: rgba(255, 178, 0, 0.55);
  box-shadow: 0 24px 60px rgba(255, 178, 0, 0.16);
}

.popular-badge {
  background: var(--gold);
  color: #1d1700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
}

.price-payback {
  margin: -0.15rem 0 1rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.testi-card {
  border-radius: 16px;
}

.demo-urgency {
  display: inline-flex;
  align-items: center;
  margin: 1rem 0 1.2rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 178, 0, 0.14);
  color: #7a4d00;
  font-size: 0.9rem;
  font-weight: 800;
}

.demo-form-card {
  background: #fff;
  border: 1px solid var(--border);
}

.form-input {
  min-height: 52px;
  border-radius: 10px;
}

.cta-banner h2 {
  max-width: 760px;
  margin-inline: auto;
}

.logo-wrap span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.sticky-mobile-cta a {
  background: var(--gold);
  color: #1d1700;
  font-weight: 900;
  border-radius: 12px 12px 0 0;
}

@media (max-width: 1100px) {
  .hero-inner,
  .social-proof-bar,
  .problem-solution-grid,
  .african-fit-grid {
    grid-template-columns: 1fr;
  }

  .feature-simple-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 108px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .feature-simple-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    gap: 0.9rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-item {
    min-width: calc(50% - 0.5rem);
  }

  .problem-card,
  .solution-card,
  .feature-simple-card,
  .african-fit-point {
    padding: 1.4rem;
  }

  .problem-solution,
  #features,
  .african-fit-section,
  #pricing,
  .testimonials,
  .demo-section,
  #faq,
  .cta-banner {
    padding: 72px 0;
  }

  .trust-strip-intro,
  .proof-item {
    padding: 1rem 1.1rem;
  }

  .hero-cta .btn-primary-lg,
  .hero-cta .hero-text-link,
  .cta-actions a {
    width: 100%;
    text-align: center;
  }

  .hero-social {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-badge,
  .hero-micro-trust span,
  .trust-strip-intro span,
  .proof-item span {
    font-size: 0.86rem;
  }

  .feature-simple-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    padding: 0.62rem 0.85rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stat-item {
    min-width: 100%;
  }
}

/* ========================================
   Enterprise Production Polish
   ======================================== */
.nav-logo {
  gap: 0.8rem;
}

.nav-logo img {
  height: auto;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6, 2, 151, 0.12), rgba(255, 178, 0, 0.18));
  border: 1px solid rgba(6, 2, 151, 0.1);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark-image {
  width: 28px;
  height: 28px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.brand-mark-fallback {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.04em;
  opacity: 1;
  z-index: 0;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.03em;
}

.brand-tag {
  font-size: 0.74rem;
  color: rgba(13, 18, 64, 0.7);
  line-height: 1.2;
  white-space: nowrap;
}

nav:not(.scrolled) .brand-name,
nav:not(.scrolled) .brand-tag {
  color: #fff;
}

nav:not(.scrolled) .brand-tag {
  color: rgba(255, 255, 255, 0.74);
}

.hero-badge,
.hero-trust-line,
.section-label,
.ps-card-kicker,
.scene-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.75rem;
}

.section-head .section-title {
  max-width: 15ch;
}

.section-intro-wrap {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1120px;
  margin: 0 auto 1.9rem;
}

.section-intro-wrap-left {
  max-width: 100%;
  margin: 1.25rem 0 0;
}

.section-intro-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.45rem 1.6rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 12px 30px rgba(6, 2, 151, 0.06);
  text-align: center;
}

.section-intro-card p {
  max-width: 64ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-intro-card-dark {
  margin: 0;
  max-width: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  text-align: left;
}

.section-intro-card-dark p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-trust-strip {
  justify-content: center;
  margin-top: 1.2rem;
}

.pricing-footer-card {
  display: grid;
  gap: 0.9rem;
}

.pricing-footer-card .pricing-note,
.pricing-footer-card .pricing-urgency {
  margin: 0 auto;
}

.pricing-grid,
.testi-grid,
.demo-grid {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.platform-grid,
.feature-simple-grid,
.problem-solution-grid,
.industries-grid,
.security-grid,
.comparison-table-wrap,
.pricing-value-strip,
.pricing-toggle,
.pricing-billing-helper,
.faq-shell,
.cta-shell {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid,
.testi-grid {
  align-items: stretch;
}

.demo-section .section-head {
  margin-bottom: 1rem;
}

.demo-grid {
  margin-top: 1rem;
}

.cta-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.2rem 2rem 0;
}

.faq-shell {
  width: 100%;
  padding: 0.35rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 12px 30px rgba(6, 2, 151, 0.06);
}

.faq-list {
  margin-top: 1.25rem;
}

.faq-shell .faq-list {
  margin-top: 0;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.footer-brand {
  max-width: 360px;
}

.section-head-on-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.nav-link-strong {
  font-weight: 700;
}

.drawer-btn-center {
  text-align: center;
  justify-content: center;
}

.platform-overview,
.industries-section,
.security-section,
.comparison-section {
  padding: 84px 0;
}

.platform-overview {
  background: #fff;
}

.platform-overview-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1120px;
  margin: 0 auto 1.75rem;
}

.platform-intro-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.55rem 1.6rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 12px 30px rgba(6, 2, 151, 0.06);
  text-align: center;
}

.platform-intro-kicker {
  margin-bottom: 0.5rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-intro-card p {
  max-width: 62ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.platform-grid,
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.platform-card,
.industry-card,
.security-card {
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 18px 44px rgba(6, 2, 151, 0.08);
}

.platform-card h3,
.industry-card h3,
.security-card strong {
  margin-bottom: 0.55rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.platform-card p,
.industry-card p,
.security-card span {
  color: var(--muted);
  line-height: 1.7;
}

.platform-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(6, 2, 151, 0.08);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.industries-section {
  background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
}

.industries-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-card {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.industry-card:hover,
.industry-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(6, 2, 151, 0.22);
  box-shadow: 0 22px 50px rgba(6, 2, 151, 0.12);
}

.industry-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 178, 0, 0.14);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.security-section {
  background: linear-gradient(135deg, #060297 0%, #08107a 100%);
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: start;
}

.security-copy .section-title,
.security-copy .section-subtitle,
.security-copy .section-label {
  color: #fff;
}

.security-copy .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.security-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.security-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.security-card strong,
.security-card span {
  display: block;
  color: #fff;
}

.security-card span {
  color: rgba(255, 255, 255, 0.78);
}

.comparison-section {
  background: #fff;
}

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 44px rgba(6, 2, 151, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: #fff;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  background: #f7f9ff;
  color: var(--text);
  font-size: 0.9rem;
}

.comparison-table tbody th {
  font-size: 0.95rem;
  color: var(--text);
  width: 28%;
}

.comparison-table tbody td {
  color: var(--muted);
}

.comparison-table tbody tr td:last-child,
.comparison-table thead th:last-child {
  color: var(--blue);
  font-weight: 700;
}

.popular-badge-alt {
  background: #eef2ff;
  color: #1e3a8a;
}

.price-num-custom {
  font-size: 2rem;
}

.pricing-note-saving {
  margin: 0 0 16px;
  color: #16a34a;
  font-size: 0.92rem;
  font-weight: 700;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.price-desc {
  min-height: 52px;
}

.price-card-actions {
  margin-top: auto;
}

.price-secondary-link {
  font-weight: 700;
}

.pricing-note,
.pricing-urgency {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-trust-pill,
.pricing-value-pill,
.save-badge,
.demo-urgency {
  border-radius: 999px;
}

.demo-contact-card a,
.price-secondary-link,
.demo-helper-copy a,
.footer-col a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-hero-primary:focus-visible,
.btn-hero-secondary:focus-visible,
.btn-price-primary:focus-visible,
.btn-price-outline:focus-visible,
.btn-cta-primary:focus-visible,
.btn-cta-ghost:focus-visible,
.btn-submit:focus-visible,
.price-secondary-link:focus-visible,
.faq-q:focus-visible,
.industry-card:focus-visible,
.sticky-mobile-cta a:focus-visible {
  outline: 3px solid rgba(255, 178, 0, 0.45);
  outline-offset: 3px;
}

.cta-actions {
  align-items: center;
}

.cta-actions .btn-cta-ghost:last-child {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-wordmark .brand-name,
.footer-wordmark .brand-tag {
  color: #fff;
}

.footer-wordmark .brand-tag {
  color: rgba(255, 255, 255, 0.7);
}

.faq-container {
  text-align: center;
}

.exit-success {
  display: none;
  text-align: center;
  padding: 0.75rem;
  background: #f0fdf4;
  border-radius: 8px;
  color: #16a34a;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.exit-skip {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.exit-modal h3 {
  max-width: 14ch;
}

@media (max-width: 1100px) {
  .platform-grid,
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .security-grid,
  .security-points {
    grid-template-columns: 1fr;
  }

  .brand-tag {
    display: none;
  }
}

@media (max-width: 720px) {
  .platform-overview,
  .industries-section,
  .security-section,
  .comparison-section {
    padding: 72px 0;
  }

  .platform-intro-card {
    padding: 1.25rem 1.1rem;
  }

  .section-intro-card {
    padding: 1.2rem 1rem;
  }

  .section-intro-wrap,
  .platform-overview-layout {
    margin-bottom: 1.35rem;
  }

  .platform-grid,
  .industries-grid,
  .security-points {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .comparison-table {
    min-width: 640px;
  }

  .cta-shell {
    padding: 1.5rem 0 0;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    gap: 0.65rem;
  }

  .brand-wordmark {
    max-width: 140px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .brand-tag {
    display: none;
  }
}

/* ========================================
   Simpler Brand-First Pass
   ======================================== */
.brand-tag {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 178, 0, 0.16), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(255, 178, 0, 0.08), transparent 15%),
    radial-gradient(circle at 72% 68%, rgba(18, 50, 170, 0.22), transparent 24%),
    linear-gradient(135deg, #020034 0%, #04015f 28%, #060297 52%, #040145 76%, #02031f 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  left: -150px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 178, 0, 0.12) 0%, rgba(255, 178, 0, 0.03) 32%, transparent 74%);
  filter: blur(22px);
}

.hero::after {
  top: 48px;
  right: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 102, 255, 0.12) 0%, rgba(15, 45, 170, 0.08) 34%, transparent 72%);
}

.hero-bg-circles {
  opacity: 0.22;
}

.hero-grid-overlay {
  opacity: 0;
}

.hero-inner {
  gap: 2.5rem;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  max-width: 11ch;
}

.hero p {
  max-width: 52ch;
}

.hero-proof-cards {
  margin-top: 1.35rem;
}

.hero-proof-card,
.platform-card,
.feature-simple-card,
.industry-card,
.problem-card,
.solution-card,
.security-card,
.price-card,
.testi-card,
.demo-form-card,
.demo-trust-card,
.demo-contact-card {
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(6, 2, 151, 0.08);
}

.hero-proof-card,
.business-scene-card,
.dashboard-mockup {
  border-color: rgba(255, 255, 255, 0.16);
}

.float-badge {
  box-shadow: 0 14px 28px rgba(6, 2, 151, 0.18);
}

.social-proof-bar {
  margin-top: -8px;
  max-width: 1120px;
  gap: 0;
  overflow: hidden;
}

.trust-strip-intro,
.proof-item {
  min-height: 100%;
  display: grid;
  align-content: center;
}

.proof-item {
  border-left: 1px solid var(--border);
}

.proof-item svg {
  color: var(--gold);
}

.proof-item strong {
  color: var(--blue);
}

.proof-item span {
  color: var(--muted);
}

.section-title {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

#pricing .section-title,
.testimonials .section-title,
.demo-section .section-title,
.cta-banner h2 {
  max-width: 18ch;
}

.section-subtitle {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.platform-overview,
#features,
.industries-section,
.comparison-section,
#faq {
  background: #fff;
}

.problem-solution,
#pricing {
  background: #f7f9ff;
}

.feature-simple-grid,
.platform-grid,
.industries-grid {
  align-items: stretch;
}

.platform-card,
.feature-simple-card,
.industry-card,
.problem-card,
.solution-card,
.security-card,
.price-card,
.testi-card,
.demo-form-card,
.demo-trust-card,
.demo-contact-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.platform-icon,
.feature-simple-icon,
.industry-icon {
  background: rgba(6, 2, 151, 0.08);
  color: var(--blue);
}

.feature-simple-icon {
  border: 1px solid rgba(6, 2, 151, 0.08);
}

.problem-card {
  background: #fff;
  border-color: rgba(255, 178, 0, 0.24);
}

.solution-card {
  background: #fff;
  border-color: rgba(6, 2, 151, 0.14);
}

.ps-icon-problem {
  background: rgba(255, 178, 0, 0.14);
  color: #8a5a00;
}

.ps-icon-solution {
  background: rgba(6, 2, 151, 0.1);
  color: var(--blue);
}

.kpi-change,
.kpi-change.neg {
  color: rgba(255, 255, 255, 0.72);
}

.security-section,
.testimonials,
.cta-banner {
  background: linear-gradient(180deg, #060297 0%, #05083a 100%);
}

.security-card {
  background: rgba(255, 255, 255, 0.06);
}

.comparison-table thead th {
  background: rgba(6, 2, 151, 0.05);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-card {
  background: #fff;
}

.price-card.popular {
  border-width: 2px;
  border-color: rgba(255, 178, 0, 0.9);
  box-shadow: 0 16px 40px rgba(255, 178, 0, 0.12);
}

.price-card-actions {
  gap: 0.8rem;
}

.problem-solution-grid,
.feature-simple-grid,
.industries-grid,
.pricing-grid,
.testi-grid,
.demo-grid {
  margin-top: 0.35rem;
}

.feature-simple-grid,
.industries-grid,
.pricing-grid,
.testi-grid {
  gap: 1.35rem;
}

.problem-solution-grid,
.demo-grid {
  gap: 1.5rem;
}

.problem-card,
.solution-card,
.feature-simple-card,
.industry-card,
.security-card,
.price-card,
.testi-card,
.demo-form-card,
.demo-trust-card,
.demo-contact-card,
.platform-card {
  width: 100%;
}

.pricing-value-strip,
.pricing-toggle,
.pricing-billing-helper {
  width: 100%;
}

.pricing-billing-helper {
  text-align: center;
}

.pricing-value-pill {
  background: rgba(6, 2, 151, 0.05);
  border-color: rgba(6, 2, 151, 0.10);
  color: var(--blue);
}

.security-copy {
  display: grid;
  align-content: start;
  gap: 0.25rem;
}

.security-copy .section-head,
.security-copy .section-title {
  margin-left: 0;
  margin-right: 0;
}

.security-copy .section-title {
  max-width: 14ch;
}

.section-intro-wrap-left .section-intro-card {
  max-width: 100%;
}

.testimonials .section-intro-wrap,
.cta-banner .cta-shell {
  position: relative;
  z-index: 1;
}

.testimonial-trust-strip {
  gap: 0.75rem;
}

.testimonial-trust-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cta-shell p {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.demo-contact-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(6, 2, 151, 0.12);
}

.demo-contact-card strong {
  color: var(--blue);
}

.faq-shell {
  padding: 0.45rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 12px;
}

.faq-q {
  font-weight: 700;
}

.faq-a {
  text-align: left;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
}

.sticky-mobile-cta a {
  box-shadow: 0 -10px 24px rgba(6, 2, 151, 0.12);
}

.faq-item:last-child .faq-a {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.testi-card {
  background: #fff;
  color: var(--text);
}

.testi-quote,
.testi-role {
  color: var(--muted);
}

.demo-grid {
  align-items: start;
}

.demo-text h2,
.demo-text p,
.demo-perks li,
.demo-helper-copy {
  color: var(--text);
}

.demo-urgency {
  background: rgba(255, 178, 0, 0.12);
  color: #8a5a00;
}

.cta-banner .btn-cta-primary {
  background: var(--gold);
  color: #1d1700;
}

.cta-banner .btn-cta-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.cta-actions .btn-cta-ghost:last-child {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.footer-brand p,
.footer-col a,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-col a:hover,
.demo-contact-card a:hover,
.price-secondary-link:hover,
.demo-helper-copy a:hover {
  color: var(--gold);
}

.social-btn {
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.social-btn:hover {
  background: rgba(255, 178, 0, 0.18);
  color: #fff;
}

@media (max-width: 1100px) {
  .hero h1,
  .section-title {
    max-width: none;
  }

  .social-proof-bar {
    gap: 1rem;
  }

  .proof-item {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .hero-proof-card,
  .platform-card,
  .feature-simple-card,
  .industry-card,
  .problem-card,
  .solution-card,
  .security-card,
  .price-card,
  .testi-card {
    box-shadow: 0 10px 24px rgba(6, 2, 151, 0.07);
  }

  .cta-actions .btn-cta-ghost:last-child {
    background: rgba(255, 255, 255, 0.05);
  }

  .cta-shell {
    padding: 1.5rem 0 0;
  }

  .social-proof-bar {
    margin-top: 0;
  }

  .feature-simple-grid,
  .industries-grid,
  .pricing-grid,
  .testi-grid,
  .problem-solution-grid,
  .demo-grid {
    gap: 1rem;
  }
}

/* ========================================
   Homepage Rebuild
   ======================================== */
.home-nav .nav-links {
  gap: 1.35rem;
}

.section-subtitle-home {
  max-width: 60ch;
  margin: 0.9rem auto 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.section-subtitle-on-dark {
  color: rgba(255, 255, 255, 0.78);
  margin-left: 0;
  margin-right: 0;
}

.hero-content {
  max-width: 660px;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.9rem, 5.5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.84);
}

.hero-cta {
  margin-top: 1.8rem;
}

.btn-primary-lg,
.btn-secondary-lg {
  min-height: 56px;
  padding: 0.95rem 1.45rem;
  border-radius: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-secondary-lg {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-secondary-lg:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.1rem;
}

.hero-trust-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
}

.hero-trust-copy strong {
  color: #fff;
}

.hero-trust-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-trust-payments span,
.hero-proof-pill,
.logo-pill,
.pricing-value-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 0.9rem;
  border-radius: 999px;
}

.hero-trust-payments span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-benefit {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-benefit strong,
.hero-benefit span {
  display: block;
}

.hero-benefit strong {
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 0.95rem;
}

.hero-benefit span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.6;
}

.hero-proof-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-proof-pill {
  background: rgba(255, 178, 0, 0.12);
  border: 1px solid rgba(255, 178, 0, 0.24);
  color: #fff0c2;
  font-size: 0.82rem;
  font-weight: 800;
}

.pain-section,
.pricing-home-section,
#faq {
  background: linear-gradient(180deg, #f9faff 0%, #eef3ff 100%);
}

.pain-section,
.value-section,
.local-advantage-section,
.industries-section,
.how-section,
.testimonials,
.flexibility-section,
.pricing-home-section,
.demo-section,
#faq,
.cta-banner {
  padding: 92px 0;
}

.pain-grid,
.local-advantage-grid,
.flexibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pain-list,
.value-grid,
.how-grid,
.local-advantage-points,
.flexibility-points,
.flexibility-stack {
  display: grid;
  gap: 1rem;
}

.pain-card,
.value-card,
.how-card,
.local-card,
.flexibility-card,
.pain-monitor {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(6, 2, 151, 0.07);
}

.pain-card,
.value-card,
.how-card,
.local-card {
  padding: 1.4rem;
}

.pain-card strong,
.pain-card span,
.value-card h3,
.value-card p,
.how-card h3,
.how-card p,
.local-card strong,
.local-card span,
.flexibility-points strong,
.flexibility-points span,
.flexibility-stack strong,
.flexibility-stack span {
  display: block;
}

.pain-card strong,
.value-card h3,
.how-card h3,
.local-card strong,
.flexibility-points strong,
.flexibility-stack strong {
  margin-bottom: 0.35rem;
}

.pain-card span,
.value-card p,
.how-card p,
.local-card span,
.flexibility-points span,
.flexibility-stack span {
  color: var(--muted);
  line-height: 1.7;
}

.pain-monitor {
  padding: 1.45rem;
  background: linear-gradient(180deg, #0d1c72 0%, #070d3d 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.pain-monitor-header strong,
.pain-monitor-header span,
.pain-monitor-list div span,
.pain-monitor-list div strong,
.pain-monitor-foot span {
  display: block;
}

.pain-monitor-header strong {
  color: #fff;
  font-size: 1.05rem;
}

.pain-monitor-header span,
.pain-monitor-foot span {
  color: rgba(255, 255, 255, 0.72);
}

.pain-monitor-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.1rem 0;
}

.pain-monitor-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.pain-monitor-list div span {
  color: #fff;
}

.pain-monitor-list div strong {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-grid,
.how-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(6, 2, 151, 0.08);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.local-advantage-section,
.testimonials,
.cta-banner {
  background: linear-gradient(180deg, #060297 0%, #040734 100%);
}

.local-advantage-copy .section-label,
.local-advantage-copy .section-title,
.testimonials .section-label,
.testimonials .section-title,
.cta-banner h2,
.cta-banner p {
  color: #fff;
}

.local-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.local-card strong {
  color: #fff;
}

.local-card span {
  color: rgba(255, 255, 255, 0.74);
}

.home-industries-grid {
  margin-top: 2rem;
}

.how-card {
  position: relative;
}

.how-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(255, 178, 0, 0.14);
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.logo-row,
.testimonial-metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 1.4rem;
}

.logo-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  font-weight: 700;
}

.testimonial-metric {
  min-width: 220px;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.testimonial-metric strong,
.testimonial-metric span {
  display: block;
}

.testimonial-metric strong {
  color: #fff;
  font-size: 1rem;
}

.testimonial-metric span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.72);
}

.flexibility-card,
.demo-form-card {
  padding: 1.4rem;
}

.flexibility-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.flexibility-chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(6, 2, 151, 0.06);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.flexibility-stack {
  margin-bottom: 1rem;
}

.flexibility-link {
  color: var(--blue);
}

.pricing-home-section .pricing-grid {
  margin-top: 1.25rem;
}

.demo-section .section-subtitle-home,
#faq .section-subtitle-home {
  margin-bottom: 0;
}

.cta-shell {
  max-width: 840px;
}

.cta-actions {
  justify-content: center;
}

@media (max-width: 1100px) {
  .hero-benefits,
  .value-grid,
  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pain-grid,
  .local-advantage-grid,
  .flexibility-grid,
  .switch-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-benefits,
  .value-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .pain-section,
  .value-section,
  .local-advantage-section,
  .industries-section,
  .how-section,
  .testimonials,
  .flexibility-section,
  .pricing-home-section,
  .demo-section,
  #faq,
  .cta-banner {
    padding: 76px 0;
  }

  .hero-cta,
  .hero-trust-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust-payments {
    justify-content: flex-start;
  }

  .btn-primary-lg,
  .btn-secondary-lg {
    width: 100%;
  }
}

/* ========================================
   Homepage Rebuild Polish
   ======================================== */
.home-nav {
  backdrop-filter: saturate(180%) blur(14px);
  background: linear-gradient(180deg, rgba(4, 7, 52, 0.82) 0%, rgba(4, 7, 52, 0.34) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.home-nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(6, 2, 151, 0.08);
  box-shadow: 0 10px 30px rgba(6, 2, 151, 0.05);
}

.home-nav:not(.scrolled) .nav-links a,
.home-nav:not(.scrolled) .nav-logo span {
  color: rgba(255, 255, 255, 0.92);
}

.home-nav:not(.scrolled) .nav-links a:hover {
  color: #fff;
}

.home-nav:not(.scrolled) .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.04);
}

.home-nav:not(.scrolled) .nav-login-link {
  color: rgba(255, 255, 255, 0.92);
}

.home-nav:not(.scrolled) .nav-login-link:hover {
  color: var(--gold-light);
}

.home-nav:not(.scrolled) .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.home-nav:not(.scrolled) .hamburger span {
  background: #fff;
}

.home-nav.scrolled .nav-links a {
  color: var(--text);
}

.home-nav.scrolled .nav-links a:hover,
.home-nav.scrolled .nav-logo span {
  color: var(--blue);
}

.home-nav.scrolled .btn-ghost {
  color: var(--blue);
  border-color: var(--blue);
  background: transparent;
}

.home-nav.scrolled .nav-login-link {
  color: var(--blue);
}

.home-nav.scrolled .nav-login-link:hover {
  color: var(--gold-dark);
}

.home-nav.scrolled .btn-ghost:hover {
  background: var(--blue);
  color: #fff;
}

.home-nav.scrolled .hamburger span {
  background: var(--navy);
}

.nav-logo {
  gap: 0.9rem;
}

.brand-tag {
  max-width: 23ch;
  line-height: 1.35;
}

.hero-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 178, 0, 0.11), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(32, 71, 255, 0.17), transparent 34%),
    linear-gradient(180deg, #050729 0%, #060c42 54%, #081259 100%);
}

.hero {
  padding-top: 112px;
  padding-bottom: 56px;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  box-shadow: 0 12px 26px rgba(255, 178, 0, 0.08);
}

.hero-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff3c4;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-alert::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 178, 0, 0.2);
  color: var(--gold);
  font-size: 0.75rem;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 0.95rem;
  font-size: clamp(2.45rem, 4.8vw, 4.35rem);
  line-height: 0.96;
}

.hero-sub {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.72;
}

.hero-cta {
  margin-top: 1.25rem;
  gap: 0.8rem;
}

.btn-primary-lg,
.btn-secondary-lg {
  min-height: 58px;
  padding: 0.95rem 1.5rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn-primary-lg:hover,
.btn-secondary-lg:hover,
.btn-primary:hover,
.btn-cta-primary:hover,
.btn-submit:hover {
  transform: translateY(-1px);
}

.btn-primary-lg:hover,
.btn-primary:hover,
.btn-cta-primary:hover,
.btn-submit:hover {
  box-shadow: 0 18px 36px rgba(255, 178, 0, 0.2);
}

.hero-trust-strip {
  gap: 0.8rem 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-intro {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-trust-copy {
  line-height: 1.6;
  font-size: 0.92rem;
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 0.8rem;
}

.hero-reassurance span {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-reassurance span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-benefits {
  gap: 1rem;
}

.hero-benefits-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  margin-top: 1rem;
}

.hero-benefit-mini {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-benefit-mini::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-stat-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.hero-stat-line strong {
  color: #fff;
}

.hero-proof-panel {
  gap: 0.75rem;
  margin-bottom: 0.1rem;
}

.dashboard-mockup {
  padding: 1.2rem;
}

.kpi-card {
  min-height: 108px;
}

.social-proof-bar {
  margin-top: -28px;
  padding: 0.2rem;
}

.trust-strip-intro,
.proof-item {
  border-radius: 18px;
}

.proof-item {
  background: #fff;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-title {
  letter-spacing: -0.03em;
}

.section-subtitle-home {
  max-width: 62ch;
}

.pain-grid,
.local-advantage-grid,
.flexibility-grid {
  gap: 1.7rem;
}

.pain-card,
.value-card,
.how-card,
.local-card,
.flexibility-card,
.pain-monitor,
.faq-shell,
.cta-shell {
  box-shadow: 0 20px 48px rgba(6, 2, 151, 0.08);
}

.pain-card,
.value-card,
.how-card,
.local-card {
  padding: 1.5rem;
}

.pain-card strong,
.value-card h3,
.how-card h3,
.local-card strong {
  font-size: 1.03rem;
}

.pain-close {
  margin-top: 1.1rem;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 800;
}

.value-card,
.how-card,
.flexibility-card {
  position: relative;
  overflow: hidden;
}

.value-card::before,
.how-card::before,
.flexibility-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 178, 0, 0.9), rgba(6, 2, 151, 0.35));
  opacity: 0.9;
}

.value-icon {
  box-shadow: inset 0 0 0 1px rgba(6, 2, 151, 0.05);
}

.local-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.switch-section {
  padding: 0 0 92px;
  background: #f7f9ff;
}

.switch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.switch-card {
  padding: 1.5rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(6, 2, 151, 0.08);
  box-shadow: 0 20px 48px rgba(6, 2, 151, 0.08);
}

.switch-card strong {
  display: block;
  margin-bottom: 0.42rem;
  color: #11183f;
  font-size: 1.03rem;
  line-height: 1.45;
}

.switch-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.industry-card {
  box-shadow: 0 18px 42px rgba(6, 2, 151, 0.06);
}

.logo-row,
.testimonial-metric-row {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.logo-pill,
.testimonial-metric {
  backdrop-filter: blur(8px);
}

.testimonial-metric strong {
  font-size: 1.02rem;
}

.pricing-value-strip {
  justify-content: center;
  gap: 0.85rem;
}

.pricing-billing-helper {
  max-width: 56ch;
  margin: 0.85rem auto 0;
  text-align: center;
}

.demo-grid {
  align-items: start;
}

.demo-form-card {
  box-shadow: 0 22px 52px rgba(6, 2, 151, 0.08);
}

.faq-shell {
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
}

.cta-shell {
  border-radius: 26px;
  padding: 2.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-shell p {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.sticky-mobile-cta {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.sticky-mobile-cta a {
  box-shadow: 0 -10px 24px rgba(6, 2, 151, 0.12);
}

@media (max-width: 1100px) {
  .hero {
    padding-top: 104px;
    padding-bottom: 50px;
  }

  .hero-inner {
    gap: 1.8rem;
  }
}

@media (max-width: 720px) {
  .home-nav {
    background: linear-gradient(180deg, rgba(4, 7, 52, 0.88) 0%, rgba(4, 7, 52, 0.46) 100%);
  }

  .home-nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 44px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1;
  }

  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-alert {
    font-size: 0.76rem;
  }

  .hero-proof-panel {
    gap: 0.55rem;
  }

  .hero-proof-pill {
    min-height: 34px;
    padding: 0 0.75rem;
    font-size: 0.76rem;
  }

  .dashboard-mockup {
    padding: 1rem;
  }

  .dash-kpis {
    gap: 0.6rem;
  }

  .kpi-card {
    min-height: 98px;
  }

  .kpi-val {
    font-size: 1.15rem;
  }

  .order-row {
    padding: 0.68rem;
  }

  .hero-trust-strip,
  .pain-card,
  .value-card,
  .how-card,
  .local-card,
  .flexibility-card,
  .testimonial-metric,
  .cta-shell,
  .faq-shell {
    border-radius: 18px;
  }

  .social-proof-bar {
    margin-top: -16px;
    border-radius: 18px;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .hero-benefits-compact {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .hero-reassurance {
    gap: 0.45rem 0.8rem;
  }

  .hero-stat-line {
    flex-direction: column;
    gap: 0.45rem;
  }

  .cta-shell {
    padding: 2rem 1.2rem;
  }

  .sticky-mobile-cta a {
    min-height: 58px;
    font-size: 0.98rem;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 38px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.6vw, 2.55rem);
    line-height: 1.02;
    margin-bottom: 0.8rem;
  }

  .hero-sub {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .hero-cta {
    margin-top: 1rem;
    gap: 0.7rem;
  }

  .btn-primary-lg,
  .btn-secondary-lg {
    min-height: 54px;
    padding: 0.88rem 1.1rem;
  }

  .hero-trust-strip {
    padding: 0.72rem 0.8rem;
    gap: 0.6rem;
  }

  .hero-trust-intro {
    font-size: 0.88rem;
  }

  .hero-trust-copy {
    font-size: 0.88rem;
  }

  .hero-alert {
    margin-bottom: 0.7rem;
    padding: 0.38rem 0.68rem;
    font-size: 0.72rem;
  }

  .hero-trust-payments {
    gap: 0.45rem;
  }

  .hero-trust-payments span {
    min-height: 34px;
    padding: 0 0.72rem;
    font-size: 0.74rem;
  }

  .hero-benefits-compact {
    margin-top: 0.85rem;
  }

  .hero-benefit-mini {
    font-size: 0.88rem;
  }

  .hero-stat-line {
    margin-top: 0.85rem;
    padding-top: 0.8rem;
    font-size: 0.83rem;
  }

  .hero-reassurance span {
    font-size: 0.8rem;
  }

  .hero-visual {
    gap: 0.8rem;
  }

  .dashboard-mockup {
    border-radius: 18px;
  }

  .dash-header {
    margin-bottom: 0.9rem;
  }

  .dash-title {
    font-size: 0.88rem;
  }

  .dash-date,
  .kpi-label,
  .kpi-change,
  .order-info .sub {
    font-size: 0.74rem;
  }

  .chart-bars {
    min-height: 88px;
  }

  .social-proof-bar {
    margin-top: -10px;
  }

  .switch-section {
    padding-bottom: 72px;
  }
}

/* ========================================
   Homepage Mega Upgrade
   ======================================== */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.15rem 0 0.4rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats-bar .stat-item {
  min-width: 0;
}

.hero-stats-bar .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stats-bar .stat-label {
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.5;
}

.momo-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.momo-logos__label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 700;
}

.momo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.momo-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  display: inline-block;
}

.momo-pill--mtn {
  background: #facc15;
  color: #5d4400;
}

.momo-pill--mtn .momo-pill__dot {
  background: #5d4400;
}

.momo-pill--vodafone {
  background: #dc2626;
  color: #fff;
}

.momo-pill--vodafone .momo-pill__dot {
  background: #fff;
}

.momo-pill--airteltigo {
  background: #7f1d1d;
  color: #fff;
}

.momo-pill--airteltigo .momo-pill__dot {
  background: #f87171;
}

.momo-pill--neutral {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.proof-item .momo-logos {
  margin-top: 0.75rem;
}

.proof-item .momo-logos__label {
  color: var(--muted);
}

.proof-item .momo-pill--mtn {
  color: #4a3500;
}

.proof-item .momo-pill--vodafone,
.proof-item .momo-pill--airteltigo {
  color: #fff;
}

.proof-item .momo-pill--neutral {
  background: #eef3ff;
  border-color: #dbe5ff;
  color: var(--blue);
}

.comparison-section,
.homepage-demo-section {
  padding: 92px 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 20px 52px rgba(6, 2, 151, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #edf1ff;
  font-size: 0.92rem;
}

.comparison-table td {
  color: #293255;
}

.comparison-table td:first-child {
  color: #11183f;
  font-weight: 600;
}

.comparison-table th {
  background: #060297;
  color: #fff;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.comparison-table th:nth-child(2) {
  color: var(--gold);
  text-align: center;
}

.comparison-table th:last-child,
.comparison-table td:last-child,
.comparison-table td:nth-child(2) {
  text-align: center;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f8faff;
}

.comparison-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-weight: 900;
}

.comparison-check.is-yes {
  background: #dcfce7;
  color: #16a34a;
}

.comparison-check.is-no {
  background: #fee2e2;
  color: #dc2626;
}

.comparison-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.testi-grid-premium .testi-card {
  padding: 1.55rem;
}

.testi-metric {
  margin: 0 0 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dbe6ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.testi-avatar.is-amber {
  background: #fde68a;
  color: #92400e;
}

.testi-avatar.is-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.testi-avatar.is-green {
  background: #dcfce7;
  color: #15803d;
}

.testimonial-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.4rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.founder-section {
  padding: 84px 0;
  background: linear-gradient(180deg, #060297 0%, #040734 100%);
}

.founder-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2.2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(6, 2, 151, 0.18);
}

.founder-avatar {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffb200;
  color: #060297;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(255, 178, 0, 0.14);
}

.founder-copy .section-label,
.founder-copy .section-title {
  color: #fff;
}

.founder-award {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.35rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.founder-award__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffb200;
  color: #060297;
  font-weight: 900;
}

.founder-award strong,
.founder-award span {
  display: block;
}

.founder-award strong {
  color: #fff;
  font-size: 0.9rem;
}

.founder-award span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.homepage-demo-section {
  background: linear-gradient(180deg, #060297 0%, #091251 100%);
}

.homepage-demo-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0e2e;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.homepage-demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(6, 2, 151, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage-demo-toolbar__lights {
  display: inline-flex;
  gap: 0.35rem;
}

.homepage-demo-toolbar__lights span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.homepage-demo-toolbar__lights span:nth-child(1) { background: #ef4444; }
.homepage-demo-toolbar__lights span:nth-child(2) { background: #facc15; }
.homepage-demo-toolbar__lights span:nth-child(3) { background: #4ade80; }

.homepage-demo-toolbar__label {
  flex: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.homepage-demo-toolbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: #ffb200;
  color: #060297;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.homepage-demo-body {
  padding: 1.2rem;
}

.homepage-demo-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1rem;
}

.homepage-demo-switcher span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
}

.homepage-demo-switcher button {
  border: 0;
  min-height: 36px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.homepage-demo-switcher button.is-active {
  background: #ffb200;
  color: #060297;
}

.homepage-demo-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.homepage-demo-kpi {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage-demo-kpi p,
.homepage-demo-kpi span {
  margin: 0;
}

.homepage-demo-kpi p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
}

.homepage-demo-kpi strong {
  display: block;
  margin-top: 0.3rem;
  color: #fff;
  font-size: 1.32rem;
}

.homepage-demo-kpi span {
  display: block;
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
}

.homepage-demo-kpi--alert strong {
  color: #f87171;
}

.homepage-demo-kpi:nth-child(2) strong {
  color: #ffb200;
}

.homepage-demo-transactions {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage-demo-transactions__head,
.homepage-demo-transaction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.homepage-demo-transactions__head {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homepage-demo-transactions__live {
  color: #4ade80;
}

.homepage-demo-transaction {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.homepage-demo-transaction:last-child {
  border-bottom: 0;
}

.homepage-demo-transaction p,
.homepage-demo-transaction span,
.homepage-demo-transaction strong {
  display: block;
}

.homepage-demo-transaction p {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.homepage-demo-transaction span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
}

.homepage-demo-transaction__meta {
  text-align: right;
}

.homepage-demo-transaction__meta strong {
  color: #ffb200;
  font-size: 0.92rem;
}

.homepage-demo-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin-top: 0.35rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.homepage-demo-method--momo {
  background: rgba(234, 179, 8, 0.18);
  color: #fde68a;
}

.homepage-demo-method--cash {
  background: rgba(34, 197, 94, 0.16);
  color: #86efac;
}

.homepage-demo-method--card,
.homepage-demo-method--transfer,
.homepage-demo-method--cheque {
  background: rgba(59, 130, 246, 0.16);
  color: #93c5fd;
}

.homepage-demo-footnote {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  text-align: center;
}

.homepage-demo-footnote a {
  color: #ffb200;
  text-decoration: underline;
}

.pricing-savings-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.pricing-savings-badge span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.8rem;
  font-weight: 800;
}

.demo-optional-fields {
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fafbff;
}

.demo-optional-fields summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.demo-optional-fields summary::-webkit-details-marker {
  display: none;
}

.demo-optional-fields__body {
  padding: 0 1rem 1rem;
}

.demo-optional-fields__body .form-label {
  color: #223056;
}

@media (max-width: 1100px) {
  .hero-stats-bar,
  .homepage-demo-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 720px) {
  .comparison-section,
  .homepage-demo-section {
    padding: 76px 0;
  }

  .hero-stats-bar,
  .homepage-demo-kpis {
    grid-template-columns: 1fr;
  }

  .homepage-demo-toolbar,
  .homepage-demo-transactions__head,
  .homepage-demo-transaction {
    flex-direction: column;
    align-items: flex-start;
  }

  .homepage-demo-transaction__meta {
    width: 100%;
    text-align: left;
  }

  .testimonial-trust-row,
  .hero-stats-bar {
    gap: 0.7rem;
  }
}

@media (max-width: 560px) {
  .hero-stats-bar .stat-num {
    font-size: 1.75rem;
  }

  .momo-logos {
    gap: 0.45rem;
  }

  .momo-pill {
    min-height: 32px;
    padding: 0 0.72rem;
    font-size: 0.72rem;
  }

  .homepage-demo-body,
  .comparison-table th,
  .comparison-table td {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

/* ============================================================
   NEW SECTIONS: Without/With + Showcase + Switch VS + CTA support line
   ============================================================ */

/* ── Without / With CliqPOS ── */
.without-with-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.without-card,
.with-card {
  border-radius: 18px;
  padding: 2rem;
  border: 1.5px solid var(--border);
}
.without-card {
  background: #fff8f8;
  border-color: #fdd;
}
.with-card {
  background: #f5fff8;
  border-color: #c3f0d0;
}
.ww-header { margin-bottom: 1.25rem; }
.ww-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ww-badge-bad  { background: #fee2e2; color: #b91c1c; }
.ww-badge-good { background: #dcfce7; color: #15803d; }
.ww-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ww-list li {
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
  line-height: 1.5;
}
.ww-list-bad li::before  { content: '✕'; position: absolute; left: 0; color: #ef4444; font-weight: 700; }
.ww-list-good li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.ww-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #c3f0d0;
}
.ww-demo-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.ww-demo-link:hover { text-decoration: underline; }

/* ── Switch VS cards ── */
.switch-vs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.switch-vs-bad,
.switch-vs-good {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.45;
}
.switch-vs-bad  { color: #64748b; }
.switch-vs-good { color: var(--text); font-weight: 600; }
.switch-x    { color: #ef4444; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.switch-check { color: #16a34a; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Product Showcase ── */
.showcase-section {
  padding: 7rem 0;
  background: var(--surface);
}
.showcase-tabs {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.showcase-tab {
  padding: 0.55rem 1.2rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
}
.showcase-tab:hover  { border-color: var(--blue); color: var(--blue); }
.showcase-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.showcase-panels { margin-top: 1.5rem; }
.showcase-panel { display: none; }
.showcase-panel.active { display: block; }
.showcase-mockup {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2a3060;
}
.showcase-mockup-bar {
  background: #1a2040;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.smb-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.smb-red    { background: #ff5f57; }
.smb-yellow { background: #febc2e; }
.smb-green  { background: #28c840; }
.smb-title  { font-size: 0.78rem; color: #8899cc; margin-left: 0.5rem; }
.showcase-mockup-body { padding: 1.5rem; }
.smb-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.smb-kpi {
  background: #1e2a5e;
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
.smb-kpi-alert { background: #3d1a1a; }
.smb-kpi-label { font-size: 0.7rem; color: #8899cc; margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; }
.smb-kpi-val   { font-size: 1.25rem; font-weight: 800; color: #fff; }
.smb-kpi-sub   { font-size: 0.7rem; color: #6677aa; margin-top: 0.2rem; }
.smb-chart-row {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 80px;
  background: #1e2a5e;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}
.smb-bar { flex: 1; background: #2d4080; border-radius: 4px 4px 0 0; transition: height 0.3s; }
.smb-bar-active { background: var(--gold); }
/* POS tab */
.smb-pos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.smb-pos-products { display: flex; flex-direction: column; gap: 0.4rem; }
.smb-pos-product {
  display: flex; justify-content: space-between;
  background: #1e2a5e; border-radius: 8px; padding: 0.6rem 0.9rem;
  font-size: 0.8rem; color: #aab8e8; cursor: pointer;
}
.smb-pos-product-active { background: var(--blue); color: #fff; }
.smb-pos-cart { background: #1e2a5e; border-radius: 10px; padding: 1rem; }
.smb-pos-cart-item  { display: flex; justify-content: space-between; font-size: 0.8rem; color: #aab8e8; padding: 0.4rem 0; border-bottom: 1px solid #2a3870; }
.smb-pos-cart-active { color: #fff; }
.smb-pos-cart-total { display: flex; justify-content: space-between; font-weight: 800; color: var(--gold); font-size: 1rem; padding-top: 0.75rem; margin-top: 0.5rem; }
.smb-pos-pay-btns { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.smb-pay-btn { flex: 1; padding: 0.5rem; border-radius: 8px; border: 1px solid #3d4d80; background: transparent; color: #8899cc; font-size: 0.75rem; font-weight: 600; cursor: pointer; }
.smb-pay-active { background: var(--blue-mid); color: #fff; border-color: var(--blue-mid); }
/* Stock tab */
.smb-stock-list { display: flex; flex-direction: column; gap: 0; }
.smb-stock-header { display: grid; grid-template-columns: 1fr auto auto; gap: 1rem; padding: 0.6rem 0.9rem; font-size: 0.7rem; color: #6677aa; text-transform: uppercase; letter-spacing: 0.06em; }
.smb-stock-row { display: grid; grid-template-columns: 1fr auto auto; gap: 1rem; padding: 0.7rem 0.9rem; font-size: 0.82rem; color: #aab8e8; border-bottom: 1px solid #1e2a5e; }
.smb-stock-row-alert { background: #2a1a1a; border-radius: 8px; }
.smb-stock-ok       { color: #4ade80; font-weight: 600; font-size: 0.75rem; }
.smb-stock-low      { color: var(--gold); font-weight: 600; font-size: 0.75rem; }
.smb-stock-critical { color: #f87171; font-weight: 700; font-size: 0.75rem; }
/* Reports tab */
.smb-report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.smb-report-metric { background: #1e2a5e; border-radius: 10px; padding: 1rem; }
.smb-report-metric-full { grid-column: 1 / -1; }
.smb-rm-label  { font-size: 0.7rem; color: #6677aa; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.35rem; }
.smb-rm-val    { font-size: 1.2rem; font-weight: 800; color: #fff; }
.smb-rm-period { font-size: 0.7rem; color: var(--gold); margin-top: 0.25rem; }
.smb-rm-branches { display: flex; flex-direction: column; gap: 0.5rem; }
.smb-rm-branches div { display: flex; justify-content: space-between; font-size: 0.82rem; color: #aab8e8; padding: 0.4rem 0; border-bottom: 1px solid #2a3870; }
.smb-rm-branches div strong { color: #fff; }
.showcase-caption { text-align: center; margin-top: 1.25rem; font-size: 0.9rem; color: var(--muted); }
.showcase-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ── CTA support line ── */
.cta-support-line {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-top: 1rem;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .without-with-grid { grid-template-columns: 1fr; }
  .smb-kpis { grid-template-columns: repeat(2, 1fr); }
  .smb-report-grid { grid-template-columns: repeat(2, 1fr); }
  .smb-pos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .without-card, .with-card { padding: 1.5rem; }
  .smb-kpis { grid-template-columns: repeat(2, 1fr); }
  .smb-report-grid { grid-template-columns: 1fr 1fr; }
  .showcase-tabs { gap: 0.4rem; }
  .showcase-tab { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
  .smb-kpi-val { font-size: 1.05rem; }
}
