/* ══════════════════════════════════════════════════════
   LOMARIX — Design System
   Unleashing Autonomous Intelligence
   ══════════════════════════════════════════════════════ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ═══ CSS Variables ═══ */
:root {
  /* Backgrounds */
  --bg-primary: #02030a;
  --bg-card: #080d1a;
  --bg-card-alt: #0b1120;
  --bg-secondary: #060b15;

  /* Text */
  --text-primary: #f0f4ff;
  --text-secondary: #8899b0;
  --text-muted: #4b5980;

  /* Accents */
  --accent-indigo: #6366f1;
  --accent-cyan: #06b6d4;
  --accent-violet: #8b5cf6;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;
  --accent-green: #10b981;
  --accent-amber: #f59e0b;

  /* Glows */
  --glow-indigo: rgba(99, 102, 241, 0.4);
  --glow-cyan: rgba(6, 182, 212, 0.35);
  --glow-violet: rgba(139, 92, 246, 0.35);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(99, 102, 241, 0.15);
  --glass-border-bright: rgba(99, 102, 241, 0.35);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-width: 1320px;
  --section-pad: 120px;

  /* Motion */
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ═══ Typography ═══ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  font-weight: 700;
}

h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* ═══ Layout Utilities ═══ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 50px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* ═══ Particle Canvas ═══ */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* ═══ Section Glows ═══ */
.section-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.section-glow-blue {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  top: -100px;
  left: -150px;
}

.section-glow-indigo {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
}

.section-glow-cyan {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
  top: 0;
  left: -100px;
}

.section-glow-violet {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  top: 0;
  right: -100px;
}

.section-glow-purple {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
  top: -100px;
  left: -200px;
}

/* ═══ Animated Gradient Text ═══ */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gradient-animate-text {
  background: linear-gradient(90deg, #6366f1, #06b6d4, #8b5cf6, #06b6d4, #6366f1);
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s ease infinite;
}

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.85rem 0;
  transition: var(--transition);
  background: rgba(2, 3, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.logo span {
  display: none;
}

.nav-toggle {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-cyan);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.nav-cta-btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(99, 102, 241, 0.45);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
}

.btn-hero-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border-bright);
}

.btn-hero-outline:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.5);
}

.btn-product {
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gateway-btn {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.gateway-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.cortex-btn {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.cortex-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
}

.droidons-btn {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.droidons-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-individuals {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(168, 85, 247, 0.4);
}

.btn-individuals:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.6);
}

.btn-contact-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.hero-glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

.hero-glow-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 50px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-text h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
  font-weight: 800;
}

.hero-line-1,
.hero-line-3 {
  display: block;
  color: var(--text-primary);
}

.hero-line-2 {
  display: block;
}

.hero-subtitle {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50px;
}

/* Hero Platform Card */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-platform-card {
  background: linear-gradient(160deg, #080d1a 0%, #060b15 100%);
  border: 1px solid var(--glass-border-bright);
  border-radius: 20px;
  padding: 0;
  width: 100%;
  max-width: 460px;
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.05),
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(99, 102, 241, 0.1);
  overflow: hidden;
  animation: card-float 6s ease-in-out infinite;
}

@keyframes card-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.platform-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(99, 102, 241, 0.04);
}

.platform-card-dots {
  display: flex;
  gap: 0.4rem;
}

.platform-card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.platform-card-dots span:nth-child(1) {
  background: #ef4444;
}

.platform-card-dots span:nth-child(2) {
  background: #f59e0b;
}

.platform-card-dots span:nth-child(3) {
  background: #10b981;
}

.platform-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.platform-products {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.platform-product-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.platform-product-item:hover {
  background: rgba(99, 102, 241, 0.06);
  border-color: rgba(99, 102, 241, 0.2);
}

.pp-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gateway-icon {
  background: rgba(99, 102, 241, 0.15);
  color: #6366f1;
}

.cortex-icon {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
}

.droidons-icon {
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6;
}

.pp-info {
  flex: 1;
  min-width: 0;
}

.pp-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text-primary);
}

.pp-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}

