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

/* --- CUSTOM VARIABLES / DESIGN SYSTEM --- */
:root {
  --bg-dark: #ffffff; /* Crisp high-contrast corporate white */
  --bg-deep: #f8f9fa; /* Cool industrial light gray block background */
  --card-bg: #ffffff; /* Solid corporate white */
  --card-border: rgba(0, 0, 0, 0.08); /* Clean thin border */
  --card-border-glow: rgba(1, 175, 239, 0.35); /* Authority cyan blue hover outline */
  
  /* Brand Accents (Vibrant engineering accents inspired by Shilchar and GlowDigit) */
  --primary: #01afef; /* Shilchar signature cyan sky blue */
  --primary-hover: #5A5A5A; /* Shilchar standard dark gray hover color */
  --secondary: #c82b3e; /* GlowDigit brand deep red */
  --secondary-hover: #af2131;
  --accent-blue: #01afef;
  --accent-blue-hover: #0194cc;
  
  /* High-Contrast, Authoritative Text Colors */
  --text-main: #212529; /* Authoritative dark charcoal body text */
  --text-muted: #5A5A5A; /* Neutral corporate dark grey for descriptions */
  --text-dark: #8c929a; /* Cool steel gray for captions */
  
  /* Gradients (Subtle engineering gradient paths rather than ambient neon) */
  --gradient-brand: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(1, 175, 239, 0.05), transparent 60%);
  
  /* Shadows & Blurs (Subtle and clean, matching industrial standard) */
  --shadow-neon: 0 6px 15px rgba(1, 175, 239, 0.12); /* Cyan shadow */
  --shadow-neon-purple: 0 6px 15px rgba(200, 43, 62, 0.12); /* Red shadow */
  --shadow-premium: 0 8px 30px rgba(0, 0, 0, 0.03); /* Muted, clean box elevation */
  --shadow-premium-hover: 0 15px 35px rgba(0, 0, 0, 0.06);
  --blur-glass: none; /* Solid, crisp container layouts without glassmorphic blurs */
  
  /* 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', 'Poppins', 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', 'Rubik', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

/* --- 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: 20px 0px; /* Shilchar asymmetric cut corners: top-left & bottom-right curved, others sharp */
  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::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: -5px;
  bottom: -5px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  border-radius: 0px 0px 20px 0px;
  z-index: -1;
  transition: var(--transition-normal);
}

.btn-primary:hover {
  background: var(--primary-hover); /* Heavy industrial dark gray */
  border-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  border-color: var(--primary-hover);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

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

.btn-secondary::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: -5px;
  bottom: -5px;
  border-right: 2px solid var(--secondary); /* The red outline highlights the second corporate color */
  border-bottom: 2px solid var(--secondary);
  border-radius: 0px 0px 20px 0px;
  z-index: -1;
  transition: var(--transition-normal);
}

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

.btn-secondary:hover::after {
  border-color: var(--secondary);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* --- NAVIGATION BAR --- */
header {
  position: sticky; /* Modern sticky system ensures header docks naturally below any banner and sticks at top: 0 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff; /* Always solid corporate white */
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-normal);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  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;
}

.logo-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.logo-text-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.2;
}

.logo-wordmark {
  font-weight: 800;
  font-family: 'Rubik', sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  line-height: 1;
}

.header-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.header-tagline-badge .dot {
  color: var(--secondary);
  font-weight: 900;
  font-size: 0.7rem;
  line-height: 1;
}

.header-slogan {
  display: inline-flex;
  align-items: center;
  font-family: 'Rubik', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.slogan-dark {
  color: #2d2d3a;
}

.slogan-dot {
  color: #2d2d3a;
  margin: 0 0.05rem;
}

.slogan-glow {
  color: #2d2d3a;
}

.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: 12px 0px; /* Matching custom geometric cut */
  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::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: -3px;
  bottom: -3px;
  border-right: 1.5px solid var(--primary);
  border-bottom: 1.5px solid var(--primary);
  border-radius: 0px 0px 12px 0px;
  z-index: -1;
  transition: var(--transition-normal);
  display: block !important;
}

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

.nav-links a.btn-primary:hover::after {
  border-color: var(--primary-hover);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.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 - 80px); /* Account for sticky header height */
  display: flex;
  align-items: center;
  padding-top: 4rem; /* Balanced padding since header resides in normal document flow */
  padding-bottom: 4rem;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

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

.hero-content {
  position: relative;
}

.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(1, 175, 239, 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: 3.8rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.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: center;
  align-items: center;
}

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

