/* ═══════════════════════════════════════════════════════════════
   SELLXPERT CRM — Premium CSS Design System v2
   Theme: Light + Dark SaaS · Clean · Modern · Premium
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Core Palette */
  --ink:        #0a0f1e;
  --navy-0:     #0d1526;
  --navy-1:     #111d35;
  --navy-2:     #162444;
  --navy-3:     #1c2e52;
  --indigo:     #1a3a8f;
  --indigo-2:   #2250c0;
  --electric:   #4f7cff;
  --electric-2: #6d95ff;
  --azure:      #38bdf8;
  --azure-dim:  #0ea5e9;
  --gold:       #f0a500;
  --gold-2:     #fbbf24;
  --gold-3:     #fde68a;
  --emerald:    #10b981;
  --rose:       #f43f5e;
  --purple:     #8b5cf6;
  --purple-2:   #a78bfa;

  /* Light section colors */
  --light-bg:       #f7f9ff;
  --light-bg-2:     #eff3ff;
  --light-surface:  #ffffff;
  --light-border:   rgba(79,124,255,0.11);
  --light-border-2: rgba(79,124,255,0.20);
  --light-text:     #1a2340;
  --light-text-2:   #3d4f7c;
  --light-text-3:   #6b7fa8;

  --white:      #ffffff;
  --white-95:   rgba(255,255,255,0.95);
  --white-80:   rgba(255,255,255,0.80);
  --white-60:   rgba(255,255,255,0.60);
  --white-40:   rgba(255,255,255,0.40);
  --white-20:   rgba(255,255,255,0.20);
  --white-10:   rgba(255,255,255,0.10);
  --white-06:   rgba(255,255,255,0.06);
  --white-03:   rgba(255,255,255,0.03);

  /* Glass (on dark) */
  --glass:        rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.11);
  --glass-hover:  rgba(255,255,255,0.10);
  --glass-strong: rgba(255,255,255,0.14);

  /* Gradients */
  --grad-blue-purple: linear-gradient(135deg, var(--electric) 0%, var(--purple) 100%);
  --grad-blue-azure:  linear-gradient(135deg, var(--indigo-2) 0%, var(--electric) 60%, var(--azure-dim) 100%);
  --grad-hero-bg:     linear-gradient(160deg, #0d1526 0%, #111d35 40%, #18103a 100%);

  /* Shadows */
  --glow-electric: 0 0 50px rgba(79,124,255,0.26);
  --glow-gold:     0 0 50px rgba(240,165,0,0.24);
  --shadow-card:   0 20px 60px rgba(10,15,30,0.45);
  --shadow-float:  0 12px 40px rgba(10,15,30,0.35);
  --shadow-light:  0 2px 12px rgba(79,124,255,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-light-hover: 0 8px 36px rgba(79,124,255,0.16), 0 2px 8px rgba(0,0,0,0.06);

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py: 72px;
  --container:  1220px;

  /* Motion */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         0.32s;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--light-bg);
  color: var(--light-text);
  overflow-x: hidden;
  line-height: 1.65;
  cursor: default;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: var(--font-body); }

/* ─── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--electric); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(79,124,255,0.40);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 52px; height: 52px; border-color: rgba(79,124,255,0.65); }

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: rgba(79,124,255,0.30); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--electric); }

/* ─── UTILITY ────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(79,124,255,0.08);
  border: 1px solid rgba(79,124,255,0.20);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-display);   
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--indigo-2);
}
.tag-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--azure);
  box-shadow: 0 0 6px var(--azure);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

.section-eyebrow { margin-bottom: 18px; }

.h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.028em;
  color: #3f59ac;
  text-align: center;
}
.h2 em {
  font-style: normal;
  background: var(--grad-blue-purple);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%; animation: shimmer 4s ease infinite;
}
@keyframes shimmer { 0%{background-position:0%} 50%{background-position:100%} 100%{background-position:0%} }

.body-text { font-size: 17px; color: var(--light-text-3); line-height: 1.75; }

/* Dark section overrides */
.dark-section .h2,
#hero .h2, #feature-showcase .h2, #cta .h2 { color: var(--white); }
/* #why is now a light section — heading/body inherit light defaults */
.dark-section .body-text,
#feature-showcase .body-text, #cta .body-text { color: rgba(255,255,255,0.55); }
.dark-section .tag,
#feature-showcase .tag, #cta .tag {
  color: var(--electric-2);
  background: rgba(79,124,255,0.10);
  border-color: rgba(79,124,255,0.28);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  border-radius: 14px; padding: 14px 30px;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease-out);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--dur);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-blue-azure);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(79,124,255,0.38);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-primary:hover { box-shadow: 0 12px 48px rgba(79,124,255,0.55); }

.btn-gold {
  background: linear-gradient(135deg, #c47f00, var(--gold) 50%, #f5c842);
  color: var(--ink); font-weight: 800;
  box-shadow: 0 6px 28px rgba(240,165,0,0.38);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-gold:hover { box-shadow: 0 12px 48px rgba(240,165,0,0.55); }

.btn-outline {
  background: var(--grad-blue-azure);
  border: 1.5px solid rgba(255,255,255,0.18);
   color: #fff !important;
}
.btn-outline:hover {/* background: rgba(255,255,255,0.14);*/ border-color: var(--white-40); color: #fff !important; }

.btn-lg { padding: 18px 44px; font-size: 17px; border-radius: 16px; }

/* Glass Card Base */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.benefits-top-content{
    text-align:center;
    margin-bottom:60px;
}

.benefits-top-content .body-text{
    max-width:850px;
    margin:20px auto 0;
}

.benefits-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:stretch;
}

.benefits-list{
    margin-top:-20px;
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background var(--dur), box-shadow var(--dur), padding var(--dur);
  padding: 6px 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(79,124,255,0.08), 0 6px 28px rgba(10,15,30,0.08);
}
#navbar.scrolled .nav-logo-text { color: var(--light-text); }
#navbar.scrolled .nav-logo-text span { color: var(--gold); }
#navbar.scrolled .nav-links a { color: var(--light-text-2); }
#navbar.scrolled .nav-links a:hover { color: var(--indigo-2); background: rgba(79,124,255,0.06); }
#navbar.scrolled .btn-outline { color: var(--light-text-2); border-color: var(--light-border-2); background: transparent; }
#navbar.scrolled .btn-outline:hover { background: rgba(79,124,255,0.06); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; max-width: var(--container); margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-size: 21px; font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--grad-blue-azure);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  box-shadow: 0 0 20px rgba(79,124,255,0.45);
  flex-shrink: 0;
}
.nav-logo-text { color: var(--white); }
.nav-logo-text span { color: var(--gold-2); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--white-60);
  transition: color var(--dur), background var(--dur);
}
.nav-links a:hover { color: var(--white); background: var(--white-06); }
.nav-links a.active { color: var(--white); background: var(--white-06); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 10px; background:#D4AF37;  
  border: 1px solid var(--glass-border); cursor: pointer;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--white-80); border-radius: 2px;
  transition: var(--dur) var(--ease-in-out);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 800;
  background: rgba(13,21,38,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 80px 28px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  width: 100%; text-align: center; padding: 16px;
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--white-80); border-radius: 14px;
  transition: background var(--dur), color var(--dur);
}
.mobile-nav a:hover { background: var(--white-06); color: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   HERO — DARK
   ═══════════════════════════════════════════════════════════════ */
#hero {
  min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:130px 0 80px;

    background-image:url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

#hero-canvas {
  display:none; 

}

.hero-gradient {
  display:none;
}

.hero-noise {
    display:none;
}

.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-left {}

.hero-pre-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, rgba(240,165,0,0.14), rgba(79,124,255,0.08));
  border: 1px solid rgba(240,165,0,0.26);
  border-radius: 100px; padding: 6px 14px; margin-bottom: 30px;
  font-size: 12px; font-weight: 700; color: var(--gold-2);
  letter-spacing: 0.07em; text-transform: uppercase;
  animation: badge-entrance 0.8s var(--ease-spring) 0.2s both;
}
@keyframes badge-entrance { from{opacity:0;transform:translateY(-12px)} to{opacity:1;transform:translateY(0)} }
.badge-star { font-size: 14px; animation: spin-slow 8s linear infinite; display: inline-block; }
@keyframes spin-slow { to{transform:rotate(360deg)} }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  color: #d8d8e2;
  font-weight: 800; line-height: 1.10;
  letter-spacing: -0.035em; margin-bottom: 26px;
  animation: h1-entrance 1s var(--ease-out) 0.3s both;
}
@keyframes h1-entrance { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.hero-h1 .line-1 { display: block; color: var(--white); }
.hero-h1 .line-2 {
  display: block;
  background: linear-gradient(135deg, #7eb3ff, var(--azure), var(--purple-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200%;
  animation: shimmer 3s ease infinite;
}
.hero-h1 .line-3 { display: block; color: var(--white-80); font-weight: 500; }

.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.56); line-height: 1.80;
  max-width: 480px; margin-bottom: 42px;
  animation: h1-entrance 1s var(--ease-out) 0.45s both;
}

.hero-cta-group {
  display: flex; align-items: center; gap: 18px; flex-wrap: nowrap;
  margin-top: 30px;
  animation: h1-entrance 1s var(--ease-out) 0.55s both;
}

.hero-trust-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  animation: h1-entrance 1s var(--ease-out) 0.65s both;
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid rgba(13,21,38,0.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-right: -10px; flex-shrink: 0;
}
.trust-avatar:nth-child(1){background:rgba(79,124,255,0.35)}
.trust-avatar:nth-child(2){background:rgba(240,165,0,0.35)}
.trust-avatar:nth-child(3){background:rgba(16,185,129,0.35)}
.trust-avatar:nth-child(4){background:rgba(244,63,94,0.35)}
.trust-text { font-size: 13px; color: rgba(255,255,255,0.52); padding-left: 20px; line-height: 1.4; }
.trust-text strong { color: var(--white); }
.trust-stars { font-size: 12px; color: var(--gold-2); }