.pp-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.pp-status.active {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.platform-card-footer {
  display: flex;
  justify-content: space-around;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(6, 182, 212, 0.03);
}

.platform-card-cta {
  justify-content: center;
  padding: 1.1rem;
  cursor: pointer;
  background: rgba(8, 12, 28, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-card-cta:hover {
  background: rgba(99, 102, 241, 0.08);
  border-top-color: rgba(99, 102, 241, 0.25);
}

.platform-card-cta-text {
  color: var(--accent-cyan);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-card-cta:hover .platform-card-cta-text {
  color: #fff;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

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

.platform-metric .metric-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.platform-metric>span:nth-child(2) {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.platform-metric .metric-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.hero-scroll-indicator span {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-cyan), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ═══════════════════════════════════
   STATS BAR
═══════════════════════════════════ */
.stats-bar {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.04) 0%, rgba(6, 182, 212, 0.04) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number span:last-child {
  font-size: 1.5rem;
  color: var(--accent-cyan);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--glass-border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════ */
.about-section {
  position: relative;
  z-index: 1;
}

.about-vision-container {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 5rem;
}

.about-vision-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.about-vision-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: var(--glass-border);
  margin-bottom: 5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-pillars {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  transition: var(--transition);
}

.pillar-item:hover {
  background: rgba(99, 102, 241, 0.05);
  border-color: rgba(99, 102, 241, 0.2);
}

.pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pillar-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.pillar-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 20px;
}

.about-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ═══════════════════════════════════
   AUDIENCE DIVIDERS
═══════════════════════════════════ */
.audience-divider {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.enterprise-divider {
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(99, 102, 241, 0.04) 40%,
      rgba(6, 182, 212, 0.04) 60%,
      transparent 100%);
}

.individuals-divider {
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(168, 85, 247, 0.05) 40%,
      rgba(236, 72, 153, 0.04) 60%,
      transparent 100%);
  margin-top: 4rem;
}

.audience-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.enterprise-badge {
  color: var(--accent-indigo);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.individuals-badge {
  color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.audience-divider h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.audience-divider p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Product nav */
.product-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.product-nav-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition);
}

.product-nav-item:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  color: var(--text-primary);
}

.pn-icon {
  font-size: 1.1rem;
}

.product-nav-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent-cyan));
  opacity: 0.3;
}

/* ═══════════════════════════════════
   PRODUCT SECTIONS
═══════════════════════════════════ */
.product-section {
  z-index: 1;
}

.product-section-alt {
  background: rgba(6, 182, 212, 0.01);
}

.product-layout {
  display: grid;
  gap: 5rem;
  align-items: center;
}

.product-layout-left {
  grid-template-columns: 1fr 1fr;
}

.product-layout-right {
  grid-template-columns: 1fr 1fr;
}

.product-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.product-number {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.2em;
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}

.gateway-tag {
  color: var(--accent-indigo);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.cortex-tag {
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.droidons-tag {
  color: var(--accent-violet);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.product-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.product-subtitle {
  font-size: 1.02rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Feature List — Gateway */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(99, 102, 241, 0.04);
  border-color: rgba(99, 102, 241, 0.12);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
}

.feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.feature-text span {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Product Image */
.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  width: 100%;
}

.product-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.gateway-glow-wrapper {
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.2), 0 30px 60px rgba(0, 0, 0, 0.5);
}

.gateway-glow-wrapper:hover {
  box-shadow: 0 0 100px rgba(99, 102, 241, 0.35), 0 30px 80px rgba(0, 0, 0, 0.6);
}

.cortex-glow-wrapper {
  box-shadow: 0 0 60px rgba(6, 182, 212, 0.2), 0 30px 60px rgba(0, 0, 0, 0.5);
}

.cortex-glow-wrapper:hover {
  box-shadow: 0 0 100px rgba(6, 182, 212, 0.35), 0 30px 80px rgba(0, 0, 0, 0.6);
}

.droidons-glow-wrapper {
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.2), 0 30px 60px rgba(0, 0, 0, 0.5);
}

.droidons-glow-wrapper:hover {
  box-shadow: 0 0 100px rgba(139, 92, 246, 0.35), 0 30px 80px rgba(0, 0, 0, 0.6);
}

.product-image-wrapper {
  transition: var(--transition);
}

/* Cortex Pillars */
.cortex-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.cortex-pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(6, 182, 212, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.12);
  border-radius: 10px;
  transition: var(--transition);
}

.cortex-pillar:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.25);
}

