/* ==========================================================================
   LUMINA WORKFORCE INDIA - CASUAL, HUMAN & FRIENDLY DESIGN SYSTEM
   Soft, approachable font colors, natural human typography, clean layout
   ========================================================================== */

:root {
  /* Timeless Minimalist Luxury Palette (Zero Blue, Zero Brown/Orange) */
  --text-heading: #111827;
  /* Crisp obsidian charcoal - clean, high-contrast, timeless */
  --text-body: #374151;
  /* Neutral charcoal gray - comfortable, easy to read */
  --text-muted: #6b7280;
  /* Neutral medium gray for descriptions */
  --text-subtle: #9ca3af;
  /* Light hint gray */
  --text-white: #ffffff;
  --text-white-muted: #9ca3af;

  /* Executive Brand Accents - Solid Obsidian & Neutral Tones */
  --color-primary: #111827;
  /* Solid deep charcoal black */
  --color-primary-accent: #111827;
  /* Confident obsidian black for primary actions */
  --color-primary-accent-hover: #1f2937;
  /* Softened charcoal hover */
  --color-accent-subtle: #f3f4f6;
  /* Crisp light gray */
  --color-accent-border: #e5e7eb;
  /* Clean neutral border */
  --color-accent-green: #059669;
  /* Subtle natural emerald for active status & checkmarks */
  --color-brand-workforce: #0066cb;
  /* Royal blue matching 'Workforce' in Lumina Workforce logo */

  /* Crisp Modern Canvas */
  --color-bg-body: #f9fafb;
  /* Clean, crisp off-white canvas */
  --color-bg-white: #ffffff;
  /* Pure white card surface */
  --color-bg-subtle: #f3f4f6;
  /* Clean light neutral card background */
  --color-bg-dark: #111827;
  /* Clean obsidian dark for footer */

  /* Crisp 1px Borders */
  --border-light: #e5e7eb;
  /* Clean light gray border */
  --border-medium: #d1d5db;
  --border-dark: rgba(255, 255, 255, 0.12);

  /* Subtle Natural Paper Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -4px rgba(0, 0, 0, 0.08);

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Layout */
  --container-width: 1200px;
  --transition: all 0.2s ease-out;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Lenis Smooth Scroll Engine */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-body);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* --------------------------------------------------------------------------
   Dynamic Executive Background Animation & Interactive Canvas
   -------------------------------------------------------------------------- */
.executive-bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  contain: strict;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#bgNetworkCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.95;
  transition: opacity 0.5s ease;
  transform: translateZ(0);
}

.executive-dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 1.5px 1.5px, rgba(99, 102, 241, 0.16) 1.2px, transparent 0),
    radial-gradient(circle at 16px 16px, rgba(17, 24, 39, 0.12) 1.2px, transparent 0);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 95% 88% at 50% 40%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 95% 88% at 50% 40%, #000 50%, transparent 100%);
  transform: translateZ(0);
}

.exec-beam-line {
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.5) 25%, rgba(16, 185, 129, 0.55) 50%, rgba(14, 165, 233, 0.5) 75%, transparent 100%);
  animation: scanBeam 12s ease-in-out infinite alternate;
  filter: blur(0.5px);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.4);
  transform: translateZ(0);
}

@keyframes scanBeam {
  0% {
    transform: translateY(6vh) rotate(-2deg);
    opacity: 0.35;
  }

  50% {
    transform: translateY(45vh) rotate(1.5deg);
    opacity: 0.7;
  }

  100% {
    transform: translateY(85vh) rotate(-1deg);
    opacity: 0.4;
  }
}

/* Ambient Floating Radiant Orbs - High-Performance GPU Isolated */
.exec-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.75;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}

.glow-platinum {
  width: 680px;
  height: 680px;
  top: -80px;
  left: 10%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, rgba(99, 102, 241, 0.04) 50%, transparent 70%);
  animation: floatOrb1 16s ease-in-out infinite alternate;
}

.glow-champagne {
  width: 720px;
  height: 720px;
  top: 25%;
  right: -80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.20) 0%, rgba(16, 185, 129, 0.04) 50%, transparent 70%);
  animation: floatOrb2 20s ease-in-out infinite alternate;
}

.glow-slate {
  width: 760px;
  height: 760px;
  bottom: -100px;
  left: 15%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.20) 0%, rgba(14, 165, 233, 0.04) 50%, transparent 70%);
  animation: floatOrb3 18s ease-in-out infinite alternate;
}

@keyframes floatOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(60px, 45px) scale(1.1);
  }

  100% {
    transform: translate(-40px, 80px) scale(0.95);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-70px, -60px) scale(1.15);
  }

  100% {
    transform: translate(30px, 50px) scale(0.9);
  }
}

@keyframes floatOrb3 {
  0% {
    transform: translate(0, 0) scale(0.95);
  }

  50% {
    transform: translate(50px, -40px) scale(1.08);
  }

  100% {
    transform: translate(-60px, -20px) scale(1.02);
  }
}

/* Mouse interactive spotlight tracker on body - GPU Static Overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(850px circle at 50vw 30vh, rgba(99, 102, 241, 0.025), transparent 75%);
  contain: strict;
  transform: translateZ(0);
}

/* Ensure content stays above background layers */
header,
main,
footer,
.modal-overlay {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Humanized Visual Showcase Components
   -------------------------------------------------------------------------- */
.photo-frame-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(17, 24, 39, 0.14), 0 0 0 1px rgba(17, 24, 39, 0.08);
  background: #ffffff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.photo-frame-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -14px rgba(17, 24, 39, 0.18), 0 0 0 1px rgba(17, 24, 39, 0.14);
}

.photo-frame-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-frame-wrapper:hover .photo-frame-img {
  transform: scale(1.025);
}

/* Floating Glass Badges on Images */
.photo-floating-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.12);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-heading);
  z-index: 3;
}

.photo-floating-pill.pill-top-left {
  top: 1.15rem;
  left: 1.15rem;
}

.photo-floating-pill.pill-top-right {
  top: 1.15rem;
  right: 1.15rem;
}

.photo-floating-pill.pill-bottom-right {
  bottom: 1.15rem;
  right: 1.15rem;
}

.photo-floating-pill.pill-bottom-left {
  bottom: 1.15rem;
  left: 1.15rem;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(5, 150, 105, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
  }
}

/* Custom Dev Feature Banner */
.custom-dev-spotlight-banner {
  margin-top: 3.5rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.custom-dev-spotlight-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(17, 24, 39, 0.12);
}

.custom-dev-spotlight-content {
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-dev-spotlight-media {
  position: relative;
  height: 100%;
  min-height: 380px;
}

.custom-dev-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-container-wide {
  max-width: 1320px;
  width: 100%;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 3.5rem;
  align-items: stretch;
}

.hero-photo-wrapper {
  border-radius: 26px;
  box-shadow: 0 30px 75px -15px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: flex;
  background: #ffffff;
}

.hero-photo-wrapper .photo-frame-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-photo-wrapper:hover .photo-frame-img {
  transform: scale(1.03);
}

.hero-photo-wrapper .photo-floating-pill.pill-top-left {
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px -4px rgba(0, 0, 0, 0.16);
}

.hero-photo-wrapper .photo-floating-pill.pill-bottom-right {
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(17, 24, 39, 0.94);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.4);
}

.hero-tech-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 50px -12px rgba(17, 24, 39, 0.14), 0 0 0 1px rgba(17, 24, 39, 0.08);
  max-height: 520px;
}

.hero-tech-banner img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 920px) {
  .custom-dev-spotlight-banner {
    grid-template-columns: 1fr;
  }

  .custom-dev-spotlight-media {
    min-height: 280px;
  }

  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-photo-wrapper {
    margin: 0 auto;
    max-width: 500px;
  }
}

.inner-hero-title {
  font-size: clamp(1.95rem, 2.8vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1.15rem;
}

.inner-hero-title .title-line {
  display: block;
}

@media (min-width: 921px) {
  .inner-hero-title .title-line {
    white-space: nowrap;
  }
}

.inner-hero-lead {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero-value-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.85rem;
}

.hero-value-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-heading);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.inner-hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   Friendly Casual Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.95rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