/* Hero right */
.hero-right {
  position: relative;
  animation: hero-right-entrance 1.2s var(--ease-out) 0.4s both;
}
@keyframes hero-right-entrance { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

.dashboard-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(13,21,38,0.90));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 28px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.09), var(--glow-electric);
  animation: dashboard-float 7s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes dashboard-float {
  0%,100%{transform:translateY(0) rotate(0)} 33%{transform:translateY(-14px) rotate(0.3deg)} 66%{transform:translateY(-6px) rotate(-0.2deg)}
}
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.dash-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white-80); }
.dash-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--emerald); font-weight: 600;
}
.dash-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); animation: blink 1.5s infinite; }
.dash-window-dots { display: flex; gap: 5px; }
.dash-window-dots span { width: 9px; height: 9px; border-radius: 50%; }
.dash-window-dots span:nth-child(1){background:#ff5f57}
.dash-window-dots span:nth-child(2){background:#febc2e}
.dash-window-dots span:nth-child(3){background:#28c840}

.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.metric-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 16px 12px; text-align: center;
  transition: border-color var(--dur), background var(--dur);
}
.metric-box:hover { background: rgba(255,255,255,0.10); border-color: rgba(79,124,255,0.35); }
.metric-label { font-size: 10px; color: var(--white-40); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.metric-value { font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.metric-value.blue { color: var(--electric-2); }
.metric-value.gold { background: linear-gradient(135deg, var(--gold), var(--gold-3)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.metric-value.green { color: var(--emerald); }
.metric-delta { font-size: 10px; margin-top: 4px; color: var(--emerald); font-weight: 600; }
.metric-delta.down { color: var(--rose); }

.dash-chart-label { font-size: 11px; color: var(--white-40); margin-bottom: 10px; letter-spacing: 0.05em; }
.dash-chart { display: flex; align-items: flex-end; gap: 5px; height: 64px; margin-bottom: 20px; }
.chart-bar {
  flex: 1; border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--electric), rgba(79,124,255,0.25));
  transition: height 0.5s var(--ease-spring);
  position: relative; cursor: default;
}
.chart-bar.gold-bar { background: linear-gradient(180deg, var(--gold), rgba(240,165,0,0.2)); }
.chart-bar:hover::after {
  content: attr(data-val);
  position: absolute; bottom: 108%; left: 50%; transform: translateX(-50%);
  background: var(--navy-2); border: 1px solid var(--glass-border);
  border-radius: 6px; padding: 2px 6px; font-size: 9px; white-space: nowrap;
  color: var(--white); pointer-events: none;
}

.dash-leads { display: flex; flex-direction: column; gap: 8px; }
.lead-row {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 10px 12px;
  transition: background var(--dur);
}
.lead-row:hover { background: rgba(255,255,255,0.08); }
.lead-av {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.lead-info { flex: 1; min-width: 0; }
.lead-name { font-size: 12px; font-weight: 600; color: var(--white-80); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lead-src { font-size: 10px; color: var(--white-40); }
.lead-badge { font-size: 9px; padding: 3px 8px; border-radius: 6px; font-weight: 700; white-space: nowrap; }
.badge-hot { background: rgba(244,63,94,0.18); border: 1px solid rgba(244,63,94,0.3); color: #fb7185; }
.badge-warm { background: rgba(240,165,0,0.18); border: 1px solid rgba(240,165,0,0.3); color: var(--gold-2); }
.badge-new { background: rgba(79,124,255,0.18); border: 1px solid rgba(79,124,255,0.3); color: var(--electric-2); }

/* Hero floating stickers */
.hero-sticker {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 18px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
  white-space: nowrap;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--white);
}
.sticker-1 { top: -24px; left: -28px; animation: float-1 6s ease-in-out infinite; }
.sticker-2 { bottom: 36px; left: -38px; animation: float-2 7s ease-in-out infinite; }
.sticker-3 { top: 50px; right: -30px; animation: float-1 5.5s ease-in-out infinite reverse; }
@keyframes float-1 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-14px) rotate(1deg)} }
@keyframes float-2 { 0%,100%{transform:translateY(0) rotate(1deg)} 50%{transform:translateY(10px) rotate(-1deg)} }
.sticker-icon { width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.sticker-text { display: flex; flex-direction: column; gap: 1px; }
.sticker-label { font-size: 10px; color: rgba(255,255,255,0.42); font-weight: 400; }
.sticker-val { font-size: 14px; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
/* ═══════════════════════════════════════════════════════════════
   DEMO FORM MODAL — v3 (stable, premium, no-scroll)
   ═══════════════════════════════════════════════════════════════ */

/* ── OVERLAY ─────────────────────────────────────────────────── */
#form-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;          /* prevents iOS from scrolling the overlay */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  isolation: isolate;
}
#form-modal.open { opacity: 1; pointer-events: all; }

/* ── BACKDROP ────────────────────────────────────────────────── */
.form-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 15, 30, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 0;
  touch-action: none;
}

/* ── MODAL BOX ───────────────────────────────────────────────── */
.form-modal-box {
  position: relative;
  z-index: 1;
  background: var(--light-surface);
  border: 1px solid var(--light-border-2);
  border-radius: 24px;
  width: 100%;
  max-width: 860px;           /* wider → 2-col layout; more usable width */
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-shadow:
    0 32px 80px rgba(10, 15, 30, 0.20),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.38s cubic-bezier(0.34, 1.42, 0.64, 1);
  touch-action: pan-y;
  will-change: transform;
}
#form-modal.open .form-modal-box { transform: scale(1) translateY(0); }

.form-modal-box::-webkit-scrollbar { width: 4px; }
.form-modal-box::-webkit-scrollbar-track { background: transparent; }
.form-modal-box::-webkit-scrollbar-thumb { background: rgba(79,124,255,0.25); border-radius: 10px; }

/* ── CLOSE BUTTON ────────────────────────────────────────────── */
.form-close-btn {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(79,124,255,0.06); border: 1px solid var(--light-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--light-text-3); cursor: pointer;
  transition: background var(--dur), color var(--dur), transform var(--dur);
}
.form-close-btn:hover { background: rgba(79,124,255,0.12); color: var(--light-text); transform: rotate(90deg); }

/* ── TWO-COLUMN INNER LAYOUT ─────────────────────────────────── */
.form-inner-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100%;
}

/* ── LEFT ACCENT PANEL ───────────────────────────────────────── */
.form-accent-panel {
  background: linear-gradient(160deg, var(--navy-1) 0%, var(--navy-0) 100%);
  border-radius: 24px 0 0 24px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.form-accent-panel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79,124,255,0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(139,92,246,0.12), transparent);
  pointer-events: none;
}
.form-accent-panel::after {
  content: '';
  position: absolute; top: 0; right: 0; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(79,124,255,0.3) 40%, rgba(79,124,255,0.3) 60%, transparent);
}

.form-accent-logo {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 36px;
  position: relative; z-index: 1;
}
.form-accent-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-blue-azure);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.form-accent-logo span {
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  color: var(--white);
}

.form-accent-body {
  flex: 1;
  position: relative; z-index: 1;
}
.form-accent-body h4 {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 18px; line-height: 1.35;
}

.form-accent-list {
  display: flex; flex-direction: column; gap: 12px;
}
.form-accent-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: rgba(255,255,255,0.58);
  font-weight: 500; line-height: 1.4;
}
.fal-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--electric-2); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(79,124,255,0.6);
}

.form-accent-avatars {
  margin-top: 32px;
  position: relative; z-index: 1;
}
.faa-row { display: flex; gap: 0; margin-bottom: 10px; }
.faa {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white;
  border: 2px solid rgba(13,21,38,0.9);
  margin-right: -6px;
}
.faa-text {
  font-size: 11px; color: rgba(255,255,255,0.38); line-height: 1.45;
}

/* ── RIGHT FORM PANEL ────────────────────────────────────────── */
.form-main-panel {
  padding: 32px 36px 28px;
  display: flex; flex-direction: column;
}

/* ── FORM HEADER ─────────────────────────────────────────────── */
.form-header { margin-bottom: 20px; }
.form-header h3 {
  font-family: var(--font-display); font-size: 21px; font-weight: 800;
  margin-bottom: 5px; color: var(--light-text);
}
.form-header p { font-size: 13px; color: var(--light-text-3); }

/* ── FORM GRID ───────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f-group { display: flex; flex-direction: column; gap: 5px; }
.f-group.full { grid-column: 1/-1; }
.f-label {
  font-size: 10.5px; font-weight: 700; color: var(--light-text-2);
  letter-spacing: 0.07em; text-transform: uppercase;
}
.f-input, .f-select {
  background: var(--light-bg);
  border: 1.5px solid var(--light-border-2);
  border-radius: 10px;
  padding: 10px 13px;           /* reduced from 13px → tighter, less height */
  color: var(--light-text); font-size: 13.5px;
  transition: border-color var(--dur), background var(--dur), box-shadow var(--dur);
  appearance: none; -webkit-appearance: none;
  width: 100%;
}
.f-input::placeholder { color: var(--light-text-3); opacity: 0.65; }
.f-input:focus, .f-select:focus {
  outline: none;
  border-color: rgba(79,124,255,0.50);
  background: rgba(79,124,255,0.02);
  box-shadow: 0 0 0 3px rgba(79,124,255,0.09);
}
.f-select { cursor: pointer; }
.f-select option { background: var(--light-surface); color: var(--light-text); }

.phone-wrap { display: flex; gap: 7px; }
.phone-code-sel { width: 88px; flex-shrink: 0; }

.f-check-row { display: flex; align-items: flex-start; gap: 9px; }
.f-check {
  width: 16px; height: 16px; flex-shrink: 0;
  accent-color: var(--electric); margin-top: 2px; cursor: pointer;
}
.f-check-label { font-size: 11.5px; color: var(--light-text-3); line-height: 1.5; cursor: pointer; }
.f-check-label a { color: var(--indigo-2); border-bottom: 1px solid rgba(79,124,255,0.30); transition: border-color var(--dur); }
.f-check-label a:hover { border-color: var(--indigo-2); }

/* ── SUBMIT BUTTON ───────────────────────────────────────────── */
.form-submit {
  width: 100%; padding: 14px;
  font-family: var(--font-display); font-size: 15px; font-weight: 800;
  background: var(--grad-blue-azure);
  border: none; border-radius: 12px; color: var(--white);
  box-shadow: 0 5px 24px rgba(79,124,255,0.36);
  cursor: pointer; margin-top: 14px;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur);
  position: relative; overflow: hidden;
}
.form-submit::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 60%);
  opacity:0; transition:opacity var(--dur);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(79,124,255,0.52); }
