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

/* --- CUSTOM VARIABLES / DESIGN SYSTEM --- */
:root {
  --bg-dark: #0B0D12;
  --bg-deep: #12151E;
  --card-bg: #161922;
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-glow: rgba(0, 87, 255, 0.4);

  /* GlowDigit engineering brand system */
  --primary: #0057FF;
  --primary-hover: #1A69FF;
  --secondary: #38BDF8;
  --secondary-hover: #0EA5E9;
  --accent: #1E2229;
  --accent-hover: #0F1117;

  /* Crisp High-Contrast Engineering Text Palette */
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dark: #64748B;

  /* Clean Engineering Borders & Surface Shades */
  --surface-border: rgba(255, 255, 255, 0.08);
  --surface-border-hover: rgba(0, 87, 255, 0.4);

  /* Gradients - Minimal & Crisp */
  --gradient-brand: linear-gradient(135deg, #0057FF 0%, #38BDF8 100%);
  --gradient-dark: linear-gradient(180deg, #0B0D12 0%, #12151E 100%);
  --gradient-glow: none;

  /* Precision Shadows */
  --shadow-neon: none;
  --shadow-neon-purple: none;
  --shadow-premium: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-premium-hover: 0 8px 30px rgba(0, 0, 0, 0.6);
  --blur-glass: none;

  /* Micro Motion Transitions */
  --transition-fast: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  background-image: none;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.subheading {
  font-family: 'Manrope', sans-serif;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* --- SELECTION --- */
::selection {
  background: rgba(30, 75, 181, 0.12);
  color: var(--text-main);
}

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

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.glow-overlay {
  position: absolute;
  pointer-events: none;
  background: radial-gradient(circle, rgba(229, 178, 66, 0.08) 0%, transparent 70%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: var(--transition-normal);
  cursor: pointer;
  border: 1px solid transparent;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-premium);
}

.btn-secondary:hover {
  background: var(--bg-deep);
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

/* --- NAVIGATION BAR --- */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
  /* No extra outer padding — nav-container handles it */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 2rem;
  /* Single consolidated padding */
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  display: inline-block;
}

/* --- BRAND SYSTEM STYLING --- */
.brand-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  /* Fade in on page load */
  animation: brandFadeIn 0.8s ease forwards;
}

@keyframes brandFadeIn {
  to {
    opacity: 1;
  }
}

.brand-icon {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.brand-container:hover .brand-icon {
  transform: scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #0F172A;
  /* Dark navy */
}

.brand-name span {
  background: linear-gradient(135deg, #0057FF 0%, #00AEEF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: filter 0.3s ease;
  display: inline-block;
}

.brand-container:hover .brand-name span {
  filter: drop-shadow(0 0 4px rgba(0, 174, 239, 0.45));
}

.brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #475569;
  text-transform: uppercase;
  margin-top: 1px;
}

.brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #94A3B8;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Tablet Styling */
@media (max-width: 1024px) {
  .brand-icon {
    height: 44px;
  }

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

  .brand-subtitle {
    font-size: 0.58rem;
  }
}

/* Mobile Styling */
@media (max-width: 768px) {
  .brand-icon {
    height: 38px;
  }

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

  .brand-subtitle {
    display: block !important;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .brand-tagline {
    display: block !important;
    font-size: 0.42rem;
    letter-spacing: 0.06em;
  }
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.30));
}

/* Footer Branding (Light Background) */
footer .glow-text {
  color: #0F172A;
  background: none;
  -webkit-text-fill-color: initial;
}

footer .digit-text {
  color: #0057FF;
  background: none;
  -webkit-text-fill-color: initial;
}

.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #64748B;
  text-transform: uppercase;
  margin-top: 1px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  /* Cyan sky blue active indicator */
  transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

/* Fix specificity issues for button inside header nav links */
.nav-links a.btn-primary {
  color: #ffffff !important;
  background: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.5rem 1.25rem !important;
  font-size: 0.82rem;
  border-radius: 8px;
  box-shadow: var(--shadow-neon);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.nav-links a.btn-primary:hover {
  color: #ffffff !important;
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1.5px);
  box-shadow: none;
}

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

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-normal);
}

@media (max-width: 1180px) {
  .nav-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .header-tagline-badge,
  .header-slogan {
    /* display: none; */
  }

  .logo-wordmark {
    font-size: 1.35rem;
  }
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  z-index: 1;
  /* Premium light background with subtle gradient */
  background: linear-gradient(145deg, #F0F6FF 0%, #F8FAFC 45%, #EEF4FF 100%);
}

/* Dot-grid texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 87, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

@keyframes heroGlowPulse {

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

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
  /* Top-align visual with headline */
  padding-top: 1rem;
}

.hero-content {
  position: relative;
}

.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(10, 91, 255, 0.05);
  /* Cyan tint background */
  border: 1px solid var(--primary);
  padding: 0.45rem 1.15rem;
  border-radius: 12px 0px;
  /* Precision corner cuts */
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  box-shadow: none;
}

.hero-tagline-badge .dot {
  color: var(--secondary);
  /* Red branding dot */
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* Hero Visual Graphic */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0.5rem;
  /* Optical alignment with headline cap */
}

/* 2.5D Framed Card */
.hero-nexus-frame {
  position: relative;
  width: 100%;
  perspective: 1200px;
}

.hero-nexus-card {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: visible;
  /* Allow glow/shadow to bleed out */
  transform: rotateX(4deg) rotateY(-8deg);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  animation: heroCardFloat 5s ease-in-out infinite;
}

.hero-nexus-card:hover {
  transform: rotateX(2deg) rotateY(-4deg) scale(1.01);
}

@keyframes heroCardFloat {

  0%,
  100% {
    transform: rotateX(4deg) rotateY(-8deg) translateY(0px);
  }

  50% {
    transform: rotateX(3deg) rotateY(-7deg) translateY(-10px);
  }
}

.hero-nexus-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1.5px solid rgba(0, 87, 255, 0.3);
  box-shadow:
    0 40px 80px rgba(0, 87, 255, 0.18),
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  filter: brightness(1.04) contrast(1.06) saturate(1.05);
}

/* Deep shadow plane behind the card */
.hero-nexus-shadow {
  position: absolute;
  bottom: -20px;
  left: 5%;
  right: 5%;
  height: 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 87, 255, 0.22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
  transform: translateZ(-30px);
}

/* Floating badge label top-left */
.hero-nexus-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  background: rgba(0, 10, 40, 0.9);
  border: 1px solid rgba(0, 87, 255, 0.5);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.65rem;
  color: #93C5FD;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 87, 255, 0.2);
  white-space: nowrap;
  z-index: 10;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

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

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

/* Trust strip below the image */
.hero-nexus-trust {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
  margin-top: 1.25rem;
  letter-spacing: 0.02em;
}

.visual-globe-wrap {
  position: relative;
  width: 420px;
  height: 420px;
}

.visual-globe-outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 61, 165, 0.35);
  /* Elegant dashed red outer ring */
  position: absolute;
  top: 0;
  left: 0;
  animation: rotate 45s linear infinite;
}

.visual-globe-middle {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 61, 165, 0.22);
  /* Clean solid red middle ring */
  position: absolute;
  top: 10%;
  left: 10%;
  animation: rotateReverse 30s linear infinite;
}

.visual-globe-inner {
  width: 60%;
  height: 60%;
  border-radius: 50%;
  border: 2px dotted rgba(0, 61, 165, 0.45);
  /* Visible dotted red inner ring */
  position: absolute;
  top: 20%;
  left: 20%;
  animation: rotate 20s linear infinite;
}

.visual-glow-core {
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 61, 165, 0.06) 0%, transparent 70%);
  /* Soft red focal glow */
  position: absolute;
  top: 32.5%;
  left: 32.5%;
  filter: blur(15px);
  animation: pulse-core 4s ease-in-out infinite;
}

.visual-card {
  position: absolute;
  background: #ffffff;
  /* Crisp white */
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* Clean thin border */
  border-radius: 12px 0px;
  /* Custom asymmetric cut to match the theme signature */
  padding: 1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-normal);
  z-index: 5;
}

.visual-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary);
  box-shadow: var(--shadow-premium-hover), 0 0 15px rgba(10, 91, 255, 0.05);
}

.visual-card-1 {
  top: 15%;
  left: -10%;
  animation: float1 6s ease-in-out infinite;
}

.visual-card-2 {
  bottom: 15%;
  right: -5%;
  animation: float2 7s ease-in-out infinite;
}

.visual-card-3 {
  bottom: 45%;
  right: -15%;
  animation: float3 8s ease-in-out infinite;
}

.vc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(30, 75, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 1.2rem;
}

.vc-icon-purple {
  background: rgba(0, 61, 165, 0.08);
  color: var(--secondary);
}

.vc-details h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.vc-details p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- SECTION GENERAL STYLE --- */
section {
  position: relative;
  padding: 4.5rem 0;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.section-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #1E2229;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

#services {
  background-color: var(--bg-deep);
  /* Cool gray industrial block */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

#contact {
  background-color: var(--bg-deep);
  /* Cool gray industrial block */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 2.5rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-premium);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 61, 165, 0.01) 0%, rgba(10, 91, 255, 0.02) 100%);
  opacity: 0;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-glow);
  box-shadow: var(--shadow-premium-hover);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  /* Brand deep red */
  font-size: 1.6rem;
  margin-bottom: 2rem;
  transition: var(--transition-normal);
  position: relative;
  z-index: 2;
  box-shadow: none;
}

