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

/* --- CUSTOM VARIABLES / DESIGN SYSTEM --- */
:root {
  --bg-dark: #0F1117;
  --bg-deep: #F8FAFC;
  --card-bg: #FFFFFF;
  --card-border: rgba(0, 0, 0, 0.08);
  --card-border-glow: rgba(0, 87, 255, 0.35);

  /* GlowDigit brand system */
  --primary: #0057FF;
  --primary-hover: #0046CC;
  --secondary: #00AEEF;
  --secondary-hover: #008CBE;
  --accent: #1E2229;
  --accent-hover: #0F1117;

  /* High-Contrast, Authoritative Text Colors */
  --text-main: #111827;
  --text-muted: #4b5563;
  --text-dark: #6b7280;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #0057FF 0%, #00AEEF 100%);
  --gradient-dark: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(0, 87, 255, 0.05), transparent 60%);

  /* Shadows & Blurs */
  --shadow-neon: 0 10px 24px rgba(0, 87, 255, 0.16);
  --shadow-neon-purple: 0 10px 24px rgba(0, 174, 239, 0.12);
  --shadow-premium: 0 8px 30px rgba(0, 0, 0, 0.03);
  --shadow-premium-hover: 0 15px 35px rgba(0, 0, 0, 0.06);
  --blur-glass: none;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 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 (Dark Background) */
footer .glow-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
  /* White/light gray gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FFFFFF;
}

footer .digit-text {
  background: linear-gradient(135deg, #38BDF8 0%, #0066FF 100%);
  /* Lighter bright blue for dark background */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #38BDF8;
}

.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #94A3B8;
  /* Light slate gray */
  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: 7.5rem 0;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4.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: #161b22;
  /* Heavy solid corporate dark block */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 2rem 0;
  color: #ffffff;
}

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

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

.footer-logo-desc p {
  color: #8b949e;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b949e;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: none;
}

.social-btn:hover {
  background: var(--primary);
  /* Sky-cyan hover */
  color: #161b22;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  color: #ffffff;
  /* Crisp white headers */
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: var(--primary);
}

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

.footer-col ul a {
  text-decoration: none;
  color: #8b949e;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--primary);
  /* Sky-cyan hover */
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  /* Clean dark divider */
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #8b949e;
}

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

.footer-bottom-links a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #8b949e;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary);
  /* Sky-cyan hover */
}

/* --- 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: 8px auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.12);
  background: linear-gradient(135deg, rgba(0, 27, 110, 0.95) 0%, rgba(0, 61, 165, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1100;
  color: #fff;
  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: #ffffff;
  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: #ffffff;
}

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

.saas-center-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  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: #ffffff;
}

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

.saas-desc-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

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

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

.saas-cta {
  background: #ffffff;
  color: #001B6E;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.saas-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Close */
.saas-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  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: #fff;
}

.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:
    linear-gradient(135deg, #08111f 0%, #0b1f3a 58%, #121826 100%);
}

@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;
  }
}