h3 {
  font-size: clamp(1.12rem, 1.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

h4 {
  font-size: 1.02rem;
  font-weight: 700;
}

p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.68;
}

.text-blue,
.text-accent {
  color: var(--color-primary-accent);
}

/* --------------------------------------------------------------------------
   Layout Containers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--color-bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.badge-tag.badge-amber {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: var(--text-heading);
}

/* --------------------------------------------------------------------------
   Buttons (Clean, Tactile, Casual)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  transition: transform 0.15s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background-color: #111827;
  color: #ffffff;
  border: 1px solid #111827;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  background-color: #1f2937;
  border-color: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: var(--color-bg-white);
  color: var(--text-heading);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background-color: var(--color-bg-subtle);
  border-color: var(--border-medium);
  transform: translateY(-1px);
}

.btn-dark {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-dark:hover {
  background-color: #38281e;
  transform: translateY(-1px);
}

.btn-white {
  background-color: #ffffff;
  color: var(--text-heading);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: var(--color-bg-subtle);
  color: var(--color-primary-accent);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  border-radius: var(--radius-xs);
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Full-Width Executive Header Navigation (Logo Far Left, Buttons Far Right)
   ========================================================================== */
.header-nav {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: 100% !important;
  max-width: 100% !important;
  z-index: 1000 !important;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 3.5rem;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(24px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(190%) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  border-radius: 0;
  transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Removed Rainbow Sheen for Premium Aesthetic */
.header-nav::before {
  display: none;
}

/* On Scroll: Pop out as a floating luxury pill, bringing logo and buttons close */
.header-nav.scrolled {
  top: 14px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: min(94%, 1280px) !important;
  max-width: 1280px !important;
  height: 62px !important;
  border-radius: 9999px !important;
  padding: 0 1.25rem 0 1.5rem !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(226, 232, 240, 0.85) !important;
  box-shadow: 0 16px 42px -6px rgba(15, 23, 42, 0.16), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  box-sizing: border-box !important;
}

.header-nav.scrolled .site-logo-img {
  height: 32px;
  max-width: 220px;
}

.header-nav.scrolled .nav-container {
  padding: 0;
  gap: 0.85rem;
}

.nav-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  box-sizing: border-box !important;
}

.nav-logo-wrapper {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-logo-wrapper:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.site-logo-img {
  height: 42px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease;
}

/* Nav Links Pill Container - Right-aligned alongside CTA button */
.nav-links-wrapper {
  display: flex;
  align-items: center;
  margin-left: auto; /* Pushes nav links and button cleanly to the right side */
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.3rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 12px -2px rgba(79, 70, 229, 0.08);
  flex-shrink: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
  padding: 0.38rem 0.8rem;
  border-radius: var(--radius-full);
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-link:hover {
  color: #111827;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.nav-link.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%) !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.nav-link.active:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #4338ca 0%, #1d4ed8 100%) !important;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.45);
}

.nav-link:active {
  transform: scale(0.96);
}

.nav-link.nav-highlight {
  color: #4338ca;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(6, 182, 212, 0.12) 100%);
  border: 1px solid rgba(99, 102, 241, 0.26);
  box-shadow: 0 2px 6px -1px rgba(79, 70, 229, 0.12);
  padding: 0.38rem 0.85rem;
}

.nav-link.nav-highlight:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.22) 0%, rgba(6, 182, 212, 0.20) 100%);
  color: #312e81;
  box-shadow: 0 4px 12px -2px rgba(79, 70, 229, 0.2);
  transform: translateY(-1px);
}

.nav-link.nav-highlight.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%) !important;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-right: 0.25rem;
}

.nav-actions .btn-primary {
  padding: 0.48rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(135deg, #111827 0%, #1e1b4b 100%);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-actions .btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  box-shadow: 0 6px 22px rgba(17, 24, 39, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(243, 244, 246, 0.9);
  border: 1px solid var(--border-light);
  cursor: pointer;
  padding: 0;
  color: var(--text-heading);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-toggle:hover,
.mobile-toggle:active {
  background: #ffffff;
  border-color: var(--border-medium);
  box-shadow: var(--shadow-xs);
}

/* --------------------------------------------------------------------------
   Hero Section - Casual, Warm, Relatable
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 6.5rem 0 3.75rem 0;
  background-color: transparent !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3rem;
  align-items: flex-start;
}

.hero-content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0.25rem;
}

.hero-title {
  margin-bottom: 1.15rem;
  color: var(--text-heading);
  line-height: 1.18;
}

.hero-title-prefix {
  display: block;
}

.hero-title-dynamic {
  display: block;
  min-height: 1.22em;
  /* Strictly 1 line: eliminates the gap completely while locking height */
  line-height: 1.18;
  white-space: nowrap;
  color: var(--color-brand-workforce, #0066cb);
}

.hero-title-dynamic .type-writer,
.hero-title-dynamic .text-accent,
.hero-title .type-writer,
.type-writer {
  color: var(--color-brand-workforce, #0066cb);
}

.hero-title-dynamic .cursor {
  color: var(--color-brand-workforce, #0066cb);
}

@media (max-width: 768px) {
  .hero-title {
    min-height: auto;
  }

  .hero-title-dynamic {
    min-height: 1.22em;
    white-space: normal;
  }
}

.hero-description {
  font-size: 1.04rem;
  line-height: 1.68;
  color: var(--text-body);
  margin-bottom: 1.75rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.avatar-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -9px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-xs);
}

.avatar-item:first-child {
  margin-left: 0;
}

.trust-info {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.4;
}

.trust-info strong {
  color: var(--text-heading);
  font-weight: 700;
}

/* Hero Right: Real Candidate Snapshot Card */
.hero-visual {
  position: relative;
}

.hub-card-main {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-md);
}

.hub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.hub-header-title h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.hub-header-title p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hub-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #15803d;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.hub-status-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #16a34a;
}

.candidate-preview-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.candidate-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.95rem;
  background-color: var(--color-bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.candidate-item:hover {
  background-color: #ffffff;
  border-color: #d8d1c7;
  box-shadow: var(--shadow-xs);
}

.candidate-info {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.candidate-avatar-initials {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  background-color: #f3f4f6;
  color: #111827;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.candidate-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
}

.candidate-role {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.candidate-meta {
  text-align: right;
}

.candidate-notice-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-full);
  background-color: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.candidate-hub {
  font-size: 0.72rem;
  color: var(--text-subtle);
  margin-top: 0.2rem;
}

.hub-metric-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-light);
}

.metric-card-simple {
  background-color: var(--color-bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  padding: 0.85rem;
}

.metric-card-simple .num {
  font-size: 1.55rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.metric-card-simple .lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Logo Ticker Strip
   -------------------------------------------------------------------------- */
.logo-ticker-section {
  padding: 1.85rem 0;
  background-color: var(--color-bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.ticker-heading {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-loop 32s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 2rem;
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.ticker-item svg {
  color: var(--color-primary-accent);
  width: 20px;
  height: 20px;
}

@keyframes ticker-loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats-section {
  padding: 4rem 0;
  background-color: var(--color-bg-white);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-box {
  background-color: var(--color-bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  border-color: #d1d5db;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: clamp(2.1rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: #111827;
  margin-bottom: 0.4rem;
}

.stat-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.stat-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Casual Custom Development Section
   -------------------------------------------------------------------------- */
.custom-dev-section {
  background-color: var(--color-bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.custom-dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ==========================================================================
   Custom Internal Tools (Vibrant & Animated High-Tech Suite)
   ========================================================================== */
.custom-dev-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, rgba(243, 244, 255, 0.85) 0%, rgba(236, 253, 245, 0.75) 50%, rgba(248, 250, 252, 0.85) 100%) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.custom-dev-ambient-mesh {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 950px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(16, 185, 129, 0.12) 40%, rgba(6, 182, 212, 0.1) 70%, transparent 85%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: auroraMeshPulse 8s ease-in-out infinite alternate;
}

@keyframes auroraMeshPulse {
  0% {
    transform: translateX(-50%) scale(1) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateX(-48%) scale(1.1) rotate(3deg);
    opacity: 0.95;
  }

  100% {
    transform: translateX(-52%) scale(1.05) rotate(-3deg);
    opacity: 0.8;
  }
}

.custom-tools-title {
  font-size: 2.35rem;
  margin-bottom: 0.9rem;
}

.shimmer-gradient-text {
  background: linear-gradient(90deg, #4f46e5 0%, #06b6d4 25%, #10b981 50%, #8b5cf6 75%, #4f46e5 100%);
  background-size: 200% auto;
  animation: shimmerGradientFlow 4.5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@keyframes shimmerGradientFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.custom-tools-subtitle {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.06rem;
  color: var(--text-body);
  line-height: 1.75;
}

.badge-cyan-glow {
  background: rgba(6, 182, 212, 0.1) !important;
  border: 1px solid rgba(6, 182, 212, 0.3) !important;
  color: #0e7490 !important;
  box-shadow: 0 2px 10px rgba(6, 182, 212, 0.15);
}

/* Interactive Category Filter Bar */
.custom-tool-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 2.25rem 0 3rem 0;
  flex-wrap: wrap;
}

.custom-tool-filter-btn {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 213, 219, 0.85);
  color: #4b5563;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.custom-tool-filter-btn:hover {
  color: #111827;
  border-color: rgba(99, 102, 241, 0.4);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.12);
}

.custom-tool-filter-btn.active {
  background: linear-gradient(135deg, #111827 0%, #1e1b4b 100%);
  color: #ffffff;
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.25);
}

/* Custom Tool Cards & Grid */
.custom-dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.75rem;
}

@media (max-width: 1080px) {
  .custom-dev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .custom-dev-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1081px) {
  .custom-dev-grid .custom-dev-card.card-span-2 {
    grid-column: span 2;
  }
}

.custom-dev-card.card-span-2 {
  padding: 2.25rem !important;
}

.card-span-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  height: 100%;
}

.card-span-left {
  display: flex;
  flex-direction: column;
}

.card-span-left .custom-dev-icon {
  margin-bottom: 1rem;
}

.card-span-left .custom-dev-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.55rem;
}

.card-span-left .custom-dev-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.card-span-integrations {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: auto;
}

.integration-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.integration-badges {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.int-pill {
  font-size: 0.75rem;
  font-weight: 600;
  background: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.card-span-right {
  border-left: 1px solid rgba(229, 231, 235, 0.85);
  padding-left: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-span-right .custom-dev-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  border: none;
}

.card-span-right .custom-dev-features li {
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.5;
}

.card-span-right .custom-dev-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .card-span-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .card-span-right {
    border-left: none;
    border-top: 1px solid rgba(229, 231, 235, 0.85);
    padding-left: 0;
    padding-top: 1.5rem;
  }
}

.custom-dev-card {
  position: relative;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(229, 231, 235, 0.85) !important;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
}

.custom-dev-card.card-hidden {
  display: none !important;
}

/* Custom Query Card (Spans the open free area in the 3-column grid) */
.custom-query-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.96) 100%) !important;
  border: 1px solid rgba(99, 102, 241, 0.25) !important;
  box-shadow: 0 12px 35px -8px rgba(79, 70, 229, 0.10), 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

@media (min-width: 1101px) {
  .custom-query-card {
    grid-column: span 2;
  }
}

.query-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .query-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .query-action-footer {
    flex-direction: column;
    align-items: stretch !important;
  }

  .query-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .query-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Minimized Example Cards (Lightweight Example Tiles) */
.custom-dev-card.card-compact {
  padding: 1.35rem 1.5rem !important;
  min-height: auto !important;
}

.custom-dev-card.card-compact .custom-dev-title {
  font-size: 1.12rem !important;
  margin-bottom: 0.45rem !important;
  font-weight: 700 !important;
}

.custom-dev-card.card-compact .custom-dev-desc {
  font-size: 0.85rem !important;
  line-height: 1.55 !important;
  margin-bottom: 1rem !important;
  color: var(--text-body) !important;
}

.compact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(229, 231, 235, 0.9);
}

.compact-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-sm);
  background: rgba(243, 244, 246, 0.9);
  color: var(--text-heading);
  border: 1px solid rgba(229, 231, 235, 0.9);
  letter-spacing: 0.01em;
}

.tool-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

/* Status Badges */
.tool-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.58rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.status-emerald,
.status-indigo,
.status-purple,
.status-cyan,
.status-amber,
.status-violet {
  background: var(--color-bg-white);
  color: var(--text-heading);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-xs);
}