.cp-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cp-content strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.cp-content p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* Embedded Products */
.embedded-products {
  margin-bottom: 1.75rem;
}

.embedded-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.embedded-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.embedded-item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  align-items: flex-start;
  transition: var(--transition);
}

.embedded-item:hover {
  background: rgba(99, 102, 241, 0.05);
  border-color: rgba(99, 102, 241, 0.15);
}

.embedded-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.embedded-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.embedded-item p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* Tech Stack Row */
.tech-stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.tech-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  background: rgba(6, 182, 212, 0.07);
  border: 1px solid rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  border-radius: 50px;
}

/* Droidons Architecture */
.droidons-architecture {
  padding: 1.25rem;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  margin-bottom: 1.75rem;
}

.arch-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-violet);
  margin-bottom: 0.75rem;
}

.arch-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Industry Grid */
.industry-grid {
  margin-bottom: 1.75rem;
}

.industry-row-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ind-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  color: var(--accent-violet);
  border-radius: 50px;
  transition: var(--transition);
}

.ind-tag:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.35);
}

/* HITL Banner */
.hitl-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.hitl-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.hitl-banner strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.hitl-banner p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}

/* ═══════════════════════════════════
   CAPABILITIES SECTION
═══════════════════════════════════ */
.capabilities-section {
  z-index: 1;
}

.capabilities-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cap-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.cap-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cap-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.08);
}

.cap-card:hover::before {
  opacity: 1;
}

.cap-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.cap-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cap-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════
   INDIVIDUALS SECTION
═══════════════════════════════════ */
.individuals-section {
  position: relative;
  z-index: 1;
}

.individuals-label {
  color: var(--accent-purple) !important;
  background: rgba(168, 85, 247, 0.08) !important;
  border-color: rgba(168, 85, 247, 0.2) !important;
}

.individuals-heading {
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  max-width: 800px;
  margin-bottom: 1rem;
}

.individuals-subtitle {
  color: var(--text-secondary);
}

.individuals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ind-card {
  background: linear-gradient(160deg, #0d0a1a 0%, #08061a 100%);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: 18px;
  padding: 2rem;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.ind-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.08);
}

.ind-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.ind-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.ind-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

/* ═══════════════════════════════════
   WHY LOMARIX
═══════════════════════════════════ */
.why-section {
  z-index: 1;
}

.why-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  margin-bottom: 0.75rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-spring);
}

.why-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(99, 102, 241, 0.25);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  text-align: center;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-align: center;
}

.why-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════
   TECHNOLOGY SECTION
═══════════════════════════════════ */
.tech-section {
  padding: 3rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.01);
  position: relative;
  z-index: 1;
}

.tech-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.tech-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.tech-logo-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-right: 1px solid var(--glass-border);
  transition: var(--transition);
  white-space: nowrap;
}

.tech-logo-item:last-child {
  border-right: none;
}

.tech-logo-item:hover {
  color: var(--text-primary);
}

.tech-logo-icon {
  font-size: 1.25rem;
}

/* ═══════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════ */
.contact-section {
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-label {
  color: var(--accent-cyan) !important;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  margin-bottom: 1rem;
}

.contact-info>p {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.contact-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: var(--transition);
}

.enterprise-option:hover {
  background: rgba(99, 102, 241, 0.05);
  border-color: rgba(99, 102, 241, 0.2);
}

.individuals-option:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.2);
}

.co-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-option strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.contact-option p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.contact-email {
  color: var(--accent-cyan);
  font-size: 0.88rem;
}

.contact-email:hover {
  color: #38bdf8;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border-bright);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.08), 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  margin-bottom: 0;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(99, 102, 241, 0.04);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-field select option {
  background: #0a0f1e;
}

.form-field textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.6;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  background: #010208;
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
  height: 96px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.footer-address {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  display: block;
  margin-top: 0.25rem;
}

.footer-email:hover {
  color: #38bdf8;
}