.form-submit:hover::after { opacity:1; }
.form-submit:active { transform: translateY(0); }

/* ── FOOTER NOTE ─────────────────────────────────────────────── */
.form-footer-note {
  text-align: center; font-size: 11px;
  color: var(--light-text-3);      /* was white/invisible — now readable */
  margin-top: 10px;
}

/* ─── FORM DIVIDER (kept for compatibility, now unused) ─────── */
.form-divider { height: 1px; background: var(--light-border); margin: 16px 0; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Laptop / medium screens: slightly tighter */
@media (max-width: 900px) {
  .form-modal-box { max-width: 680px; }
  .form-accent-panel { display: none; }          /* hide accent on smaller laptops */
  .form-inner-layout { grid-template-columns: 1fr; }
  .form-main-panel { padding: 32px 32px 24px; }
}

/* Tablet */
@media (max-width: 640px) {
  #form-modal { padding: 12px; }
  .form-modal-box { border-radius: 20px; max-height: calc(100svh - 24px); }
  .form-main-panel { padding: 28px 22px 20px; }
  .form-header h3 { font-size: 19px; }
}

/* Mobile */
@media (max-width: 480px) {
  #form-modal { padding: 8px; align-items: flex-end; }
  .form-modal-box {
    border-radius: 22px 22px 0 0;   /* bottom sheet feel on small phones */
    max-height: calc(100svh - 16px);
    max-height: calc(100svh - 16px - env(safe-area-inset-bottom));
  }
  .form-main-panel { padding: 24px 18px 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 10px; }
  .form-header h3 { font-size: 18px; }
  .form-submit { font-size: 14px; padding: 13px; }
}

/* ═══════════════════════════════════════════════════════════════
   TRUSTED CLIENTS — LIGHT
   ═══════════════════════════════════════════════════════════════ */
#trusted {
  padding: 40px 0;
  background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-bg-2) 100%);
  position: relative; overflow: hidden;
}
#trusted::before,#trusted::after {
  content:''; position:absolute; top:0; bottom:0; width:180px; z-index:2; pointer-events:none;
}
#trusted::before { left:0; background:linear-gradient(90deg, var(--light-bg), transparent); }
#trusted::after { right:0; background:linear-gradient(-90deg, var(--light-bg-2), transparent); }

.trusted-header { text-align:center; margin-bottom:48px; }
.trusted-header p { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--light-text-3); font-weight: 600; margin-bottom: 10px; }
.trusted-header h2 { font-family: var(--font-display); font-size: clamp(22px,3vw,32px); font-weight: 700; color: var(--light-text-2); }
.trusted-header h2 em { font-style: normal; color: var(--light-text); }

.carousel-wrap { overflow: hidden; }
.carousel-track {
  display: flex; gap: 18px; width: max-content;
  animation: marquee 28s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.client-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: 16px; padding: 16px 24px;
  min-width: 195px; flex-shrink: 0;
  box-shadow: var(--shadow-light);
  transition: border-color var(--dur), background var(--dur), transform var(--dur), box-shadow var(--dur);
  cursor: default;
}
.client-card:hover {
  border-color: rgba(79,124,255,0.28);
  transform: translateY(-4px);
  box-shadow: var(--shadow-light-hover);
}
.client-icon { font-size: 24px; }
.client-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--light-text-2); white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════════
   MODULES — LIGHT
   ═══════════════════════════════════════════════════════════════ */
#modules {
  padding: var(--section-py) 0;
  background: var(--light-surface);
  position: relative; overflow: hidden;
}
#modules::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(79,124,255,0.05), transparent);
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .body-text { max-width: 560px; margin: 16px auto 0; }

.modules-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.module-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: 22px; padding: 30px 26px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--dur) var(--ease-out), border-color var(--dur), box-shadow var(--dur), background var(--dur);
  cursor: default;
}
.module-card::before {
  content:''; position:absolute; inset:0; border-radius:inherit;
  background: linear-gradient(135deg, rgba(79,124,255,0.05), transparent 60%);
  opacity:0; transition:opacity var(--dur);
}
.module-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79,124,255,0.26);
  box-shadow: var(--shadow-light-hover);
  background: #fafcff;
}
.module-card:hover::before { opacity:1; }

.module-card-glow {
  position:absolute; width:120px; height:120px; border-radius:50%;
  filter:blur(40px); top:-20px; right:-20px; pointer-events:none;
  transition:opacity var(--dur);
  opacity:0;
}
.module-card:hover .module-card-glow { opacity:0.45; }

.module-icon-wrap {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  position:relative; z-index:1;
}
.module-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; position:relative;z-index:1; color: var(--light-text); }
.module-desc { font-size: 14px; color: var(--light-text-3); line-height: 1.70; position:relative;z-index:1; }
.module-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 18px; font-size: 13px; font-weight: 600;
  color: var(--indigo-2); opacity:0; transform:translateX(-6px);
  transition: opacity var(--dur), transform var(--dur);
  position:relative;z-index:1;
}
.module-card:hover .module-link { opacity:1; transform:translateX(0); }
.module-link svg { transition: transform var(--dur) var(--ease-spring); }
.module-link:hover svg { transform: translateX(3px); }

/* Module icon themes */
.mi-blue  { background:rgba(79,124,255,0.10); border:1px solid rgba(79,124,255,0.18); }
.mi-cyan  { background:rgba(56,189,248,0.10); border:1px solid rgba(56,189,248,0.18); }
.mi-gold  { background:rgba(240,165,0,0.10);  border:1px solid rgba(240,165,0,0.18); }
.mi-green { background:rgba(16,185,129,0.10); border:1px solid rgba(16,185,129,0.18); }
.mi-purple{ background:rgba(139,92,246,0.10); border:1px solid rgba(139,92,246,0.18); }
.mi-rose  { background:rgba(244,63,94,0.10);  border:1px solid rgba(244,63,94,0.18); }
.glow-blue  { background:rgba(79,124,255,0.18); }
.glow-cyan  { background:rgba(56,189,248,0.18); }
.glow-gold  { background:rgba(240,165,0,0.18); }
.glow-green { background:rgba(16,185,129,0.18); }
.glow-purple{ background:rgba(139,92,246,0.18);}
.glow-rose  { background:rgba(244,63,94,0.18); }

/* ═══════════════════════════════════════════════════════════════
   INTEGRATIONS — SOFT LIGHT BG
   ═══════════════════════════════════════════════════════════════ */
#integrations {
  padding: var(--section-py) 0;
  background: var(--light-bg-2);
  position: relative; overflow: hidden;
}
#integrations::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(79,124,255,0.04), transparent);
}

.integration-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.integration-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.int-point {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  background: var(--light-surface);
  border: 1.5px solid var(--light-border);
  box-shadow: var(--shadow-light);
  transition: all 0.32s cubic-bezier(0.34, 1.42, 0.64, 1);
  cursor: pointer;
  min-height: 180px;
  position: relative;
}

.int-point:hover {
  transform: translateY(-8px) scale(1.02);
  background: #ffffff;
  border-color: rgba(79, 124, 255, 0.35);
  box-shadow:
    0 16px 40px rgba(79, 124, 255, 0.16),
    0 0 24px rgba(79, 124, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.int-point-icon {
  font-size: 28px;
  flex-shrink: 0;
  transition: transform 0.32s cubic-bezier(0.34, 1.42, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* .int-point:hover .int-point-icon {
  transform: scale(1.18) rotate(6deg);
} */

.int-point-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.int-point-body h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--light-text);
  transition: color 0.32s ease;
}

.int-point:hover .int-point-body h4 {
  color: var(--indigo-2);
}

.int-point-body p {
  font-size: 13.5px;
  color: var(--light-text-3);
  margin: 0;
  line-height: 1.55;
  transition: color 0.32s ease;
}

.int-point:hover .int-point-body p {
  color: var(--light-text-2);
}

.integration-text .h2 {
  text-align: left;
}

.integration-text .body-text {
  max-width: 420px;
  margin-top: 16px;
}

.integration-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Hub diagram */
.hub-diagram {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 1;
}

.hub-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--grad-blue-azure);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 0 48px rgba(79, 124, 255, 0.42), 0 0 80px rgba(79, 124, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: hub-pulse 4s ease-in-out infinite;
}

@keyframes hub-pulse {
  0%, 100% {
    box-shadow: 0 0 48px rgba(79, 124, 255, 0.42), 0 0 80px rgba(79, 124, 255, 0.16);
  }
  50% {
    box-shadow: 0 0 64px rgba(79, 124, 255, 0.60), 0 0 110px rgba(79, 124, 255, 0.26);
  }
}

.hub-center.hub-pulse-arrive {
  box-shadow:
    0 0 80px rgba(79, 124, 255, 0.85),
    0 0 140px rgba(79, 124, 255, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  transition: box-shadow 0.15s ease;
}

.hub-center-emoji {
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-center-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
}

.hub-node {
  position: absolute;
  z-index: 10;
  width: 78px;
  height: 78px;
  border-radius: 18px;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-light);
  transition: transform var(--dur) var(--ease-spring), border-color var(--dur), box-shadow var(--dur);
  cursor: default;
}

.hub-node:hover {
  transform: scale(1.1);
  border-color: rgba(79, 124, 255, 0.35);
  box-shadow: var(--shadow-light-hover);
}

.hub-node-icon {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hub-node-icon img {
  display: block;
  flex-shrink: 0;
}

.hub-node-name {
  font-size: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--light-text-3);
  text-align: center;
  line-height: 1.2;
}

/* Positioned around circle */
.hn-1 { top: 2%; left: 50%; transform: translateX(-50%); }
.hn-2 { top: 18%; right: 4%; }
.hn-3 { bottom: 18%; right: 4%; }
.hn-4 { bottom: 2%; left: 50%; transform: translateX(-50%); }
.hn-5 { bottom: 18%; left: 4%; }
.hn-6 { top: 18%; left: 4%; }
.hn-1:hover { transform: translateX(-50%) scale(1.1); }
.hn-4:hover { transform: translateX(-50%) scale(1.1); }

/* Animated dots on SVG paths */
.flow-dot-el {
  animation: flow-move 3s linear infinite;
}

.flow-dot-el:nth-child(2) { animation-delay: -0.5s; }
.flow-dot-el:nth-child(3) { animation-delay: -1s; }
.flow-dot-el:nth-child(4) { animation-delay: -1.5s; }
.flow-dot-el:nth-child(5) { animation-delay: -2s; }
.flow-dot-el:nth-child(6) { animation-delay: -2.5s; }

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE — DARK
   ═══════════════════════════════════════════════════════════════ */
#why {
  padding: var(--section-py) 0;
  background: var(--light-surface);
  position:relative; overflow:hidden;
}
#why::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(79,124,255,0.05), transparent);
}