.radar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  box-shadow: 0 0 6px currentColor;
  animation: radarDotPulse 1.8s ease-in-out infinite;
}

@keyframes radarDotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

/* Icon Gradients */
.custom-dev-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.custom-dev-card:hover .custom-dev-icon {
  transform: scale(1.08) rotate(-2deg);
}

.icon-emerald,
.icon-indigo,
.icon-purple,
.icon-cyan,
.icon-amber,
.icon-violet {
  background: var(--color-bg-body) !important;
  color: var(--text-heading) !important;
  border: 1px solid var(--border-medium) !important;
}

.custom-dev-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text-heading);
}

.custom-dev-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Micro-Simulators */
.micro-sim-box {
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.8rem;
  border: 1px solid;
  transition: all 0.25s ease;
}

.sim-emerald {
  background: rgba(236, 253, 245, 0.85);
  border-color: rgba(16, 185, 129, 0.22);
}

.sim-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.sim-ping-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.sim-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid #059669;
  animation: ringPulse 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes ringPulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.sim-text {
  flex: 1;
}

.sim-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #065f46;
}

.sim-subtitle {
  font-size: 0.68rem;
  color: #047857;
}

.sim-tag {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-xs);
}

.tag-emerald {
  background: #059669;
  color: #ffffff;
}

/* Simulator 2: Kanban Pipeline */
.sim-indigo {
  background: rgba(238, 242, 255, 0.85);
  border-color: rgba(99, 102, 241, 0.22);
}

.pipeline-mini-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.pipeline-step {
  padding: 0.18rem 0.45rem;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pipe-num {
  font-weight: 800;
  color: #4f46e5;
}

.pipeline-step.active {
  background: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
}

.pipeline-step.active .pipe-num {
  color: #ffffff;
}

.pipeline-step.success {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.3);
}

.pipeline-arrow {
  color: #818cf8;
  font-weight: 700;
}

/* Simulator 3: Drip Automation */
.sim-purple {
  background: rgba(250, 245, 255, 0.85);
  border-color: rgba(168, 85, 247, 0.22);
}

.sim-drip-flow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.drip-node {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.18rem 0.48rem;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #7e22ce;
}

.drip-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  position: relative;
}

.drip-line::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ec4899;
  box-shadow: 0 0 6px #ec4899;
  animation: dripPulse 1.5s ease-in-out infinite;
}

@keyframes dripPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }
}

.drip-badge {
  font-size: 0.65rem;
  font-weight: 800;
  background: #ec4899;
  color: #fff;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
}

/* Simulator 4: Document Verification */
.sim-cyan {
  background: rgba(236, 254, 255, 0.85);
  border-color: rgba(6, 182, 212, 0.22);
}

.doc-verify-meter .meter-bar {
  width: 100%;
  height: 5px;
  border-radius: 9999px;
  background: rgba(6, 182, 212, 0.2);
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.doc-verify-meter .meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #06b6d4, #0ea5e9);
  border-radius: 9999px;
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 600;
  color: #0e7490;
}

.tag-cyan {
  color: #0284c7;
  font-weight: 800;
}

/* Simulator 5: Invoicing */
.sim-amber {
  background: rgba(254, 252, 232, 0.85);
  border-color: rgba(245, 158, 11, 0.25);
}

.invoice-mini-calc .calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: #78350f;
  margin-bottom: 0.15rem;
}

.text-amber {
  color: #d97706;
}

.calc-sub {
  font-size: 0.67rem;
  color: #92400e;
}

/* Simulator 6: KPI Velocity Bars */
.sim-violet {
  background: rgba(245, 243, 255, 0.85);
  border-color: rgba(139, 92, 246, 0.22);
}

.mini-kpi-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  height: 36px;
}

.kpi-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  height: 100%;
  justify-content: flex-end;
}

.kpi-fill {
  width: 14px;
  background: rgba(139, 92, 246, 0.35);
  border-radius: 3px;
  transition: height 0.4s ease;
}

