/* ============================================
   V3 – PLATAFORMA TODO EN UNO
   Premium Dark Mode Stylesheet
   ============================================ */

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

/* ── CSS Variables (PROMPT_CURSOR_LANDING_V3) ── */
:root {
  --v3-navy-950: #020817;
  --v3-navy-900: #061126;
  --v3-navy-800: #0d1b3a;
  --v3-blue-700: #0d4ed8;
  --v3-blue-600: #155dfc;
  --v3-blue-500: #2563eb;
  --v3-cyan-500: #00c2ff;
  --v3-cyan-400: #22d3ee;
  --v3-green-500: #10b981;
  --v3-purple-500: #7c3aed;
  --v3-orange-500: #f97316;
  --v3-gray-950: #111827;
  --v3-gray-700: #374151;
  --v3-gray-500: #6b7280;
  --v3-gray-300: #d1d5db;
  --v3-gray-200: #e5e7eb;
  --v3-gray-100: #f3f4f6;
  --v3-gray-50: #f8fafc;
  --v3-white: #ffffff;
  --container: 1280px;
  --section-space: 96px;
  --section-space-mobile: 64px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 16px 50px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.07);
  --transition: 220ms ease;
  --font-sans: 'Poppins', system-ui, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-mono: 'Inter', system-ui, sans-serif;
  --navy-950: var(--v3-navy-950);
  --navy-900: var(--v3-navy-900);
  --navy-800: var(--v3-navy-800);
  --navy-700: #101a38;
  --navy-600: #162040;
  --blue-600: var(--v3-blue-500);
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --cyan-500: var(--v3-cyan-500);
  --cyan-400: var(--v3-cyan-400);
  --electric: var(--v3-cyan-500);
  --purple: var(--v3-purple-500);
  --purple-light: #a78bfa;
  --green: var(--v3-green-500);
  --orange: var(--v3-orange-500);
  --red: #ef4444;
  --white: var(--v3-white);
  --gray-100: var(--v3-gray-100);
  --gray-200: var(--v3-gray-200);
  --gray-300: var(--v3-gray-300);
  --gray-400: #94a3b8;
  --gray-500: var(--v3-gray-500);
  --gray-600: #475569;
  --text-primary: rgba(255,255,255,0.95);
  --text-secondary: rgba(255,255,255,0.68);
  --text-muted: rgba(255,255,255,0.42);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(37,99,235,0.4);
  --glow-blue: 0 0 40px rgba(37,99,235,0.3);
  --glow-cyan: 0 0 40px rgba(0,194,255,0.3);
}

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

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

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; outline: none; cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ── */
.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #06b6d4 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.25);
  color: var(--electric);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--electric));
  color: white;
  box-shadow: 0 4px 24px rgba(14,165,233,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14,165,233,0.5);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-primary);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.btn-outline-blue {
  background: transparent;
  border: 1px solid var(--electric);
  color: var(--electric);
}
.btn-outline-blue:hover {
  background: rgba(14,165,233,0.1);
}

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slide-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes particle-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(7,11,24,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 0 16px rgba(14,165,233,0.25);
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: white;
  box-shadow: 0 0 16px rgba(14,165,233,0.4);
}
.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  min-width: 0;
  flex-wrap: nowrap;
}
.nav-item {
  position: relative;
  flex-shrink: 0;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav-link.active {
  box-shadow: inset 0 -2px 0 #2563eb;
}
.nav-link svg { opacity: 0.6; transition: transform 0.2s; }
.nav-link:hover svg { opacity: 1; transform: rotate(180deg); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-demo-btn {
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

/* Gradient bg */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(14,165,233,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(59,130,246,0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(14,165,233,0.12);
  top: -100px; right: -50px;
  animation: pulse-glow 4s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(124,58,237,0.1);
  bottom: 100px; left: -80px;
  animation: pulse-glow 6s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.3);
  color: var(--cyan-400);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: slide-in-up 0.6s ease forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-400);
  animation: pulse-glow 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  animation: slide-in-up 0.6s ease 0.1s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
  letter-spacing: -0.025em;
}
.hero-title span {
  display: block;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #60a5fa, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  animation: slide-in-up 0.6s ease 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: slide-in-up 0.6s ease 0.3s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  max-width: 100%;
}
.hero-pill .pill-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(37, 99, 235, 0.18);
  color: #60a5fa;
  border: 1px solid rgba(37, 99, 235, 0.35);
}
.hero-pill .pill-icon svg {
  display: block;
}
.pill-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pill-text span { line-height: 1.2; }
.pill-text small {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.3;
  white-space: normal;
}
.hero-pill:nth-child(1) .pill-icon,
.hero-pill:nth-child(2) .pill-icon,
.hero-pill:nth-child(3) .pill-icon {
  background: rgba(37, 99, 235, 0.18);
  color: #60a5fa;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slide-in-up 0.6s ease 0.4s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  animation: slide-in-up 0.6s ease 0.5s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}
.testi-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e2e8f0;
}
.testimonials-section .testi-quote {
  padding-top: 8px;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}
.section-badge {
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.btn-video {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-primary);
  padding: 13px 22px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.btn-video:hover { background: rgba(255,255,255,0.1); }
.play-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero right - 3D V3 visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
  animation: slide-in-up 0.8s ease 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-v3-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
}

.hero-v3-bg {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-v3-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(14,165,233,0.2);
  animation: rotate-slow 20s linear infinite;
}
.hero-v3-ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px; height: 8px;
  background: var(--electric);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--electric);
}
.hero-v3-ring-2 {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.15);
  animation: rotate-slow 15s linear infinite reverse;
}