.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-links-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

/* Footer Guide CTA Link */
.footer-guide-cta {
  text-align: center;
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 2rem;
}

.footer-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: var(--accent-cyan);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.footer-guide-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer-guide-link:hover::before {
  opacity: 1;
}

.footer-guide-link:hover {
  border-color: rgba(6, 182, 212, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15), 0 0 15px rgba(6, 182, 212, 0.1);
  color: #fff;
}

.footer-guide-icon {
  display: flex;
  align-items: center;
  color: var(--accent-indigo);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.footer-guide-link:hover .footer-guide-icon {
  color: var(--accent-cyan);
}

.footer-guide-text {
  position: relative;
  z-index: 1;
}

.footer-guide-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.footer-guide-link:hover .footer-guide-arrow {
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  font-size: 0.83rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

.footer-bottom-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════
   FLOATING CTA
═══════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.45);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 35px rgba(99, 102, 241, 0.6);
}

.floating-cta-arrow {
  transition: transform 0.3s ease;
}

.floating-cta:hover .floating-cta-arrow {
  transform: translateX(4px);
}

@keyframes float-pulse {

  0%,
  100% {
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.45);
  }

  50% {
    box-shadow: 0 6px 35px rgba(99, 102, 241, 0.65);
  }
}

.floating-cta.visible {
  animation: float-pulse 3s ease-in-out infinite;
}

.floating-cta.visible:hover {
  animation: none;
}

/* ═══════════════════════════════════
   EXIT POPUP
═══════════════════════════════════ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.exit-popup-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.exit-popup-card {
  background: linear-gradient(160deg, #080d1a 0%, #0b1120 100%);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 24px;
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 100px rgba(99, 102, 241, 0.15), 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.exit-popup-overlay.visible .exit-popup-card {
  transform: translateY(0) scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: var(--font-body);
}

.exit-popup-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.lead-magnet-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-violet));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.exit-popup-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.exit-popup-card>p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.exit-popup-card .form-field {
  margin-bottom: 0.85rem;
}

.exit-popup-card input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  outline: none;
}

.exit-popup-card input:focus {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.exit-popup-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ═══════════════════════════════════
   TOAST
═══════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 20000;
}

.toast.show {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

/* ═══════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
  transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
  transition-delay: 0.5s;
}

.cap-card,
.ind-card,
.why-card,
.feature-item,
.pillar-item,
.cortex-pillar {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.cap-card.animate-in,
.ind-card.animate-in,
.why-card.animate-in,
.feature-item.animate-in,
.pillar-item.animate-in,
.cortex-pillar.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.capabilities-grid .cap-card:nth-child(2),
.individuals-grid .ind-card:nth-child(2),
.why-grid .why-card:nth-child(2) {
  transition-delay: 0.08s;
}

.capabilities-grid .cap-card:nth-child(3),
.individuals-grid .ind-card:nth-child(3),
.why-grid .why-card:nth-child(3) {
  transition-delay: 0.16s;
}

.capabilities-grid .cap-card:nth-child(4),
.individuals-grid .ind-card:nth-child(4),
.why-grid .why-card:nth-child(4) {
  transition-delay: 0.24s;
}

.capabilities-grid .cap-card:nth-child(5),
.individuals-grid .ind-card:nth-child(5) {
  transition-delay: 0.32s;
}

.capabilities-grid .cap-card:nth-child(6),
.individuals-grid .ind-card:nth-child(6) {
  transition-delay: 0.40s;
}

.feature-item:nth-child(2) {
  transition-delay: 0.05s;
}

.feature-item:nth-child(3) {
  transition-delay: 0.1s;
}

.feature-item:nth-child(4) {
  transition-delay: 0.15s;
}

.feature-item:nth-child(5) {
  transition-delay: 0.2s;
}

/* ═══════════════════════════════════
   WHAT WE DO — 4 PILLARS
═══════════════════════════════════ */
.whatwedo-section {
  z-index: 1;
}

.whatwedo-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.whatwedo-card {
  background: linear-gradient(160deg, #080d1a 0%, #060b15 100%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-spring);
  display: flex;
  flex-direction: column;
}

.whatwedo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  transition: height 0.4s ease;
}