.kpi-fill.active {
  background: linear-gradient(180deg, #8b5cf6, #6366f1);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

.kpi-bar-col span {
  font-size: 0.65rem;
  color: #6d28d9;
  font-weight: 700;
}

.kpi-txt-badge {
  margin-left: auto;
  font-size: 0.74rem;
  font-weight: 800;
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
}

/* Card Features List */
.custom-dev-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.custom-dev-features li {
  font-size: 0.84rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.custom-dev-features li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Card Hover Elevation & Theme Color Animations */
.custom-dev-card.card-compact {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease !important;
}

.custom-dev-card.card-compact .custom-dev-title {
  transition: color 0.25s ease;
}

.custom-dev-card.card-compact .compact-tag {
  transition: all 0.25s ease;
}

.custom-dev-card.card-compact .custom-dev-icon {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.custom-dev-card.card-compact:hover .custom-dev-icon {
  transform: scale(1.08) rotate(-2deg);
}

/* Glowing Top Accent Beam */
.custom-dev-card.card-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transform: scaleX(0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px 4px 0 0;
  z-index: 2;
}

.custom-dev-card.card-compact:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.card-theme-emerald::before {
  background: linear-gradient(90deg, #10b981, #34d399, #059669);
}

.card-theme-indigo::before {
  background: linear-gradient(90deg, #4f46e5, #818cf8, #3730a3);
}

.card-theme-purple::before {
  background: linear-gradient(90deg, #9333ea, #c084fc, #7e22ce);
}

.card-theme-cyan::before {
  background: linear-gradient(90deg, #06b6d4, #67e8f9, #0891b2);
}

.card-theme-amber::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #d97706);
}

.card-theme-violet::before {
  background: linear-gradient(90deg, #7c3aed, #a78bfa, #6d28d9);
}

/* Theme 1: Emerald (Attendance & Biometrics) */
.card-theme-emerald:hover {
  transform: translateY(-5px) !important;
  background: linear-gradient(155deg, #ffffff 0%, rgba(236, 253, 245, 0.9) 100%) !important;
  border-color: rgba(16, 185, 129, 0.5) !important;
  box-shadow: 0 16px 36px -8px rgba(16, 185, 129, 0.22), 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.card-theme-emerald:hover .custom-dev-title {
  color: #047857 !important;
}

.card-theme-emerald:hover .status-emerald {
  background: rgba(16, 185, 129, 0.14) !important;
  border-color: rgba(16, 185, 129, 0.35) !important;
  color: #047857 !important;
}

.card-theme-emerald:hover .compact-tag {
  background: rgba(236, 253, 245, 0.95) !important;
  border-color: rgba(16, 185, 129, 0.35) !important;
  color: #065f46 !important;
}

/* Theme 2: Indigo (Custom ATS) */
.card-theme-indigo:hover {
  transform: translateY(-5px) !important;
  background: linear-gradient(155deg, #ffffff 0%, rgba(238, 242, 255, 0.9) 100%) !important;
  border-color: rgba(99, 102, 241, 0.5) !important;
  box-shadow: 0 16px 36px -8px rgba(79, 70, 229, 0.22), 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.card-theme-indigo:hover .custom-dev-title {
  color: #4338ca !important;
}

.card-theme-indigo:hover .status-indigo {
  background: rgba(99, 102, 241, 0.14) !important;
  border-color: rgba(99, 102, 241, 0.35) !important;
  color: #4338ca !important;
}

.card-theme-indigo:hover .compact-tag {
  background: rgba(238, 242, 255, 0.95) !important;
  border-color: rgba(99, 102, 241, 0.35) !important;
  color: #3730a3 !important;
}

/* Theme 3: Purple (Cold Email Engine) */
.card-theme-purple:hover {
  transform: translateY(-5px) !important;
  background: linear-gradient(155deg, #ffffff 0%, rgba(250, 245, 255, 0.9) 100%) !important;
  border-color: rgba(168, 85, 247, 0.5) !important;
  box-shadow: 0 16px 36px -8px rgba(147, 51, 234, 0.22), 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.card-theme-purple:hover .custom-dev-title {
  color: #7e22ce !important;
}

.card-theme-purple:hover .status-purple {
  background: rgba(168, 85, 247, 0.14) !important;
  border-color: rgba(168, 85, 247, 0.35) !important;
  color: #7e22ce !important;
}

.card-theme-purple:hover .compact-tag {
  background: rgba(250, 245, 255, 0.95) !important;
  border-color: rgba(168, 85, 247, 0.35) !important;
  color: #6b21a8 !important;
}

/* Theme 4: Cyan (Zero-Paperwork Onboarding) */
.card-theme-cyan:hover {
  transform: translateY(-5px) !important;
  background: linear-gradient(155deg, #ffffff 0%, rgba(236, 254, 255, 0.9) 100%) !important;
  border-color: rgba(6, 182, 212, 0.5) !important;
  box-shadow: 0 16px 36px -8px rgba(6, 182, 212, 0.22), 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.card-theme-cyan:hover .custom-dev-title {
  color: #0e7490 !important;
}

.card-theme-cyan:hover .status-cyan {
  background: rgba(6, 182, 212, 0.14) !important;
  border-color: rgba(6, 182, 212, 0.35) !important;
  color: #0e7490 !important;
}

.card-theme-cyan:hover .compact-tag {
  background: rgba(236, 254, 255, 0.95) !important;
  border-color: rgba(6, 182, 212, 0.35) !important;
  color: #155e75 !important;
}

/* Theme 5: Amber (Timesheets & GST Billing) */
.card-theme-amber:hover {
  transform: translateY(-5px) !important;
  background: linear-gradient(155deg, #ffffff 0%, rgba(254, 243, 199, 0.9) 100%) !important;
  border-color: rgba(245, 158, 11, 0.5) !important;
  box-shadow: 0 16px 36px -8px rgba(217, 119, 6, 0.22), 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.card-theme-amber:hover .custom-dev-title {
  color: #b45309 !important;
}

.card-theme-amber:hover .status-amber {
  background: rgba(245, 158, 11, 0.14) !important;
  border-color: rgba(245, 158, 11, 0.35) !important;
  color: #b45309 !important;
}

.card-theme-amber:hover .compact-tag {
  background: rgba(254, 243, 199, 0.95) !important;
  border-color: rgba(245, 158, 11, 0.35) !important;
  color: #92400e !important;
}

/* Theme 6: Violet (Operations & Team Dashboards) */
.card-theme-violet:hover {
  transform: translateY(-5px) !important;
  background: linear-gradient(155deg, #ffffff 0%, rgba(245, 243, 255, 0.9) 100%) !important;
  border-color: rgba(124, 58, 237, 0.5) !important;
  box-shadow: 0 16px 36px -8px rgba(109, 40, 217, 0.22), 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.card-theme-violet:hover .custom-dev-title {
  color: #6d28d9 !important;
}

.card-theme-violet:hover .status-violet {
  background: rgba(124, 58, 237, 0.14) !important;
  border-color: rgba(124, 58, 237, 0.35) !important;
  color: #6d28d9 !important;
}

.card-theme-violet:hover .compact-tag {
  background: rgba(245, 243, 255, 0.95) !important;
  border-color: rgba(124, 58, 237, 0.35) !important;
  color: #5b21b6 !important;
}

/* Card 7: Bespoke Theme (Tailored to Any Environment) */
.card-theme-bespoke {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 243, 255, 0.75) 100%) !important;
  border: 1.5px dashed rgba(99, 102, 241, 0.5) !important;
}

.card-theme-bespoke:hover {
  border-style: solid !important;
  border-color: #4f46e5 !important;
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 45px -10px rgba(79, 70, 229, 0.32) !important;
}

.icon-bespoke {
  background: linear-gradient(135deg, #1e1b4b, #4338ca) !important;
  color: #c7d2fe !important;
}

.status-bespoke {
  background: rgba(99, 102, 241, 0.12);
  color: #4338ca;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.sim-bespoke {
  background: rgba(245, 243, 255, 0.9);
  border-color: rgba(99, 102, 241, 0.25);
}

.bespoke-sim-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 600;
}

.bespoke-chip {
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-xs);
  background: #ffffff;
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #374151;
}

.bespoke-chip.chip-glow {
  background: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.bespoke-arrow {
  color: #818cf8;
  font-weight: 800;
}

.bespoke-tag {
  font-size: 0.68rem;
  font-weight: 800;
  background: #10b981;
  color: #ffffff;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-xs);
}

/* Explicit Examples Disclaimer Callout Pill */
.custom-tools-note-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.95), rgba(245, 243, 255, 0.95));
  border: 1px solid rgba(99, 102, 241, 0.32);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  margin: 1.4rem auto 0 auto;
  font-size: 0.88rem;
  color: #374151;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.08);
  max-width: 840px;
  line-height: 1.55;
  text-align: left;
}

.note-pill-sparkle {
  color: #6366f1;
  font-size: 1.15rem;
  flex-shrink: 0;
  animation: sparkleTwinkle 2.2s ease-in-out infinite;
}

@keyframes sparkleTwinkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3) rotate(15deg);
    opacity: 1;
    color: #06b6d4;
  }
}

/* Laser Scanner Line in Spotlight Banner */
.custom-dev-spotlight-media {
  position: relative;
  overflow: hidden;
}

.laser-scanner-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #06b6d4 25%, #10b981 50%, #4f46e5 75%, transparent 100%);
  box-shadow: 0 0 16px 2px #06b6d4, 0 0 30px #10b981;
  z-index: 10;
  pointer-events: none;
  animation: laserScanMove 3.6s ease-in-out infinite alternate;
}

@keyframes laserScanMove {
  0% {
    top: 0%;
    opacity: 0.2;
  }

  15% {
    opacity: 0.9;
  }

  85% {
    opacity: 0.9;
  }

  100% {
    top: 96%;
    opacity: 0.2;
  }
}

.spotlight-metrics-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.spotlight-metric strong {
  display: block;
  font-size: 1.3rem;
  color: var(--text-heading);
}

.spotlight-metric span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* High-Tech Action Banner */
.custom-dev-banner {
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #064e3b 100%) !important;
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 25px 60px -15px rgba(79, 70, 229, 0.3);
}

.custom-dev-banner h3 {
  color: #ffffff;
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
}

.custom-dev-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  max-width: 650px;
  line-height: 1.6;
}

.banner-aurora-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, rgba(99, 102, 241, 0.25) 50%, transparent 80%);
  filter: blur(40px);
  pointer-events: none;
  animation: bannerGlowOrbit 6s ease-in-out infinite alternate;
}

@keyframes bannerGlowOrbit {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-40px, 30px) scale(1.15);
  }
}

/* --------------------------------------------------------------------------
   Staffing Services Grid (Vibrant & Animated Engagement Models)
   -------------------------------------------------------------------------- */
.services-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-body);
  padding: 6.5rem 0;
}

.services-ambient-mesh {
  position: absolute;
  top: 15%;
  right: -10%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, rgba(99, 102, 241, 0.1) 40%, rgba(16, 185, 129, 0.08) 70%, transparent 85%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  animation: servicesMeshFloat 14s ease-in-out infinite alternate;
}

@keyframes servicesMeshFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-80px, 60px) scale(1.1);
  }

  100% {
    transform: translate(40px, -40px) scale(0.95);
  }
}

.services-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.42rem 1.05rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(209, 213, 219, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn:hover {
  border-color: #6366f1;
  color: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.1);
}

.tab-btn.active {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  border-color: #111827;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.18);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
}

/* Premium Lift for Service Cards */
.service-card.card-theme-cyan:hover,
.service-card.card-theme-emerald:hover,
.service-card.card-theme-indigo:hover,
.service-card.card-theme-amber:hover,
.service-card.card-theme-purple:hover,
.service-card.card-theme-violet:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.08) !important;
  border-color: var(--color-accent-border) !important;
}