.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:60px; }
.why-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius:22px; padding:30px 26px;
  position:relative; overflow:hidden;
  box-shadow: var(--shadow-light);
  transition:transform var(--dur) var(--ease-out), border-color var(--dur), box-shadow var(--dur), background var(--dur);
  cursor:default;
}
.why-card:hover {
  transform:translateY(-6px);
  border-color:rgba(79,124,255,0.26);
  box-shadow: var(--shadow-light-hover);
}
.why-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background: var(--grad-blue-purple);
  transform:scaleX(0); transform-origin:center;
  transition:transform 0.4s var(--ease-out);
}
.why-card:hover::after { transform:scaleX(1); }
.why-num {
  font-family:var(--font-display); font-size:11px; font-weight:800;
  color: rgba(79,124,255,0.22); letter-spacing:0.10em; margin-bottom:16px;
}
.why-icon { font-size:30px; margin-bottom:14px; }
.why-title { font-family:var(--font-display); font-size:18px; font-weight:700; margin-bottom:10px; color: var(--light-text); }
.why-desc { font-size:14px; color: var(--light-text-3); line-height:1.70; }

.why-card:nth-child(4) { grid-column:1/2; }
.why-card:nth-child(5) { grid-column:2/3; }

/* ═══════════════════════════════════════════════════════════════
   BENEFITS — LIGHT
   ═══════════════════════════════════════════════════════════════ */
#benefits {
  padding: var(--section-py) 0;
  background: var(--light-surface);
  position:relative; overflow:hidden;
}
#benefits::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 50% 50% at 80% 50%, rgba(79,124,255,0.04), transparent);
}

.benefits-split {  display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:stretch;
    position:relative;
    z-index:1; }

.benefits-list {  display:flex;
  flex-direction:column;
  gap:0;
  margin-top:0;
  width:100%;
  align-items:flex-start;
  padding-top:25px;
}
.benefit-item {
  display:flex; align-items:flex-start; gap:16px;
  padding:20px 18px; border-radius:16px;
  position:relative; cursor:default;
  transition:background var(--dur), transform var(--dur);
  border-left:2px solid transparent;
  width:100%;
max-width:550px;
}
.benefit-item:hover {
  background:rgba(79,124,255,0.04);
  transform:translateX(6px);
  border-left-color:var(--electric);
}
.benefit-icon-wrap {
  width:44px; height:44px; border-radius:13px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:20px;
  background:rgba(79,124,255,0.08); border:1px solid rgba(79,124,255,0.15);
}
.benefit-body h4 { font-family:var(--font-display); font-size:16px; font-weight:700; margin-bottom:4px; color: var(--light-text); }
.benefit-body p { font-size:13px; color:var(--light-text-3); line-height:1.65; }

.benefits-vis {
  background: var(--light-surface);
  border:1px solid var(--light-border-2);
  border-radius:28px; padding:22px;
  box-shadow: var(--shadow-light), 0 0 0 4px rgba(79,124,255,0.03);
  height:100%;
display:flex;
flex-direction:column;
justify-content:space-between;
}
.bv-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; }
.bv-title { font-family:var(--font-display); font-size:15px; font-weight:700; color: var(--light-text); }
.bv-period {
  font-size:11px; padding:4px 10px; border-radius:8px;
  background:rgba(79,124,255,0.08); border:1px solid rgba(79,124,255,0.18);
  color:var(--indigo-2); font-weight:600;
}
.bv-row { margin-bottom:18px; }
.bv-row-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:7px; }
.bv-label { font-size:13px; color:var(--light-text-2); font-weight:500; }
.bv-pct { font-family:var(--font-display); font-size:13px; font-weight:700; color:var(--light-text); }
.bv-track { height:7px; background:rgba(79,124,255,0.07); border-radius:100px; overflow:hidden; }
.bv-fill { height:100%; border-radius:100px; width:0; transition:width 1.6s var(--ease-out); }
.bv-fill-1 { background:linear-gradient(90deg,var(--electric),var(--azure)); }
.bv-fill-2 { background:linear-gradient(90deg,var(--gold),var(--gold-3)); }
.bv-fill-3 { background:linear-gradient(90deg,var(--emerald),#6ee7b7); }
.bv-fill-4 { background:linear-gradient(90deg,var(--purple),var(--purple-2)); }
.bv-fill-5 { background:linear-gradient(90deg,var(--rose),#fb7185); }

.bv-sep { height:1px; background:var(--light-border); margin:22px 0; }

.bv-kpis {   display:grid;
    grid-template-columns:repeat(4,minmax(140px,1fr));
    gap:10px;
    margin-top:18px;
    width:100%;}
.bv-kpi {
    background:#ffffff;
    border:1px solid #e7ebff;
    border-radius:16px;

    padding:12px 8px;

    min-height:72px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    box-shadow:0 2px 10px rgba(79,124,255,0.06);
}
.bv-kpi-num {   font-size:24px !important;
    font-weight:800;
    line-height:1;
    margin-bottom:4px;}
.bv-kpi-num.blue { background:linear-gradient(135deg,var(--electric),var(--azure)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.bv-kpi-num.gold { background:linear-gradient(135deg,var(--gold),var(--gold-3)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.bv-kpi-lbl {   font-size:9px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#6b7fa8;}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA — DARK
   ═══════════════════════════════════════════════════════════════ */
#cta {
  padding: var(--section-py) 0;
  position:relative; overflow:hidden;
  background: linear-gradient(145deg, var(--navy-0) 0%, #18103a 50%, var(--navy-1) 100%);
}
.cta-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(34,80,192,0.20), transparent),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(79,124,255,0.12), transparent),
    radial-gradient(ellipse 35% 40% at 85% 20%, rgba(139,92,246,0.10), transparent);
}
.cta-ring {
  position:absolute; border-radius:50%; border:1px solid rgba(79,124,255,0.07);
  animation:ring-expand 8s ease-in-out infinite;
}
.cta-ring:nth-child(1) { width:400px; height:400px; top:50%; left:50%; transform:translate(-50%,-50%); animation-delay:0s; }
.cta-ring:nth-child(2) { width:650px; height:650px; top:50%; left:50%; transform:translate(-50%,-50%); animation-delay:1s; }
.cta-ring:nth-child(3) { width:900px; height:900px; top:50%; left:50%; transform:translate(-50%,-50%); animation-delay:2s; }
@keyframes ring-expand {
  0%,100%{opacity:0.4; transform:translate(-50%,-50%) scale(1)}
  50%{opacity:1; transform:translate(-50%,-50%) scale(1.04)}
}

.cta-content { position:relative; z-index:1; text-align:center; max-width:700px; margin:0 auto; }
.cta-content .h2 { font-size:clamp(34px,5vw,58px); margin-bottom:20px; }
.cta-content .body-text { margin-bottom:44px; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.cta-features { display:flex; gap:24px; justify-content:center; margin-top:32px; flex-wrap:wrap; }
.cta-feat { display:flex; align-items:center; gap:7px; font-size:13px; color:rgba(255,255,255,0.50); }
.cta-feat-check { width:18px; height:18px; border-radius:50%; background:rgba(16,185,129,0.18); border:1px solid rgba(16,185,129,0.32); display:flex; align-items:center; justify-content:center; font-size:10px; color:var(--emerald); flex-shrink:0; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER — LIGHT (integrations-style background)
   ═══════════════════════════════════════════════════════════════ */
#footer {
  background: var(--light-bg-2);
  border-top: 1px solid var(--light-border);
  padding:72px 0 0;
  position: relative; overflow: hidden;
}
#footer::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(79,124,255,0.04), transparent);
  pointer-events: none;
}
.footer-grid { display:grid; grid-template-columns:2.2fr 1fr 1fr 1.6fr; gap:48px; margin-bottom:64px; }

.footer-brand {}
.footer-logo {
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-size:20px; font-weight:800;
  margin-bottom:18px; color: var(--light-text);
}
.footer-logo-icon {
  width:38px; height:38px; border-radius:11px;
  background: var(--grad-blue-azure);
  display:flex; align-items:center; justify-content:center; font-size:17px;
}
.footer-logo span { color:var(--gold-2); }
.footer-desc { font-size:14px; color: var(--light-text-3); line-height:1.75; max-width:260px; margin-bottom:24px; }

.footer-socials { display:flex; gap:9px; }
.soc-btn {
  width:36px; height:36px; border-radius:10px;
  background: var(--light-surface); border:1px solid var(--light-border);
  display:flex; align-items:center; justify-content:center;
  font-size:15px; transition:background var(--dur), border-color var(--dur), transform var(--dur);
}
.soc-btn:hover { background:rgba(79,124,255,0.10); border-color:rgba(79,124,255,0.30); transform:translateY(-3px); }

.footer-col h4 { font-family:var(--font-display); font-size:13px; font-weight:700; color: var(--light-text-2); letter-spacing:0.07em; text-transform:uppercase; margin-bottom:22px; }
.footer-col ul { display:flex; flex-direction:column; gap:11px; }
.footer-col ul li a {
  font-size:14px; color: var(--light-text-3);
  transition:color var(--dur), padding-left var(--dur);
  display:flex; align-items:center; gap:6px;
}
.footer-col ul li a:hover { color: var(--light-text); padding-left:4px; }
.footer-contact-col .footer-contact-item a:hover { color: var(--light-text); padding-left:4px; }

.footer-contact { display:flex; flex-direction:column; gap:16px; }
.fc-item { display:flex; align-items:flex-start; gap:10px; }
.fc-icon { font-size:16px; flex-shrink:0; margin-top:1px; }
.fc-text { font-size:13px; color: var(--light-text-3); line-height:1.6; }
.fc-text a { color: var(--light-text-3); transition:color var(--dur); }
.fc-text a:hover { color:var(--electric-2); }
.fc-text strong { display:block; font-size:12px; color: var(--light-text-2); font-weight:600; margin-bottom:2px; }

.footer-bottom {
  border-top:1px solid var(--light-border); padding:22px 0;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:12px; color: var(--light-text-3); }
.footer-bottom-links { display:flex; gap:18px; }
.footer-bottom-links a { font-size:12px; color: var(--light-text-3); transition:color var(--dur); }
.footer-bottom-links a:hover { color: var(--light-text); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns:1fr; text-align:center; }
  .hero-left { display:flex; flex-direction:column; align-items:center; }
  .hero-cta-group { justify-content:center; }
  .hero-trust-row { justify-content:center; }
  .hero-right { display:block; max-width:520px; margin:0 auto; } /* show dashboard on tablet */
  .modules-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .why-card:nth-child(4),.why-card:nth-child(5) { grid-column:auto; }
  .integration-layout { grid-template-columns:1fr; gap:48px; }
  .hub-diagram { max-width:380px; }
  .benefits-split { grid-template-columns:1fr; gap:48px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
}
@media (max-width: 768px) {
  :root { --section-py:72px; }
  .nav-links,.nav-actions .btn-outline { display:none; }
  .hamburger { display:flex; }
  .modules-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .bv-kpis { grid-template-columns:1fr 1fr; }
  .cta-btns { flex-direction:column; align-items:center; }
  .hero-cta-group { flex-direction:column; align-items:flex-start; }
  .hub-diagram { max-width:300px; }
  .hub-center { width:80px; height:80px; border-radius:18px; }
  .hub-center-emoji { font-size:22px; }
  .hub-node { width:60px; height:60px; border-radius:14px; }
  .hub-node-icon { font-size:18px; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size:34px; }
  .cta-features { flex-direction:column; align-items:center; }
}

/* ═══════════════════════════════════════════════════════════════
   NEW SECTIONS — City, Solutions, Feature Showcase, Testimonials, FAQ
   ═══════════════════════════════════════════════════════════════ */

/* ─── CITY / MAP SECTION — LIGHT ─────────────────────────────── */
#city-section {
  padding: var(--section-py) 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}
#city-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,124,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.city-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.city-map-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}
.city-map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(79,124,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.city-map-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.city-map-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
  animation: pulse-live 2s ease-in-out infinite;
}
@keyframes pulse-live { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.6; transform:scale(1.3); } }
.city-map-live-text {
  font-size: 12px;
  color: var(--emerald);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.india-map-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.india-svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(79,124,255,0.12));
}
.india-outline {
  animation: map-glow 4s ease-in-out infinite alternate;
}
@keyframes map-glow {
  from { filter: drop-shadow(0 0 4px rgba(79,124,255,0.25)); }
  to   { filter: drop-shadow(0 0 10px rgba(79,124,255,0.50)); }
}
.city-pulse { animation: city-blink 2.5s ease-in-out infinite; }
@keyframes city-blink { 0%,100%{ opacity:1; } 50%{ opacity:0.5; } }
.city-pulse-ring { animation: city-ring 2.5s ease-out infinite; transform-origin: center; }
.city-pulse-ring-2 { animation-delay: 0.5s; }
.city-pulse-ring-3 { animation-delay: 1s; }
.city-pulse-ring-4 { animation-delay: 1.5s; }
.city-pulse-ring-5 { animation-delay: 0.8s; }
@keyframes city-ring {
  0%   { opacity: 0.8; r: 6; }
  100% { opacity: 0;   r: 18; }
}
.city-stat-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-surface);
  border: 1px solid var(--light-border-2);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-light);
}
.city-stat-1 { top: 20px;  right: -10px; }
.city-stat-2 { bottom: 30px; left: -10px; }
.csb-icon { font-size: 20px; }
.csb-num { display: block; font-size: 16px; font-weight: 700; font-family: var(--font-display); color: var(--indigo-2); }
.csb-lbl { display: block; font-size: 11px; color: var(--light-text-3); }
.city-content-side { }
.city-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.city-feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
}
.city-feat-item:hover {
  border-color: rgba(79,124,255,0.26);
  box-shadow: var(--shadow-light-hover);
  transform: translateX(4px);
}
.city-feat-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.cfi-blue   { background: rgba(79,124,255,0.10); border: 1px solid rgba(79,124,255,0.18); }
.cfi-green  { background: rgba(16,185,129,0.10); border: 1px solid rgba(16,185,129,0.18); }
.cfi-gold   { background: rgba(240,165,0,0.10);  border: 1px solid rgba(240,165,0,0.18); }
.cfi-purple { background: rgba(139,92,246,0.10); border: 1px solid rgba(139,92,246,0.18); }
.city-feat-body h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--light-text); }
.city-feat-body p  { font-size: 13px; color: var(--light-text-3); line-height: 1.55; }