.hero-v3-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  user-select: none;
}
.hero-v3-img {
  width: min(72%, 260px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(14,165,233,0.45));
}

/* Floating mini cards around the hero visual */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.hero-float-card-1 {
  top: 40px; left: -20px;
  animation: float 5s ease-in-out infinite;
  display: flex; align-items: center; gap: 8px;
}
.hero-float-card-2 {
  bottom: 80px; right: -20px;
  animation: float 7s ease-in-out infinite reverse;
  display: flex; align-items: center; gap: 8px;
}
.hero-float-card-3 {
  top: 50%; right: -50px;
  transform: translateY(-50%);
  animation: float 6s ease-in-out infinite 1s;
}
.card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   TRUST LOGOS / MARQUEE
   ============================================ */
.trust-section {
  padding: 48px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.trust-label {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.2px;
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 48px;
}

.trust-logo-item {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #94a3b8;
  text-transform: none;
  opacity: 0.85;
  transition: color 0.25s, opacity 0.25s;
  user-select: none;
}
.trust-logo-item:nth-child(1) { font-style: italic; letter-spacing: -0.5px; }
.trust-logo-item:nth-child(2) { letter-spacing: 2px; font-weight: 900; }
.trust-logo-item:nth-child(3) { font-weight: 900; }
.trust-logo-item:nth-child(4) { letter-spacing: 1px; }
.trust-logo-item:nth-child(5) { font-weight: 700; }
.trust-logo-item:nth-child(6) { font-weight: 600; font-style: italic; text-transform: lowercase; }
.trust-logo-item:hover { color: #475569; opacity: 1; }

.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-item:hover { color: var(--text-secondary); }
.marquee-item svg { opacity: 0.5; }
.marquee-logo-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: white;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-section {
  padding: 100px 0;
  position: relative;
}
.solutions-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.2), transparent);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.sol-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sol-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.sol-card:hover {
  border-color: rgba(14,165,233,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(14,165,233,0.1);
}
.sol-card:hover::before { opacity: 1; }

.sol-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.sol-icon-wrap svg { display: block; }
.sol-card:hover .sol-icon-wrap {
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(37, 99, 235, 0.35);
}

.sol-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.sol-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}
.sol-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--electric);
  transition: gap 0.2s;
}
.sol-link:hover { gap: 10px; }

/* ============================================
   USE CASES SECTION
   ============================================ */
.usecases-section {
  padding: 80px 0;
  background: rgba(255,255,255,0.01);
  position: relative;
}
.usecases-section::before,
.usecases-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}
.usecases-section::before { top: 0; }
.usecases-section::after { bottom: 0; }

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 52px;
}