.service-card:hover .service-icon {
  background: var(--primary);
  /* Cyan transition */
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(10, 91, 255, 0.25);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.service-bullets {
  list-style: none;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.service-bullets li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.service-bullets li::before {
  content: '✓';
  color: var(--primary);
  /* Cyan check indicators */
  font-weight: bold;
}

.service-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  /* Cyan default */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  position: relative;
  z-index: 2;
}

.service-link span {
  transition: var(--transition-fast);
}

.service-card:hover .service-link {
  color: var(--secondary);
  /* Red hover */
}

.service-card:hover .service-link span {
  transform: translateX(5px);
}

/* --- EMBEDDED SYSTEM SHOWCASE (REAL-TIME CONSOLE) --- */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.showcase-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.embedded-section {
  background: var(--bg-dark);
  /* Crisp corporate white background block */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.showcase-console {
  background: #0d1117;
  /* GitHub dark-slate console */
  border: 1px solid rgba(10, 91, 255, 0.15);
  /* Sky-cyan border */
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  /* Softened shadow */
  overflow: hidden;
  font-family: monospace;
}

.console-header {
  background: #161b22;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-dots {
  display: flex;
  gap: 6px;
}

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

.console-dots .red {
  background-color: #ff5f56;
}

.console-dots .yellow {
  background-color: #ffbd2e;
}

.console-dots .green {
  background-color: #27c93f;
}

.console-title {
  color: #8b949e;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.console-status {
  font-size: 0.75rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse-glow 1.5s infinite;
}

.console-body {
  padding: 1.25rem;
  height: 280px;
  overflow-y: auto;
  color: #a5f3fc;
  font-size: 0.85rem;
  line-height: 1.5;
}

.console-line {
  margin-bottom: 0.4rem;
  display: flex;
  gap: 0.75rem;
}

.console-line .timestamp {
  color: #818cf8;
  /* Beautiful soft blue-violet */
}

.console-line .log-tag {
  color: #38bdf8;
  font-weight: bold;
}

.console-line .msg {
  color: #f1f5f9;
}

.console-line .success {
  color: #4ade80;
}

.console-line .warning {
  color: #fbbf24;
}

/* --- INTERACTIVE SOLUTIONS PLANNER (BUDGET vs DEPLOYMENT) --- */
.planner-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.tab-btn.active {
  background: var(--gradient-brand);
  color: #060913;
  border-color: transparent;
  box-shadow: var(--shadow-neon);
}

.planner-container {
  background: var(--card-bg);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 3rem;
  max-width: 960px;
  margin: 0 auto;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.planner-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.planner-panel.active {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  opacity: 1;
  transform: translateY(0);
}

/* Panel Layout Details */
.planner-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.planner-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

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

.selector-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.selector-box:hover {
  border-color: var(--primary);
  background: rgba(0, 242, 254, 0.02);
}

.selector-box.selected {
  background: rgba(0, 242, 254, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.selector-box h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.selector-box p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sliders */
.range-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary);
  transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 60px;
  text-align: right;
  color: var(--primary);
}

/* Feature Checklist */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.feature-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.feature-checkbox:hover {
  background: rgba(255, 255, 255, 0.03);
}

.feature-checkbox input {
  accent-color: var(--primary);
  cursor: pointer;
}

.feature-checkbox.active {
  border-color: var(--primary-hover);
  background: rgba(0, 242, 254, 0.02);
}

/* Summary Card Output */
.planner-summary {
  background: rgba(2, 4, 9, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.summary-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.summary-price-box {
  margin-bottom: 2rem;
}

.summary-price-box .price {
  font-size: 3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

.summary-price-box .period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-details {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-details li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

.summary-details li span.val {
  color: #ffffff;
  font-weight: 600;
}

/* Team Deploy Panel specifics */
.staff-counter-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.staff-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
}

.staff-info h4 {
  font-size: 0.9rem;
}

.staff-info p {
  font-size: 0.75rem;
  color: var(--text-dark);
}

.staff-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.control-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.control-btn:hover {
  background: var(--primary);
  color: #060913;
  border-color: transparent;
}

.staff-count {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

/* --- CLIENT LEAD SUBMISSION SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.contact-item-details h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.contact-item-details p,
.contact-item-details a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-item-details a:hover {
  color: var(--secondary);
}

/* Animated operations network */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--card-border);
  position: relative;
  background:
    radial-gradient(circle at 50% 42%, rgba(10, 91, 255, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 248, 0.96));
}

.network-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.network-visual::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image:
    linear-gradient(rgba(10, 91, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 91, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotate(-18deg);
  animation: network-grid-drift 18s linear infinite;
}

.network-ring {
  position: absolute;
  left: 50%;
  top: 34%;
  border: 1px solid rgba(10, 91, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 122px;
  height: 122px;
  animation: network-pulse-ring 3.8s ease-in-out infinite;
}

.ring-two {
  width: 176px;
  height: 176px;
  border-style: dashed;
  animation: rotate 24s linear infinite;
}

.network-route {
  position: absolute;
  height: 2px;
  width: 38%;
  max-width: 190px;
  background: linear-gradient(90deg, transparent, rgba(10, 91, 255, 0.45), transparent);
  top: 34%;
  left: 50%;
  transform-origin: left center;
  opacity: 0.72;
  overflow: hidden;
}

.network-route::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 100%;
  left: -60px;
  background: linear-gradient(90deg, transparent, #b9913c, transparent);
  animation: signal-travel 2.6s ease-in-out infinite;
}

.route-one {
  transform: rotate(-28deg);
}

.route-two {
  transform: rotate(31deg);
}

.network-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 6px rgba(10, 91, 255, 0.08), 0 12px 22px rgba(10, 91, 255, 0.18);
  z-index: 2;
}

.node-main {
  left: 50%;
  top: 34%;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-color: #ffffff;
  transform: translate(-50%, -50%);
  animation: pulse-glow 2.2s infinite;
}

.node-one {
  left: 24%;
  top: 35%;
  animation: node-float 4s ease-in-out infinite;
}

.node-two {
  right: 24%;
  top: 35%;
  animation: node-float 4.8s ease-in-out infinite;
}

.node-three {
  right: 30%;
  bottom: 22%;
  border-color: var(--secondary);
  animation: node-float 5.2s ease-in-out infinite;
}

.network-copy {
  position: relative;
  z-index: 3;
  width: min(82%, 420px);
  margin-top: 6.4rem;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.network-copy span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
}

.network-copy strong {
  display: block;
  margin-top: 0.25rem;
  font-family: 'Rubik', sans-serif;
  font-size: 1.15rem;
  color: var(--text-main);
}

.network-copy p {
  margin: 0.35rem auto 0;
  max-width: 360px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Contact Form styling */
.contact-form-wrap {
  background: var(--card-bg);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--card-border);
  border-radius: 24px 0px;
  /* Custom asymmetric geometric corner cuts */
  padding: 3rem;
  box-shadow: var(--shadow-premium);
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px 0px;
  /* Custom asymmetric geometric corner cuts */
  padding: 0.85rem 1rem;
  color: var(--text-main);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(10, 91, 255, 0.15);
  /* Sky-cyan focus ring */
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  border: none;
}

/* Form success overlay */
.form-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.5rem;
  border-radius: 6px;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* --- FOOTER --- */
footer {
  background: #F8FAFC;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 5rem 0 2rem 0;
  color: #0F172A;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 87, 255, 0.3) 30%, rgba(56, 189, 248, 0.3) 70%, transparent);
  opacity: 0.8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-logo-desc h3 {
  margin-bottom: 1.25rem;
  color: #0F172A;
}

.footer-logo-desc p {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 340px;
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.social-btn svg {
  display: block;
  width: 16px;
  height: 16px;
  stroke: #475569;
  fill: none;
  transition: stroke 0.2s ease;
}

.social-btn:hover {
  background: #0057FF;
  border-color: #0057FF;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.25);
}

.social-btn:hover svg {
  stroke: #FFFFFF;
}

.footer-col h4 {
  font-size: 0.72rem;
  color: #0057FF;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: #0057FF;
  border-radius: 1px;
  opacity: 0.6;
}

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

.footer-col ul a {
  text-decoration: none;
  color: #475569;
  font-size: 0.875rem;
  transition: color 0.15s ease, padding-left 0.15s ease;
  display: inline-block;
}

.footer-col ul a:hover {
  color: #0057FF;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 1.75rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748B;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.01em;
}

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

.footer-bottom-links a {
  text-decoration: none;
  font-size: 13px;
  color: #64748B;
  transition: color 0.15s ease;
}

.footer-bottom-links a:hover {
  color: #0057FF;
}

/* --- BYTEBEAM-INSPIRED SUBPAGES --- */
.bb-page {
  background: #ffffff;
}

.bb-hero {
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(10, 91, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.bb-hero h1 {
  max-width: 980px;
  margin: 1rem 0 1.25rem;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: #111827;
}

.bb-hero p {
  max-width: 760px;
  color: #4b5563;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.bb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.bb-split {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.bb-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: start;
}

.bb-two-col h2,
.bb-process h2 {
  margin-top: 0.75rem;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.bb-two-col p {
  color: #4b5563;
  font-size: 1.12rem;
  line-height: 1.85;
}

.bb-card-section {
  padding: 5rem 0;
}

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

.bb-card {
  min-height: 260px;
  padding: 1.75rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.045);
  transition: var(--transition-normal);
}

.bb-card:hover {
  border-color: rgba(10, 91, 255, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.075);
}

.bb-card span {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.bb-card h3 {
  margin-bottom: 0.8rem;
  color: #111827;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.bb-card p {
  color: #5b6472;
  line-height: 1.75;
}

.bb-process {
  padding: 5rem 0 6rem;
  background: #f7fbff;
}

.bb-timeline,
.bb-job-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

.bb-timeline div,
.bb-job-list article {
  padding: 1.35rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  background: #ffffff;
}

.bb-timeline strong,
.bb-job-list strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #111827;
  font-size: 1.05rem;
}

.bb-timeline p,
.bb-job-list span {
  color: #5b6472;
  line-height: 1.7;
}

.bb-job-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bb-job-list a {
  flex: 0 0 auto;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.bb-job-list a:hover {
  color: var(--secondary);
}

.career-edit-note {
  max-width: 720px;
  margin-top: 0.8rem;
  color: #5b6472;
  line-height: 1.7;
}

.career-edit-note strong {
  color: #111827;
}

.career-empty-state {
  border-style: dashed !important;
}

@media (max-width: 960px) {

  .bb-two-col,
  .bb-grid,
  .bb-timeline {
    grid-template-columns: 1fr;
  }

  .bb-hero {
    padding: 2.5rem 0 3rem;
  }
}

@media (max-width: 640px) {
  .bb-job-list article {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes float1 {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(1deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes float2 {
  0% {
    transform: translateY(0) rotate(0deg);
  }

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

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes float3 {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.02);
  }

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

@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(229, 178, 66, 0.5);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(229, 178, 66, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(229, 178, 66, 0);
  }
}

@keyframes pulse-core {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

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

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

@keyframes network-grid-drift {
  from {
    transform: rotate(-18deg) translate3d(0, 0, 0);
  }

  to {
    transform: rotate(-18deg) translate3d(42px, 42px, 0);
  }
}

@keyframes network-pulse-ring {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.55;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
  }
}

@keyframes signal-travel {
  0% {
    left: -60px;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes node-float {

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

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

/* SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- RESPONSIVENESS MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-desc {
    margin: 0 auto 2.5rem auto;
  }

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

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

  .hero-visual {
    margin-top: 2rem;
  }

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

  .planner-panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .planner-summary {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 46px;
  }

  .footer-brand-logo-img {
    height: 48px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: var(--blur-glass);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition-normal);
    box-shadow: -10px 0 30px rgba(31, 42, 68, 0.05);
    border-left: 1px solid var(--card-border);
    padding: 2rem;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-title {
    font-size: 2.6rem;
  }

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

  .planner-container {
    padding: 1.5rem;
  }

  .contact-form-wrap {
    padding: 2rem;
  }

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

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

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

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

  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .calc-grid,
  .features-list {
    grid-template-columns: 1fr;
  }

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

/* ==========================================
   SAAS PROMO BANNER
   ========================================== */
.saas-promo-banner {
  max-width: 1280px;
  width: calc(100% - 32px);
  margin: 10px auto;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  background: linear-gradient(90deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  position: relative;
  z-index: 1100;
  color: #0F172A !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Fade-in */
@keyframes saasBannerFade {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.saas-promo-banner:not(.hiding) {
  animation: saasBannerFade 0.5s ease-out forwards;
}

.saas-promo-banner.hiding {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

body.banner-closed .saas-promo-banner {
  display: none;
}

.saas-banner-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 16px;
}

.saas-banner-section {
  display: flex;
  align-items: center;
}

.saas-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.saas-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1px;
}

.saas-left-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.1;
}

.saas-left-badge-row {
  display: flex;
  align-items: center;
  line-height: 1;
}

.saas-left-price-row {
  display: flex;
  align-items: center;
  line-height: 1.1;
}

.saas-left .saas-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F172A;
}

.saas-left .saas-badge-green {
  font-size: 0.58rem;
  margin-left: 6px;
}

.saas-center-divider {
  width: 1px;
  height: 24px;
  background: rgba(15, 23, 42, 0.12);
  margin: 0 12px;
}

.saas-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.saas-center-heading-row {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.1;
}

.saas-center-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
}

.saas-center-desc-row {
  display: flex;
  align-items: center;
  line-height: 1.1;
}

.saas-desc-text {
  font-size: 0.72rem;
  color: #64748B;
}

.saas-desc-laptop {
  display: none;
}

.saas-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saas-cta {
  background: #0057FF;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.saas-cta:hover {
  background: #0046CC;
  transform: translateY(-1px);
}

/* Close */
.saas-close {
  background: none;
  border: none;
  color: #64748B;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s;
}

.saas-close:hover {
  color: #0F172A;
}

.saas-icon {
  font-size: 0.95rem;
}

.saas-badge {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 1.5px 5px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.saas-badge-red {
  background: #e11d48;
  color: #ffffff;
  border: none;
}

.saas-badge-blue {
  background: #0066cc;
  color: #ffffff;
  border: none;
}

.saas-badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Mobile View Hidden by Default */
.saas-banner-mobile {
  display: none;
}

/* Responsive Rules */

/* Laptop View (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .saas-desc-full {
    display: none;
  }

  .saas-desc-laptop {
    display: inline;
  }
}

/* Tablet View (768px to 991px) */
@media (max-width: 991px) and (min-width: 769px) {
  .saas-center-desc-row {
    display: none;
  }

  .saas-center {
    gap: 0;
  }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .saas-banner-desktop {
    display: none;
  }

  .saas-banner-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    position: relative;
  }

  .saas-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
  }

  .saas-mobile-row {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .saas-green-text {
    color: #6ee7b7;
    font-weight: 700;
  }

  .saas-mobile-row-cta {
    margin-top: 4px;
  }

  .saas-cta-mobile {
    display: inline-flex;
    background: #ffffff;
    color: #001B6E;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;
  }

  .saas-close-mobile {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    padding: 4px;
    cursor: pointer;
    align-self: flex-start;
    margin-top: -4px;
  }
}

/* ==========================================
   WEB DEVELOPMENT SOLUTIONS & PACKAGES SECTION
   ========================================== */
.packages-section {
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.package-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-premium);
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 61, 165, 0.01) 0%, rgba(10, 91, 255, 0.02) 100%);
  opacity: 0;
  transition: var(--transition-normal);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-glow);
  box-shadow: var(--shadow-premium-hover), 0 10px 30px rgba(10, 91, 255, 0.05);
}

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

.package-card.popular {
  border-color: var(--secondary);
  box-shadow: 0 10px 40px rgba(0, 61, 165, 0.06);
}

.package-card.popular:hover {
  box-shadow: 0 15px 45px rgba(0, 61, 165, 0.12);
}

.package-badge-popular {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--secondary);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 8px 0px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: var(--shadow-neon-purple);
}

.package-header {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.package-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.package-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.package-price {
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 2;
}

.package-price .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  vertical-align: super;
}

.package-price .amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.package-price .period {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.package-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.package-features li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.package-features li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-cta {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ==========================================
   INTEGRATIONS SHOWCASE
   ========================================== */
.integrations-section {
  background-color: var(--bg-deep);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.integration-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px 0px;
  /* Asymmetric cut matching theme */
  padding: 2.25rem 2rem;
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-premium);
}

.integration-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-glow);
  box-shadow: var(--shadow-premium-hover);
}

.integration-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.5rem;
  border-radius: 10px 0px;
  background: rgba(10, 91, 255, 0.04);
  border: 1px solid rgba(10, 91, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-normal);
}

.integration-card:hover .integration-icon {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(10, 91, 255, 0.2);
}

.integration-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.integration-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   RESPONSIVENESS FOR NEW SECTIONS
   ========================================== */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 4rem;
  }

  .integrations-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .package-card {
    padding: 2.25rem 1.25rem;
    /* Reduced padding on tiny viewports so text doesn't overflow */
  }

  .package-price .amount {
    font-size: 2.25rem;
    /* Keep pricing compact and fully visible on narrow mobile browsers */
  }
}

/* ==========================================
   FORM ACTIONS & WHATSAPP BUTTON STYLES
   ========================================== */
.form-actions {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  margin-top: 1.5rem;
}

.form-actions .btn {
  flex: 1;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: 1px solid #25D366;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: -5px;
  bottom: -5px;
  border-right: 2px solid #25D366;
  border-bottom: 2px solid #25D366;
  border-radius: 0px 0px 20px 0px;
  z-index: -1;
  transition: var(--transition-normal);
}

.btn-whatsapp:hover {
  background: #128c7e;
  /* WhatsApp dark green branding hover */
  border-color: #128c7e;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp:hover::after {
  border-color: #128c7e;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 580px) {
  .form-actions {
    flex-direction: column;
    gap: 1.25rem;
  }
}

/* ==========================================
   ENTERPRISE SAAS VISUAL REFINEMENT
   ========================================== */
:root {
  --bg-dark: #ffffff;
  --bg-deep: #f7f9fc;
  --card-bg: #ffffff;
  --card-border: rgba(15, 23, 42, 0.1);
  --card-border-glow: rgba(10, 91, 255, 0.28);
  --primary: #0A5BFF;
  --primary-hover: #003DA5;
  --secondary: #F7B500;
  --secondary-hover: #d99a00;
  --accent-blue: #0A5BFF;
  --text-main: #111827;
  --text-muted: #5b6678;
  --text-dark: #8290a3;
  --gradient-brand: linear-gradient(135deg, #003DA5 0%, #0A5BFF 100%);
  --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  --shadow-neon: 0 14px 28px rgba(10, 91, 255, 0.18);
  --shadow-neon-purple: 0 14px 28px rgba(30, 34, 41, 0.18);
  --shadow-premium: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-premium-hover: 0 26px 70px rgba(15, 23, 42, 0.14);
}

body {
  background: #ffffff;
}

header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.nav-container {
  padding: 0.85rem 2rem;
}

.nav-links {
  gap: 1.75rem;
}

.nav-links a {
  color: #475569;
  font-size: 0.88rem;
}

.btn,
.nav-links a.btn-primary {
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.btn::after,
.nav-links a.btn-primary::after,
.btn-whatsapp::after {
  display: none !important;
}

.btn-primary {
  background: linear-gradient(135deg, #0b1f3a, #0d47a1);
  border-color: rgba(10, 91, 255, 0.4);
  box-shadow: 0 16px 32px rgba(10, 91, 255, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #07172e, #0a367a);
  box-shadow: 0 20px 42px rgba(10, 91, 255, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.14);
  color: #0f172a;
}

.btn-secondary:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.promo-banner {
  background: linear-gradient(90deg, #0b1f3a 0%, #0d47a1 55%, #b9913c 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.hero {
  min-height: 760px;
  background:
    linear-gradient(120deg, #ffffff 0%, #f6f9fd 48%, #edf3fa 100%);
}

.hero::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 91, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 91, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
  pointer-events: none;
}

.hero-tagline-badge,
.section-tag {
  color: var(--secondary);
}

.hero-tagline-badge {
  background: rgba(30, 34, 41, 0.08);
  border-color: rgba(30, 34, 41, 0.28);
  border-radius: 999px;
}

.hero-title {
  color: #0b1220;
  letter-spacing: -0.03em;
}

.hero-desc,
.section-subtitle {
  color: #526071;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.visual-globe-wrap {
  filter: drop-shadow(0 24px 55px rgba(10, 91, 255, 0.14));
}

.visual-globe-outer,
.visual-globe-middle,
.visual-globe-inner {
  border-color: rgba(10, 91, 255, 0.22);
}

.visual-glow-core {
  background: radial-gradient(circle, rgba(30, 34, 41, 0.34) 0%, rgba(10, 91, 255, 0.12) 48%, transparent 72%);
}

.visual-card,
.service-card,
.package-card,
.integration-card,
.contact-form-wrap {
  border-radius: 14px;
  border-color: rgba(15, 23, 42, 0.09);
  box-shadow: var(--shadow-premium);
}

.visual-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

#services,
#contact {
  background: linear-gradient(180deg, #eef3f8 0%, #f7f9fc 100%);
}

.service-card,
.package-card,
.integration-card,
.contact-form-wrap {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(10, 91, 255, 0.05), rgba(30, 34, 41, 0.04));
}

.service-card::after,
.package-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0.76;
}

.service-card:hover,
.package-card:hover,
.integration-card:hover {
  transform: translateY(-7px);
}

.service-icon,
.integration-icon,
.contact-item-icon,
.vc-icon {
  border-radius: 12px;
  background: #eef5ff;
  color: var(--primary);
}

.package-card.popular {
  border-color: rgba(30, 34, 41, 0.52);
  box-shadow: 0 22px 62px rgba(30, 34, 41, 0.16);
}

.package-badge-popular {
  background: linear-gradient(135deg, #b9913c, #d7b667);
  color: #111827;
  border-radius: 999px;
}

.showcase-console {
  border-radius: 16px;
  border-color: rgba(30, 34, 41, 0.22);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

.map-wrap {
  background:
    radial-gradient(circle at 50% 42%, rgba(10, 91, 255, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 248, 0.96));
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 10px;
  background: #f8fafc;
}

footer {
  background: #F8FAFC;
}

@media (max-width: 768px) {
  .nav-links {
    background: rgba(255, 255, 255, 0.98);
    right: 0;
    transform: translateX(100%);
    display: none;
  }

  .nav-links.active {
    display: flex;
    transform: translateX(0);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.3rem;
    line-height: 1.14;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  .hero-stats {
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 3.25rem;
  }

  .hero-title {
    font-size: 2.05rem;
    max-width: 100%;
  }

  .hero-title br {
    display: none;
  }

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

  .hero-tagline-badge {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    padding: 0.42rem 0.9rem;
  }

  .hero-visual {
    overflow: hidden;
  }

  .visual-globe-wrap {
    width: min(340px, 92vw);
    height: min(340px, 92vw);
  }
}

/* Hero services ecosystem animation */
.services-orbit {
  position: relative;
  width: min(500px, 42vw);
  height: 390px;
  isolation: isolate;
  filter: drop-shadow(0 28px 60px rgba(10, 91, 255, 0.12));
  transform: translateY(-22px);
}

.services-orbit .visual-globe-outer,
.services-orbit .visual-globe-middle,
.services-orbit .visual-globe-inner,
.services-orbit .visual-glow-core,
.services-orbit .visual-card {
  display: none;
}

.orbit-grid {
  position: absolute;
  inset: 24px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(10, 91, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 91, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(30, 34, 41, 0.12), transparent 34%);
  background-size: 42px 42px, 42px 42px, 100% 100%;
  mask-image: radial-gradient(circle, #000 0 52%, transparent 76%);
  animation: service-grid-drift 18s linear infinite;
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(10, 91, 255, 0.18);
}

.orbit-ring-one {
  width: 210px;
  height: 210px;
  box-shadow: inset 0 0 40px rgba(10, 91, 255, 0.06);
  animation: service-ring-pulse 4.5s ease-in-out infinite;
}

.orbit-ring-two {
  width: 312px;
  height: 312px;
  border-style: dashed;
  animation: rotate 44s linear infinite;
}

.orbit-signal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 172px;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(10, 91, 255, 0.35), transparent);
  overflow: hidden;
}

.orbit-signal::after {
  content: "";
  position: absolute;
  left: -70px;
  width: 70px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #b9913c, transparent);
  animation: signal-travel 2.8s ease-in-out infinite;
}

.signal-a {
  transform: rotate(-23deg);
}

.signal-b {
  transform: rotate(146deg);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 166px;
  min-height: 116px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.05rem;
  border-radius: 22px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(30, 34, 41, 0.18), transparent 60%);
  border: 1px solid rgba(10, 91, 255, 0.14);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(16px);
  z-index: 3;
}

.orbit-core::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  border: 1px solid rgba(30, 34, 41, 0.22);
  animation: service-core-aura 3.8s ease-in-out infinite;
}

.orbit-core span {
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.orbit-core strong {
  margin-top: 0.3rem;
  color: #0b1220;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.18;
}

.orbit-core small {
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.service-pod {
  position: absolute;
  z-index: 4;
  width: 184px;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
  animation: service-pod-float 6s ease-in-out infinite;
}

.service-pod::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(10, 91, 255, 0.08), rgba(30, 34, 41, 0.08));
  opacity: 0;
  transition: var(--transition-normal);
  z-index: -1;
}

.service-pod:hover::after {
  opacity: 1;
}

.pod-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--primary);
  background: #eef5ff;
  border: 1px solid rgba(10, 91, 255, 0.1);
}

.service-pod strong,
.service-pod span {
  display: block;
}

.service-pod strong {
  font-size: 0.84rem;
  line-height: 1.2;
  color: #111827;
}

.service-pod span {
  margin-top: 0.18rem;
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.pod-web {
  top: 18px;
  left: 48px;
}

.pod-mobile {
  top: 34px;
  right: 0;
  animation-delay: -1s;
}

.pod-saas {
  right: 0;
  top: 174px;
  animation-delay: -2s;
}

.pod-iot {
  right: 62px;
  bottom: 4px;
  animation-delay: -3s;
}

.pod-custom {
  left: 34px;
  bottom: 20px;
  animation-delay: -4s;
}

.pod-team {
  left: 8px;
  top: 164px;
  animation-delay: -5s;
}

@keyframes service-grid-drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 42px 42px, 42px 42px, 0 0;
  }
}

@keyframes service-ring-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.62;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 1;
  }
}

@keyframes service-core-aura {

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

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes service-pod-float {

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

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

@media (max-width: 1024px) {
  .services-orbit {
    width: min(620px, 92vw);
  }
}

@media (max-width: 640px) {
  .services-orbit {
    width: min(360px, 94vw);
    height: 700px;
    margin: 0 auto;
    transform: translateY(0);
  }

  .orbit-ring-one {
    width: 190px;
    height: 190px;
  }

  .orbit-ring-two {
    width: 230px;
    height: 230px;
  }

  .orbit-signal {
    width: 150px;
  }

  .orbit-core {
    width: 170px;
    min-height: 122px;
  }

  .service-pod {
    width: min(250px, 76vw);
    min-height: 70px;
  }

  .pod-web,
  .pod-mobile,
  .pod-saas,
  .pod-iot,
  .pod-custom,
  .pod-team {
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
  }

  .pod-web {
    top: 0;
  }

  .pod-mobile {
    top: 86px;
  }

  .pod-team {
    top: 172px;
  }

  .pod-saas {
    top: 424px;
  }

  .pod-custom {
    top: 512px;
  }

  .pod-iot {
    top: 600px;
  }

  .pod-web,
  .pod-mobile,
  .pod-saas,
  .pod-iot,
  .pod-custom,
  .pod-team {
    animation-name: service-pod-mobile-float;
  }
}

@keyframes service-pod-mobile-float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

/* ==========================================
   NOTIFICATION BELL (Header)
   ========================================== */
.notification-bell {
  position: relative;
  background: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.notification-bell:hover {
  background: #eef5ff;
  border-color: var(--primary);
  color: var(--primary);
}

.notification-bell svg {
  transition: var(--transition-fast);
}

.notification-bell:hover svg {
  animation: bell-ring 0.5s ease;
}

@keyframes bell-ring {
  0% {
    transform: rotate(0);
  }

  15% {
    transform: rotate(14deg);
  }

  30% {
    transform: rotate(-14deg);
  }

  45% {
    transform: rotate(8deg);
  }

  60% {
    transform: rotate(-8deg);
  }

  75% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(0);
  }
}

.bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
  animation: badge-pulse 2s ease-in-out infinite;
}

.bell-badge.hidden {
  display: none;
}

@keyframes badge-pulse {

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

  50% {
    transform: scale(1.15);
  }
}

/* Notification Dropdown Panel */
.notification-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 2rem;
  width: 400px;
  max-height: 480px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.04);
  z-index: 1100;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.notif-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.notif-panel-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.notif-mark-read {
  background: none;
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

.notif-mark-read:hover {
  background: #eef5ff;
}

.notif-list {
  overflow-y: auto;
  max-height: 380px;
}

.notif-item {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition: var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.notif-item:hover {
  background: rgba(10, 91, 255, 0.03);
}

.notif-item.unread {
  background: rgba(10, 91, 255, 0.04);
}

.notif-item.unread::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px rgba(10, 91, 255, 0.4);
}

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

.notif-icon-launch {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.notif-icon-career {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.notif-icon-update {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.notif-icon-milestone {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.notif-icon-partnership {
  background: rgba(30, 34, 41, 0.1);
  color: var(--secondary);
}

.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.notif-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.3rem;
}

.notif-desc a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.notif-desc a:hover {
  text-decoration: underline;
}

.notif-time {
  font-size: 0.68rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ==========================================
   CAREERS SECTION
   ========================================== */
.careers-section {
  background: linear-gradient(180deg, #eef3f8 0%, #f7f9fc 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* Culture Grid */
.careers-culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.culture-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(10, 91, 255, 0.05), rgba(30, 34, 41, 0.04));
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.culture-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition-normal);
}

.culture-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-premium-hover);
  border-color: var(--card-border-glow);
}

.culture-card:hover::after {
  opacity: 0.76;
}

.culture-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #eef5ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition-normal);
}

.culture-card:hover .culture-icon {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(10, 91, 255, 0.25);
}

.culture-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text-main);
}

.culture-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Job Cards Grid */
.careers-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.job-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(10, 91, 255, 0.05), rgba(30, 34, 41, 0.04));
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 14px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.job-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0.76;
}

.job-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-premium-hover);
  border-color: var(--card-border-glow);
}

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.job-dept {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  background: rgba(30, 34, 41, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.job-type {
  font-size: 0.72rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.job-type-contract {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}

.job-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.job-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.job-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.job-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.job-location svg {
  color: var(--primary);
}

.job-exp {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.04);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.job-apply-btn {
  font-size: 0.82rem;
  padding: 0.65rem 1.5rem;
  width: 100%;
}

/* Careers CTA */
.careers-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding: 2.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(10, 91, 255, 0.05), rgba(30, 34, 41, 0.04));
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 14px;
  box-shadow: var(--shadow-premium);
}

.careers-cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================
   NOTIFICATIONS / TIMELINE SECTION
   ========================================== */
.notifications-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.notifications-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(30, 34, 41, 0.4), transparent);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.25rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 1.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(10, 91, 255, 0.2), 0 4px 12px rgba(15, 23, 42, 0.1);
  z-index: 2;
}