.city-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.city-stat-item {
  text-align: center; padding: 20px 16px;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  box-shadow: var(--shadow-light);
}
.csi-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--light-text); }
.csi-lbl { font-size: 12px; color: var(--light-text-3); margin-top: 4px; }

/* ─── SOLUTIONS — REFINED v3 (4-card 2×2 uniform grid) ────────── */
.sxp-solutions-section {
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, #f5f7ff 0%, #ffffff 55%, #f0f4ff 100%);
  position: relative; overflow: hidden;
}

/* Two subtle ambient blobs only */
.sxp-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.sxp-blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79,124,255,0.07) 0%, transparent 70%);
  top: -80px; left: -80px;
  animation: sxp-blob-drift 16s ease-in-out infinite alternate;
}
.sxp-blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  animation: sxp-blob-drift 20s ease-in-out infinite alternate-reverse;
}
@keyframes sxp-blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(24px, 18px) scale(1.06); }
}

/* ── 2 × 2 uniform grid ── */
.sxp-sol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: stretch;
}

/* ── Card shell ── */
.sxp-sol-card {
  position: relative;
  border-radius: 22px;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(79,124,255,0.12);
  box-shadow:
    0 2px 16px rgba(79,124,255,0.07),
    0 1px 3px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.95);
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.34, 1.48, 0.64, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
  cursor: default;
}
.sxp-sol-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 18px 44px rgba(79,124,255,0.14),
    0 4px 14px rgba(139,92,246,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);
  border-color: rgba(79,124,255,0.26);
}

/* Gradient border shimmer on hover */
.sxp-sol-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(79,124,255,0) 0%,
    rgba(79,124,255,0.30) 50%,
    rgba(139,92,246,0.22) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}
.sxp-sol-card:hover::before { opacity: 1; }