.usecase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.usecase-item:hover {
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.2);
  transform: translateY(-3px);
}
.usecase-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border: 1.5px solid rgba(37, 99, 235, 0.28);
  transition: var(--transition);
}
.usecase-icon svg { display: block; }
.usecase-item:hover .usecase-icon {
  background: rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.45);
  color: #1d4ed8;
}
.usecase-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Industries sub-row */
.industries-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.industries-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-right: 8px;
  white-space: nowrap;
}
.ind-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}
.ind-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
}
.ind-ico svg { display: block; }
.ind-item:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.28);
  color: var(--text-primary);
}
.ind-item:hover .ind-ico {
  background: rgba(37, 99, 235, 0.18);
  color: #1d4ed8;
}
.ind-more {
  font-size: 12px;
  color: var(--electric);
  font-weight: 600;
  cursor: pointer;
}

/* ============================================
   DASHBOARD / PLATFORM SECTION
   ============================================ */
.platform-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.platform-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 50%, rgba(14,165,233,0.08) 0%, transparent 60%),
    linear-gradient(180deg, transparent, rgba(7,11,24,0.5), transparent);
}

.platform-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.platform-left .section-badge { margin-bottom: 16px; }
.platform-left .section-title { text-align: left; font-size: 36px; }

.platform-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.pf-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.2);
  border: 1px solid rgba(16,185,129,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: var(--green);
}

/* Dashboard mockup */
.dashboard-mockup {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(14,165,233,0.1);
  animation: float 8s ease-in-out infinite;
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dash-dot-red { background: #ef4444; }
.dash-dot-yellow { background: #f59e0b; }
.dash-dot-green { background: #10b981; }

.dash-title-bar {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.dash-body { padding: 20px; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.dash-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.dash-stat-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.dash-stat-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dash-stat-change {
  font-size: 9px;
  font-weight: 600;
  margin-top: 2px;
}
.up { color: var(--green); }
.down { color: var(--red); }

.dash-chart-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dash-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 14px;
}
.dash-chart-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* SVG mini chart */
.mini-chart {
  width: 100%;
  height: 60px;
}

/* Donut chart placeholder */
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.donut-svg { width: 60px; height: 60px; flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 4px; }
.legend-item { display: flex; align-items: center; gap: 5px; font-size: 9px; color: var(--text-muted); }
.legend-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* Sidebar of dashboard */
.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.dash-sidebar-item.active {
  background: rgba(14,165,233,0.15);
  color: var(--electric);
}
.dash-sidebar-item:hover:not(.active) {
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
}

.dash-full {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
}
.dash-main { border-left: 1px solid rgba(255,255,255,0.06); }

/* ============================================
   STATS BANNER
   ============================================ */
.stats-banner {
  padding: 56px 0;
  background: linear-gradient(135deg, rgba(14,165,233,0.08) 0%, rgba(59,130,246,0.06) 100%);
  border-top: 1px solid rgba(14,165,233,0.1);
  border-bottom: 1px solid rgba(14,165,233,0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.12);
  color: #e0f2fe;
  border: 1px solid rgba(224,242,254,0.28);
}
.stat-icon svg { display: block; }
.stat-value {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.stats-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(14,165,233,0.15);
  line-height: 1;
  font-family: Georgia, serif;
}
.testi-card:hover {
  border-color: rgba(14,165,233,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.testi-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.testi-logo-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: white;
}
.testi-company {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.testi-quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-top: 16px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #fbbf24;
  font-size: 14px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.testi-role {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition);
}
.testi-dot.active {
  background: var(--electric);
  width: 24px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 100px 0;
  background: rgba(255,255,255,0.01);
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(14,165,233,0.06) 0%, transparent 60%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
  position: relative;
  z-index: 2;
}

.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.price-card.featured {
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(59,130,246,0.08));
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 0 0 1px rgba(14,165,233,0.15), 0 20px 60px rgba(14,165,233,0.1);
}
.price-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(14,165,233,0.3), 0 30px 80px rgba(14,165,233,0.15);
}

.price-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-500), var(--electric));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.price-plan-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 32px;
}
.price-amount {
  margin-bottom: 24px;
}
.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-secondary);
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
}
.price-value {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.price-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-custom {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.price-feature-check {
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(16,185,129,0.2);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   RESOURCES / BLOG
   ============================================ */
.resources-section {
  padding: 100px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.resource-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.resource-card:hover {
  border-color: rgba(14,165,233,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.resource-img {
  height: 140px;
  background: linear-gradient(135deg, #0c1228, #162040);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.resource-img-bg {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.resource-card:hover .resource-img-bg {
  transform: scale(1.05);
}
.resource-type-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-blog { background: rgba(59,130,246,0.9); color: white; }
.badge-guide { background: rgba(16,185,129,0.9); color: white; }
.badge-release { background: rgba(245,158,11,0.9); color: white; }
.badge-case { background: rgba(124,58,237,0.9); color: white; }

.resource-body { padding: 18px 18px 20px; }
.resource-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 8px;
}
.resource-excerpt {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.resource-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--electric);
  transition: gap 0.2s;
}
.resource-card:hover .resource-link { gap: 10px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(59,130,246,0.08));
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: 28px;
  padding: 60px;
  text-align: center;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(14,165,233,0.06) 0%, transparent 70%);
}

.cta-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}
.cta-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Pricing plans inside CTA */
.cta-plans {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cta-plan-mini {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  min-width: 160px;
  position: relative;
  transition: var(--transition);
}
.cta-plan-mini.featured-mini {
  background: rgba(14,165,233,0.1);
  border-color: rgba(14,165,233,0.3);
}
.cta-plan-mini:hover {
  transform: translateY(-2px);
}
.cta-plan-name { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.cta-plan-price { font-size: 28px; font-weight: 900; color: var(--text-primary); }
.cta-plan-period { font-size: 11px; color: var(--text-muted); }
.cta-plan-desc { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 220px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: rgba(14,165,233,0.15);
  border-color: rgba(14,165,233,0.3);
  color: var(--electric);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text-secondary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-secondary); }

/* WhatsApp floating button */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ============================================
   PARTICLES CANVAS
   ============================================ */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; }
  .footer-grid > *:last-child { display: none; }
}

@media (max-width: 880px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 280px; }
  .hero-v3-wrapper { width: 260px; height: 260px; }
  .hero-v3-img { width: min(70%, 180px); }
  .platform-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-full { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
}

@media (max-width: 1100px) {
  .nav-menu { display: none; }
  .nav-demo-btn { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .nav-menu { display: none; }
  .nav-demo-btn { display: none; }
  .hamburger { display: flex; }
  .solutions-grid { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { padding: 40px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-pills { flex-direction: column; }
  .hero-float-card { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Video modal */
.v3-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  padding: 24px;
}
.v3-modal-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  position: relative;
}
.v3-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3-modal-play {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue-500), var(--electric));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.v3-modal-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.v3-modal-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.v3-modal-cta {
  display: inline-flex;
}

/* Mobile nav open */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.mobile-nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--text-primary); }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 8px;
  padding: 10px;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 18px;
}