.timeline-dot-new {
  background: #f59e0b;
}

.timeline-dot-hiring {
  background: #3b82f6;
}

.timeline-dot-milestone {
  background: #8b5cf6;
}

.timeline-dot-partnership {
  background: var(--secondary);
}

.timeline-dot-update {
  background: #10b981;
}

.timeline-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(10, 91, 255, 0.05), rgba(30, 34, 41, 0.04));
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-brand);
  opacity: 0.72;
}

.timeline-card:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: var(--shadow-premium-hover);
  border-color: var(--card-border-glow);
}

.timeline-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.timeline-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.timeline-badge-new {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.timeline-badge-hiring {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.timeline-badge-milestone {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.timeline-badge-partnership {
  background: rgba(30, 34, 41, 0.1);
  color: var(--secondary);
}

.timeline-badge-update {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.timeline-date {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dark);
}

.timeline-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

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

.timeline-card p a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.timeline-card p a:hover {
  text-decoration: underline;
}

/* ==========================================
   RESPONSIVE: NEW SECTIONS
   ========================================== */
@media (max-width: 1024px) {
  .careers-culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .notification-panel {
    right: 1rem;
    width: 360px;
  }
}

@media (max-width: 768px) {
  .careers-culture-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 2rem;
  }

  .careers-jobs-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .notification-panel {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 70vh;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }

  .notification-panel.active {
    transform: translateY(0);
  }

  .notifications-timeline {
    padding-left: 30px;
  }

  .timeline-dot {
    left: -23px;
  }

  .timeline-card {
    padding: 1.35rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .job-card {
    padding: 1.75rem 1.25rem;
  }

  .timeline-card h4 {
    font-size: 1rem;
  }
}

/* ==========================================
   GROWTH ROADMAP CUSTOM STYLES (MOCKUPS & WHATSAPP)
   ========================================== */

/* Hero Mockups */
.mockup-container {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-glow {
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(10, 91, 255, 0.08) 0%, rgba(0, 61, 165, 0.04) 40%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: pulseMockupGlow 6s ease-in-out infinite alternate;
}

.mockup-desktop {
  width: 85%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mockup-desktop:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 55px rgba(10, 91, 255, 0.15);
}

.mockup-mobile {
  position: absolute;
  width: 32%;
  height: auto;
  bottom: -8%;
  right: 0;
  border-radius: 20px;
  border: 4px solid #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mockup-mobile:hover {
  transform: translateY(-8px) scale(1.05) rotate(1deg);
  box-shadow: 0 20px 45px rgba(0, 61, 165, 0.22);
}

@keyframes pulseMockupGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.05);
    opacity: 1.2;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: #20ba5a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float-btn::before {
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  background: currentColor;
  animation: pulseWa 2s infinite;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347M12.051 21.785h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.889-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.886 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.946L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0 0 20.465 3.488'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347M12.051 21.785h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.889-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.886 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.946L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0 0 20.465 3.488'/%3E%3C/svg%3E") center / contain no-repeat;
}

.whatsapp-icon {
  display: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: #22252a;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: #22252a;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes pulseWa {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

/* Service Detail Cards & Subpage Styles */
.subpage-hero {
  padding: 8rem 0 5rem 0;
  background: var(--gradient-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.subpage-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.feature-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-premium);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.feature-box h4 {
  margin: 1rem 0 0.5rem 0;
  font-size: 1.15rem;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

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

  .mockup-mobile {
    width: 28%;
    bottom: -5%;
  }
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* Staff Augmentation Layout Section */
.staffing-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

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


/* ==========================================
   PRODUCTS DROPDOWN NAVIGATION STYLING
   ========================================== */
.nav-links li.dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1000;
}

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

.nav-links .dropdown-menu li {
  width: 100%;
}

.nav-links .dropdown-menu a {
  padding: 0.6rem 1.25rem;
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-links .dropdown-menu a::after {
  display: none !important;
  /* Remove active line indicator for dropdown items */
}

.nav-links .dropdown-menu a:hover {
  background: rgba(10, 91, 255, 0.05);
  color: var(--primary);
}

/* Responsive navigation for dropdown on mobile */
@media (max-width: 768px) {
  .nav-links {
    align-items: flex-start !important;
  }

  .nav-links li.dropdown {
    width: 100%;
  }

  .nav-links .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.5rem 0 0 1rem;
    min-width: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-links .dropdown-menu a {
    padding: 0;
    font-size: 0.95rem;
  }
}

/* ==========================================
   PRODUCT LEAD CAPTURE MODAL
   ========================================== */
.product-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.7);
  /* Deep dark overlay */
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.product-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px 0px;
  width: 90%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  box-shadow: var(--shadow-neon);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.product-modal-backdrop.active .product-modal-card {
  transform: translateY(0);
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-modal-close:hover {
  color: var(--primary);
}

.product-modal-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* ==========================================
   HOMEPAGE FEATURED PRODUCT & TRUST SECTIONS
   ========================================== */
.trust-banner {
  background: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  text-align: center;
}

.trust-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-title {
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trust-item svg {
  color: var(--primary);
  width: 14px;
  height: 14px;
}

.featured-product-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

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

.featured-visual {
  position: relative;
}

.features-checkmark-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  margin: 2rem 0;
}

.checkmark-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.checkmark-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================
   DEDICATED PRODUCT PAGE DESIGN
   ========================================== */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.cert-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px 0px;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-fast);
}

.cert-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.cert-logo-box {
  height: 36px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.cert-logo-box svg {
  width: 24px;
  height: 24px;
}

/* Screenshot Gallery */
.gallery-section {
  padding: 5rem 0;
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px 0;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-normal);
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-neon-purple);
}

.gallery-img-wrap {
  position: relative;
  background: #eaeaea;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 1.25rem;
  border-top: 1px solid var(--card-border);
}

.gallery-caption h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.gallery-caption p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ Accordion Styling */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-deep);
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px 0px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
}

.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  /* Safe upper limit */
}