/* ── Card inner ── */
.sxp-card-inner {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

/* Glow per accent */
.sxp-card-glow {
  position: absolute; width: 160px; height: 160px;
  border-radius: 50%; top: -50px; right: -40px;
  opacity: 0; transition: opacity 0.38s ease;
  pointer-events: none; filter: blur(48px);
}
.sxp-sol-card:hover .sxp-card-glow { opacity: 0.65; }
.sxp-sol-card[data-accent="blue"]   .sxp-card-glow { background: rgba(79,124,255,0.20); }
.sxp-sol-card[data-accent="purple"] .sxp-card-glow { background: rgba(139,92,246,0.20); }
.sxp-sol-card[data-accent="azure"]  .sxp-card-glow { background: rgba(56,189,248,0.18); }
.sxp-sol-card[data-accent="indigo"] .sxp-card-glow { background: rgba(34,80,192,0.16); }

/* ── Card top row: icon + badge ── */
.sxp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Floating icon */
.sxp-floating-icon {
  font-size: 28px;
  display: inline-block;
  animation: sxp-icon-float 3.6s ease-in-out infinite;
  filter: drop-shadow(0 3px 7px rgba(79,124,255,0.16));
  line-height: 1;
}
.sxp-sol-card:nth-child(2) .sxp-floating-icon { animation-delay: 0.6s; }
.sxp-sol-card:nth-child(3) .sxp-floating-icon { animation-delay: 1.2s; }
.sxp-sol-card:nth-child(4) .sxp-floating-icon { animation-delay: 1.8s; }
@keyframes sxp-icon-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* Stat badge — inline top-right */
.sxp-badge-stat {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 11px; border-radius: 20px;
  white-space: nowrap;
  background: rgba(79,124,255,0.08);
  color: var(--indigo-2);
  border: 1px solid rgba(79,124,255,0.16);
}
.sxp-sol-card[data-accent="purple"] .sxp-badge-stat { background: rgba(139,92,246,0.08); color:#7c3aed; border-color:rgba(139,92,246,0.18); }
.sxp-sol-card[data-accent="azure"]  .sxp-badge-stat { background: rgba(56,189,248,0.08);  color:#0ea5e9; border-color:rgba(56,189,248,0.18); }
.sxp-sol-card[data-accent="indigo"] .sxp-badge-stat { background: rgba(34,80,192,0.08);   color:#1a3a8f; border-color:rgba(34,80,192,0.18); }

/* ── Problem block ── */
.sxp-prob-block {
  background: rgba(239,68,68,0.045);
  border: 1px solid rgba(239,68,68,0.11);
  border-radius: 14px; padding: 13px 15px;
}

/* ── Label rows ── */
.sxp-label-row {
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 7px;
}
.sxp-status-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.sxp-dot-red   { background: #ef4444; box-shadow: 0 0 5px rgba(239,68,68,0.55); }
.sxp-dot-green { background: #22c55e; box-shadow: 0 0 5px rgba(34,197,94,0.55); }
.sxp-label-text {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.sxp-prob-lbl { color: #b91c1c; }
.sxp-sol-lbl  { color: #15803d; }

.sxp-prob-text {
  font-size: 13.5px; line-height: 1.62;
  color: var(--light-text-2); margin: 0;
}

/* ── Animated arrow divider ── */
.sxp-transform-arrow {
  display: flex; justify-content: center;
  padding: 6px 0;
}
.sxp-arrow-svg {
  width: 16px; height: 28px;
  animation: sxp-arrow-pulse 2.2s ease-in-out infinite;
}
@keyframes sxp-arrow-pulse {
  0%,100% { opacity: 0.45; transform: translateY(0); }
  55%      { opacity: 1;    transform: translateY(3px); }
}

/* ── Solution block ── */
.sxp-sol-block {
  background: rgba(34,197,94,0.045);
  border: 1px solid rgba(34,197,94,0.13);
  border-radius: 14px; padding: 13px 15px;
  flex: 1;
}
.sxp-sol-text {
  font-size: 13.5px; line-height: 1.62;
  color: var(--light-text); margin: 0; font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .sxp-sol-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .sxp-badge-stat { font-size: 9px; padding: 3px 8px; }
}
@media (max-width: 500px) {
  .sxp-sol-grid { grid-template-columns: 1fr; }
  .sxp-floating-icon { font-size: 24px; }
}

.pipeline-stages {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 56px;
}
.pipeline-stage {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: 16px; padding: 18px 16px; text-align: center;
  position: relative;
  box-shadow: var(--shadow-light);
  transition: transform var(--dur), border-color var(--dur), box-shadow var(--dur);
  cursor: default;
}
.pipeline-stage:hover { transform: translateY(-4px); border-color: rgba(79,124,255,0.26); box-shadow: var(--shadow-light-hover); }
.pipeline-stage::after {
  content: '→';
  position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
  font-size: 14px; color: var(--light-text-3);
  z-index: 2;
}
.pipeline-stage:last-child::after { display: none; }
.ps-icon { font-size: 24px; margin-bottom: 8px; }
.ps-label { font-size: 12px; font-weight: 600; color: var(--light-text); font-family: var(--font-display); }
.ps-count { font-size: 20px; font-weight: 800; font-family: var(--font-display); margin-top: 4px; color: var(--indigo-2); }

/* ─── FEATURE SHOWCASE — DARK ───────────────────────────────── */
#feature-showcase {
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, var(--navy-1) 0%, var(--navy-0) 100%);
  position: relative; overflow: hidden;
}
#feature-showcase::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 40% 50% at 10% 50%, rgba(79,124,255,0.10), transparent),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(139,92,246,0.08), transparent);
}
.showcase-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.showcase-mockup {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px; padding: 24px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.mockup-bar {
  height: 36px; background: rgba(255,255,255,0.05); border-radius: 10px;
  margin-bottom: 18px; display: flex; align-items: center; padding: 0 12px; gap: 8px;
}
.mockup-bar-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.mockup-content { display: flex; flex-direction: column; gap: 12px; }
.mockup-row {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 16px;
  transition: background var(--dur), border-color var(--dur);
}
.mockup-row:hover { background: rgba(255,255,255,0.07); border-color: rgba(79,124,255,0.25); }
.mockup-row-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mockup-row-title { font-size: 13px; font-weight: 600; color: var(--white-80); font-family: var(--font-display); }
.mockup-row-badge { font-size: 10px; padding: 3px 8px; border-radius: 6px; font-weight: 700; }
.mrb-green { background: rgba(16,185,129,0.18); color: var(--emerald); border: 1px solid rgba(16,185,129,0.3); }
.mrb-blue  { background: rgba(79,124,255,0.18); color: var(--electric-2); border: 1px solid rgba(79,124,255,0.3); }
.mrb-gold  { background: rgba(240,165,0,0.18);  color: var(--gold-2);     border: 1px solid rgba(240,165,0,0.3); }
.mockup-progress-track { height: 5px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.mockup-progress-fill { height: 100%; border-radius: 100px; }
.mpf-blue   { background: linear-gradient(90deg, var(--electric), var(--azure)); }
.mpf-purple { background: linear-gradient(90deg, var(--purple), var(--purple-2)); }
.mpf-gold   { background: linear-gradient(90deg, var(--gold), var(--gold-3)); }

.showcase-features { display: flex; flex-direction: column; gap: 0; }
.feat-list-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: background var(--dur), border-color var(--dur), transform var(--dur) var(--ease-spring);
  cursor: default;
}
.feat-list-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  transform: translateX(4px);
}
.fli-icon-wrap {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.fli-blue   { background: rgba(79,124,255,0.14); border: 1px solid rgba(79,124,255,0.28); }
.fli-purple { background: rgba(139,92,246,0.14); border: 1px solid rgba(139,92,246,0.28); }
.fli-green  { background: rgba(16,185,129,0.14); border: 1px solid rgba(16,185,129,0.28); }
.fli-gold   { background: rgba(240,165,0,0.14);  border: 1px solid rgba(240,165,0,0.28); }
.fli-azure  { background: rgba(56,189,248,0.14); border: 1px solid rgba(56,189,248,0.28); }
.fli-body { flex: 1; }
.fli-title { font-size: 15px; font-weight: 600; color: var(--white-95); margin-bottom: 3px; }
.fli-desc  { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.5; }
.fli-arrow {
  color: var(--electric);
  font-size: 18px;
  opacity: 0;
  transition: opacity var(--dur), transform var(--dur) var(--ease-spring);
  align-self: center;
}
.feat-list-item:hover .fli-arrow { opacity: 1; transform: translateX(4px); }

/* ─── TESTIMONIALS — SOFT LIGHT ──────────────────────────────── */
#testimonials {
  padding: var(--section-py) 0;
  background: var(--light-bg-2);
  position: relative;
  overflow: hidden;
}
.testi-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(79,124,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.04) 0%, transparent 50%);
  pointer-events: none;
}
/* ─── TESTIMONIALS — FIXED 2-per-view carousel ───────────────── */
.testi-carousel-wrap {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s var(--ease-in-out);
  will-change: transform;
}
.testi-card {
  /* Exactly 2 visible: (100% - 1 gap) / 2 */
  min-width: calc(50% - 14px);
  max-width: calc(50% - 14px);
  flex-shrink: 0;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: 24px;
  padding: 40px 44px;
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur), box-shadow var(--dur);
  box-sizing: border-box;
}
.testi-card:hover { border-color: rgba(79,124,255,0.20); box-shadow: var(--shadow-light-hover); }
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 30px;
  font-size: 140px;
  font-family: var(--font-display);
  font-weight: 800;
  color: rgba(79,124,255,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testi-stars { font-size: 20px; color: var(--gold-2); margin-bottom: 18px; letter-spacing: 2px; }
.testi-quote {
  font-size: 16px;
  line-height: 1.75;
  color: var(--light-text-2);
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-av {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.testi-auth-info { flex: 1; }
.testi-auth-info strong { display: block; font-size: 15px; font-weight: 600; color: var(--light-text); }
.testi-auth-info span  { font-size: 13px; color: var(--light-text-3); }
.testi-badge {
  font-size: 12px; font-weight: 700;
  color: #059669;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: 10px;
  padding: 5px 12px;
  white-space: nowrap;
}
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.testi-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--light-surface);
  border: 1px solid var(--light-border-2);
  color: var(--light-text-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  transition: background var(--dur), border-color var(--dur), transform var(--dur) var(--ease-spring), box-shadow var(--dur);
}
.testi-btn:hover { background: rgba(79,124,255,0.05); border-color: rgba(79,124,255,0.32); transform: scale(1.08); box-shadow: var(--shadow-light-hover); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(79,124,255,0.18);
  border: none; cursor: pointer;
  transition: background var(--dur), transform var(--dur), width 0.3s var(--ease-spring);
}
.testi-dot.active {
  background: var(--electric);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(79,124,255,0.38);
}

/* ─── FAQ — LIGHT ────────────────────────────────────────────── */
#faq {
  padding: var(--section-py) 0;
  background: var(--light-surface);
  position: relative;
}
.faq-list {
  max-width: 780px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.faq-item.open { border-color: rgba(79,124,255,0.28); box-shadow: var(--shadow-light-hover); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  color: var(--light-text);
  font-size: 15.5px;
  font-weight: 500;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: color var(--dur);
}
.faq-q:hover { color: var(--indigo-2); }
.faq-item.open .faq-q { color: var(--indigo-2); }
.faq-chevron {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(79,124,255,0.06);
  border: 1px solid rgba(79,124,255,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--light-text-2);
  transition: transform 0.35s var(--ease-spring), background var(--dur), border-color var(--dur);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(79,124,255,0.10);
  border-color: rgba(79,124,255,0.32);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding var(--dur);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--light-text-3);
  line-height: 1.7;
  border-top: 1px solid var(--light-border);
  padding-top: 18px;
}
.faq-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: var(--light-bg);
  border: 1px solid var(--light-border-2);
  border-radius: 24px;
  box-shadow: var(--shadow-light);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.faq-cta p { font-size: 16px; color: var(--light-text-2); }

/* ─── RESPONSIVE (new sections) ─────────────────────────────── */
@media (max-width: 900px) {
  .city-layout,
  .showcase-layout { grid-template-columns: 1fr; gap: 40px; }
  /* solutions-grid deprecated — see .sxp-bento-grid */
  .city-map-side { order: 0; }
  .city-content-side { order: 1; }
  .showcase-mockup { order: 0; }
  .showcase-features { order: 1; }
  .pipeline-stages { grid-template-columns: 1fr 1fr 1fr; }
  /* Tablet: 1 card visible */
  .testi-card {
    min-width: calc(100% - 0px);
    max-width: calc(100% - 0px);
    padding: 28px;
  }
  .testi-card::before { font-size: 80px; }
}
@media (max-width: 640px) {
  /* .solutions-grid deprecated */
  .pipeline-stages { grid-template-columns: 1fr; }
  .city-stat-1, .city-stat-2 { display: none; }
  .testi-badge { display: none; }
  .testi-author { flex-wrap: wrap; }
  /* Mobile: 1 card */
  .testi-card {
    min-width: calc(100% - 0px);
    max-width: calc(100% - 0px);
  }
  .faq-q { font-size: 14px; }
}
/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE OVERHAUL — SellXpert v2
   All fixes scoped to mobile/tablet only. Desktop unchanged.
   ═══════════════════════════════════════════════════════════════ */

/* ─── GLOBAL MOBILE BASE ─────────────────────────────────────── */
@media (max-width: 768px) {
  /* Prevent any horizontal overflow */
  html, body { overflow-x: hidden; max-width: 100vw; }
  * { max-width: 100%; }
  .container { padding: 0 18px; }

  /* Disable custom cursor on touch devices */
  .cursor-dot, .cursor-ring { display: none; }

  /* Section padding */
  :root { --section-py: 64px; }
}

/* ─── NAVBAR — MOBILE ────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-wrap { padding: 12px 18px; }

  /* Logo: scale down slightly */
  .nav-logo { font-size: 18px; gap: 9px; }
  .nav-logo-icon { width: 34px; height: 34px; font-size: 16px; border-radius: 10px; }

  /* Hide desktop links */
  .nav-links { display: none; }
  .nav-actions .btn-outline { display: none; }

  /* Nav actions: only show CTA + hamburger */
  .nav-actions {
    display: flex; align-items: center; gap: 8px;
  }
  /* The primary CTA button in nav */
  .nav-actions .btn-primary {
    padding: 9px 16px;
    font-size: 13px;
    border-radius: 10px;
  }

  /* Hamburger always visible on mobile */
  .hamburger { display: flex; }

  /* Mobile nav menu improvements */
  .mobile-nav {
    padding: 90px 24px 40px;
    gap: 6px;
  }
  .mobile-nav a {
    font-size: 18px;
    padding: 14px 20px;
  }
  /* Add CTA button inside mobile menu */
  .mobile-nav .btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: 14px;
  }
}

/* ─── HERO — MOBILE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  #hero { padding: 120px 0 70px; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-cta-group { justify-content: center; }
  .hero-trust-row { justify-content: center; }
  /* Show dashboard on tablet */
  .hero-right { display: block; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 768px) {
  #hero { padding: 100px 0 56px; }

  .hero-inner { gap: 40px; padding: 0 18px; }

  .hero-pre-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 22px;
  }

  .hero-h1 {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    line-height: 1.15;
  }
  .hero-h1 .line-1,
  .hero-h1 .line-2,
  .hero-h1 .line-3 {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.52);
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: auto !important;
     display: inline-flex;
    max-width: 320px;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
     align-items: center;
  }

  .hero-trust-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .trust-text { font-size: 12px; padding-left: 14px; }

  /* Dashboard card: shrink & simplify on mobile */
  .hero-right {
    display: block;
    max-width: 100%;
    padding: 0 8px;
  }
  .dashboard-card {
    padding: 20px 16px;
    border-radius: 20px;
    animation: none; /* disable float animation on mobile for performance */
  }
  .dash-metrics { gap: 8px; }
  .metric-box { padding: 12px 8px; border-radius: 12px; }
  .metric-value { font-size: 18px; }
  .metric-label { font-size: 9px; }
  .metric-delta { font-size: 9px; }
  .dash-chart { height: 48px; }

  /* Hide floating stickers on small screens */
  .hero-sticker { display: none; }
}