.whatwedo-card:nth-child(1)::before {
  background: linear-gradient(90deg, #6366f1, #06b6d4);
}

.whatwedo-card:nth-child(2)::before {
  background: linear-gradient(90deg, #06b6d4, #10b981);
}

.whatwedo-card:nth-child(3)::before {
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
}

.whatwedo-card:nth-child(4)::before {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.whatwedo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(99, 102, 241, 0.1);
}

.whatwedo-card:hover::before {
  height: 4px;
}

.whatwedo-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.whatwedo-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.whatwedo-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.whatwedo-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.whatwedo-card-features li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.whatwedo-card-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

.whatwedo-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-cyan);
  transition: var(--transition);
  margin-top: auto;
}

.whatwedo-card-link:hover {
  color: #38bdf8;
  gap: 0.65rem;
}

.upcoming-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #f59e0b;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  z-index: 10;
  pointer-events: none;
}

/* ═══════════════════════════════════
   HOW WE WORK — PROCESS TIMELINE
═══════════════════════════════════ */
.process-section {
  z-index: 1;
}

.process-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.75rem;
}

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg,
      var(--accent-indigo),
      var(--accent-cyan),
      var(--accent-violet),
      var(--accent-amber));
  opacity: 0.35;
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  position: relative;
  transition: var(--transition-spring);
}

.process-step:nth-child(1) .process-step-number {
  background: #02030a;
  border: 2px solid #6366f1;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.process-step:nth-child(2) .process-step-number {
  background: #02030a;
  border: 2px solid #06b6d4;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.process-step:nth-child(3) .process-step-number {
  background: #02030a;
  border: 2px solid #8b5cf6;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.process-step:nth-child(4) .process-step-number {
  background: #02030a;
  border: 2px solid #f59e0b;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.process-step:hover .process-step-number {
  transform: scale(1.08);
}

.process-step:nth-child(1):hover .process-step-number {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.process-step:nth-child(2):hover .process-step-number {
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.process-step:nth-child(3):hover .process-step-number {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.process-step:nth-child(4):hover .process-step-number {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.process-step-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ═══════════════════════════════════
   BENEFITS SECTION (replaces old capabilities)
═══════════════════════════════════ */
.benefits-section {
  z-index: 1;
}

.benefits-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.08);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Scroll animation for new elements */
.whatwedo-card,
.process-step,
.benefit-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.whatwedo-card.animate-in,
.process-step.animate-in,
.benefit-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.whatwedo-grid .whatwedo-card:nth-child(2),
.process-grid .process-step:nth-child(2),
.benefits-grid .benefit-card:nth-child(2) {
  transition-delay: 0.08s;
}

.whatwedo-grid .whatwedo-card:nth-child(3),
.process-grid .process-step:nth-child(3),
.benefits-grid .benefit-card:nth-child(3) {
  transition-delay: 0.16s;
}

.whatwedo-grid .whatwedo-card:nth-child(4),
.process-grid .process-step:nth-child(4),
.benefits-grid .benefit-card:nth-child(4) {
  transition-delay: 0.24s;
}

.benefits-grid .benefit-card:nth-child(5) {
  transition-delay: 0.32s;
}

.benefits-grid .benefit-card:nth-child(6) {
  transition-delay: 0.40s;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 992px) {
  :root {
    --section-pad: 80px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text h1 {
    align-items: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

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

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

  .hero-platform-card {
    max-width: 420px;
  }

  .stats-grid {
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 45%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-layout-left,
  .product-layout-right {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-layout-right .product-image {
    order: -1;
  }

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

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

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

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

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

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

  .process-grid::before {
    display: none;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--glass-border-bright);
    border-radius: 8px;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
  }

  .nav-wrapper {
    position: relative;
    justify-content: flex-start;
    padding: 0 1.5rem;
  }

  .nav-cta-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 88%;
    max-width: 380px;
    background: rgba(8, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-bright);
    border-radius: 16px;
    flex-direction: column;
    padding: 1.75rem;
    gap: 1.25rem;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-open .nav-links {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent-indigo);
    position: relative;
    border-radius: 2px;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent-indigo);
    left: 0;
    border-radius: 2px;
    transition: var(--transition);
  }

  .hamburger::before {
    top: -7px;
  }

  .hamburger::after {
    top: 7px;
  }

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

  .product-nav {
    flex-direction: column;
  }

  .product-nav-connector {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, var(--accent-indigo), var(--accent-cyan));
  }

  .tech-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tech-logo-item {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
}

/* ═══════════════════════════════════
   RESOURCES PAGE
═══════════════════════════════════ */
.resources-hero {
  padding: 160px 0 80px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 40%);
  position: relative;
  z-index: 1;
}

.resources-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.resources-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition-spring);
  cursor: pointer;
  display: block;
}

.blog-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.08);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
  display: block;
}