/* Licensing Grid Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px 0;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
}

.badge-popular {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: var(--gradient-brand);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1.5rem 0 2rem 0;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ==========================================
   LIGHTBOX COMPONENT STYLES
   ========================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 20000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1000px;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow-neon);
  border: 1px solid var(--card-border);
  animation-name: zoom;
  animation-duration: 0.3s;
}

@keyframes zoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: var(--text-muted);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 20001;
  outline: none;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--primary);
  text-decoration: none;
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: var(--text-main);
  padding: 15px 0;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ==========================================
   2.5D & PREMIUM SHOWCASE STYLES
   ========================================== */
.glowdigit-ecosystem-svg {
  transition: transform 0.5s ease;
}

.glowdigit-ecosystem-svg:hover {
  transform: rotateX(5deg) rotateY(-5deg) rotateZ(0deg) !important;
}

.workspace-tab {
  border-left: 3px solid transparent !important;
}

.workspace-tab.active {
  border-left: 3px solid var(--primary) !important;
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.1);
}

.workspace-tab:hover {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.workspace-carousel-viewport {
  overflow: visible !important;
}

.workspace-carousel-slide {
  position: absolute !important;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  /* offset half height of slide approximately */
  margin-left: -225px;
  /* offset half width of slide (450px max-width) */
  width: 90%;
  max-width: 450px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.workspace-carousel-slide img {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  max-width: 100%;
  display: block;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .workspace-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .flows-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .workspace-carousel-viewport {
    height: 320px !important;
  }

  .workspace-carousel-slide {
    width: 85% !important;
  }
}

@media (max-width: 768px) {
  .hero-visual {
    margin-top: 2rem;
  }

  .glowdigit-ecosystem-svg {
    transform: none !important;
  }
}

.highlight-word {
  background: linear-gradient(90deg, #0057FF, #00AEEF, #0057FF);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerFlow 7s linear infinite;
  display: inline-block;
}

@keyframes shimmerFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* --- GLOBAL CONTACT FORM STYLES --- */
.contact-form-modern {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

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

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

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

  .contact-form-modern {
    padding: 2rem 1.5rem;
  }
}

/* ============================================================
   TRUST & CONVERSION REFINEMENT — Utility Classes
   GlowDigit Engineering Brand
   ============================================================ */

/* --- SECTION EYEBROW LABEL --- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

/* --- TECH TAG ROW (max 3 tags per capability card) --- */
.tech-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.tech-tag {
  display: inline-block;
  background: rgba(0, 87, 255, 0.08);
  border: 1px solid rgba(0, 87, 255, 0.18);
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  letter-spacing: 0.03em;
}

/* --- PRODUCT STATUS CHIP --- */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.status-chip::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-chip.available {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10B981;
}

.status-chip.enterprise {
  background: rgba(0, 87, 255, 0.1);
  border: 1px solid rgba(0, 87, 255, 0.25);
  color: #0057FF;
}

.status-chip.early-access {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #FBBF24;
}

.status-chip.coming-soon {
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #94A3B8;
}

/* --- CASE STUDY 4-PART CARD --- */
.case-study-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 250ms ease, transform 250ms ease;
}

.case-study-card:hover {
  border-color: rgba(0, 87, 255, 0.25);
  transform: translateY(-3px);
}

.case-study-block {
  margin-bottom: 1rem;
}

.case-study-block-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.case-study-block-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.case-result-metric {
  font-size: 0.82rem;
  font-weight: 700;
  color: #10B981;
  font-family: 'JetBrains Mono', monospace;
  border-left: 2px solid #10B981;
  padding-left: 0.65rem;
  margin-top: 1rem;
}

.case-study-highlights {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.case-study-highlights li::before {
  content: '→ ';
  color: var(--primary);
  font-weight: 600;
}

/* --- HERO DELIVERY FLOW DIAGRAM --- */
.flow-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-premium);
}

.flow-diagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-border);
}

.flow-diagram-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flow-diagram-status {
  font-size: 0.7rem;
  font-weight: 600;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.flow-diagram-status::before {
  content: '●';
  font-size: 0.55rem;
}

.flow-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  opacity: 0;
  animation: flowStepIn 0.4s ease forwards;
}

.flow-step-item:nth-child(1) {
  animation-delay: 0.1s;
}

.flow-step-item:nth-child(2) {
  animation-delay: 0.25s;
}

.flow-step-item:nth-child(3) {
  animation-delay: 0.4s;
}

.flow-step-item:nth-child(4) {
  animation-delay: 0.55s;
}

.flow-step-item:nth-child(5) {
  animation-delay: 0.7s;
}

.flow-step-item:nth-child(6) {
  animation-delay: 0.85s;
}

.flow-step-item:nth-child(7) {
  animation-delay: 1.0s;
}

@keyframes flowStepIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.flow-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.flow-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid rgba(0, 87, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}

.flow-step-item:first-child .flow-step-dot {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.flow-connector-line {
  width: 1px;
  height: 20px;
  background: rgba(0, 87, 255, 0.15);
  margin: 3px auto;
}

.flow-step-item:last-child .flow-connector-line {
  display: none;
}

.flow-step-content {
  padding: 0.15rem 0 1.25rem;
}

.flow-step-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #F8FAFC;
  line-height: 1.3;
}

.flow-step-detail {
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-top: 0.15rem;
  line-height: 1.4;
}

/* --- ENGAGEMENT MODEL / PROCESS STRIP --- */
.process-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  position: relative;
}

.process-strip::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(0, 87, 255, 0.15);
  z-index: 0;
}

.process-step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0 0.5rem;
  transition: border-color 250ms ease;
}

.process-step-card:hover {
  border-color: rgba(0, 87, 255, 0.3);
}

.process-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid rgba(0, 87, 255, 0.3);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-family: 'JetBrains Mono', monospace;
}

.process-step-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 0.35rem;
}

.process-step-desc {
  font-size: 0.75rem;
  color: var(--text-dark);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .process-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

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

  .process-step-card {
    margin: 0;
  }
}

@media (max-width: 600px) {
  .process-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- TRUST BAR (above CTA form) --- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-bar-item svg {
  color: #10B981;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* --- PARTNER SECTION --- */
.partner-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.partner-types {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.partner-type-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}

.partner-type-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--card-border);
}

.partner-type-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.partner-why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.75rem;
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- WHY GLOWDIGIT ACCENT CARDS --- */
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.75rem;
  transition: border-color 250ms ease;
}

.why-card:hover {
  border-left-color: var(--secondary);
}

.why-card-sub {
  font-size: 0.78rem;
  color: var(--text-dark);
  margin-top: 0.35rem;
  font-style: italic;
  line-height: 1.5;
}

/* --- SECTION BOTTOM CTA LINK --- */
.section-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 2rem;
  transition: gap 200ms ease, color 200ms ease;
}

.section-cta-link:hover {
  gap: 0.65rem;
  color: var(--secondary);
}

/* --- PRODUCT CARD IMAGE WRAPPER --- */
.product-screenshot {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-premium);
  display: block;
  background: var(--bg-dark);
}

/* --- CAPABILITY CARD ENHANCEMENTS --- */
.capability-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 250ms ease, transform 250ms ease;
}

.capability-card:hover {
  border-color: rgba(0, 87, 255, 0.25);
  transform: translateY(-3px);
}

/* --- SECTOR CARD WITH ICON --- */
.sector-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 250ms ease, transform 250ms ease;
}

.sector-card:hover {
  border-color: rgba(0, 87, 255, 0.2);
  transform: translateY(-2px);
}

.sector-icon {
  width: 36px;
  height: 36px;
  color: var(--primary);
  margin-bottom: 1rem;
  opacity: 0.85;
}


/* =======================================================
   V2.3 — PREMIUM ENGINEERING REFINEMENT
   Readability, Typography, Contrast & Visual Hierarchy
   Additive overrides only — nothing existing is removed.
   Target: WCAG AA on all text. JetBrains/Stripe/Linear feel.
   ======================================================= */

/* --- 1. ROOT: Upgrade low-contrast text token --- */
:root {
  --text-dark: #8B9DB8;
  /* was #64748B — fails WCAG AA on card bg */
  --text-muted: #94A3B8;
  /* unchanged — already passes */
  --card-radius-v23: 10px;
  --section-gap: 6rem 0;
}

/* --- 2. BODY: Comfortable reading size & smoothing --- */
body {
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* --- 3. GLOBAL HEADINGS: crisp white, no gradient text --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #F8FAFC;
  font-family: 'Inter', sans-serif;
}

/* --- 4. HERO HEADLINE: single color, no multi-color words ---
   Overrides the inline colored spans to use a uniform white.
   Only the blue accent (#0057FF) is kept for "Intelligent".
   "Digital" (--secondary cyan) is neutralized to white for cleaner reading. */
#hero-headline-block {
  color: #0F172A;
}

#hero-headline-block>span {
  color: #0F172A;
}

#hero-headline-block>span>span:last-child {
  color: #0F172A;
}

#hero-headline-block>span:first-child>span {
  color: #0057FF;
}

#hero-headline-block>span:nth-child(2)>span {
  color: #0F172A;
}

#hero-headline-block>span:nth-child(3) {
  color: #475569;
}

/* --- 5. SECTION HEADINGS: strong contrast, light corporate theme --- */
.section-title {
  color: #0F172A !important;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.dark-section .section-title {
  color: #F8FAFC !important;
}

.section-subtitle {
  color: #475569 !important;
  line-height: 1.72;
  max-width: 62ch;
}

/* --- 6. SECTION EYEBROW: ensure it shows on all dark backgrounds --- */
.section-eyebrow {
  color: #38BDF8 !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

/* --- 7. BODY PARAGRAPHS: ensure minimum contrast --- */
p {
  color: #94A3B8;
  line-height: 1.72;
}

/* Inline descriptors directly on dark card bg need a boost */
.capability-card p,
.sector-card p {
  color: #94A3B8;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* --- 8. BUTTONS: Fix contrast, remove text-transform uppercase, consistent radius --- */

/* Base button override */
.btn {
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-radius: 6px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  padding: 0.8rem 1.6rem !important;
}

/* Primary: solid blue, white text — always readable */
.btn-primary,
a.btn-primary {
  background: #0057FF !important;
  color: #FFFFFF !important;
  border: 1px solid #0057FF !important;
  box-shadow: none !important;
}

.btn-primary:hover,
a.btn-primary:hover {
  background: #1A6BFF !important;
  border-color: #1A6BFF !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 87, 255, 0.3) !important;
}

/* Secondary: visible contrast on dark background */
.btn-secondary,
a.btn-secondary {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #E2E8F0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: none !important;
}

.btn-secondary:hover,
a.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  transform: translateY(-1px);
}

/* --- 9. STATUS CHIPS: strong foreground on dark surface --- */
.status-chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
}

.status-chip.available {
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.status-chip.early-access {
  background: rgba(245, 158, 11, 0.1);
  color: #FCD34D;
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.status-chip.coming-soon {
  background: rgba(100, 116, 139, 0.12);
  color: #94A3B8;
  border: 1px solid rgba(100, 116, 139, 0.25);
}

/* --- 10. TECH TAGS: readable cyan-tinted tags on dark bg --- */
.tech-tag {
  background: rgba(0, 87, 255, 0.07);
  border: 1px solid rgba(0, 87, 255, 0.18);
  color: #7EB3FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  display: inline-block;
}

/* --- 11. CARDS: Standardized radius, padding, shadow, border --- */
.capability-card,
.sector-card,
.case-study-card,
.why-card,
.partner-type-item,
.card-modern {
  border-radius: var(--card-radius-v23);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #161922;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

.impact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.impact-card>a.btn,
.impact-card>a.btn-primary,
.impact-card>a[href*="contact.html"],
.impact-card>a[href*="workspace.html"],
.impact-card>a[href*="solutions.html"] {
  margin-top: auto !important;
}

.case-study-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

/* Card hover: subtle lift, no glow */
.capability-card:hover,
.sector-card:hover,
.case-study-card:hover {
  border-color: rgba(0, 87, 255, 0.22);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

/* --- 12. CASE STUDY CARDS: content contrast --- */
.case-study-block-label {
  color: #64748B;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.35rem;
}

.case-study-block-text {
  color: #94A3B8;
  font-size: 0.875rem;
  line-height: 1.65;
}

.case-study-highlights {
  padding-left: 0;
  list-style: none;
}

.case-study-highlights li {
  color: #94A3B8;
  font-size: 0.85rem;
  line-height: 1.6;
  padding-left: 0.875rem;
  position: relative;
}

.case-study-highlights li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #475569;
  font-size: 0.75rem;
}

.case-result-metric {
  color: #34D399;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  border-left: 2px solid #10B981;
  padding-left: 0.75rem;
  margin-top: 1rem;
}

/* --- 13. SECTION CTA LINKS --- */
.section-cta-link {
  color: #60A5FA;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.section-cta-link:hover {
  color: #93C5FD;
}

/* --- 14. ANNOUNCEMENT / PROMO BANNER (High-Contrast Premium Royal Blue Theme) --- */
.saas-promo-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F1A36 100%) !important;
  border: 1px solid rgba(56, 189, 248, 0.25) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35) !important;
  max-width: 1280px;
  margin: 10px auto;
  padding: 10px 20px;
  position: relative;
  transition: opacity 300ms ease, transform 300ms ease;
  z-index: 999;
}

.saas-promo-banner.hiding {
  opacity: 0;
  transform: translateY(-100%);
}

body.banner-closed .saas-promo-banner {
  display: none !important;
}

.saas-banner-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.saas-banner-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Left Section */
.saas-left {
  flex-shrink: 0;
}

.saas-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.saas-left-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.saas-left-title {
  font-size: 0.825rem;
  font-weight: 700;
  color: #FFFFFF !important;
  line-height: 1.2;
}

.saas-left-price-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.saas-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #38BDF8 !important;
}

/* Center Section */
.saas-center {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
  gap: 2px;
}

.saas-center-heading-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.saas-center-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF !important;
}

.saas-center-desc-row {
  display: flex;
  align-items: center;
}

.saas-desc-text {
  font-size: 0.78rem;
  color: #94A3B8 !important;
  font-weight: 500;
}

/* Right Section */
.saas-right {
  flex-shrink: 0;
  gap: 0.85rem;
}

/* Badges */
.saas-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  line-height: 1.2;
}

.saas-badge-green {
  background: rgba(16, 185, 129, 0.18) !important;
  color: #34D399 !important;
  border: 1px solid rgba(52, 211, 153, 0.4) !important;
}

.saas-badge-orange {
  background: rgba(249, 115, 22, 0.18) !important;
  color: #FB923C !important;
  border: 1px solid rgba(251, 146, 60, 0.4) !important;
}

.saas-badge-blue {
  background: rgba(0, 87, 255, 0.25) !important;
  color: #60A5FA !important;
  border: 1px solid rgba(96, 165, 250, 0.4) !important;
}

/* Divider */
.saas-center-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Right CTA Button */
.saas-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0057FF !important;
  color: #FFFFFF !important;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 87, 255, 0.4);
  transition: background 150ms ease, transform 150ms ease;
  white-space: nowrap;
}

.saas-cta:hover {
  background: #1A69FF !important;
  transform: translateY(-1px);
}

/* Close Button */
.saas-close {
  background: transparent;
  border: none;
  color: #94A3B8 !important;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease, color 150ms ease;
}

.saas-close:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
}

/* Mobile Banner Rules */
.saas-banner-mobile {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

@media (max-width: 992px) {
  .saas-banner-desktop {
    display: none;
  }

  .saas-banner-mobile {
    display: flex;
  }

  .saas-promo-banner {
    margin: 8px 12px;
    padding: 10px 14px;
    border-radius: 12px;
  }

  .saas-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .saas-mobile-offer {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
  }

  .saas-mobile-launch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.1rem;
  }

  .saas-cta-mobile {
    display: block;
    width: 100%;
    background: #0057FF;
    color: #FFFFFF !important;
    font-size: 0.825rem;
    font-weight: 600;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 87, 255, 0.18);
  }
}