@media (max-width: 425px) {
  .hero-h1 { font-size: clamp(24px, 7.5vw, 34px); }
  .hero-sub { font-size: 14px; }
  .dash-leads { display: none; } /* hide lead rows on very small screens */
}

@media (max-width: 375px) {
  .hero-h1 { font-size: 24px; }
  .hero-cta-group .btn { font-size: 14px; padding: 14px 20px; }
}

/* ─── TRUSTED BRANDS — MOBILE ────────────────────────────────── */
@media (max-width: 768px) {
  #trusted { padding: 48px 0; }
  .trusted-header { margin-bottom: 32px; padding: 0 18px; }
  .trusted-header h2 { font-size: clamp(18px, 5vw, 26px); }
  .client-card { padding: 10px 16px; font-size: 13px; }
  .client-icon { font-size: 16px; }
}

/* ─── BENEFITS / BUSINESS IMPACT — MOBILE ────────────────────── */
@media (max-width: 768px) {
  .benefits-split {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    position: relative;
    z-index: 1;
  }
  .benefits-list { margin-top: 24px; }
  .bv-kpis { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bv-kpi { padding: 16px 12px; border-radius: 14px; }
  .bv-kpi-num { font-size: 20px; }
  .bv-kpi-lbl { font-size: 9px; }

  /* Benefits vis card */
  .benefits-vis { height:100%;}
}

@media (max-width: 425px) {
  .bv-kpis { grid-template-columns: 1fr 1fr; }
}

/* ─── HOW SELLXPERT SOLVES — MOBILE ──────────────────────────── */
@media (max-width: 768px) {
  .sxp-sol-grid { grid-template-columns: 1fr; gap: 14px; }

  .pipeline-stages {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 32px;
  }
  .pipeline-stage { padding: 14px 10px; }
  .pipeline-stage::after { display: none; } /* remove arrows on mobile */
  .ps-icon { font-size: 20px; }
  .ps-label { font-size: 11px; }
  .ps-count { font-size: 18px; }
}

@media (max-width: 425px) {
  .sxp-sol-grid { grid-template-columns: 1fr; }
  .pipeline-stages { grid-template-columns: 1fr 1fr; }
}

/* ─── MODULES — MOBILE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .module-card { padding: 24px 20px; border-radius: 18px; }
}

@media (max-width: 425px) {
  .modules-grid { grid-template-columns: 1fr; }
}

/* ─── INTEGRATIONS — MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  .integration-layout {
      display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;

  }
  
  .hub-diagram { max-width: 260px; margin: 0 auto; }
  .hub-center { width: 70px; height: 70px; border-radius: 16px; }
  .hub-center-emoji { font-size: 20px; }
  .hub-node { width: 52px; height: 52px; border-radius: 12px; }
  .hub-node-icon { font-size: 16px; }
}

/* ─── WHY SELLXPERT — MOBILE ─────────────────────────────────── */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .why-card { padding: 24px 20px; }
  /* Reset grid-column overrides */
  .why-card:nth-child(4),
  .why-card:nth-child(5) { grid-column: auto; }
}

/* ─── CITY / MAP SECTION — MOBILE ────────────────────────────── */
@media (max-width: 768px) {
  .city-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .city-map-card { padding: 20px; }
  .city-stat-1, .city-stat-2 { display: none; }
  .city-content-side { order: -1; } /* text first on mobile */
  .city-map-side { order: 1; flex:1;
    display:flex;}
}

/* ─── TESTIMONIALS — MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  .testi-carousel-wrap { margin-top: 36px; }
  .testi-card {
    min-width: 100%;
    max-width: 100%;
    padding: 24px 20px;
    border-radius: 18px;
  }
  .testi-card::before { font-size: 80px; top: -4px; left: 16px; }
  .testi-quote { font-size: 14.5px; margin-bottom: 20px; }
  .testi-stars { font-size: 16px; margin-bottom: 12px; }
  .testi-auth-info strong { font-size: 14px; }
  .testi-auth-info span { font-size: 12px; }
  .testi-av { width: 40px; height: 40px; font-size: 12px; }
  .testi-badge { display: none; }
  .testi-nav { gap: 14px; margin-top: 24px; }
  .testi-btn { width: 40px; height: 40px; }
}

/* ─── FAQ — MOBILE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-list { margin-top: 36px; gap: 10px; }
  .faq-q { font-size: 14px; padding: 18px 16px; gap: 12px; }
  .faq-a p { font-size: 13.5px; padding: 0 16px 18px; padding-top: 16px; }
  .faq-chevron { width: 26px; height: 26px; flex-shrink: 0; }
}

/* ─── FOOTER — MOBILE ────────────────────────────────────────── */
@media (max-width: 768px) {
  #footer { padding: 56px 0 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 44px;
    text-align: center;
  }

  /* Center align all footer columns */
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }

  .footer-logo { justify-content: center; }
  .footer-desc { max-width: 100%; text-align: center; margin-bottom: 18px; }

  .footer-socials { justify-content: center; }

  .footer-col ul { align-items: center; }
  .footer-col ul li a { justify-content: center; }
  .footer-col ul li a:hover { padding-left: 0; } /* remove indent on mobile */

  .footer-contact { align-items: center; }
  .fc-item { justify-content: center; text-align: center; }
  .fc-text { text-align: left; } /* keep contact text left aligned for readability */

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 18px 18px;
  }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
}

/* ─── FINAL CTA — MOBILE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .cta-content .h2 { font-size: clamp(26px, 7vw, 38px); }
  .cta-content .body-text { font-size: 15px; margin-bottom: 32px; }
  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-btns .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }
  /* CTA rings performance */
  .cta-ring { animation: none; }
}

/* ─── GLOBAL TYPOGRAPHY — MOBILE ─────────────────────────────── */
@media (max-width: 768px) {
  .h2 {
    font-size: clamp(24px, 7vw, 36px);
    letter-spacing: -0.02em;
  }
  .body-text { font-size: 15px; }
  .section-eyebrow { margin-bottom: 14px; }
  .tag { font-size: 10px; padding: 5px 12px; }

  /* Buttons */
  .btn-lg {
    padding: 15px 28px;
    font-size: 15px;
    border-radius: 14px;
  }
}

/* ─── 375PX & 320PX FINE TUNING ──────────────────────────────── */
@media (max-width: 375px) {
  .container { padding: 0 14px; }
  :root { --section-py: 52px; }
  .h2 { font-size: 22px; }
  .body-text { font-size: 14px; }
  .bv-kpi-num { font-size: 18px; }
  .module-card { padding: 20px 16px; }
  .testi-card { padding: 20px 16px; }
  .faq-q { font-size: 13.5px; padding: 16px 14px; }
  .footer-grid { gap: 28px; }
}

@media (max-width: 320px) {
  .hero-h1 { font-size: 22px; }
  .hero-cta-group .btn { font-size: 13px; padding: 13px 16px; }
  .h2 { font-size: 20px; }
  .nav-logo { font-size: 16px; }
  .nav-logo-icon { width: 30px; height: 30px; font-size: 14px; }
}


/* ═══════════════════════════════════════════════════════════════
   TARGETED MOBILE FIXES — v3
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Hide "Request Demo" button from navbar on mobile only ── */
@media (max-width: 768px) {
  .nav-actions .btn-primary {
    display: none;
  }
  /* Result: [Logo] ············ [Hamburger] */
}

/* ── 2. Footer contact column — full center alignment on mobile  */
@media (max-width: 768px) {
  /* Every fc-item: center the icon + text block together */
  .fc-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .fc-icon {
    margin-top: 0;
  }
  .fc-text {
    text-align: center;
  }
  .fc-text strong {
    display: block;
    text-align: center;
  }
  /* Also center the fc-text links */
  .fc-text a {
    display: block;
    text-align: center;
  }
  /* footer-contact wrapper already centered from previous fix;
     reinforce alignment of the inner items */
  .footer-contact {
    align-items: center;
    width: 100%;
  }
}
#city-section{
    padding: 80px 0;
    position: relative;
}