.visual-globe-outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px dashed rgba(200, 43, 62, 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(200, 43, 62, 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(200, 43, 62, 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(200, 43, 62, 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(1, 175, 239, 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(200, 43, 62, 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: var(--primary);
  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: 16px 0px; /* Custom asymmetric geometric corner cuts */
  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(200, 43, 62, 0.01) 0%, rgba(1, 175, 239, 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 0px; /* Geometric icon cuts */
  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(1, 175, 239, 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(1, 175, 239, 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(13, 71, 161, 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(13, 71, 161, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 71, 161, 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(13, 71, 161, 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(13, 71, 161, 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(13, 71, 161, 0.08), 0 12px 22px rgba(13, 71, 161, 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(1, 175, 239, 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;
  gap: 4rem;
  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(1, 175, 239, 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(1, 175, 239, 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) {
  .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;
  }
}

/* ==========================================
   PROMO BANNER STYLE
   ========================================== */
.promo-banner {
  position: relative; /* Normal document flow enables natural responsive wrapping without overlaps */
  width: 100%;
  min-height: 40px;
  background: linear-gradient(135deg, var(--secondary) 0%, #ab2030 100%);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 3rem 0.5rem 1rem;
  transition: var(--transition-normal);
}

.promo-banner .badge {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
  display: inline-block;
}

.promo-banner .cta-link {
  color: #ffffff;
  text-decoration: underline;
  margin-left: 0.75rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.promo-banner .cta-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.promo-banner .close-btn {
  position: absolute;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: var(--transition-fast);
}

.promo-banner .close-btn:hover {
  color: #ffffff;
}

body.banner-closed .promo-banner {
  display: none; /* Instantly hide from document flow on close, shifting everything up */
}

/* Responsive adjustments for banner */
@media (max-width: 768px) {
  .promo-banner {
    padding: 0.6rem 3rem 0.6rem 1rem;
    font-size: 0.8rem;
    line-height: 1.4;
    flex-wrap: wrap;
    text-align: center;
  }
}

/* ==========================================
   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: 24px 0px; /* Matching Shilchar geometric cut signature */
  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(200, 43, 62, 0.01) 0%, rgba(1, 175, 239, 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(1, 175, 239, 0.05);
}

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

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

.package-card.popular:hover {
  box-shadow: 0 15px 45px rgba(200, 43, 62, 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(1, 175, 239, 0.04);
  border: 1px solid rgba(1, 175, 239, 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(1, 175, 239, 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;
  }
}

/* ==========================================
   PREMIUM CORPORATE VISUAL REFINEMENT
   ========================================== */
:root {
  --bg-dark: #f7f9fc;
  --bg-deep: #eef3f8;
  --card-bg: #ffffff;
  --card-border: rgba(15, 23, 42, 0.1);
  --card-border-glow: rgba(13, 71, 161, 0.28);
  --primary: #0d47a1;
  --primary-hover: #0a367a;
  --secondary: #b9913c;
  --secondary-hover: #98752c;
  --accent-blue: #1d76d3;
  --text-main: #111827;
  --text-muted: #5b6678;
  --text-dark: #8290a3;
  --gradient-brand: linear-gradient(135deg, #0b1f3a 0%, #0d47a1 46%, #b9913c 100%);
  --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  --shadow-neon: 0 14px 28px rgba(13, 71, 161, 0.18);
  --shadow-neon-purple: 0 14px 28px rgba(185, 145, 60, 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:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.98)),
    radial-gradient(circle at 12% 8%, rgba(13, 71, 161, 0.12), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(185, 145, 60, 0.1), transparent 28%);
}

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(13, 71, 161, 0.4);
  box-shadow: 0 16px 32px rgba(13, 71, 161, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #07172e, #0a367a);
  box-shadow: 0 20px 42px rgba(13, 71, 161, 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(13, 71, 161, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 71, 161, 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(185, 145, 60, 0.08);
  border-color: rgba(185, 145, 60, 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(13, 71, 161, 0.14));
}

.visual-globe-outer,
.visual-globe-middle,
.visual-globe-inner {
  border-color: rgba(13, 71, 161, 0.22);
}

.visual-glow-core {
  background: radial-gradient(circle, rgba(185, 145, 60, 0.34) 0%, rgba(13, 71, 161, 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(13, 71, 161, 0.05), rgba(185, 145, 60, 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(185, 145, 60, 0.52);
  box-shadow: 0 22px 62px rgba(185, 145, 60, 0.16);
}

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

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

.map-wrap {
  background:
    radial-gradient(circle at 50% 42%, rgba(13, 71, 161, 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(13, 71, 161, 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(13, 71, 161, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 71, 161, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(185, 145, 60, 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(13, 71, 161, 0.18);
}

.orbit-ring-one {
  width: 210px;
  height: 210px;
  box-shadow: inset 0 0 40px rgba(13, 71, 161, 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(13, 71, 161, 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(185, 145, 60, 0.18), transparent 60%);
  border: 1px solid rgba(13, 71, 161, 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(185, 145, 60, 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(13, 71, 161, 0.08), rgba(185, 145, 60, 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(13, 71, 161, 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(13, 71, 161, 0.03);
}

.notif-item.unread {
  background: rgba(13, 71, 161, 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(13, 71, 161, 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(185, 145, 60, 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(13, 71, 161, 0.05), rgba(185, 145, 60, 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(13, 71, 161, 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(13, 71, 161, 0.05), rgba(185, 145, 60, 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(185, 145, 60, 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(13, 71, 161, 0.05), rgba(185, 145, 60, 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(185, 145, 60, 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(13, 71, 161, 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(13, 71, 161, 0.05), rgba(185, 145, 60, 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(185, 145, 60, 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(1, 175, 239, 0.08) 0%, rgba(200, 43, 62, 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(1, 175, 239, 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(200, 43, 62, 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;
  }
}