.service-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-icon-box svg {
  width: 18px;
  height: 18px;
}

.service-icon-box.icon-cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(8, 145, 178, 0.22));
  color: #0891b2;
}

.service-icon-box.icon-emerald {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.22));
  color: #059669;
}

.service-icon-box.icon-indigo {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(79, 70, 229, 0.22));
  color: #4f46e5;
}

.service-icon-box.icon-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(217, 119, 6, 0.22));
  color: #d97706;
}

.service-icon-box.icon-purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(147, 51, 234, 0.22));
  color: #9333ea;
}

.service-icon-box.icon-violet {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(124, 58, 237, 0.22));
  color: #7c3aed;
}

.service-card:hover .service-icon-box {
  transform: scale(1.05);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.38rem;
  color: var(--text-heading);
  line-height: 1.3;
}

.service-description {
  font-size: 0.82rem;
  line-height: 1.52;
  color: var(--text-body);
  margin-bottom: 0.8rem;
}

.service-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.service-highlights li {
  font-size: 0.78rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.42;
}

.service-highlights li svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card-action {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  transition: all 0.2s ease;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(209, 213, 219, 0.8);
}

.service-card-action:hover {
  color: #4f46e5;
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Industry Cards (Vibrant & Animated Verticals)
   -------------------------------------------------------------------------- */
.industries-section {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
}

.industries-ambient-mesh {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(168, 85, 247, 0.08) 40%, rgba(6, 182, 212, 0.06) 70%, transparent 85%);
  filter: blur(85px);
  pointer-events: none;
  z-index: 1;
  animation: industriesMeshFloat 16s ease-in-out infinite alternate;
}

@keyframes industriesMeshFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(70px, -50px) scale(1.12);
  }

  100% {
    transform: translate(-30px, 30px) scale(0.96);
  }
}

.industry-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3.25rem;
  flex-wrap: wrap;
}

.industry-filter-btn {
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(209, 213, 219, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-filter-btn:hover {
  border-color: #6366f1;
  color: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(99, 102, 241, 0.12);
}

.industry-filter-btn.active {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  border-color: #111827;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.22);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.industry-card {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.015);
}

/* Premium Lift for Industry Cards */
.industry-card.card-theme-cyan:hover,
.industry-card.card-theme-emerald:hover,
.industry-card.card-theme-indigo:hover,
.industry-card.card-theme-amber:hover,
.industry-card.card-theme-purple:hover,
.industry-card.card-theme-violet:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--color-accent-border) !important;
}

.industry-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.industry-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.industry-icon-wrapper.icon-indigo {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(79, 70, 229, 0.22));
  color: #4f46e5;
}

.industry-icon-wrapper.icon-emerald {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.22));
  color: #059669;
}

.industry-icon-wrapper.icon-cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(8, 145, 178, 0.22));
  color: #0891b2;
}

.industry-icon-wrapper.icon-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(217, 119, 6, 0.22));
  color: #d97706;
}

.industry-icon-wrapper.icon-purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(147, 51, 234, 0.22));
  color: #9333ea;
}

.industry-icon-wrapper.icon-violet {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(124, 58, 237, 0.22));
  color: #7c3aed;
}

.industry-card:hover .industry-icon-wrapper {
  transform: scale(1.1) rotate(-4deg);
}

.industry-card-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-heading);
}

.industry-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.industry-items-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}

.industry-bullet-glow {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}

.card-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  padding-top: 1rem;
  border-top: 1px dashed rgba(209, 213, 219, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
}

.card-footer-link:hover {
  color: #4f46e5;
  transform: translateX(4px);
}

/* Domain Hiring Velocity & Trust Bar */
.industry-trust-strip {
  margin-top: 3.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.85rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 16px 36px -10px rgba(99, 102, 241, 0.12);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-strip-item strong {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.trust-strip-item span {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

.trust-strip-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(209, 213, 219, 0.8) 50%, transparent 100%);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-card-hero {
  background-color: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.about-card-hero h3 {
  color: #ffffff;
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
}

.about-card-hero p {
  color: var(--text-white-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.value-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-xs);
}

.value-card h4 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.96rem;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.value-icon {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-xs);
  background-color: #f3f4f6;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.rating-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.rating-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
  background-color: rgba(5, 150, 105, 0.1);
  color: #059669;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.rating-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonial-quote {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 0.92rem;
  color: var(--text-heading);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Contact Section - Executive Enterprise Portal
   -------------------------------------------------------------------------- */
.contact-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f9fafb 100%);
  position: relative;
  border-top: 1px solid var(--border-light);
  scroll-margin-top: 80px;
  padding: 6.5rem 0 7rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.09);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #047857;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.1);
}

.status-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.contact-item-box {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.35rem;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-item-box:hover {
  border-color: #c7d2fe;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #f1f5f9;
  color: var(--color-primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}

.contact-item-details {
  flex: 1;
}

.contact-item-details h4 {
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-item-details p,
.contact-item-details a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-item-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-primary-accent);
  background: rgba(180, 83, 9, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* Enterprise Trust Pillars Card */
.contact-trust-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.45rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-trust-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.95rem;
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.trust-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-heading);
  line-height: 1.45;
}

.trust-pillar-item svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Enhanced Contact Form Container */
.contact-form-container {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.4rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 20px 25px -5px rgba(0, 0, 0, 0.02);
  position: relative;
}

.form-track-selector {
  display: flex;
  gap: 0.4rem;
  padding: 0.3rem;
  background: #f1f5f9;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.form-track-btn {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: inherit;
}

.form-track-btn:hover {
  color: var(--text-heading);
}

.form-track-btn.active {
  background: #ffffff;
  color: var(--text-heading);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.form-label-hint {
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  color: var(--text-heading);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0A66C2;
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.form-pill-select {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.form-pill-option {
  cursor: pointer;
}

.form-pill-option input {
  display: none;
}

.form-pill-label {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: #f8fafc;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
  user-select: none;
}

.form-pill-option input:checked + .form-pill-label {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.2);
}

.form-security-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Dedicated Contact Page Styles (contact.html)
   -------------------------------------------------------------------------- */
.contact-page-hero {
  padding: 7.5rem 0 4.5rem 0;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.08) 0%, rgba(248, 250, 252, 0) 70%), #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.98fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-hero-title {
  font-size: clamp(1.95rem, 2.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.16;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
}

.contact-hero-lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.contact-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.contact-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-heading);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.contact-hero-chip svg {
  color: var(--color-primary-accent);
}

.contact-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Contact Hero Image Showcase */
.contact-hero-media {
  position: relative;
}

.contact-hero-photo-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 55px -12px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(15, 23, 42, 0.08);
  background: #0f172a;
}

.contact-hero-photo-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-hero-photo-wrapper:hover .contact-hero-photo-img {
  transform: scale(1.03);
}

.contact-hero-floating-pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  animation: heroPillFloat 4s ease-in-out infinite alternate;
}