.blog-card-content {
  padding: 1.75rem;
}

.blog-card-tag {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-indigo);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.blog-card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Article Page */
.article-page {
  padding: 140px 0 80px;
  position: relative;
  z-index: 1;
}

.article-page .container {
  max-width: 820px;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-cyan);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.article-back-link:hover {
  text-decoration: underline;
}

.article-header {
  margin-bottom: 3rem;
}

.article-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.article-header .blog-card-tag {
  margin-bottom: 1.5rem;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #c8d4e8;
}

.article-body h2 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.article-body h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: #c8d4e8;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body strong {
  color: var(--text-primary);
}

/* ═══════════════════════════════════
   HEADER DROPDOWN MENU
   ═══════════════════════════════════ */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: inherit;
  opacity: 0.8;
  transition: var(--transition);
}

.nav-dropdown-toggle:hover {
  opacity: 1;
  color: var(--accent-cyan);
}

.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(8, 13, 26, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.75rem 0;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  color: var(--text-primary) !important;
  background: rgba(99, 102, 241, 0.08);
  padding-left: 1.75rem;
}

.coming-soon-inline {
  font-size: 0.65rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: var(--accent-purple);
  padding: 0.15rem 0.45rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* Show dropdown on hover */
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile responsive dropdown styling */
@media (max-width: 992px) {
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-dropdown-toggle {
    justify-content: center;
    padding: 0.5rem 0;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    box-shadow: none;
    padding: 0.5rem 0;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    transition: none;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }
}

/* ═══════════════════════════════════
   3-PRODUCT SHOWCASE TILE GRID
   ═══════════════════════════════════ */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}

.product-tile {
  background: linear-gradient(160deg, #080d1a 0%, #060b15 100%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3.75rem 2.25rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-spring);
  position: relative;
}

.product-tile .upcoming-badge {
  top: 0.85rem;
  right: 1.25rem;
}

.product-tile-img-wrapper {
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}

.product-tile-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-spring);
}

.product-tile:hover .product-tile-img-wrapper img {
  transform: scale(1.05);
}

.product-tile h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  text-align: center;
}

.product-tile-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  text-align: center;
}

.product-tile>p {
  text-align: center;
}

.product-tile-bullets {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 2rem 0;
}

.product-tile-bullets li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.product-tile-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

.product-tile-cta-row {
  margin-top: auto;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.product-tile-cta-row .btn-product {
  margin-top: 0;
  padding: 0.75rem 1.25rem;
  font-size: 0.88rem;
  flex: 1;
}

.product-tile-demo-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

.product-tile-demo-link:hover {
  color: var(--text-primary);
}

.product-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

@media (max-width: 992px) {
  .product-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════
   SPLIT SECTION (Why Transform)
   ═══════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.split-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.split-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.comparison-box {
  background: var(--bg-secondary);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent-cyan);
  border-top: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  border-radius: 4px 12px 12px 4px;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.comparison-box:hover {
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transform: translateX(4px);
}

.comparison-box strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.comparison-box span {
  font-size: 0.9rem;
}

.split-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.split-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-spring);
}

.split-image:hover img {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ═══════════════════════════════════
   PROBLEM SECTION (Story Arc)
   ═══════════════════════════════════ */
.problem-section {
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 60%);
}

.problem-grid-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.problem-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.problem-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.comparison-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: var(--transition-spring);
  position: relative;
}