/* Scroll indicator */
.scroll-top {
  position: fixed;
  bottom: 92px;
  right: 28px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  z-index: 998;
}
.scroll-top.visible { opacity: 1; }
.scroll-top:hover {
  background: rgba(14,165,233,0.15);
  border-color: rgba(14,165,233,0.3);
}

/* ============================================
   TECH & PARTNERS SECTION
   ============================================ */
.techpartners-section {
  padding: 56px 0;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.techpartners-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.techpartners-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}

.tp-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.tp-tab:hover { color: var(--text-secondary); background: rgba(255,255,255,0.04); }
.tp-tab.active {
  background: rgba(14,165,233,0.15);
  color: var(--electric);
  box-shadow: 0 0 0 1px rgba(14,165,233,0.2);
}

.tp-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.2), transparent);
}

.tp-panel { display: none; }
.tp-panel.active { display: block; }

.tp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.tp-logo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  min-height: 44px;
  filter: grayscale(25%) opacity(0.80);
  transition: filter 0.3s;
}
.tp-logo-card:hover .tp-logo-inner {
  filter: grayscale(0%) opacity(1);
}

@media (max-width: 1100px) {
  .tp-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .tp-grid { grid-template-columns: repeat(3, 1fr); }
  .techpartners-tabs { width: 100%; justify-content: center; }
}

/* ── PNG Logo Box ── */
.tp-logo-box {
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tp-logo-card:hover .tp-logo-box {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}
.tp-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  /* crisp SVG rendering */
  image-rendering: auto;
}
.tp-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  min-height: 128px;
  cursor: default;
}
.tp-logo-card:hover {
  background: rgba(14,165,233,0.07);
  border-color: rgba(14,165,233,0.25);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
}
.tp-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.2px;
  transition: color 0.3s;
}
.tp-logo-card:hover .tp-name { color: var(--text-primary); }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover { color: var(--text-primary); }
.lang-btn.active {
  background: rgba(14,165,233,0.2);
  color: var(--electric);
  box-shadow: 0 0 0 1px rgba(14,165,233,0.25);
}
.footer-phone-link {
  color: inherit;
  text-decoration: none;
}
.footer-phone-link:hover { color: var(--electric); }