.contact-hero-floating-pill.pill-top-left {
  top: 1.25rem;
  left: 1.25rem;
}

.contact-hero-floating-pill.pill-bottom-right {
  bottom: 1.25rem;
  right: 1.25rem;
  animation-delay: -2s;
}

@keyframes heroPillFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-6px);
  }
}

@media (max-width: 991px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-hero-photo-img {
    height: 320px;
  }
}

/* Dedicated Page Section Spacing */
.contact-page-main {
  padding: 4.5rem 0 5.5rem 0;
  background-color: var(--color-bg-body);
}

/* Campus Visual Photo Showcase */
.contact-campus-visual {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border-light);
  margin-top: 0.35rem;
  background: #0f172a;
}

.contact-campus-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 32%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-campus-visual:hover .contact-campus-img {
  transform: scale(1.04);
}

.contact-campus-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.15rem 0.95rem 1.15rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.88) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}

.contact-campus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-campus-badge svg {
  color: #38bdf8;
}

.contact-campus-tag {
  font-size: 0.76rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* Location / Campus Card */
.contact-map-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.45rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  margin-top: 1.15rem;
}

.contact-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.contact-map-header h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-heading);
}

.contact-map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0A66C2;
  text-decoration: none;
  transition: var(--transition);
}

.contact-map-directions-btn:hover {
  text-decoration: underline;
}

.contact-map-details {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-landmark-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: #f1f5f9;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-top: 0.6rem;
}

/* Enterprise FAQ Section on Contact Page */
.contact-faq-section {
  padding: 5rem 0 6rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.contact-faq-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.25rem auto;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-faq-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-faq-card:hover {
  transform: translateY(-2px);
  border-color: #c7d2fe;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-faq-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.contact-faq-card h4 svg {
  color: var(--color-primary-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-faq-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 991px) {
  .contact-faq-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-bg-dark);
  color: #ffffff;
  padding: 4.25rem 0 1.85rem 0;
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.75rem;
  margin-bottom: 3.25rem;
  position: relative;
  z-index: 2;
}

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 0.48rem 1.15rem;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.footer-logo-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.footer-logo-img {
  height: 28px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.footer-brand {
  position: relative;
  z-index: 10;
}

.footer-brand p {
  color: var(--text-white-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0.85rem 0 1.35rem 0;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  z-index: 5;
}

.footer-social-btn:hover {
  background-color: var(--color-primary-accent);
  border-color: var(--color-primary-accent);
  color: #ffffff;
}

.footer-social-btn.footer-social-linkedin {
  background-color: #0A66C2;
  border-color: #0A66C2;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(10, 102, 194, 0.4);
  animation: linkedinGlowPulse 5.5s cubic-bezier(0.2, 0.9, 0.4, 1) infinite;
}

.footer-social-btn.footer-social-linkedin:hover {
  animation: none;
  background-color: #004182;
  border-color: #004182;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10, 102, 194, 0.65);
}

/* --------------------------------------------------------------------------
   Footer Comet Animation to LinkedIn Logo
   -------------------------------------------------------------------------- */
.footer-comet-stream {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  pointer-events: none;
  z-index: 20;
}

.footer-comet {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  animation: cometFlight 5.5s cubic-bezier(0.2, 0.9, 0.4, 1) infinite;
  will-change: transform, opacity;
}

.comet-head {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 
    0 0 10px 3px #ffffff,
    0 0 22px 7px #38bdf8,
    0 0 45px 14px #0a66c2;
  z-index: 4;
}

.comet-head-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
}

.comet-head-flare {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 8px #38bdf8;
  border-radius: 2px;
}

.comet-head-flare::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.5px;
  height: 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 8px #38bdf8;
  border-radius: 2px;
}

.comet-tail {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  height: 5px;
  background: linear-gradient(
    90deg, 
    #ffffff 0%, 
    rgba(255, 255, 255, 0.95) 6%, 
    rgba(56, 189, 248, 0.95) 22%, 
    rgba(10, 102, 194, 0.8) 55%, 
    rgba(10, 102, 194, 0) 100%
  );
  border-radius: 3px;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.9), 0 0 28px rgba(10, 102, 194, 0.6);
  animation: cometTailAnim 5.5s cubic-bezier(0.2, 0.9, 0.4, 1) infinite;
  z-index: 3;
  will-change: width, opacity;
}

.comet-tail-secondary {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  height: 16px;
  background: linear-gradient(
    90deg, 
    rgba(56, 189, 248, 0.7) 0%, 
    rgba(10, 102, 194, 0.45) 40%, 
    rgba(10, 102, 194, 0) 100%
  );
  filter: blur(4px);
  border-radius: 8px;
  animation: cometTailAnim 5.5s cubic-bezier(0.2, 0.9, 0.4, 1) infinite;
  z-index: 2;
  will-change: width, opacity;
}

.comet-sparks {
  position: absolute;
  left: 12px;
  top: 0;
  transform: translateY(-50%);
  width: 140px;
  height: 16px;
  background: 
    radial-gradient(circle at 12% 25%, rgba(255, 255, 255, 0.95) 1.5px, transparent 3px),
    radial-gradient(circle at 35% 75%, rgba(56, 189, 248, 0.85) 2px, transparent 4px),
    radial-gradient(circle at 60% 30%, rgba(10, 102, 194, 0.8) 1.5px, transparent 3px),
    radial-gradient(circle at 82% 65%, rgba(56, 189, 248, 0.7) 1.5px, transparent 3px);
  opacity: 0.9;
  animation: cometTailAnim 5.5s cubic-bezier(0.2, 0.9, 0.4, 1) infinite;
}

.comet-impact-ring {
  position: absolute;
  left: 17px;
  top: 17px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.95);
  box-shadow: 0 0 25px rgba(10, 102, 194, 0.95);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  animation: cometImpactRing 5.5s cubic-bezier(0.2, 0.9, 0.4, 1) infinite;
  z-index: 6;
}

@keyframes cometFlight {
  0% {
    transform: translate3d(calc(90vw - 40px), -50px, 0) rotate(-3.5deg);
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  68% {
    opacity: 1;
    transform: translate3d(17px, 17px, 0) rotate(-3.5deg);
  }
  73% {
    opacity: 0;
    transform: translate3d(17px, 17px, 0) scale(0.3);
  }
  100% {
    opacity: 0;
    transform: translate3d(17px, 17px, 0) scale(0);
  }
}

@keyframes cometTailAnim {
  0% {
    width: 60px;
    opacity: 0;
  }
  8% {
    width: 240px;
    opacity: 1;
  }
  58% {
    width: 280px;
    opacity: 1;
  }
  68% {
    width: 25px;
    opacity: 0.35;
  }
  73%, 100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes cometImpactRing {
  0%, 67% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }
  69% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.85);
  }
  78% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.6);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.6);
  }
}

@keyframes linkedinGlowPulse {
  0%, 67% {
    box-shadow: 0 2px 8px rgba(10, 102, 194, 0.4);
    transform: scale(1);
  }
  69% {
    box-shadow: 0 0 26px rgba(56, 189, 248, 0.95), 0 0 48px rgba(10, 102, 194, 0.9);
    transform: scale(1.1);
  }
  75% {
    box-shadow: 0 0 16px rgba(10, 102, 194, 0.7);
    transform: scale(1.03);
  }
  82%, 100% {
    box-shadow: 0 2px 8px rgba(10, 102, 194, 0.4);
    transform: scale(1);
  }
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.02rem;
  margin-bottom: 1.15rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links-list a {
  color: var(--text-white-muted);
  font-size: 0.86rem;
  transition: color 0.15s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Modals & Toast
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.97);
  transition: transform 0.2s ease-out;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background-color: var(--color-bg-body);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background-color: #fee2e2;
  color: #ef4444;
  border-color: #fca5a5;
}

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 800;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--color-primary-accent);
  color: #ffffff;
  border-color: var(--color-primary-accent);
}