/* --- 15. SECTION SPACING: more vertical rhythm --- */
.section-spacing {
  padding: 3.5rem 0;
}

/* --- 15. NAVIGATION & MOBILE DRAWER (Light Corporate System) --- */
.nav-links a {
  color: #0F172A;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0057FF !important;
}

/* Hide drawer-specific headers & lists on Desktop */
.mobile-drawer-header,
.mobile-nav-list,
.mobile-drawer-cta-wrap,
.mobile-nav-backdrop {
  display: none;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #0F172A;
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

/* MOBILE BREAKPOINT: ≤ 992px */
@media (max-width: 992px) {

  /* Display Hamburger toggle */
  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Full Viewport Backdrop */
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Light Navigation Drawer */
  .nav-links#mobileNavDrawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 360px);
    height: 100dvh;
    background: #FFFFFF;
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
    z-index: 9999;
    padding: 1.25rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-sizing: border-box;
  }

  .nav-links#mobileNavDrawer.active {
    transform: translateX(0);
  }

  /* Mobile Drawer Header */
  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .mobile-drawer-close {
    background: transparent;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: #0F172A;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 150ms ease, color 150ms ease;
  }

  .mobile-drawer-close:hover,
  .mobile-drawer-close:active {
    background: #F1F5F9;
    color: #0057FF;
  }

  /* Navigation Link List */
  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }

  .mobile-nav-list li {
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  }

  .mobile-nav-list li:last-child {
    border-bottom: none;
  }

  .mobile-nav-list a {
    display: flex;
    align-items: center;
    padding: 1rem 0.5rem;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    text-decoration: none;
    transition: color 150ms ease, background-color 150ms ease;
    border-radius: 6px;
    position: relative;
  }

  .mobile-nav-list a:hover {
    color: #0057FF !important;
    background: rgba(0, 87, 255, 0.03);
  }

  .mobile-nav-list a.active {
    color: #0057FF !important;
    font-weight: 700 !important;
    background: rgba(0, 87, 255, 0.05);
    padding-left: 1rem;
  }

  .mobile-nav-list a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #0057FF;
    border-radius: 0 4px 4px 0;
  }

  /* Mobile Drawer CTA Wrap */
  .mobile-drawer-cta-wrap {
    display: block;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .mobile-drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #0057FF;
    color: #FFFFFF !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 0.9rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 87, 255, 0.25);
    transition: background 200ms ease, transform 200ms ease;
  }

  .mobile-drawer-cta:hover {
    background: #0046CC;
    transform: translateY(-1px);
  }
}

/* Prevent Background Scroll & Suppress Floating Widgets when Mobile Menu is Open */
body.mobile-menu-open {
  overflow: hidden !important;
}

body.mobile-menu-open .floating-cta-desktop,
body.mobile-menu-open .floating-cta-mobile,
body.mobile-menu-open [class*="fab-"],
body.mobile-menu-open [id*="chat-widget"] {
  display: none !important;
}

/* --- 16. FOOTER: premium light theme overrides --- */
footer p,
footer li {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.75;
}

footer a {
  color: #475569;
  text-decoration: none;
  transition: color 150ms ease;
}

footer a:hover {
  color: #0057FF;
}

footer h4 {
  color: #0057FF;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.footer-bottom p,
.footer-bottom a {
  color: #64748B;
  font-size: 13px;
}

.footer-bottom a:hover {
  color: #0057FF;
}

/* --- 17. FORMS: readability and contrast --- */
.form-group label {
  color: #475569;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #0F172A;
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 0.75rem 0.95rem;
  width: 100%;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0057FF;
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.12);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94A3B8;
}

/* --- 18. PRODUCT SCREENSHOT: consistent display --- */
.product-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

/* --- 19. GLOW OVERLAY: suppress decorative radial glow --- */
.glow-overlay {
  display: none !important;
}

/* Remove any remaining neon/glow effects */
[class*="neon-"],
[class*="-glow"] {
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

/* --- 20. HERO: ensure trust bar is readable --- */
.hero-trust-bar span,
#hero .trust-bar span {
  color: #64748B;
  font-size: 0.8rem;
}

/* --- 21. GRADIENT TEXT: replace with solid for readability --- */
.gradient-text {
  background: none !important;
  -webkit-text-fill-color: #F8FAFC !important;
  color: #F8FAFC !important;
}

/* --- 22. WHO-WE-HELP CARDS: text must be visible --- */
.who-card h3,
.sector-card h3 {
  color: #F1F5F9;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* --- 23. PRODUCT CARDS: category label contrast --- */
[data-product-meta] span {
  color: #475569;
}

/* --- 24. PARTNER / TRUST LOGOS: don't fade them too much --- */
.partner-logo,
.trust-logo {
  opacity: 0.65;
  filter: grayscale(60%);
  transition: opacity 200ms ease, filter 200ms ease;
}

.partner-logo:hover,
.trust-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- 25. PROMO BANNER: light theme enforcement --- */
.saas-promo-banner {
  background: linear-gradient(90deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06) !important;
}

.saas-banner-desktop,
.saas-banner-mobile {
  color: #0F172A !important;
}

.saas-left-title,
.saas-center-title {
  color: #0F172A !important;
  font-weight: 700 !important;
}

.saas-price {
  color: #0F172A !important;
  font-weight: 700 !important;
}

/* --- 26. BADGE CONTRAST: light B2B badge palettes --- */
.saas-badge-blue {
  background: #EFF6FF !important;
  color: #0057FF !important;
  border: 1px solid #BFDBFE !important;
}

.saas-badge-green {
  background: #ECFDF5 !important;
  color: #047857 !important;
  border: 1px solid #A7F3D0 !important;
}

.saas-badge-orange,
.saas-badge-red {
  background: #FFF7ED !important;
  color: #C2410C !important;
  border: 1px solid #FED7AA !important;
}

/* --- 27. MODAL: form modal readability --- */
.product-modal-card {
  background: #161922;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-modal-title {
  color: #F8FAFC;
  font-size: 1.25rem;
  font-weight: 700;
}

.product-modal-desc {
  color: #94A3B8;
  font-size: 0.875rem;
}

/* --- 28. WHY-WE-DO-IT SECTION: icons and labels --- */
.why-card h3 {
  color: #F1F5F9;
  font-size: 1rem;
  font-weight: 600;
}

.why-card p {
  color: #94A3B8;
  font-size: 0.875rem;
}

/* --- 29. PROCESS / ENGAGEMENT SECTION: numbered steps --- */
.how-step-number,
.engagement-step-num {
  color: #0057FF;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.75rem;
}

/* --- 30. MOBILE RESPONSIVE: maintain contrast on smaller screens --- */
@media (max-width: 768px) {
  body {
    font-size: 15.5px;
  }

  .section-title {
    font-size: 1.75rem !important;
  }

  .section-spacing {
    padding: 2.5rem 0;
  }

  .btn {
    padding: 0.7rem 1.25rem !important;
    font-size: 0.85rem !important;
  }

  .case-study-card,
  .capability-card,
  .sector-card {
    padding: 1.25rem;
  }
}

/* --- END V2.3 REFINEMENT --- */


/* =======================================================
   V2.3b — HERO ALIGNMENT, CLIP & LAYOUT FIX
   Fixes: overflow clipping, background conflict, min-height,
   grid alignment, image centering, glow animations, responsive.
   All rules use high specificity to override legacy styles.
   ======================================================= */

/* 1. HERO SECTION: Fix overflow clipping + background + height */
section#hero.hero,
.hero {
  overflow: visible !important;
  /* was overflow:hidden — THE clip culprit */
  background: #0B0D12 !important;
  /* dark engineering bg overrides light gradient */
  min-height: auto !important;
  /* remove 100vh forcing — allows natural height */
  padding: 5.5rem 0 4.5rem !important;
  display: block !important;
  /* remove flex that conflicts with container */
  z-index: 1;
}

/* 1b. Suppress hero background light gradient overlay */
.hero::before {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
  opacity: 0.6 !important;
}

/* 1c. Kill ambient glow blob animation completely */
.hero::after {
  display: none !important;
}

/* 2. HERO CONTAINER: must sit above background pseudo-elements */
.hero .container,
section#hero .container {
  position: relative;
  z-index: 2;
}

/* 3. HERO GRID: 45/55 balanced, vertically centered */
.hero-grid,
section#hero .hero-grid {
  display: grid !important;
  grid-template-columns: 45fr 55fr !important;
  gap: 3.5rem !important;
  align-items: center !important;
  /* vertical center both columns */
}

/* 4. HERO CONTENT: no overflow, no clipping, full visibility */
.hero-content,
section#hero .hero-content {
  position: relative;
  overflow: visible !important;
  min-width: 0;
  /* allows text to wrap correctly in grid */
}

/* 5. HERO HEADLINE: guaranteed full visibility & gradient support */
#hero-headline-block {
  overflow: visible !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  font-size: clamp(2.1rem, 3.8vw, 3.35rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 1.75rem !important;
  white-space: normal !important;
}

#hero-headline-block>span {
  display: block !important;
  white-space: normal !important;
  overflow: visible !important;
}

/* Dark mode override if active */
body:not(.page-light) #hero-headline-block,
body:not(.page-light) #hero-headline-block>span {
  color: #FFFFFF !important;
}

body:not(.page-light) #hero-headline-block>span:first-child>span {
  color: #00AEEF !important;
}

body:not(.page-light) #hero-headline-block>span:nth-child(3) {
  color: #94A3B8 !important;
}

/* 6. HERO VISUAL: vertically centered image column */
.hero-visual,
section#hero .hero-visual {
  position: relative;
  display: flex !important;
  align-items: center !important;
  /* vertical center — was flex-start */
  justify-content: flex-start !important;
  width: 100%;
}

/* 6b. Hero nexus image container */
#hero-nexus-container {
  width: 100%;
  position: relative;
}

/* 6c. Hero nexus image: clean engineering presentation */
#hero-nexus-container img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
  object-fit: contain !important;
  object-position: center !important;
  /* Kill any 3D transforms from legacy heroCardFloat */
  transform: none !important;
  animation: none !important;
  filter: none !important;
  perspective: none !important;
}

/* 7. HERO EYEBROW: visible on dark background */
section#hero .hero-content>div:first-child {
  background: rgba(0, 87, 255, 0.08) !important;
  border: 1px solid rgba(0, 87, 255, 0.22) !important;
  color: #38BDF8 !important;
}

/* 8. HERO SUBTITLE: readable slate */
section#hero p {
  color: #94A3B8 !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  max-width: 480px;
}

/* 9. HERO PRIMARY CTA: solid blue, always readable */
section#hero a[href="#discovery"] {
  background: #0057FF !important;
  color: #FFFFFF !important;
  border: 1px solid #0057FF !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
}

section#hero a[href="#discovery"]:hover {
  background: #1A6BFF !important;
  border-color: #1A6BFF !important;
}

/* 10. HERO SECONDARY CTA: white bg, blue border, blue text */
section#hero a[href="#products"] {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #E2E8F0 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
}

section#hero a[href="#products"]:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
}

/* 11. HERO TRUST BAR */
section#hero .hero-content>div:last-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
  color: #64748B !important;
}

section#hero .hero-content>div:last-child span {
  color: #8B9DB8 !important;
  font-size: 0.8rem !important;
}

/* 12. KILL ALL FLOATING ANIMATION on hero image elements */
.hero-nexus-card,
.hero-nexus-badge,
.hero-nexus-shadow {
  animation: none !important;
  transform: none !important;
  filter: none !important;
}

.hero-nexus-img {
  animation: none !important;
  transform: none !important;
  filter: brightness(1) contrast(1) saturate(1) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
}

/* 13. HERO RESPONSIVE — Tablet: stack image below text */
@media (max-width: 1024px) {
  section#hero.hero {
    padding: 4.5rem 0 3.5rem !important;
  }

  .hero-grid,
  section#hero .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    align-items: flex-start !important;
  }

  #hero-headline-block {
    font-size: clamp(1.9rem, 5vw, 2.8rem) !important;
  }

  section#hero .hero-visual {
    order: 2;
    justify-content: center !important;
  }

  section#hero .hero-content {
    order: 1;
  }

  #hero-nexus-container img {
    max-width: 560px;
    margin: 0 auto;
  }
}

/* 14. HERO RESPONSIVE — Mobile */
@media (max-width: 768px) {
  section#hero.hero {
    padding: 3.5rem 0 3rem !important;
  }

  #hero-headline-block {
    font-size: clamp(1.75rem, 7vw, 2.4rem) !important;
    line-height: 1.16 !important;
  }

  section#hero p {
    font-size: 0.9375rem !important;
  }

  section#hero .hero-content>div[style*="display: flex; gap: 1rem"] {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  section#hero .hero-content>div[style*="display: flex; gap: 1rem"] a {
    width: 100% !important;
    justify-content: center !important;
  }

  #hero-nexus-container img {
    max-width: 100%;
    border-radius: 12px !important;
  }
}

/* =======================================================
   V2.3b — GLOBAL SECONDARY BUTTON FIX
   Per spec: white-bg / blue-border / blue-text on light surfaces
   On dark surfaces: glass / white-border / white-text
   ======================================================= */