[data-theme="light"] .lang-switch {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .lang-btn { color: rgba(15,23,42,0.5); }
[data-theme="light"] .lang-btn.active {
  background: rgba(14,165,233,0.12);
  color: #0369a1;
}

/* ── Certification Badge ── */
.tp-cert-badge {
  width: 60px;
  height: 60px;
  border: 2px solid;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  transition: transform 0.3s;
}
.tp-logo-card:hover .tp-cert-badge {
  transform: scale(1.08);
}
.tp-cert-top  { font-size: 10px; font-weight: 900; line-height: 1; }
.tp-cert-num  { font-size: 9px;  font-weight: 800; line-height: 1; }
.tp-cert-sub  { font-size: 6px;  font-weight: 700; line-height: 1; letter-spacing: 0.3px; }

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: rgba(255,255,255,0.12);
  color: var(--electric);
  border-color: rgba(14,165,233,0.3);
}

/* Icon visibility logic */
.icon-sun  { display: none; }
.icon-moon { display: block; }

/* ============================================
   LIGHT MODE
   ============================================ */
[data-theme="light"] {
  --navy-950: #f0f4f8;
  --navy-900: #f8fafc;
  --navy-800: #ffffff;
  --navy-700: #f1f5f9;
  --navy-600: #e2e8f0;
  --blue-500: #1d4ed8;
  --text-primary: rgba(15,23,42,0.95);
  --text-secondary: rgba(15,23,42,0.65);
  --text-muted: rgba(15,23,42,0.42);
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(14,165,233,0.4);
}

[data-theme="light"] body { background-color: #f8fafc; color: #0f172a; }

/* Toggle icon swap in light mode */
[data-theme="light"] .icon-sun  { display: block; }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="light"] .theme-toggle {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
  color: var(--text-secondary);
}
[data-theme="light"] .theme-toggle:hover { background: rgba(0,0,0,0.09); }