/* TOP CENTER */

.city-top{
    text-align: center;
    max-width: 950px;
    margin: 0 auto 0px;
}

.city-main-heading{
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -3px;
    margin: 24px 0;
    color: #1e3a8a;
}

.city-main-heading span{
    background: linear-gradient(
        135deg,
        #4f7cff,
        #8b5cf6
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.city-main-para{
    font-size: 20px;
    line-height: 1.9;
    color: #6b7280;
    max-width: 820px;
    margin: auto;
}

/* BOTTOM LAYOUT */

.city-bottom-layout{
    /* display: grid; */
     display:flex;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
  align-items:stretch; /* IMPORTANT */
}

/* FEATURES */

.city-features{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* FEATURE CARD */

.city-feat-item{
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(79,124,255,0.12);
    border-radius: 24px;
    padding: 26px;
    display: flex;
    gap: 18px;

    backdrop-filter: blur(20px);

    box-shadow:
    0 10px 40px rgba(79,124,255,0.08);

    transition: all 0.3s ease;
}

.city-feat-item:hover{
    transform: translateY(-6px);
    box-shadow:
    0 20px 50px rgba(79,124,255,0.14);
}

/* MAP CARD */

.city-map-card{
    background: rgba(255,255,255,0.7);
    border-radius: 32px;
    padding: 32px;
    border: 1px solid rgba(79,124,255,0.12);

    backdrop-filter: blur(20px);

    box-shadow:
    0 10px 50px rgba(79,124,255,0.08);
}

/* BUTTON */

.city-btn{
    margin-top: 10px;
    width: fit-content;
}

/* MOBILE */

@media(max-width:992px){

    .city-bottom-layout{
        grid-template-columns: 1fr;
    }

    .city-main-heading{
        font-size: 52px;
    }

    .city-main-para{
        font-size: 18px;
    }
}
/* =========================
   TRUSTED CLIENTS
========================= */

#trusted{

    padding: px 0;

    background: linear-gradient(
        180deg,
        #f7f9ff 0%,
        #ffffff 100%
    );

    overflow: hidden;

}



/* HEADER */
.trusted-header{

    text-align: center;

    margin-bottom: 60px;

}



.trusted-tag{

    display: inline-block;

    padding: 10px 24px;

    border-radius: 999px;

    background: #edf3ff;

    color: #2b6cff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;

}



.trusted-header h2{

    font-size: 52px;

    font-weight: 800;

    line-height: 1.2;

    color: #0f172a;

}



/* SLIDER */
.trusted-slider{

    width: 100%;

    overflow: hidden;

    position: relative;

}



/* TRACK */
.trusted-track{

    display: flex;

    align-items: center;

    gap: 40px;

    width: max-content;

    animation: scrollClients 35s linear infinite;

}



/* LOGO CARD */
.trusted-logo{

    width: 240px;

    height: 130px;

    background: #fff;

    border-radius: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    flex-shrink: 0;

    border: 1px solid #eef2ff;

    transition: .4s ease;

}



/* IMAGE */
.trusted-logo img{

    width: 100%;

    height: 100%;

    object-fit: contain;

    /* filter: grayscale(100%); */

    opacity: .8;

    transition: .4s ease;

}



/* HOVER */
.trusted-logo:hover{

    transform: translateY(-8px);

    box-shadow: 0 15px 40px rgba(0,0,0,.08);

}



.trusted-logo:hover img{

    filter: grayscale(0%);

    opacity: 1;

}



/* ANIMATION */
@keyframes scrollClients{

    0%{

        transform: translateX(0);

    }

    100%{

        transform: translateX(-50%);

    }

}



/* MOBILE */
@media(max-width:768px){

    .trusted-header h2{

        font-size: 32px;

    }

    
    .trusted-logo{

        width: 180px;

        height: 100px;

        padding: 20px;

    }

}
.city-bottom-layout{
    display:flex;
    gap:32px;
    align-items:stretch; /* IMPORTANT */
}

.city-map-side{
    flex:1;
    display:flex;
}

.city-map-card{
    width:100%;
    height:100%;
    min-height:100%;
    background:#fff;
    border-radius:32px;
    padding:24px;
    display:flex;
    flex-direction:column;
}

.city-features{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:22px;
}

.city-feat-item{
    background:#fff;
    border-radius:28px;
    padding:28px;
}

/* MAP iframe responsive */
.city-map-card iframe{
    width:100% !important;
    height:100% !important;
    min-height:420px;
    border:0;
    border-radius:24px;
    flex:1;
}
/* ===============================
   CENTER ALIGN INTEGRATION SECTION
================================= */

#integrations .section-header{
    
    text-align: center;
    
    max-width: 900px;
    
    margin: 0 auto 60px;
    
    display: flex;
    
    flex-direction: column;
    
    align-items: center;
}

#integrations .body-text{
    
    max-width: 700px;
    
    margin: 18px auto 0;
    text-align: center;
}

#integrations .integration-tabs{
    
    justify-content: center;
}

#integrations .integration-grid{
    
    justify-content: center;
}
/* =========================
   INTEGRATIONS CENTER FIX
========================= */

.integrations-center{

    width:100%;

    max-width:1000px;

    margin:0 auto 70px;

    text-align:center;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

}

.integrations-center .h2{

    width:100%;

    text-align:center;

    margin:0 auto;

}

.integrations-center .body-text{

    max-width:700px;

    margin:22px auto 0;

    text-align:center;

}

.integration-tabs{

    justify-content:center !important;

}
/* ===== SECTION HEADER CENTER FIX ===== */

.section-header{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    margin:0 auto 20px;
}

.section-header .section-eyebrow{
    margin-bottom:18px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.section-header .body-text{
    max-width:750px;
    margin:20px auto 0;
    text-align:center;
}

.integration-tabs{
    justify-content:center !important;
}
.section-eyebrow{
    margin-left:auto !important;
    margin-right:auto !important;
}
/* BENEFITS SECTION FIX */
.benefits-top{
    text-align:center;
    /* max-width:850px; */
    margin:0 auto 40px;
}

.benefits-top .tag{
    display:inline-flex;
    margin-bottom:18px;
}

.benefits-top .body-text{
    max-width:760px;
    margin:18px auto 0;
}

/* LEFT + RIGHT SAME LEVEL */
.benefits-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    margin-top:40px;
    align-items:flex-start;
}

/* LEFT CONTENT THODA UPAR */
.benefits-left{
    margin-top:-35px;
}

/* LIST */
.benefits-list{
    width:100%;
}

/* ITEM */
.benefit-item{
    align-items:flex-start;
}
.social-links {
    display: flex;
    gap: 8px;
    margin-top: 20px;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #fff;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}
.facebook-icon {
    background: #1877F2;
}
.twitter-icon {
    background: #000000;
}
.instagram-icon {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.youtube-icon {
    background: #FF0000;
}
.linkedin-icon {
    background: #0A66C2;
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.main-logo{
    height:60px;
    width:auto;
    object-fit:contain;
       margin-bottom: 15px
}
@media (max-width: 768px){

  /* BENEFITS SECTION */
  .benefits-split{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-left{
    margin-top: 0;
  }

  .benefits-top{
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .benefits-top .h2{
    font-size: 34px;
    line-height: 1.2;
  }

  .benefits-top .body-text{
    font-size: 15px;
    line-height: 1.7;
  }

  /* BENEFIT ITEMS */
  .benefit-item{
    gap: 14px;
  }

  /* SOCIAL ICONS */
  .social-links{
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-icon{
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  /* LOGO */
  .main-logo{
    height: 48px;
  }

}
@media (max-width: 768px){

  .integration-layout{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .integration-left{
    grid-template-columns: 1fr;
  }

  .integration-right{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hub-diagram{
    max-width: 280px;
    margin: 0 auto;
  }

}
/* MAP / RIGHT IMAGE MOBILE FIX */
@media (max-width: 768px){

  .benefits-right,
  .map-wrapper,
  .map-card,
  .city-map,
  .benefits-map{
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .benefits-right{
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .benefits-right img,
  .city-map img,
  .map-card img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
  }

  /* AGAR MAP ABSOLUTE POSITION ME HAI */
  .benefits-right *{
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

}
/* =========================
   CITY SECTION MOBILE FIX
========================= */

@media (max-width:768px){

  /* top spacing */
  #city-section{
    overflow:hidden;
    padding:60px 0;
  }

  /* layout stack */
  .city-bottom-layout{
    display:flex !important;
    flex-direction:column !important;
    gap:28px !important;
    align-items:center;
  }

  /* map section */
  .city-map-side{
    width:100% !important;
    max-width:100% !important;
    order:2;
  }

  .city-map-card{
    width:100% !important;
    max-width:100% !important;
    padding:14px !important;
    overflow:hidden;
    border-radius:22px;
  }

  /* iframe / svg / image responsive */
  .city-map-card iframe,
  .city-map-card img,
  .city-map-card svg{
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    display:block;
    border-radius:16px;
  }

  /* features section */
  .city-features{
    width:100% !important;
    max-width:100% !important;
    order:1;
  }

  /* feature cards */
  .city-feat-item{
    width:100%;
    padding:16px;
    border-radius:18px;
  }

  .city-feat-body h4{
    font-size:18px;
    line-height:1.3;
  }

  .city-feat-body p{
    font-size:14px;
    line-height:1.6;
  }

  /* button */
  .city-btn{
    width:100%;
    justify-content:center;
  }

  /* heading */
  .city-main-heading{
    font-size:38px !important;
    line-height:1.15;
  }

  .city-main-para{
    font-size:15px;
    line-height:1.7;
  }

}
.hub-center{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hub-logo{
     width:38px;
    height:38px;
    object-fit:contain;

    background:#fff;
    border-radius:50%;
    padding:5px;

    box-shadow:0 6px 18px rgba(0,0,0,.15);
    margin-bottom:8px;
}

.hub-center-name{
    font-size:14px;
    font-weight:700;
    color:#fff;
    line-height:1;
}