/* Secondary buttons NOT inside hero: glass style on dark */
:not(section#hero)>* .btn-secondary,
:not(section#hero) .btn-secondary {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #E2E8F0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

:not(section#hero)>* .btn-secondary:hover,
:not(section#hero) .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.11) !important;
  color: #FFFFFF !important;
}

/* =======================================================
   V2.3b — KILL HERO NEXUS CARD FLOAT ANIMATION GLOBALLY
   ======================================================= */
@keyframes heroCardFloat {
  from {
    transform: none;
  }

  to {
    transform: none;
  }
}

@keyframes heroGlowPulse {
  from {
    opacity: 0;
  }

  to {
    opacity: 0;
  }
}

@keyframes badgeFloat {
  from {
    transform: none;
  }

  to {
    transform: none;
  }
}

/* --- END V2.3b HERO FIX --- */


/* =======================================================
   V4.0 + V4.1 — LIGHT ENGINEERING THEME
   Scoped to body.page-light — zero impact on dark pages.
   ======================================================= */

/* 1. Override CSS variables for light theme */
body.page-light {
  --bg-dark: #F8FAFC;
  --bg-deep: #F1F5F9;
  --card-bg: #FFFFFF;
  --card-border: rgba(15, 23, 42, 0.09);
  --card-border-glow: rgba(0, 87, 255, 0.22);
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-dark: #64748B;
  --surface-border: rgba(15, 23, 42, 0.09);
  --surface-border-hover: rgba(0, 87, 255, 0.3);
  --shadow-premium: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-premium-hover: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  color: #0F172A;
}

/* 2. Light body headings and text */
body.page-light h1,
body.page-light h2,
body.page-light h3,
body.page-light h4,
body.page-light h5,
body.page-light h6 {
  color: #0F172A;
}

body.page-light p {
  color: #475569;
}

/* 3. Light section eyebrow */
body.page-light .section-eyebrow {
  color: #0057FF !important;
}

/* 4. Light cards */
body.page-light .capability-card,
body.page-light .sector-card,
body.page-light .case-study-card,
body.page-light .why-card,
body.page-light .card-modern {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

body.page-light .capability-card:hover,
body.page-light .sector-card:hover,
body.page-light .case-study-card:hover {
  border-color: rgba(0, 87, 255, 0.22);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.page-light .capability-card h3,
body.page-light .sector-card h3,
body.page-light .case-study-card h3,
body.page-light .why-card h3 {
  color: #0F172A;
}

body.page-light .capability-card p,
body.page-light .sector-card p,
body.page-light .why-card p {
  color: #64748B;
}

/* 5. Light buttons */
body.page-light .btn-primary,
body.page-light a.btn-primary {
  background: #0057FF !important;
  color: #FFFFFF !important;
  border-color: #0057FF !important;
}

body.page-light .btn-secondary,
body.page-light a.btn-secondary {
  background: #FFFFFF !important;
  color: #0057FF !important;
  border: 1.5px solid #0057FF !important;
}

body.page-light .btn-secondary:hover,
body.page-light a.btn-secondary:hover {
  background: rgba(0, 87, 255, 0.04) !important;
  color: #0057FF !important;
}

/* 6. Light tech tags */
body.page-light .tech-tag {
  background: rgba(0, 87, 255, 0.06);
  border: 1px solid rgba(0, 87, 255, 0.15);
  color: #0057FF;
}

/* 7. Light status chips */
body.page-light .status-chip.available {
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

body.page-light .status-chip.early-access {
  background: rgba(245, 158, 11, 0.08);
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

body.page-light .status-chip.coming-soon {
  background: rgba(100, 116, 139, 0.08);
  color: #64748B;
  border: 1px solid rgba(100, 116, 139, 0.18);
}

/* 8. Light hero section override */
body.page-light section#hero.hero {
  background: #F8FAFC !important;
}

body.page-light .hero::before {
  background-image: radial-gradient(circle, rgba(0, 87, 255, 0.06) 1px, transparent 1px) !important;
}

/* 9. Light case study blocks */
body.page-light .case-study-block-label {
  color: #94A3B8;
}

body.page-light .case-study-block-text {
  color: #475569;
}

body.page-light .case-study-highlights li {
  color: #475569;
}

body.page-light .case-result-metric {
  color: #059669;
  border-left-color: #10B981;
}

/* 10. Light process steps */
body.page-light .process-step-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.09);
}

body.page-light .process-step-number {
  color: #0057FF;
}

body.page-light .process-step-name {
  color: #0F172A;
}

body.page-light .process-step-desc {
  color: #64748B;
}

/* 11. Dark sections override (footer and CTA stay dark) */
body.page-light .dark-section {
  --bg-dark: #0B0D12;
  --bg-deep: #12151E;
  --card-bg: #161922;
  --card-border: rgba(255, 255, 255, 0.08);
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dark: #64748B;
  background: #0B0D12;
  color: #F8FAFC;
}

body.page-light .dark-section h1,
body.page-light .dark-section h2,
body.page-light .dark-section h3,
body.page-light .dark-section h4 {
  color: #F8FAFC;
}

body.page-light .dark-section p,
body.page-light .dark-section .section-subtitle {
  color: #94A3B8 !important;
}

body.page-light .dark-section .section-eyebrow {
  color: #38BDF8 !important;
}

/* 12. Light product screenshots */
body.page-light .product-screenshot {
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* 13. Light section CTA link */
body.page-light .section-cta-link {
  color: #0057FF;
}

body.page-light .section-cta-link:hover {
  color: #1A69FF;
}

/* 14. Light why-card sub */
body.page-light .why-card-sub {
  color: #94A3B8;
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0.4rem;
}

/* 15. Light form inputs */
body.page-light.page-light:not(.dark-section) .form-group label {
  color: #334155;
}

/* 16. Light partner section */
body.page-light .partner-type-item {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.09);
}

body.page-light .partner-type-item span {
  color: #334155;
}

/* 17. Light trust bar */
body.page-light .trust-bar-item {
  color: #64748B;
}

/* 18. Light nav links in mobile drawer */
body.page-light .nav-links.active {
  background: #0B0D12;
}

/* 19. Light gradient-text → solid dark */
body.page-light .gradient-text {
  background: none !important;
  -webkit-text-fill-color: #0F172A !important;
  color: #0F172A !important;
}

/* 20. Consistent light card hover on impact cards */
body.page-light .impact-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

body.page-light .impact-card:hover {
  border-color: rgba(0, 87, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* 21. Promise card */
.promise-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-left: 3px solid #0057FF;
  border-radius: 10px;
  padding: 2.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

body.page-light .promise-card p {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

/* --- END V4.0 LIGHT THEME --- */

/* ===================================================================
   V4.2 — UI POLISH, ALIGNMENT & READABILITY REFINEMENTS
   =================================================================== */

/* ── Typography System ─────────────────────────────────────────── */
body.page-light h1,
body.page-light h2,
body.page-light h3,
body.page-light h4,
body.page-light h5 {
  color: #0F172A;
  opacity: 1 !important;
}

body.page-light p {
  color: #334155;
  opacity: 1 !important;
}

/* Hero: never clip or fade */
body.page-light #hero,
body.page-light #hero * {
  overflow: visible;
}

body.page-light #hero h1,
body.page-light #hero h1 span {
  opacity: 1 !important;
  color: #0F172A;
}

body.page-light #hero h1 span:last-child {
  color: #475569;
}

/* ── Section Header Centering ──────────────────────────────────── */
body.page-light .section-header {
  text-align: center;
}

body.page-light .section-header p {
  margin-left: auto;
  margin-right: auto;
  color: #64748B;
}

/* ── Spacing Scale ─────────────────────────────────────────────── */
body.page-light section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Preserve dark CTA section padding override */
body.page-light #lets-talk {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

body.page-light #our-promise {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* ── Card System V4.2 ──────────────────────────────────────────── */
body.page-light .impact-card {
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: #FFFFFF;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
}

body.page-light .impact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

body.page-light .impact-card h3 {
  color: #0F172A;
  font-weight: 700;
  line-height: 1.3;
}

body.page-light .impact-card p {
  color: #64748B;
}

/* Cards in a grid — equal height */
body.page-light [style*="display: grid"]>.impact-card {
  height: auto;
}

/* Ensure linked impact cards behave consistently */
body.page-light a>.impact-card {
  height: 100%;
}

/* ── Section CTA links ─────────────────────────────────────────── */
body.page-light [style*="text-align: center"] .section-cta-link,
body.page-light div[style*="text-align: center"]>a {
  display: inline-block;
}

/* ── Hero Section V4.2 ─────────────────────────────────────────── */
body.page-light #hero {
  background: #FAFBFF !important;
  overflow: visible !important;
}

body.page-light .hero-content {
  overflow: visible !important;
}

body.page-light #hero-nexus-container img {
  max-width: none;
  width: 100%;
  height: auto;
  display: block;
}

/* ── Hero Responsive: Tablet (≤1024px) ────────────────────────── */
@media (max-width: 1024px) {
  body.page-light .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  body.page-light .hero-content {
    order: 1;
    max-width: 640px;
    margin: 0 auto;
  }

  body.page-light .hero-visual {
    order: 2;
    justify-content: center !important;
  }

  body.page-light #hero-nexus-container {
    width: 100% !important;
    margin-left: 0 !important;
    max-width: 680px;
    margin: 0 auto;
  }

  body.page-light #hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.8rem) !important;
  }

  body.page-light #hero p {
    font-size: 1rem !important;
    max-width: 560px;
  }
}

/* ── Hero Responsive: Mobile (≤768px) ─────────────────────────── */
@media (max-width: 768px) {
  body.page-light #hero {
    padding: 4rem 0 3rem !important;
  }

  body.page-light #hero-nexus-container {
    max-width: 100% !important;
  }

  body.page-light #hero-nexus-container img {
    border-radius: 12px !important;
  }

  body.page-light .hero-content {
    text-align: left;
  }

  body.page-light section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  body.page-light [style*="display: grid"][style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Tablet Section Padding ────────────────────────────────────── */
@media (max-width: 900px) {
  body.page-light section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  body.page-light [style*="grid-template-columns: 1fr 1.6fr"],
  body.page-light [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  body.page-light [style*="grid-template-columns: 1fr 1fr"]:has(.impact-card) {
    grid-template-columns: 1fr !important;
  }
}

/* ── Solutions Grid Mobile ─────────────────────────────────────── */
@media (max-width: 720px) {
  body.page-light #solutions [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Typography Contrast Fixes ─────────────────────────────────── */
body.page-light .section-eyebrow {
  color: #0057FF !important;
  font-size: 0.85rem !important;
  opacity: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.page-light h2 {
  color: #0F172A;
  opacity: 1;
}

body.page-light h3 {
  color: #0F172A;
  opacity: 1;
}

/* Ensure body text is never invisible */
body.page-light [style*="color: #475569"] {
  opacity: 1 !important;
}

body.page-light [style*="color: #64748B"] {
  opacity: 1 !important;
}

body.page-light [style*="color: #334155"] {
  opacity: 1 !important;
}

/* ── Promise Card ──────────────────────────────────────────────── */
body.page-light .promise-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 4px solid #0057FF;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 820px;
  margin: 0 auto;
}

body.page-light .promise-card p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.75;
  margin: 0;
  text-align: center;
}

/* ── Our Promise section ───────────────────────────────────────── */
body.page-light #our-promise {
  background: #F1F5F9;
}

body.page-light #our-promise .section-eyebrow,
body.page-light #our-promise h2 {
  text-align: center;
}

/* ── Section-wide max-width ────────────────────────────────────── */
body.page-light .container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ── MARQUEE TICKER ANIMATION ──────────────────────────────────── */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tech-marquee-wrapper:hover .tech-marquee-track {
  animation-play-state: paused;
}

/* ── SITE-WIDE BUTTON STANDARDIZATION ──────────────────────────── */
.btn,
a.btn,
button.btn,
.btn-primary,
a[class*="btn"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 48px !important;
  padding: 0 1.75rem !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  transition: all 0.2s ease !important;
}

/* Header Let's Talk nav button exception */
header .btn,
header a[href*="contact"] {
  height: 38px !important;
  padding: 0 1.25rem !important;
  font-size: 0.85rem !important;
  border-radius: 6px !important;
}



/* Prevent horizontal scrollbars during side-sliding scroll animations */
html,
body {
  overflow-x: hidden;
}

/* ── SCROLL-DRIVEN SLIDE ANIMATIONS ────────────────────────────── */

/* Base hidden state */
.scroll-slide-left,
.scroll-slide-right {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-slide-left {
  transform: translateX(-50px);
}

.scroll-slide-right {
  transform: translateX(50px);
}

/* Revealed active state */
.scroll-slide-left.is-visible,
.scroll-slide-right.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Native CSS Scroll-Driven Animations (Modern Browsers supporting animation-timeline: view()) */
@supports (animation-timeline: view()) {
  @keyframes slideFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-60px);
    }

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

  @keyframes slideFromRight {
    0% {
      opacity: 0;
      transform: translateX(60px);
    }

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

  .scroll-slide-left-native {
    animation: slideFromLeft ease-out both;
    animation-timeline: view();
    animation-range: entry 10% cover 35%;
  }

  .scroll-slide-right-native {
    animation: slideFromRight ease-out both;
    animation-timeline: view();
    animation-range: entry 10% cover 35%;
  }
}


/* ── FOOTER SOCIAL ICONS ────────────────────────────────────────── */

.social-links {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #94A3B8;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.social-btn svg {
  display: block;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.social-btn:hover {
  background: rgba(0, 87, 255, 0.18);
  border-color: rgba(0, 87, 255, 0.4);
  color: #60A5FA;
  transform: translateY(-2px);
}

.social-btn:hover svg {
  stroke: #60A5FA;
}

/* --- END V4.2 REFINEMENTS --- */


/* ══════════════════════════════════════════════════════════════════
   GLOWDIGIT JOURNEY PANELS — Build · Launch · Glow
   Canonical styles for the three-panel visual journey section on
   the homepage. Moved from index.html inline <style> for DRY CSS.
   ══════════════════════════════════════════════════════════════════ */

/* Section wrapper — light page only */
body.page-light .glow-journey {
  background: #F4F7FF;
  padding: 4rem 0 5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* Section header */
.glow-journey-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.glow-journey-section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  color: #0057FF;
  display: block;
  margin-bottom: 0.4rem;
}

.glow-journey-section-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94A3B8;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Grid — 3 equal columns desktop */
.glow-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Panel base */
.glow-journey-panel {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 18px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.05);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
  position: relative;
  overflow: hidden;
}

/* Top accent line (revealed on hover) */
.glow-journey-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 250ms ease;
}

.glow-journey-panel--build::after {
  background: #0057FF;
}

.glow-journey-panel--launch::after {
  background: linear-gradient(90deg, #6366F1, #A855F7);
}

.glow-journey-panel--glow::after {
  background: linear-gradient(90deg, #0EA5E9, #10B981);
}

/* Visible state (set by IntersectionObserver) */
.glow-journey-panel.gj-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover: lift + border emphasis + reveal accent line */
.glow-journey-panel.gj-visible:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 87, 255, 0.22);
  box-shadow: 0 8px 28px rgba(0, 87, 255, 0.08);
}

.glow-journey-panel.gj-visible:hover::after {
  opacity: 1;
}

/* Entrance stagger — panels 2 and 3 delay slightly */
.glow-journey-panel:nth-child(2) {
  transition-delay: 80ms;
}

.glow-journey-panel:nth-child(3) {
  transition-delay: 160ms;
}

/* Panel meta row: "01 / BUILD" */
.glow-journey-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.glow-journey-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: #0057FF;
  letter-spacing: 0.06em;
}

.glow-journey-meta-sep {
  font-size: 0.65rem;
  color: #CBD5E1;
  font-family: 'JetBrains Mono', monospace;
}

.glow-journey-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Panel title */
.glow-journey-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 0.35rem;
  font-family: 'Manrope', sans-serif;
}

/* Supporting sentence beneath panel title */
.glow-journey-support {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 1.1rem;
  font-weight: 400;
}

/* SVG visual area (Cornflower Blue Banner Theme) */
.glow-journey-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 215px;
  background: linear-gradient(180deg, #5C9FE9 0%, #4D90E2 100%) !important;
  border: 1px solid #4384D6 !important;
  border-radius: 14px !important;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(77, 144, 226, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.35) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-journey-panel:hover .glow-journey-visual {
  border-color: #387BC9 !important;
  background: linear-gradient(180deg, #64A5EE 0%, #458AE0 100%) !important;
  box-shadow: 0 8px 24px rgba(77, 144, 226, 0.42), inset 0 1px 2px rgba(255, 255, 255, 0.45) !important;
}

.glow-journey-visual svg {
  width: 100%;
  height: auto;
  max-height: 195px;
  display: block;
}

/* ── Panel 1 (Build - Intelligent Products): PCB Circuit & Chip Animations ── */
.pulse-flow-1 {
  stroke-dasharray: 18 100;
  animation: circuitFlow1 3.2s linear infinite;
}
.pulse-flow-2 {
  stroke-dasharray: 14 90;
  animation: circuitFlow2 2.6s linear infinite;
}
.pulse-flow-3 {
  stroke-dasharray: 16 110;
  animation: circuitFlow3 3.8s linear infinite;
}

@keyframes circuitFlow1 {
  0% { stroke-dashoffset: 118; }
  100% { stroke-dashoffset: 0; }
}
@keyframes circuitFlow2 {
  0% { stroke-dashoffset: 104; }
  100% { stroke-dashoffset: 0; }
}
@keyframes circuitFlow3 {
  0% { stroke-dashoffset: 126; }
  100% { stroke-dashoffset: 0; }
}

.chip-core-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: coreBreathe 2.4s ease-in-out infinite;
}
@keyframes coreBreathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(0, 82, 255, 0.5)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.9)); }
}