.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 1100;
  transition: transform 0.25s ease-out, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notification svg {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

/* --------------------------------------------------------------------------
   Comprehensive Responsive Breakpoints (Desktop, Laptop, Tablet, Mobile)
   -------------------------------------------------------------------------- */

/* 1. Large Tablets & Small Laptops (<= 1100px) */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .custom-dev-grid,
  .services-grid,
  .industry-grid,
  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .custom-dev-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* Compact Desktop & 14-inch Laptop Viewport Scaling (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  html {
    font-size: 15.5px;
  }

  .header-nav.scrolled {
    width: calc(100% - 2rem) !important;
    padding: 0 1rem 0 1.25rem !important;
  }

  .site-logo-img,
  .header-nav.scrolled .site-logo-img {
    height: 30px !important;
    max-width: 200px !important;
  }

  .nav-link {
    font-size: 0.81rem;
    padding: 0.32rem 0.62rem;
  }

  .nav-link.nav-highlight {
    padding: 0.32rem 0.68rem;
  }

  .nav-actions .btn-primary {
    padding: 0.44rem 0.95rem;
    font-size: 0.81rem;
  }

  .nav-container {
    gap: 0.6rem !important;
  }

  /* 14" Laptop above-the-fold hero clearance */
  .hero {
    padding: 5.75rem 0 2.75rem 0;
  }

  .hero-grid {
    gap: 2.25rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin-bottom: 0.85rem;
  }

  .hero-description {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 1.35rem;
  }

  .hero-cta-group {
    margin-bottom: 1.75rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .hub-card-main {
    padding: 1.35rem;
  }

  .hub-headline {
    font-size: 1.02rem;
  }
}

/* 2. Tablets & Mobile Navigation Trigger (<= 1024px) */
@media (max-width: 1024px) {

  .nav-links-wrapper,
  .nav-actions .btn {
    display: none !important;
  }

  .nav-actions {
    margin-left: auto; /* Keeps mobile toggle pinned to the far right */
  }

  .mobile-toggle {
    display: flex !important;
  }

  .header-nav.scrolled {
    top: 10px !important;
    width: calc(100% - 1.5rem) !important;
    max-width: 100% !important;
    border-radius: 9999px !important;
    padding: 0 1.25rem !important;
  }
}

/* 3. Landscape Phones & Mid Tablets (<= 920px) */
@media (max-width: 920px) {
  .custom-dev-spotlight-banner {
    grid-template-columns: 1fr;
  }

  .custom-dev-spotlight-media {
    min-height: 260px;
    max-height: 340px;
  }

  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* 4. Standard Mobile Screens & Vertical Tablets (<= 768px) */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  /* Prevent iOS Safari auto-zoom on input focus */
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  .section {
    padding: 3.75rem 0;
  }

  .hero {
    padding: 6.5rem 0 3rem 0;
  }

  .header-nav {
    height: 66px;
    padding: 0 1.25rem !important;
  }

  .header-nav.scrolled {
    top: 8px !important;
    width: calc(100% - 1.25rem) !important;
    height: 58px !important;
    border-radius: 9999px !important;
    padding: 0 1rem !important;
  }

  .header-nav.scrolled .nav-container {
    padding: 0 1rem;
  }

  .header-nav.scrolled .site-logo-img {
    height: 34px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 5.5vw, 2.5rem);
    min-height: auto;
    margin-bottom: 1rem;
  }

  .hero-title-dynamic {
    min-height: 1.25em;
  }

  .hero-description {
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 1.65rem;
  }

  .hub-card-main {
    padding: 1.25rem;
  }

  .hero-need-explorer {
    max-width: 100%;
  }

  .need-chips-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .need-chip-btn {
    padding: 0.6rem 0.65rem;
    font-size: 0.76rem;
  }

  .need-chip-icon {
    width: 24px;
    height: 24px;
  }

  .need-display-card {
    padding: 1.15rem 1rem;
    border-radius: 14px;
  }

  .need-headline {
    font-size: 1.05rem;
  }

  .need-subtext {
    font-size: 0.8rem;
  }

  .hero-trust-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .custom-dev-grid,
  .services-grid,
  .industry-grid,
  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .custom-dev-card,
  .industry-card {
    padding: 1.6rem 1.35rem;
  }

  .service-card {
    padding: 1.15rem 1rem;
  }

  .custom-dev-spotlight-content {
    padding: 2rem 1.35rem;
  }

  .custom-dev-banner {
    padding: 2rem 1.35rem;
  }

  .values-grid,
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-container {
    padding: 1.75rem 1.25rem;
  }

  .modal-content {
    padding: 1.6rem 1rem;
    max-width: 95%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .scroll-top-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
  }
}

/* 5. Compact Mobile Screens (<= 480px) */
@media (max-width: 480px) {
  html {
    font-size: 14.5px;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header-nav {
    height: 60px;
    padding: 0 1rem !important;
  }

  .header-nav.scrolled {
    top: 6px !important;
    width: calc(100% - 1rem) !important;
    height: 52px !important;
    border-radius: 9999px !important;
    padding: 0 0.85rem !important;
  }

  .site-logo-img {
    height: 30px;
  }

  .hero {
    padding: 5.5rem 0 2.5rem 0;
  }

  .hero-cta-group,
  .inner-hero-actions,
  .contact-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn,
  .inner-hero-actions .btn,
  .contact-hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .photo-floating-pill,
  .contact-hero-floating-pill {
    max-width: 88%;
    font-size: 0.76rem;
    padding: 0.4rem 0.75rem;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .console-actions-row {
    flex-direction: column;
    gap: 0.6rem;
  }

  .console-actions-row .btn {
    width: 100%;
    justify-content: center;
  }

  .console-nav-tabs {
    padding: 0.2rem;
  }

  .console-tab-btn {
    padding: 0.4rem 0.5rem;
    font-size: 0.74rem;
  }

  .console-metrics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    padding: 0.65rem 0.45rem;
  }

  .console-metric-item .lbl {
    font-size: 0.65rem;
  }

  .console-metric-item .val {
    font-size: 0.78rem;
  }

  .hub-metric-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .metric-card-simple {
    padding: 0.65rem;
  }

  .metric-card-simple .num {
    font-size: 1.35rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-metrics-row {
    flex-direction: column;
    gap: 0.85rem;
  }

  .custom-tool-filter-btn,
  .tab-btn,
  .industry-filter-btn {
    font-size: 0.8rem;
    padding: 0.45rem 0.85rem;
  }

  .form-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-pill-select {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-content {
    padding: 1.6rem 1rem;
  }
}

/* 6. Ultra-Compact Mobile Screens (<= 380px, e.g. iPhone SE, Galaxy Fold) */
@media (max-width: 380px) {
  html {
    font-size: 14px;
  }

  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .need-chips-grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .need-chip-btn {
    padding: 0.55rem 0.6rem;
    font-size: 0.74rem;
  }

  .console-metrics-grid {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hub-metric-strip {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .modal-overlay {
    padding: 0.5rem;
  }

  .modal-content {
    padding: 1.5rem 0.85rem;
    width: 100%;
  }

  .hero-trust-bar {
    gap: 0.6rem;
  }
}

/* --------------------------------------------------------------------------
   Ultra-Professional Executive Tech Grid & Ambient Sheen (World-Class & Enterprise-Ready)
   -------------------------------------------------------------------------- */
.executive-bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background-color: var(--color-bg-body);
}

/* Crisp Executive Micro-Dot Grid */
.executive-dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(17, 24, 39, 0.08) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at 50% 35%, black 45%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, black 45%, transparent 85%);
}

/* Subtle, Tasteful Executive Ambient Glows (Very gentle, high-end opacity) */
.exec-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  -webkit-filter: blur(120px);
  will-change: transform;
  pointer-events: none;
}

/* 1. Platinum Soft Light Aura */
.glow-platinum {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(226, 232, 240, 0.5) 0%, rgba(241, 245, 249, 0.2) 60%, transparent 80%);
  top: -150px;
  right: 5%;
  opacity: 0.8;
  animation: execGlowShift 24s ease-in-out infinite alternate;
}

/* 2. Champagne Warm Sheen */
.glow-champagne {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(254, 243, 199, 0.25) 0%, rgba(253, 230, 138, 0.1) 50%, transparent 75%);
  top: 30%;
  left: -100px;
  opacity: 0.7;
  animation: execGlowShiftReverse 28s ease-in-out infinite alternate;
}

/* 3. Executive Slate Aura */
.glow-slate {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(203, 213, 225, 0.3) 0%, rgba(241, 245, 249, 0.1) 60%, transparent 80%);
  bottom: -150px;
  right: 15%;
  opacity: 0.65;
  animation: execGlowShift 30s ease-in-out infinite alternate;
}

/* Subtle Animated Ambient Tech Beam */
.exec-beam-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(17, 24, 39, 0.12) 50%, transparent 100%);
  animation: beamScan 14s ease-in-out infinite;
}

@keyframes execGlowShift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-60px, 50px) scale(1.08);
  }

  100% {
    transform: translate(40px, -40px) scale(0.95);
  }
}

@keyframes execGlowShiftReverse {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(70px, -60px) scale(1.06);
  }

  100% {
    transform: translate(-50px, 40px) scale(0.96);
  }
}

@keyframes beamScan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  25% {
    opacity: 0.7;
  }

  75% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(800px);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   Lumina Business Need Interactive Explorer (Unboxed, Short, Dynamic)
   -------------------------------------------------------------------------- */