.comparison-tile-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.comparison-tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-tile-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-tile-bullets li {
  font-size: 0.85rem;
  padding: 0.35rem 0;
  line-height: 1.4;
  color: var(--text-secondary);
}

.comparison-tile-bullets li.cross {
  padding-left: 1.2rem;
  position: relative;
}

.comparison-tile-bullets li.cross::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.comparison-tile-bullets li.check {
  padding-left: 1.2rem;
  position: relative;
  color: var(--text-primary);
}

.comparison-tile-bullets li.check::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

.tile-chatbot {
  border-color: rgba(239, 68, 68, 0.15);
  background: radial-gradient(circle at 100% 100%, rgba(239, 68, 68, 0.03) 0%, transparent 80%);
}

.tile-chatbot:hover {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.05);
}

.tile-droidon {
  border-color: rgba(6, 182, 212, 0.25);
  background: radial-gradient(circle at 0% 0%, rgba(6, 182, 212, 0.05) 0%, transparent 80%);
}

.tile-droidon:hover {
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(6, 182, 212, 0.1);
}

@media (max-width: 992px) {
  .problem-grid-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 580px) {
  .comparison-wrapper {
    grid-template-columns: 1fr;
  }
}

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

/* ═══════════════════════════════════
   PRODUCT DETAIL PAGES
   ═══════════════════════════════════ */
.product-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.product-hero-gateway {
  background: radial-gradient(circle at 50% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
}

.product-hero-cortex {
  background: radial-gradient(circle at 50% 30%, rgba(6, 182, 212, 0.12) 0%, transparent 60%);
}

.product-hero-droidons {
  background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
}

.product-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
}

.product-hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.product-detail-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.product-detail-grid.alt {
  direction: rtl;
}

.product-detail-grid.alt>* {
  direction: ltr;
}

.product-detail-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.product-detail-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2.25rem;
  position: relative;
  transition: var(--transition-spring);
}

.feature-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(99, 102, 241, 0.05);
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Code integrations wrapper */
.code-integration-box {
  background: #040812;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.5rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  color: #a5b4fc;
  overflow-x: auto;
  line-height: 1.5;
  margin: 1.5rem 0;
  position: relative;
}

.code-integration-box::before {
  content: 'JAVASCRIPT';
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 0.65rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.code-keyword {
  color: #f472b6;
}

.code-string {
  color: #34d399;
}

.code-comment {
  color: #64748b;
}

.code-method {
  color: #60a5fa;
}

/* Use cases section */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.use-case-card {
  background: linear-gradient(135deg, #090e1c 0%, #060a12 100%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.use-case-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--glass-border);
  transition: var(--transition);
}

.use-case-card:hover::after {
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent-cyan));
}

.use-case-card h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.use-case-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-detail-grid.alt {
    direction: ltr;
  }

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

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

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

  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════
   RESPONSIVE (SMALL)
═══════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --section-pad: 60px;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  .capabilities-grid,
  .individuals-grid {
    grid-template-columns: 1fr;
  }

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

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    flex: 0 0 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .logo img {
    height: 80px;
  }

  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.8rem;
    padding: 0.7rem 1.2rem;
  }
}


/* ═══════════════════════════════════
   LEAD MAGNET — Hero Link
═══════════════════════════════════ */
.hero-lead-magnet-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--accent-cyan);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition);
}

.hero-lead-magnet-link:hover {
  color: #60a5fa;
  text-underline-offset: 6px;
}


/* ═══════════════════════════════════
   LEAD MAGNET — Section
═══════════════════════════════════ */
.lead-magnet-section {
  min-height: auto !important;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
}

.lead-magnet-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
  border: 1px solid var(--glass-border-bright);
  border-radius: 20px;
  padding: 3rem;
  box-shadow:
    0 0 60px rgba(99, 102, 241, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lead-magnet-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.lead-magnet-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.lead-magnet-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lead-magnet-content>p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.lead-magnet-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lead-magnet-features li {
  font-size: 0.95rem;
  color: #d1d5db;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lead-magnet-features li:last-child {
  border-bottom: none;
}

.lead-magnet-form-wrapper {
  display: flex;
  justify-content: center;
}

.lead-magnet-form-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

.lead-magnet-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.lead-magnet-form-card>p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.lead-magnet-form-card .form-field {
  margin-bottom: 0.75rem;
}

.lead-magnet-form-card input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
}