.core-radial-anim {
  transform-box: fill-box;
  transform-origin: center;
  animation: coreGlowWave 2.4s ease-in-out infinite;
}
@keyframes coreGlowWave {
  0%, 100% { transform: scale(0.92); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.95; }
}

.core-ring-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: ringSpin 12s linear infinite;
}
@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Panel 2 (Launch - Digital Experiences): Layered Dashboard Animations ── */
.win-layer-back {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.win-layer-mid {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.win-layer-front {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-journey-panel--launch:hover .win-layer-back {
  transform: translate(6px, -4px);
}
.glow-journey-panel--launch:hover .win-layer-mid {
  transform: translate(3px, -2px);
}
.glow-journey-panel--launch:hover .win-layer-front {
  transform: translate(-2px, -2px);
}

.live-status-dot {
  animation: liveDotBlink 1.8s ease-in-out infinite;
}
@keyframes liveDotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.live-status-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: liveRingPulse 1.8s ease-out infinite;
}
@keyframes liveRingPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Dynamic Animated Analytics Bars */
.anim-bar-1 {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: barHeightAnim1 3.2s ease-in-out infinite;
}
.anim-bar-2 {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: barHeightAnim2 3.6s ease-in-out infinite 0.4s;
}
.anim-bar-3 {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: barHeightAnim3 2.8s ease-in-out infinite 0.8s;
}
.anim-bar-4 {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: barHeightAnim4 3.4s ease-in-out infinite 0.2s;
}

@keyframes barHeightAnim1 {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.68); }
}
@keyframes barHeightAnim2 {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}
@keyframes barHeightAnim3 {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.74); }
}
@keyframes barHeightAnim4 {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.62); }
}

/* ── Panel 3 (Glow - Glow Globally): 3D Globe & Radar Beacons ── */
.globe-atmosphere-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: globeAtmosphere 4s ease-in-out infinite;
}
@keyframes globeAtmosphere {
  0%, 100% { opacity: 0.6; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

.globe-orbit-ring {
  stroke-dashoffset: 0;
  animation: orbitDashFlow 16s linear infinite;
}
@keyframes orbitDashFlow {
  from { stroke-dashoffset: 120; }
  to { stroke-dashoffset: 0; }
}

.satellite-dot {
  transform-box: fill-box;
  transform-origin: 140px 92px;
  animation: satelliteOrbit 8s linear infinite;
}
@keyframes satelliteOrbit {
  0% { transform: rotate(0deg) translate(0px, 0px); }
  50% { transform: rotate(180deg) translate(0px, 0px); }
  100% { transform: rotate(360deg) translate(0px, 0px); }
}

/* Radar Ping Waves from HQ Node */
.radar-wave-1 {
  transform-box: fill-box;
  transform-origin: center;
  animation: radarPingWave 2.2s ease-out infinite;
}
.radar-wave-2 {
  transform-box: fill-box;
  transform-origin: center;
  animation: radarPingWave 2.2s ease-out infinite 0.7s;
}

@keyframes radarPingWave {
  0% { transform: scale(0.3); opacity: 0.9; stroke-width: 2; }
  100% { transform: scale(3.5); opacity: 0; stroke-width: 0.5; }
}

.hq-core-beacon {
  transform-box: fill-box;
  transform-origin: center;
  animation: beaconPulse 2.2s ease-in-out infinite;
}
@keyframes beaconPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(0, 82, 255, 0.6)); }
  50% { transform: scale(1.18); filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.9)); }
}

/* Inter-Continental Data Packets */
.data-arc-packet-1 {
  stroke-dasharray: 16 80;
  animation: packetFlow1 2.8s linear infinite;
}
.data-arc-packet-2 {
  stroke-dasharray: 12 60;
  animation: packetFlow2 2.2s linear infinite 0.5s;
}
.data-arc-packet-3 {
  stroke-dasharray: 14 70;
  animation: packetFlow3 2.5s linear infinite 1s;
}

@keyframes packetFlow1 {
  0% { stroke-dashoffset: 96; }
  100% { stroke-dashoffset: 0; }
}
@keyframes packetFlow2 {
  0% { stroke-dashoffset: 72; }
  100% { stroke-dashoffset: 0; }
}
@keyframes packetFlow3 {
  0% { stroke-dashoffset: 84; }
  100% { stroke-dashoffset: 0; }
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .pulse-flow-1, .pulse-flow-2, .pulse-flow-3,
  .chip-core-pulse, .core-radial-anim, .core-ring-spin,
  .live-status-dot, .live-status-ring,
  .anim-bar-1, .anim-bar-2, .anim-bar-3, .anim-bar-4,
  .globe-atmosphere-pulse, .globe-orbit-ring, .satellite-dot,
  .radar-wave-1, .radar-wave-2, .hq-core-beacon,
  .data-arc-packet-1, .data-arc-packet-2, .data-arc-packet-3 {
    animation: none !important;
  }
}

/* Capability list */
.glow-journey-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.glow-journey-list li {
  font-size: 0.82rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  line-height: 1.5;
}

.glow-journey-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #0057FF;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Panel CTA link */
.glow-journey-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0057FF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.25rem;
  transition: gap 200ms ease, color 200ms ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

.glow-journey-cta:hover {
  gap: 0.6rem;
  color: #0041CC;
}

/* ── Responsive breakpoints ── */

/* Tablet: 2 columns */
@media (max-width: 1100px) {
  .glow-journey-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Panel 3 spans full width, centered */
  .glow-journey-panel:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

/* Mobile: 1 column */
@media (max-width: 700px) {
  .glow-journey-grid {
    grid-template-columns: 1fr;
  }

  .glow-journey-panel:nth-child(3) {
    grid-column: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  body.page-light .glow-journey {
    padding: 3rem 0 4rem;
  }
}

/* Reduced-motion: skip entrance animation, keep hover interaction */
@media (prefers-reduced-motion: reduce) {
  .glow-journey-panel {
    opacity: 1;
    transform: none;
    transition: border-color 250ms ease, box-shadow 250ms ease;
  }
}

/* ── End GlowDigit Journey Panels ─────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════════
   GLOWDIGIT EXECUTIVE DESIGN SYSTEM — page-light
   World-class, premium visual language for all light-mode pages.
   Stripe · Linear · Vercel · Apple reference tier.
   ─ Do NOT add more override blocks below this section ─
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Token layer ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --brand-primary:      #0052FF;
  --brand-primary-dark: #003FCC;
  --brand-cyan:         #0EA5E9;

  /* Ink / text */
  --ink-heading: #0B1120;
  --ink-body:    #3D4A5C;
  --ink-muted:   #6B7A8D;
  --ink-subtle:  #9CA8B8;

  /* Canvas */
  --canvas-base:  #FFFFFF;
  --canvas-wash:  #F6F8FB;
  --canvas-tint:  #EEF3FA;

  /* Borders */
  --border-hairline: rgba(15, 23, 42, 0.07);
  --border-soft:     rgba(15, 23, 42, 0.11);
  --border-medium:   rgba(15, 23, 42, 0.16);
  --border-brand:    rgba(0, 82, 255, 0.30);

  /* Shadows — diffuse, professional, not heavy */
  --shadow-xs:   0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm:   0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  --shadow-md:   0 4px 16px -2px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-lg:   0 12px 32px -4px rgba(15, 23, 42, 0.10), 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-brand: 0 6px 20px -2px rgba(0, 82, 255, 0.28);
  --shadow-btn:   0 1px 2px rgba(0, 82, 255, 0.20), 0 0 0 1px rgba(0, 82, 255, 0.16);

  /* Motion */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── 2. Page canvas ─────────────────────────────────────────────── */
body.page-light {
  background: var(--canvas-base);
  color: var(--ink-body);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── 3. Typography ──────────────────────────────────────────────── */
body.page-light h1,
body.page-light h2,
body.page-light h3,
body.page-light h4,
body.page-light h5,
body.page-light h6,
body.page-light .section-title,
body.page-light .glow-journey-title,
body.page-light .form-title {
  color: var(--ink-heading) !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

body.page-light p {
  color: var(--ink-body);
  line-height: 1.72;
}

body.page-light .section-eyebrow,
body.page-light .section-tag,
body.page-light .glow-journey-section-eyebrow,
body.page-light .glow-journey-num,
body.page-light .adaptive-eyebrow {
  color: var(--brand-primary) !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.page-light .container {
  max-width: 1240px;
}

/* ── 4. Section rhythm ──────────────────────────────────────────── */
body.page-light section {
  border-color: var(--border-hairline) !important;
}

body.page-light section:not(#hero) {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

body.page-light .glow-journey,
body.page-light #our-promise,
body.page-light .bg-light-gray {
  background: var(--canvas-wash) !important;
}

@media (max-width: 900px) {
  body.page-light section:not(#hero) {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 640px) {
  body.page-light section:not(#hero) {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ── 5. Header / Navbar ─────────────────────────────────────────── */
header {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(18px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
  border-bottom: 1px solid var(--border-hairline) !important;
  box-shadow: none !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

header.scrolled {
  box-shadow: var(--shadow-sm) !important;
  border-bottom-color: var(--border-soft) !important;
}

/* Desktop navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav a {
  color: var(--ink-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 220ms var(--ease-spring);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--brand-primary);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.desktop-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0 1.1rem;
  background: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
  border-radius: 8px;
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-btn);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.desktop-nav-cta:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  box-shadow: var(--shadow-brand);
  transform: translateY(-1px);
  color: #fff !important;
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
}

/* ── 6. Announcement Banner (Cornflower Blue Screenshot Theme) ────── */
.saas-promo-banner {
  max-width: 1240px;
  width: calc(100% - 24px);
  margin: 4px auto 8px;
  background: linear-gradient(180deg, #5C9FE9 0%, #4D90E2 100%) !important;
  border: 1px solid #4384D6 !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 10px rgba(77, 144, 226, 0.28), 0 1px 2px rgba(15, 23, 42, 0.05) !important;
  overflow: hidden;
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.saas-promo-banner::before {
  display: none !important;
}

.saas-promo-banner .saas-banner-desktop {
  min-height: 40px !important;
  height: 40px !important;
  padding: 0 0.85rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
}

.saas-promo-banner .saas-banner-section {
  display: flex !important;
  align-items: center !important;
}

.saas-promo-banner .saas-left {
  flex: 1.1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
}

.saas-promo-banner .saas-left-content {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
}

.saas-promo-banner .saas-left-title {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  white-space: nowrap !important;
  letter-spacing: -0.01em !important;
}

.saas-promo-banner .saas-left-price-row {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.saas-promo-banner .saas-price {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.01em !important;
}

.saas-promo-banner .saas-badge {
  font-size: 0.58rem !important;
  font-weight: 700 !important;
  padding: 1.5px 5px !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

.saas-promo-banner .saas-badge-green {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
}

.saas-promo-banner .saas-badge-orange {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
}

.saas-promo-banner .saas-badge-blue {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
}

.saas-promo-banner .saas-center-divider {
  width: 1px !important;
  height: 18px !important;
  background: rgba(255, 255, 255, 0.30) !important;
  margin: 0 4px !important;
  flex-shrink: 0 !important;
}

.saas-promo-banner .saas-center {
  flex: 1.3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.saas-promo-banner .saas-center-heading-row {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
}

.saas-promo-banner .saas-center-title {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.01em !important;
}

.saas-promo-banner .saas-center-desc-row {
  display: flex !important;
  align-items: center !important;
}

.saas-promo-banner .saas-desc-text {
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  color: #E2EFFF !important;
  white-space: nowrap !important;
}

.saas-promo-banner .saas-right {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 6px !important;
  min-width: auto !important;
}

.saas-promo-banner .saas-cta,
.saas-promo-banner .saas-cta-mobile {
  min-height: 28px !important;
  height: 28px !important;
  padding: 0 0.85rem !important;
  background: #FFFFFF !important;
  border: none !important;
  border-radius: 6px !important;
  color: #2563EB !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12) !important;
  transition: all 160ms ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: auto !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.saas-promo-banner .saas-cta:hover,
.saas-promo-banner .saas-cta-mobile:hover {
  background: #F0F6FF !important;
  color: #1D4ED8 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16) !important;
}

.saas-promo-banner .saas-close {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.15rem !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin-left: 2px !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: background 150ms ease, color 150ms ease !important;
  line-height: 1 !important;
}

.saas-promo-banner .saas-close:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #FFFFFF !important;
}

/* Mobile Banner */
@media (max-width: 900px) {
  .saas-promo-banner {
    width: calc(100% - 16px);
    margin: 4px auto 6px;
  }
  .saas-promo-banner .saas-banner-desktop {
    display: none !important;
  }
  .saas-promo-banner .saas-banner-mobile {
    display: block !important;
    padding: 0.5rem 0.75rem !important;
  }
  .saas-promo-banner .saas-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px;
  }
  .saas-promo-banner .saas-mobile-offer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #FFFFFF !important;
  }
  .saas-promo-banner .saas-mobile-launch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
    color: #FFFFFF !important;
  }
  .saas-promo-banner .saas-cta-mobile {
    width: 100% !important;
    margin-top: 4px !important;
    height: 32px !important;
  }
}

/* ── 7. Cards ───────────────────────────────────────────────────── */
body.page-light .card-modern,
body.page-light .glow-journey-panel,
body.page-light .impact-card,
body.page-light [class*="service-card"],
body.page-light [class*="solution-card"] {
  background: #FFFFFF !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: 14px !important;
  box-shadow: var(--shadow-xs) !important;
  transition: transform 240ms var(--ease-spring),
              box-shadow 240ms var(--ease-spring),
              border-color 240ms ease !important;
}

body.page-light .card-modern:hover,
body.page-light .glow-journey-panel.gj-visible:hover,
body.page-light .impact-card:hover,
body.page-light [class*="service-card"]:hover,
body.page-light [class*="solution-card"]:hover {
  transform: translateY(-4px) !important;
  border-color: var(--border-brand) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Journey panels: top accent line */
body.page-light .glow-journey-panel::after {
  height: 2px;
}

body.page-light .glow-journey-panel--build::after {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-cyan));
}
body.page-light .glow-journey-panel--launch::after {
  background: var(--brand-primary);
}
body.page-light .glow-journey-panel--glow::after {
  background: var(--brand-cyan);
}

body.page-light .glow-journey-visual {
  background: linear-gradient(180deg, #5C9FE9 0%, #4D90E2 100%) !important;
  border: 1px solid #4384D6 !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 16px rgba(77, 144, 226, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.35) !important;
}

body.page-light .glow-journey-panel:hover .glow-journey-visual {
  border-color: #387BC9 !important;
  background: linear-gradient(180deg, #64A5EE 0%, #458AE0 100%) !important;
  box-shadow: 0 8px 24px rgba(77, 144, 226, 0.42), inset 0 1px 2px rgba(255, 255, 255, 0.45) !important;
}

/* ── 8. Buttons ─────────────────────────────────────────────────── */
body.page-light .btn,
body.page-light .btn-primary {
  border-radius: 8px !important;
  font-weight: 600;
  transition: transform 180ms ease,
              background 180ms ease,
              box-shadow 180ms ease !important;
}

body.page-light .btn-primary {
  background: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  box-shadow: var(--shadow-btn) !important;
}

body.page-light .btn-primary:hover {
  background: var(--brand-primary-dark) !important;
  border-color: var(--brand-primary-dark) !important;
  box-shadow: var(--shadow-brand) !important;
  transform: translateY(-1.5px) !important;
}

body.page-light .section-cta-link,
body.page-light a[style*="color: #0057FF"],
body.page-light a[style*="color: #0052FF"] {
  color: var(--brand-primary) !important;
}

body.page-light [style*="background: #0057FF"],
body.page-light [style*="background: #0052FF"] {
  background: var(--brand-primary) !important;
}

body.page-light [style*="border: 1.5px solid #0057FF"],
body.page-light [style*="border: 1.5px solid #0052FF"] {
  border-color: var(--brand-primary) !important;
}

/* ── 9. Hero section ────────────────────────────────────────────── */
body.page-light #hero {
  background: radial-gradient(ellipse 90% 60% at 50% -10%,
    rgba(0, 82, 255, 0.07) 0%, transparent 65%), #FFFFFF !important;
}

/* ── 10. Inline text colour unification ─────────────────────────── */
body.page-light [style*="color: #0F172A"],
body.page-light [style*="color: #101828"] {
  color: var(--ink-heading) !important;
}

body.page-light [style*="color: #475569"],
body.page-light [style*="color: #64748B"],
body.page-light [style*="color: #334155"],
body.page-light [style*="color: #526174"],
body.page-light [style*="color: #475467"] {
  color: var(--ink-body) !important;
}

/* ── 11. Forms ──────────────────────────────────────────────────── */
body.page-light .contact-form-wrap {
  background: #FFFFFF !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-md) !important;
}

body.page-light .form-group input,
body.page-light .form-group select,
body.page-light .form-group textarea {
  background: #FAFBFC !important;
  border: 1.5px solid var(--border-medium) !important;
  border-radius: 8px !important;
  color: var(--ink-heading) !important;
  font-family: 'Inter', sans-serif !important;
  transition: border-color 160ms ease, box-shadow 160ms ease !important;
}

body.page-light .form-group input:focus,
body.page-light .form-group select:focus,
body.page-light .form-group textarea:focus {
  border-color: var(--brand-primary) !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.12) !important;
  outline: none !important;
}

body.page-light .form-group label {
  color: var(--ink-muted) !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── 12. Footer (Advertisement Banner Theme) ──────────────────────── */
footer,
body.page-light footer {
  background: linear-gradient(180deg, #5C9FE9 0%, #4D90E2 100%) !important;
  border-top: 1px solid #4384D6 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
  padding: 5rem 0 2rem 0 !important;
  color: #E2EFFF !important;
  position: relative;
}

footer::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.5) 70%, transparent) !important;
  opacity: 0.9 !important;
  pointer-events: none !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

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

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15)) !important;
}

footer .glow-text {
  color: #FFFFFF !important;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

footer .digit-text {
  color: #FFFFFF !important;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

footer .footer-tagline {
  color: #E2EFFF !important;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

footer .footer-tagline span {
  color: #E2EFFF !important;
}

footer p,
.footer-logo-desc p {
  color: #E2EFFF !important;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 340px;
}

footer h4,
.footer-col h4 {
  color: #FFFFFF !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-col h4::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75) !important;
  border-radius: 1px;
}

footer a,
.footer-col a,
.footer-col ul a {
  color: #E2EFFF !important;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease, padding-left 0.18s ease;
  display: inline-block;
}

footer a:hover,
.footer-col a:hover,
.footer-col ul a:hover {
  color: #FFFFFF !important;
  padding-left: 3px;
}

footer .footer-email-link,
footer a[href^="mailto:"] {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

footer .footer-email-link:hover,
footer a[href^="mailto:"]:hover {
  color: #FFFFFF !important;
  opacity: 0.92;
}

footer .footer-phone-text,
footer li:last-child {
  color: #E2EFFF !important;
  font-size: 0.875rem !important;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

footer .social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  text-decoration: none;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

footer .social-btn svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: #FFFFFF !important;
  fill: none !important;
  stroke-width: 2 !important;
  transition: stroke 0.2s ease;
}

footer .social-btn:hover {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #2563EB !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

footer .social-btn:hover svg {
  stroke: #2563EB !important;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22) !important;
  padding-top: 1.75rem;
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #E2EFFF !important;
}

footer .footer-bottom p {
  color: #E2EFFF !important;
  margin: 0;
}

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

.footer-bottom-links a {
  color: #E2EFFF !important;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-bottom-links a:hover {
  color: #FFFFFF !important;
  text-decoration: underline;
  padding-left: 0 !important;
}

/* ── 13. Contact item icons ─────────────────────────────────────── */
body.page-light .contact-item-icon {
  background: rgba(0, 82, 255, 0.07) !important;
  border: 1px solid rgba(0, 82, 255, 0.14) !important;
  color: var(--brand-primary) !important;
  border-radius: 10px !important;
}

/* ── 14. Filter buttons (Case Studies) ──────────────────────────── */
body.page-light .filter-btn {
  background: #FFFFFF !important;
  border: 1.5px solid var(--border-medium) !important;
  color: var(--ink-muted) !important;
  border-radius: 30px !important;
  font-weight: 600;
  transition: all 200ms ease !important;
}

body.page-light .filter-btn:hover {
  background: rgba(0, 82, 255, 0.05) !important;
  border-color: var(--brand-primary) !important;
  color: var(--brand-primary) !important;
}

body.page-light .filter-btn.active {
  background: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.28) !important;
}

/* ── 15. WhatsApp floating button ───────────────────────────────── */
.whatsapp-float-btn {
  right: 1.5rem;
  bottom: 1.5rem;
  width: 50px;
  height: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18) !important;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.whatsapp-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22) !important;
}

/* ── 16. Mobile nav drawer ──────────────────────────────────────── */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 32, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1001;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.active {
  display: block;
  opacity: 1;
}

#mobileNavDrawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 85%;
  max-width: 340px;
  background: #FFFFFF;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
  z-index: 1002;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease-spring);
  display: flex;
  flex-direction: column;
}

#mobileNavDrawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-hairline);
  margin-bottom: 1.5rem;
}

.mobile-drawer-close {
  background: var(--canvas-wash);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-muted);
  transition: background 160ms ease, color 160ms ease;
}

.mobile-drawer-close:hover {
  background: var(--canvas-tint);
  color: var(--ink-heading);
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-list a {
  color: var(--ink-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: block;
  padding: 0.65rem 0.5rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  color: var(--brand-primary);
  background: rgba(0, 82, 255, 0.05);
}

.mobile-drawer-cta-wrap {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-hairline);
}

.mobile-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  background: var(--brand-primary);
  color: #FFFFFF !important;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: var(--shadow-btn);
  transition: background 180ms ease, transform 180ms ease;
}

.mobile-drawer-cta:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-1px);
}

/* ── 17. Utility: section heading common layout ──────────────────── */
body.page-light .section-header {
  margin-bottom: 3rem;
  text-align: center;
}

/* ── 18. Product modal / lead form ──────────────────────────────── */
body.page-light #product-lead-modal {
  background: rgba(11, 17, 32, 0.65);
  backdrop-filter: blur(8px);
}

body.page-light .modal-card {
  background: #FFFFFF !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: 18px !important;
  box-shadow: 0 32px 64px -12px rgba(11, 17, 32, 0.24) !important;
}

/* ── 19. Floating CTA buttons (Let's Talk + WhatsApp) ────────────── */
.floating-cta-cluster,
.floating-cta-desktop {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 8px !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
}

.floating-cta-cluster .floating-btn,
.floating-cta-desktop .fab-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 146px !important;
  min-width: 146px !important;
  height: 42px !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 180ms ease, background 180ms ease !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  text-align: center !important;
}

.floating-cta-cluster .floating-btn-talk,
.floating-cta-desktop .fab-btn:first-child:not([style*="background: #25d366"]) {
  background: #0052FF !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.35) !important;
}

.floating-cta-cluster .floating-btn-talk:hover,
.floating-cta-desktop .fab-btn:first-child:not([style*="background: #25d366"]):hover {
  background: #003FCC !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(0, 82, 255, 0.45) !important;
}

.floating-cta-cluster .floating-btn-whatsapp,
.floating-cta-desktop .fab-btn[style*="background: #25d366"] {
  background: #25D366 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35) !important;
}

.floating-cta-cluster .floating-btn-whatsapp:hover,
.floating-cta-desktop .fab-btn[style*="background: #25d366"]:hover {
  background: #1EBE5D !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45) !important;
}

.floating-cta-cluster .floating-btn svg,
.floating-cta-desktop .fab-btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  margin: 0 !important;
}

/* Hide obsolete single-button float */
.whatsapp-float-btn {
  display: none !important;
}

/* Mobile Responsiveness — Symmetrical and compact on mobile */
@media (max-width: 768px) {
  .floating-cta-cluster,
  .floating-cta-desktop {
    display: flex !important;
    bottom: 16px !important;
    right: 16px !important;
    gap: 8px !important;
  }
  .floating-cta-cluster .floating-btn,
  .floating-cta-desktop .fab-btn {
    width: 132px !important;
    min-width: 132px !important;
    height: 38px !important;
    padding: 0 12px !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
  }
  .floating-cta-cluster .floating-btn svg,
  .floating-cta-desktop .fab-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
  .floating-cta-mobile {
    display: none !important;
  }
}

/* ── 20. Scrollbar ──────────────────────────────────────────────── */
body.page-light ::-webkit-scrollbar-track { background: var(--canvas-wash); }
body.page-light ::-webkit-scrollbar-thumb { background: #CBD5E1; border-color: var(--canvas-wash); }
body.page-light ::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

/* ── 21. Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  body.page-light * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   END OF EXECUTIVE DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   22. TRIAL DOWNLOAD MODAL
   Premium light-corporate registration modal for GlowDigit product
   trials. Separate from the consulting/lead contact.html journey.
   ═══════════════════════════════════════════════════════════════════ */

/* --- Backdrop / Overlay --- */
.trial-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.trial-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* --- Modal Card --- */
.trial-modal-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.14), 0 2px 8px rgba(15, 23, 42, 0.06);
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2.25rem 2.25rem 2rem;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 #F8FAFC;
}

.trial-modal-backdrop.active .trial-modal-card {
  transform: translateY(0) scale(1);
}

.trial-modal-card::-webkit-scrollbar {
  width: 6px;
}
.trial-modal-card::-webkit-scrollbar-track {
  background: #F8FAFC;
}
.trial-modal-card::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

/* --- Close Button --- */
.trial-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1F5F9;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  color: #64748B;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1;
}
.trial-modal-close:hover {
  background: #E2E8F0;
  color: #0F172A;
}
.trial-modal-close:focus-visible {
  outline: 2px solid #0057FF;
  outline-offset: 2px;
}