/* Navbar */
[data-theme="light"] .navbar { background: rgba(248,250,252,0.85); border-bottom-color: rgba(0,0,0,0.07); }
[data-theme="light"] .navbar.scrolled { background: rgba(248,250,252,0.95); }
[data-theme="light"] .nav-logo-text {
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
[data-theme="light"] .nav-logo-img {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
[data-theme="light"] .nav-link { color: rgba(15,23,42,0.65); }
[data-theme="light"] .nav-link:hover { color: #0f172a; }
[data-theme="light"] .btn-ghost { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.1); color: #0f172a; }
[data-theme="light"] .btn-ghost:hover { background: rgba(0,0,0,0.09); }
[data-theme="light"] .hamburger span { background: #0f172a; }
[data-theme="light"] .mobile-menu { background: #f8fafc; border-top-color: rgba(0,0,0,0.07); }
[data-theme="light"] .mobile-nav-link { color: rgba(15,23,42,0.65); }
[data-theme="light"] .mobile-nav-link:hover { color: #0f172a; }

/* Hero */
[data-theme="light"] .hero-bg::before {
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(14,165,233,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(59,130,246,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #e8f4ff 0%, #f8fafc 100%);
}
[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(14,165,233,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.06) 1px, transparent 1px);
}
[data-theme="light"] .hero-float-card {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .hero-v3-img {
  filter: drop-shadow(0 8px 24px rgba(29,78,216,0.25));
}

/* Cards & grid items */
[data-theme="light"] .sol-card,
[data-theme="light"] .usecase-item,
[data-theme="light"] .testi-card,
[data-theme="light"] .resource-card,
[data-theme="light"] .tp-logo-card {
  background: rgba(255,255,255,0.92);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
[data-theme="light"] .sol-card:hover,
[data-theme="light"] .usecase-item:hover,
[data-theme="light"] .testi-card:hover,
[data-theme="light"] .resource-card:hover,
[data-theme="light"] .tp-logo-card:hover {
  border-color: rgba(14,165,233,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
[data-theme="light"] .ind-item {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.07);
}

/* Price cards */
[data-theme="light"] .price-card {
  background: rgba(255,255,255,0.92);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
[data-theme="light"] .price-card.featured {
  background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(59,130,246,0.03));
  border-color: rgba(14,165,233,0.2);
}
[data-theme="light"] .price-separator { background: rgba(0,0,0,0.07); }

/* Dashboard section */
[data-theme="light"] .dashboard-mockup {
  background: rgba(255,255,255,0.95);
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}
[data-theme="light"] .dash-header,
[data-theme="light"] .dash-sidebar { background: #f8fafc; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .dash-stat,
[data-theme="light"] .dash-chart { background: #f1f5f9; border-color: rgba(0,0,0,0.07); }
[data-theme="light"] .dash-sidebar-item.active { background: rgba(14,165,233,0.1); }

/* Stats banner */
[data-theme="light"] .stats-banner {
  background: linear-gradient(135deg, rgba(14,165,233,0.05), rgba(59,130,246,0.03));
  border-color: rgba(14,165,233,0.1);
}
[data-theme="light"] .stat-value {
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Tech & Partners section */
[data-theme="light"] .techpartners-section { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.07); }
[data-theme="light"] .techpartners-tabs { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .tp-tab { color: rgba(15,23,42,0.5); }
[data-theme="light"] .tp-tab:hover { color: #0f172a; background: rgba(0,0,0,0.04); }
[data-theme="light"] .tp-logo-box { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
[data-theme="light"] .tp-logo-card:hover .tp-logo-box { box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
[data-theme="light"] .tp-divider { background: linear-gradient(90deg, transparent, rgba(14,165,233,0.15), transparent); }
[data-theme="light"] .tp-logo-inner { filter: none; opacity: 1; }

/* CTA section */
[data-theme="light"] .cta-inner {
  background: linear-gradient(135deg, rgba(14,165,233,0.05), rgba(59,130,246,0.03));
  border-color: rgba(14,165,233,0.12);
}

/* Resource cards */
[data-theme="light"] .resource-img { background: linear-gradient(135deg, #e2e8f0, #f1f5f9); }

/* Section badges */
[data-theme="light"] .section-badge { background: rgba(14,165,233,0.08); border-color: rgba(14,165,233,0.15); }

/* Scroll top */
[data-theme="light"] .scroll-top { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); }

/* Footer */
[data-theme="light"] .footer { background: #f1f5f9; border-top-color: rgba(0,0,0,0.08); }
[data-theme="light"] .footer-divider { background: rgba(0,0,0,0.08); }
[data-theme="light"] .social-btn { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .social-btn:hover { background: rgba(0,0,0,0.09); }

/* Sections backgrounds */
[data-theme="light"] .pricing-section { background: rgba(0,0,0,0.02); }
[data-theme="light"] .resources-section { background: transparent; }
[data-theme="light"] .solutions-section::before { background: linear-gradient(90deg, transparent, rgba(14,165,233,0.1), transparent); }

/* Floating WhatsApp in light mode */
[data-theme="light"] .wa-float { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }

[data-theme="light"] .v3-modal-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
[data-theme="light"] .v3-modal-close {
  background: rgba(0,0,0,0.06);
  color: #0f172a;
}
[data-theme="light"] .hero-pill {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.08);
}

/* ============================================
   MOCKUP ALIGNMENT – light/dark section rhythm
   ============================================ */

/* Light content sections */
.techpartners-section,
.solutions-section,
.usecases-section,
.testimonials-section,
.pricing-section,
.resources-section,
.cta-section {
  background: #f8fafc;
  color: #0f172a;
}
.techpartners-section,
.solutions-section,
.usecases-section,
.testimonials-section,
.pricing-section,
.resources-section {
  border-top-color: #e2e8f0;
  border-bottom-color: #e2e8f0;
}

.solutions-section .section-title,
.usecases-section .section-title,
.testimonials-section .section-title,
.pricing-section .section-title,
.resources-section .section-title {
  color: #0f172a;
}
.solutions-section .section-subtitle,
.usecases-section .section-subtitle,
.pricing-section .section-subtitle,
.cta-section .cta-subtitle {
  color: #64748b;
}

.solutions-section .section-badge,
.testimonials-section .section-badge,
.pricing-section .section-badge,
.resources-section .section-badge,
.cta-section .section-badge {
  background: rgba(14,165,233,0.1);
  border-color: rgba(14,165,233,0.2);
  color: #0284c7;
}

/* Solutions cards – white like mockup */
.solutions-section .sol-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(15,23,42,0.06);
  padding: 28px 24px 26px;
}
.solutions-section .sol-card:hover {
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 16px 40px rgba(14,165,233,0.12);
  transform: translateY(-5px);
}
.solutions-section .sol-title { color: #0f172a; }
.solutions-section .sol-desc { color: #64748b; }

/* Use cases – clean outline icons */
.usecases-section {
  background: #ffffff;
}
.usecases-section .usecase-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.usecases-section .usecase-item:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.usecases-section .usecase-icon {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}
.usecases-section .usecase-item:hover .usecase-icon {
  background: #dbeafe;
  color: #1d4ed8;
  border-color: #93c5fd;
}
.usecases-section .usecase-label { color: #334155; }
.usecases-section .industries-label { color: #64748b; }
.usecases-section .ind-item {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #475569;
}
.usecases-section .ind-ico {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}
.usecases-section .ind-item:hover {
  background: #e0f2fe;
  border-color: #7dd3fc;
  color: #0c4a6e;
}

/* Tech partners on light bg */
.techpartners-section {
  background: #f1f5f9;
}
.techpartners-section .techpartners-tabs {
  background: #ffffff;
  border-color: #e2e8f0;
}
.techpartners-section .tp-tab { color: #64748b; }
.techpartners-section .tp-tab:hover { color: #0f172a; background: #f1f5f9; }
.techpartners-section .tp-tab.active {
  background: rgba(14,165,233,0.12);
  color: #0284c7;
}
.techpartners-section .tp-logo-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 2px 10px rgba(15,23,42,0.04);
}
.techpartners-section .tp-logo-card:hover {
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 10px 28px rgba(14,165,233,0.1);
}
.techpartners-section .tp-name { color: #64748b; }
.techpartners-section .tp-logo-card:hover .tp-name { color: #0f172a; }
.techpartners-section .tp-divider {
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.25), transparent);
}

/* Testimonials light */
.testimonials-section .testi-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 28px rgba(15,23,42,0.05);
}
.testimonials-section .testi-company,
.testimonials-section .testi-name { color: #0f172a; }
.testimonials-section .testi-quote { color: #475569; }
.testimonials-section .testi-role { color: #94a3b8; }
.testimonials-section .testi-card::before { color: rgba(14,165,233,0.12); }
.testimonials-section .testi-dot { background: #cbd5e1; }
.testimonials-section .testi-dot.active { background: #0ea5e9; }

/* Pricing light */
.pricing-section {
  background: #ffffff;
}
.pricing-section::before {
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(14,165,233,0.08) 0%, transparent 60%);
}
.pricing-section .price-card {
  background: #f8fafc;
  border-color: #e2e8f0;
}
.pricing-section .price-card.featured {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  border-color: #38bdf8;
  box-shadow: 0 12px 40px rgba(14,165,233,0.15);
}
.pricing-section .price-plan-name { color: #64748b; }
.pricing-section .price-value { color: #0f172a; }
.pricing-section .price-feature { color: #475569; }
.pricing-section .price-desc { color: #94a3b8; }
.pricing-section .btn-ghost {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* Resources light */
.resources-section .resource-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 6px 24px rgba(15,23,42,0.05);
}
.resources-section .resource-title { color: #0f172a; }
.resources-section .resource-excerpt { color: #64748b; }

/* CTA on light page – keep blue glass card */
.cta-section {
  background: #f8fafc;
}
.cta-section .cta-title { color: #0f172a; }
.cta-section .cta-inner {
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  border-color: #bae6fd;
}
.cta-section .btn-ghost {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* Stats – soft blue bar like mockup */
.stats-banner {
  background: linear-gradient(135deg, #0c4a6e 0%, #075985 50%, #0369a1 100%);
  border-top: none;
  border-bottom: none;
}
.stats-banner .stat-value {
  background: linear-gradient(135deg, #ffffff, #e0f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-banner .stat-icon {
  background: rgba(255,255,255,0.14);
  color: #f0f9ff;
  border-color: rgba(255,255,255,0.28);
}
.stats-banner .stat-label { color: rgba(224,242,254,0.85); }

/* Platform stays dark (mockup) */
.platform-section {
  background: var(--navy-900);
}

/* Particles less intrusive on light sections */
#particles-canvas { opacity: 0.18; }


/* ── Prompt typography ── */
h1, .hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
h2, .section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
h3, .sol-title, .price-name, .resource-title {
  font-weight: 600;
}
.stat-value, .dash-metric, .price-amount {
  font-family: var(--font-mono);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Solution feature lists ── */
.sol-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sol-list li {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sol-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
}
.sol-card:hover .sol-icon-wrap { transform: translateY(-3px); }
.sol-icon-wrap { transition: transform var(--transition), background var(--transition), border-color var(--transition); }

/* ── Use case cards with description ── */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.usecase-item {
  align-items: flex-start;
  text-align: left;
  padding: 22px 18px;
}
.usecase-item .usecase-icon { margin-bottom: 4px; }
.usecase-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-top: 4px;
}
.usecase-link {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ── Industries section ── */
.industries-section {
  background: #ffffff;
  padding: var(--section-space) 0;
  border-top: 1px solid #e2e8f0;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.ind-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.ind-card:hover {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1e40af;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.ind-card .ind-ico {
  width: 36px; height: 36px;
}

/* ── How it works ── */
.how-section {
  background: #f8fafc;
  padding: var(--section-space) 0;
  border-top: 1px solid #e2e8f0;
}
.how-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.how-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #00c2ff, #2563eb, #0d4ed8);
  opacity: 0.35;
  z-index: 0;
}
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-num {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #00c2ff 0%, #155dfc 55%, #0d4ed8 100%);
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}
.how-step h3 {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}

/* ── Integrations ── */
.integrations-section {
  background: #ffffff;
  padding: var(--section-space) 0;
  border-top: 1px solid #e2e8f0;
}
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.int-card {
  padding: 20px 16px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  transition: var(--transition);
}
.int-card:hover {
  border-color: #93c5fd;
  color: #1d4ed8;
  background: #eff6ff;
  transform: translateY(-2px);
}
.int-card .int-ico {
  width: 40px; height: 40px;
  margin: 0 auto 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,0.1);
  color: #2563eb;
}
.integrations-cta { text-align: center; margin-top: 36px; }

/* ── Security ── */
.security-section {
  background: #061126;
  padding: var(--section-space) 0;
}
.security-section .section-title { color: #fff; }
.security-section .section-subtitle { color: rgba(255,255,255,0.65); }
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.sec-card {
  padding: 22px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.sec-card:hover {
  border-color: rgba(37,99,235,0.4);
  background: rgba(37,99,235,0.08);
}
.sec-card .sec-ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,0.15);
  color: #60a5fa;
  margin-bottom: 14px;
}
.sec-card h3 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}
.sec-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-section {
  background: #f8fafc;
  padding: var(--section-space) 0;
  border-top: 1px solid #e2e8f0;
}
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  color: #0f172a;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  font-family: inherit;
}
.faq-btn svg {
  flex-shrink: 0;
  transition: transform 220ms ease;
  color: #2563eb;
}
.faq-item.open .faq-btn svg { transform: rotate(180deg); }
.faq-panel {
  display: none;
  padding: 0 20px 18px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}
.faq-item.open .faq-panel { display: block; }

/* ── Demo form ── */
.demo-form {
  max-width: 640px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}
.demo-form .full { grid-column: 1 / -1; }
.demo-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}
.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: #0f172a;
  transition: border-color 220ms ease;
}
.demo-form input:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.demo-form .error {
  border-color: #ef4444;
}
.demo-form .field-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}
.demo-form .error + .field-error,
.demo-form .has-error .field-error { display: block; }
.demo-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
}
.demo-check input { width: auto; margin-top: 3px; }
.demo-form-msg {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: 12px;
  background: #ecfdf5;
  color: #047857;
  font-size: 14px;
  display: none;
}
.demo-form-msg.show { display: block; }

@media (max-width: 992px) {
  .how-timeline, .integrations-grid, .security-grid, .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .how-timeline::before { display: none; }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .how-timeline, .integrations-grid, .security-grid, .industries-grid, .usecases-grid, .demo-form {
    grid-template-columns: 1fr;
  }
}