.lead-magnet-form-card input:focus {
  border-color: var(--accent-cyan);
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.lead-magnet-btn {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1rem !important;
  padding: 0.85rem 1.5rem !important;
}

.lead-magnet-privacy {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .lead-magnet-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .lead-magnet-content h2 {
    font-size: 1.5rem;
  }

  .lead-magnet-form-card {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════
   LEAD MAGNET MODAL — Premium Glassmorphism
═══════════════════════════════════ */
.lead-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 3, 10, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  z-index: 30000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal-card {
  background: linear-gradient(165deg, rgba(10, 15, 32, 0.96) 0%, rgba(4, 6, 18, 0.98) 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 28px;
  padding: 3rem 2.75rem 2.5rem;
  width: 90%;
  max-width: 420px;
  position: relative;
  transform: scale(0.92) translateY(40px);
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
  box-shadow:
    0 32px 64px -16px rgba(0, 0, 0, 0.8),
    0 0 100px rgba(99, 102, 241, 0.08),
    0 0 200px rgba(6, 182, 212, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
  overflow: hidden;
}

.lead-modal-overlay.show .lead-modal-card {
  transform: scale(1) translateY(0);
}

/* Decorative glow orbs */
.lead-modal-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.4;
}

.lead-modal-glow-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  top: -60px;
  right: -40px;
  animation: glowPulse 4s ease-in-out infinite;
}

.lead-modal-glow-2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, transparent 70%);
  bottom: -50px;
  left: -30px;
  animation: glowPulse 4s ease-in-out infinite 2s;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

/* Close button */
.lead-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.15rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.lead-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg) scale(1.05);
}

/* Icon ring */
.lead-modal-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-modal-card:hover .lead-modal-icon-ring {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

/* Badge */
.lead-modal-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--accent-cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* Modal header */
.lead-modal-header {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.lead-modal-header h3 {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 70%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.lead-modal-header p {
  font-size: 0.88rem;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.55;
  max-width: 320px;
  margin: 0 auto;
}

/* Form */
.lead-modal-form {
  position: relative;
  z-index: 1;
}

/* Underline-style input fields */
.lead-modal-field {
  margin-bottom: 1.25rem;
  position: relative;
}

.lead-modal-field input {
  width: 100%;
  padding: 0.9rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  text-align: center;
  outline: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.01em;
}

.lead-modal-field input::placeholder {
  color: rgba(148, 163, 184, 0.5);
  transition: all 0.3s ease;
}

.lead-modal-field input:focus::placeholder {
  color: rgba(148, 163, 184, 0.3);
  transform: translateY(-2px);
}

/* Animated underline */
.lead-modal-field-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent-cyan));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.lead-modal-field input:focus~.lead-modal-field-line {
  left: 0;
  width: 100%;
}

/* Submit button */
.lead-modal-submit {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 14px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-indigo) 0%, #4f46e5 50%, var(--accent-cyan) 100%);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  box-shadow:
    0 4px 20px rgba(99, 102, 241, 0.3),
    0 0 40px rgba(6, 182, 212, 0.1);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.lead-modal-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lead-modal-submit:hover::before {
  opacity: 1;
}

.lead-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(99, 102, 241, 0.45),
    0 0 50px rgba(6, 182, 212, 0.2);
}

.lead-modal-submit:hover svg {
  transform: translateX(3px);
}

.lead-modal-submit svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.lead-modal-submit:active {
  transform: translateY(0);
}

.lead-modal-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Trust line */
.lead-modal-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.5);
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .lead-modal-card {
    padding: 2.5rem 1.75rem 2rem;
    max-width: 360px;
    border-radius: 22px;
  }

  .lead-modal-header h3 {
    font-size: 1.4rem;
  }

  .lead-modal-icon-ring {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .lead-modal-glow-1,
  .lead-modal-glow-2 {
    display: none;
  }
}

@media (max-width: 640px) {
  .footer-guide-link {
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    gap: 0.5rem;
  }
}