.hero-need-explorer {
  position: relative;
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
}

.need-selector-header {
  margin-bottom: 1.15rem;
}

.need-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #059669;
  margin-bottom: 0.35rem;
}

.need-pulse-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

.need-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

/* 4 Interactive Selector Chips */
.need-chips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.need-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.need-chip-btn:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -2px rgba(0, 0, 0, 0.06);
}

.need-chip-btn.active {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.25);
  transform: translateY(-2px);
}

.need-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #0f172a;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

.need-chip-btn.active .need-chip-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* Dynamic Resolution Card (Floating Glass) */
.need-display-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.45rem;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.need-display-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #6366f1);
}

.need-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.need-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  font-size: 0.72rem;
  font-weight: 700;
}

.need-headline {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.45rem;
}

.need-subtext {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.need-perks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.need-perk-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.74rem;
  font-weight: 700;
  color: #334155;
}

.need-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.need-cta-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

/* --------------------------------------------------------------------------
   Zoom In / Zoom Out & 3D Interactive Card Features
   -------------------------------------------------------------------------- */
/* Zoom Hover on Grid Cards */
.zoom-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.25s ease !important;
  will-change: transform;
}

.zoom-card:hover {
  transform: translateY(-8px) scale(1.025) !important;
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12) !important;
  border-color: #111827 !important;
}

/* Subtle Rhythmic Zoom Pulse for Live Highlights */
.zoom-pulse {
  animation: zoomPulse 2.4s ease-in-out infinite;
}

@keyframes zoomPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

/* Interactive 3D Tilt on Feature Cards */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

/* Presentation Zoom Inspection Modal */
.presentation-zoom-container {
  text-align: center;
  padding: 1.5rem;
}

.presentation-zoom-container h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

/* Professional Section Backgrounds */
main,
section,
footer {
  position: relative;
  z-index: 1;
}

.hero {
  background-color: transparent !important;
}

.services-section {
  background-color: transparent !important;
}

.section-alt {
  background-color: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.custom-dev-section {
  background-color: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stats-section {
  background-color: rgba(255, 255, 255, 0.68) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stat-box,
.custom-dev-card,
.service-card,
.industry-card,
.testimonial-card,
.contact-form-container,
.contact-item-box,
.value-card {
  background-color: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.25s ease !important;
}

/* Trust Security Pills (Zero Human Avatars) */
.trust-security-pills {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.sec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-light);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-heading);
  box-shadow: var(--shadow-xs);
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-dev-card:hover,
.industry-card:hover,
.testimonial-card:hover,
.stat-box:hover {
  transform: translateY(-8px) scale(1.025) !important;
  box-shadow: 0 20px 38px -6px rgba(0, 0, 0, 0.1) !important;
  border-color: #111827 !important;
}

.cursor {
  font-weight: 300;
  color: var(--color-brand-workforce, #0066cb);
}

.cursor.blinking {
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Premium Shimmer Sweep Animation */
@keyframes shimmerSweep {
  0% {
    transform: translateX(-150%) skewX(-15deg);
  }

  100% {
    transform: translateX(200%) skewX(-15deg);
  }
}

.custom-dev-card::after,
.service-card::after,
.industry-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-150%) skewX(-15deg);
  z-index: 10;
  pointer-events: none;
  transition: 0s;
}

.custom-dev-card:hover::after,
.service-card:hover::after,
.industry-card:hover::after {
  animation: shimmerSweep 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Real-World Workflow Example (web-app-development.html)
   ========================================================================== */
.section-header.header-workflow {
  max-width: 960px;
}

.workflow-section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  line-height: 1.32;
  margin-bottom: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.workflow-section-title .title-line {
  display: block;
}

@media (min-width: 768px) {
  .workflow-section-title .title-line {
    white-space: nowrap;
  }
}

.workflow-stages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.workflow-stage-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.workflow-stage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.12);
  border-color: rgba(99, 102, 241, 0.35);
}

.stage-step-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

.stage-num {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stage-role {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stage-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.stage-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.stage-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.stage-outcome-pill {
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: auto;
}

.stage-outcome-pill .live-pulse-dot {
  margin-top: 3px;
  flex-shrink: 0;
}

/* Workflow Comparison Box */
.workflow-compare-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.compare-col {
  display: flex;
  flex-direction: column;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 1.15rem;
}

.badge-red {
  background: #fee2e2;
  color: #991b1b;
}

.badge-green {
  background: #d1fae5;
  color: #065f46;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.compare-list li {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
  position: relative;
  padding-left: 1.35rem;
}

.compare-before .compare-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  color: #ef4444;
  font-weight: 800;
}

.compare-after .compare-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 800;
}

/* Workflow Action Card */
.workflow-action-card {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, #111827 0%, #1e1b4b 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.action-card-content h3 {
  font-size: 1.55rem;
  color: #ffffff;
  margin-bottom: 0.45rem;
}

.action-card-content p {
  color: var(--text-white-muted);
  font-size: 0.96rem;
  margin: 0;
  max-width: 620px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .workflow-stages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .workflow-stages-grid {
    grid-template-columns: 1fr;
  }
  .workflow-compare-box {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .workflow-action-card {
    padding: 1.75rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Client Engagement Workflow Flowchart (web-app-development.html)
   ========================================================================== */
.process-flow-container {
  margin-top: 3.5rem;
  position: relative;
}

.process-flow-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}

.process-step-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.10);
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.process-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.process-step-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.process-step-desc {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.process-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  width: fit-content;
  margin-top: auto;
}

/* Connecting step arrows on desktop */
@media (min-width: 1024px) {
  .process-step-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -13px;
    top: 42px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    z-index: 3;
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .process-flow-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-flow-track {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

.footer-logo-badge img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}

.footer-social-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
}

.footer-social-icon:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.4);
  color: #a5b4fc;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.15rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #a5b4fc;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ==========================================================================
   LEGAL PAGE STYLES
   ========================================================================== */
.legal-page-body {
  background: var(--color-bg-body);
  min-height: 100vh;
}

.legal-hero {
  padding: 8rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(248, 250, 255, 1) 0%, var(--color-bg-body) 100%);
  border-bottom: 1px solid var(--border-light);
}

.legal-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-hero .badge-tag {
  margin-bottom: 1rem;
}

.legal-hero h1 {
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
}

.legal-hero .legal-meta {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* ---- Legal Tabs Navigation ---- */
.legal-tabs-wrapper {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(249, 250, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.2s ease;
}

.legal-tabs-scroll {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.legal-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.legal-tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0.65rem 0;
  min-width: max-content;
}

.legal-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.legal-tab:hover {
  color: var(--text-heading);
  background: rgba(17, 24, 39, 0.04);
}

.legal-tab.active {
  color: var(--text-heading);
  background: #ffffff;
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.legal-tab svg {
  opacity: 0.55;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.legal-tab.active svg,
.legal-tab:hover svg {
  opacity: 0.85;
}

/* ---- Legal Content Panels ---- */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 2rem 5rem;
}

.legal-panel {
  display: none;
  animation: legalFadeIn 0.35s ease-out;
}

.legal-panel.active {
  display: block;
}

@keyframes legalFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-top: 2.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-content h2:first-child,
.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}

.legal-content p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.15rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--text-body);
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-content code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: rgba(17, 24, 39, 0.06);
  padding: 0.15em 0.45em;
  border-radius: 4px;
  color: var(--text-heading);
}

.legal-content strong {
  color: var(--text-heading);
  font-weight: 700;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--color-primary-accent-hover);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.legal-content table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: rgba(243, 244, 246, 0.8);
  color: var(--text-heading);
  font-weight: 700;
  border: 1px solid var(--border-light);
}

.legal-content table td {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  line-height: 1.6;
}

.legal-contact-box {
  background: rgba(243, 244, 246, 0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}

.legal-contact-box p {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.legal-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: gap 0.2s ease;
}

.legal-nav-back:hover {
  gap: 0.6rem;
}

/* ---- Legal Page Responsive ---- */
@media (max-width: 768px) {
  .legal-hero {
    padding: 6.5rem 0 2rem;
  }

  .legal-hero-inner {
    padding: 0 1.25rem;
  }

  .legal-tabs-wrapper {
    top: 56px;
  }

  .legal-tabs-scroll {
    padding: 0 0.75rem;
  }

  .legal-tab {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }

  .legal-tab svg {
    display: none;
  }

  .legal-content {
    padding: 2rem 1.25rem 4rem;
  }

  .legal-content h2 {
    font-size: 1.2rem;
  }

  .legal-content table {
    font-size: 0.82rem;
    display: block;
    overflow-x: auto;
  }
}