/* --- Header area --- */
.trial-modal-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0057FF;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.3rem;
}

.trial-modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.trial-modal-subtitle {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* --- Product Badge --- */
.trial-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #EFF6FF;
  border: 1px solid rgba(0, 87, 255, 0.18);
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1.5rem;
}

.trial-product-badge-name {
  font-size: 0.825rem;
  font-weight: 700;
  color: #0057FF;
}

.trial-product-badge-meta {
  font-size: 0.72rem;
  color: #64748B;
  font-family: 'JetBrains Mono', monospace;
}

.trial-product-badge-sep {
  width: 1px;
  height: 12px;
  background: rgba(0, 87, 255, 0.2);
}

/* --- Platform notice --- */
.trial-platform-notice {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #64748B;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0.75rem;
  background: #F8FAFC;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 8px;
}

.trial-platform-notice svg {
  flex-shrink: 0;
  color: #94A3B8;
}

/* --- Form fields inside trial modal --- */
.trial-modal-card .form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.trial-modal-card .form-group input {
  width: 100%;
  padding: 0.6rem 0.875rem;
  font-size: 0.9rem;
  color: #0F172A;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: 'Inter', sans-serif;
}

.trial-modal-card .form-group input::placeholder {
  color: #CBD5E1;
}

.trial-modal-card .form-group input:focus {
  outline: none;
  border-color: #0057FF;
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.trial-modal-card .form-group input:invalid:not(:placeholder-shown) {
  border-color: #EF4444;
}

.trial-modal-card .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.trial-modal-card .form-group {
  margin-bottom: 0;
}

/* --- Consent row --- */
.trial-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.1rem 0 1.4rem;
  padding: 0.875rem;
  background: #F8FAFC;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 8px;
}

.trial-consent-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #0057FF;
  cursor: pointer;
}

.trial-consent-row label {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.5;
  cursor: pointer;
}

/* --- Submit CTA --- */
.trial-submit-btn {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  background: #0057FF;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
  position: relative;
}

.trial-submit-btn:hover:not(:disabled) {
  background: #1A69FF;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 87, 255, 0.28);
}

.trial-submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.trial-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.trial-submit-btn:focus-visible {
  outline: 2px solid #0057FF;
  outline-offset: 3px;
}

/* --- Privacy line --- */
.trial-privacy-line {
  text-align: center;
  font-size: 0.78rem;
  color: #94A3B8;
  margin-top: 0.875rem;
  line-height: 1.5;
}

.trial-privacy-line a {
  color: #0057FF;
  text-decoration: none;
  font-weight: 500;
}

.trial-privacy-line a:hover {
  text-decoration: underline;
}

/* --- Form status messages --- */
.trial-form-status {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.875rem;
  display: none;
}

.trial-form-status.error {
  display: block;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #B91C1C;
}

/* --- Success State --- */
.trial-success-state {
  display: none;
  text-align: center;
  padding: 1rem 0.5rem 0.5rem;
}

.trial-success-icon {
  width: 60px;
  height: 60px;
  background: #EFF6FF;
  border: 2px solid rgba(0, 87, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.trial-success-icon svg {
  color: #0057FF;
}

.trial-success-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.trial-success-body {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.trial-success-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #F8FAFC;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  text-align: left;
  margin-bottom: 1.75rem;
  width: 100%;
}

.trial-success-meta-row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.825rem;
}

.trial-success-meta-label {
  font-weight: 600;
  color: #374151;
  min-width: 80px;
}

.trial-success-meta-value {
  color: #475569;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
}

.trial-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  background: #0057FF;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
  letter-spacing: 0.01em;
}

.trial-download-btn:hover {
  background: #1A69FF;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.3);
  color: #FFFFFF;
  text-decoration: none;
}

.trial-download-btn:focus-visible {
  outline: 2px solid #0057FF;
  outline-offset: 3px;
}

.trial-success-note {
  font-size: 0.78rem;
  color: #94A3B8;
  margin-top: 0.875rem;
  line-height: 1.5;
}

/* --- Pulse dot loader --- */
.trial-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: inline-block;
  animation: trialPulse 0.8s ease-in-out infinite alternate;
  margin-left: 6px;
}

@keyframes trialPulse {
  from { opacity: 0.4; transform: scale(0.8); }
  to   { opacity: 1;   transform: scale(1.2); }
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .trial-modal-card {
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 14px;
    max-height: 95vh;
  }

  .trial-modal-card .form-group-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .trial-modal-title {
    font-size: 1.15rem;
    padding-right: 2rem;
  }

  .trial-success-meta {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 400px) {
  .trial-modal-backdrop {
    padding: 0.5rem;
  }

  .trial-modal-card {
    padding: 1.5rem 1rem 1.25rem;
  }
}

/* --- "Download Free Trial" trigger buttons (on product cards) --- */
.btn-download-trial {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  background: #0057FF;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
  letter-spacing: 0.01em;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.btn-download-trial:hover {
  background: #1A69FF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 87, 255, 0.25);
  color: #FFFFFF;
  text-decoration: none;
}

.btn-download-trial:focus-visible {
  outline: 2px solid #0057FF;
  outline-offset: 3px;
}

.btn-download-trial svg {
  flex-shrink: 0;
}

/* Coming-soon notify button variant */
.btn-notify-me {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0057FF;
  background: #FFFFFF;
  border: 1.5px solid #0057FF;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  letter-spacing: 0.01em;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.btn-notify-me:hover {
  background: #EFF6FF;
  color: #0057FF;
  text-decoration: none;
}

.btn-notify-me:focus-visible {
  outline: 2px solid #0057FF;
  outline-offset: 3px;
}

