/* ================= GLOBAL ================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height, 80px);
  /* ensure anchored sections appear below fixed navbar */
  overflow-x: hidden;
}

/* Prevent horizontal scroll across the site */
body {
  overflow-x: hidden;
  overflow-y: auto;
}

/* Hide body scroll while loader is visible */
body.loader-active {
  overflow-y: hidden;
}

/* Preload hero content while loader is active */
body.loader-active .hero-box {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ================= LOADER (modern, lightweight) ================= */
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(10, 12, 20, 0.95), rgba(22, 24, 34, 0.96));
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease-out, visibility 0.35s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  color: #ffffff;
  max-width: 420px;
  width: 100%;
  padding: 6px 12px 0 12px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.loader-logo-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 8px auto 16px;
}

.loader-logo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}

.loader-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3.5px solid rgba(255, 255, 255, 0.15);
  border-top-color: #ffffff;
  border-right-color: rgba(255, 255, 255, 0.85);
  animation: loader-spin 1s linear infinite;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  margin: 14px 0 6px;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #7b61ff 0%, #ff6ec4 60%, #ff9a6b 100%);
  transition: width 80ms linear;
}

.percentage {
  font-weight: 700;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.95);
}

.patience-message {
  margin-top: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .loader-ring {
    animation: none;
  }

  .progress-fill {
    transition: none;
  }

  #loader {
    transition: none;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */
/* NAVBAR STYLING */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11.5px 35px;

  /* Pure glassmorphism - transparent blur */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}


/* Scroll effect: add shadow & color change */
.navbar.scrolled {
  background: linear-gradient(135deg, #9166ee, #e785d4, #e15353);
  /* colorful gradient */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  padding: 7px 30px;
  will-change: background, box-shadow;
}


/* Logo */
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  animation: logoBounce 1s ease infinite alternate;
  text-decoration: none;
}

/* Navbar links */
.navbar nav a {
  color: white;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  font-size: 14px;
}

/* Hover effect with color and underline */
.navbar nav a:hover {
  color: #ffeb3b;
  /* bright yellow hover */
}

.navbar nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  bottom: -5px;
  background: #ffeb3b;
  /* underline color */
  transition: 0.3s;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
  width: 100%;
}

/* Media query for mobile nav spacing */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .navbar nav a {
    margin: 0 5px;
    font-size: 12px;
  }
}

/* Logo + text */

/* Logo + text */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.08em;
  text-transform: none;
  line-height: 1.1;
}

/* Logo brand vertical stack */
.logo-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
}

/* Tagline below Solo Entity */
.logo-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.55rem, 0.75vw, 0.72rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* Logo micro animation - optimized for performance */
.logo img {
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform, filter;
}

.navbar:hover .logo img {
  transform: rotate(-3deg) scale(1.06);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

/* Navigation links */
.navbar nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.2s ease;
}

/* Hover underline effect */
.navbar nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #ffffff;
  transition: width 0.3s;
  will-change: width;
}

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

.navbar nav a:hover {
  color: #ffeb3b;
}

/* Active link */
.navbar nav a.active {
  color: #ffeb3b;
}

/* ================= NAVBAR PREMIUM GLOW - OPTIMIZED ================= */
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.1));
  pointer-events: none;
  opacity: 0.5;
}

/* Reddish Navbar Variant */
.navbar.navbar-red {
  background: linear-gradient(135deg, #c41e3a, #dc143c, #e74c3c);
}

.navbar.navbar-red.scrolled {
  background: linear-gradient(135deg, #a01830, #b91c2c, #d63031);
}

.navbar::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: -6px;
  width: 80%;
  height: 6px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  filter: blur(4px);
  opacity: 0.4;
}

/* ================= NAVBAR LINK MICRO-INTERACTION - OPTIMIZED ================= */
.navbar nav a {
  transition: transform 0.2s ease, color 0.2s ease;
}

.navbar nav a:hover {
  transform: translateY(-1px);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.85);
}

/* ================= SUCCESS TOAST (auto-advance) ================= */
#toastContainer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3000;
  pointer-events: none;
}

.success-toast {
  min-width: 260px;
  max-width: 360px;
  background: linear-gradient(90deg, #0f1724, #122031);
  color: #e6f5ff;
  border-radius: 10px;
  padding: 12px 12px 8px 12px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.6);
  opacity: 0;
  transform: translateY(8px) scale(0.995);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: auto;
  font-size: 14px;
}

.success-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.success-toast-message {
  margin-bottom: 10px;
  line-height: 1.25;
}

.success-toast-progress-wrap {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
}

.success-toast-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #6ee7b7, #34d399, #60a5fa);
}

.success-toast-close {
  position: absolute;
  right: 8px;
  top: 6px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  cursor: pointer;
}

/* Error toast styling (red) reuses container and progress layout */
.error-toast {
  min-width: 260px;
  max-width: 360px;
  background: linear-gradient(90deg, #2b0b0b, #3a0f0f);
  color: #ffecec;
  border-radius: 10px;
  padding: 12px 12px 8px 12px;
  box-shadow: 0 12px 30px rgba(64, 8, 8, 0.6);
  opacity: 0;
  transform: translateY(8px) scale(0.995);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: auto;
  font-size: 14px;
  border: 1px solid rgba(255, 120, 120, 0.12);
}

.error-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.error-toast .success-toast-progress {
  background: linear-gradient(90deg, #ff7a7a, #ff5252, #ff1744);
}

@media (max-width: 480px) {
  #toastContainer {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .success-toast {
    width: auto;
    max-width: calc(100% - 24px);
  }
}

/* ================= ACTIVE LINK GLOW ================= */
.navbar nav a.active::after {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
      #fff570,
      #ffffff,
      #fff570);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
}

/* Hero Box */
.hero-box {
  background-color: rgba(255, 255, 255, 0.7);
  width: 600px;
  height: 362px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  opacity: 1;
  z-index: 3;
  position: absolute;
  left: 1cm;
  top: 4cm;
  transform: translateY(24px) scale(0.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.hero-box.animate-hero {
  animation: heroBoxReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroBoxReveal {
  0% {
    transform: translateY(24px) scale(0.98);
  }

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

@keyframes heroFadeInOut {
  0% {
    transform: translateY(-50%) translateX(-100px);
  }

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

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

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

/* Hero Logo */
.hero-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

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

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

/* Hero Text Container */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.35rem, 3.8vw, 3.7rem);
  font-weight: 700;
  color: #11243f;
  margin: 0 0 20px 0;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.03em;
  text-transform: none;
  opacity: 1;
  transform: translateY(30px);
}

.hero-title.animate-hero {
  animation: titleSlideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes titleSlideUp {
  0% {
    transform: translateY(30px);
  }

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

/* Hero Tagline */
.hero-tagline {
  font-size: 1.2rem;
  color: #11243f;
  margin: 0 0 8px 0;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.4px;
  line-height: 1.7;
  opacity: 1;
  transform: translateY(30px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(244, 248, 255, 0.72));
  border: 1px solid rgba(17, 36, 63, 0.1);
  border-radius: 16px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(17, 36, 63, 0.08);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline.animate-hero {
  animation: taglineSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.08s;
}

@keyframes taglineSlideUp {
  0% {
    transform: translateY(30px);
  }

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

/* Hero Button */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero-button {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff2222;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 15px 30px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(120, 115, 245, 0.3);
  opacity: 1;
  transform: translateY(50px);
  z-index: 1000;
  font-family: inherit;
}

.hero-button-secondary {
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
  border: 1px solid #f59e0b;
  color: #111827;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.25);
}

.hero-button-secondary:hover {
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
  color: #111827;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.35);
}

.consultation-page {
  padding: 72px 20px 96px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(53, 82, 242, 0.14), transparent 28%),
    linear-gradient(180deg, #f8faff 0%, #f4f6fb 100%);
}

.consultation-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  min-width: 0;
}

.consultation-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(53, 82, 242, 0.16);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.consultation-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(53, 82, 242, 0.1);
  color: #3552f2;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.consultation-hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  color: #0f172a;
}

.consultation-hero p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
}

.consultation-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: #f8faff;
  color: #334155;
  font-size: 0.95rem;
}

.consultation-hero-art {
  position: relative;
  min-height: 300px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f172a 0%, #16233d 100%);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.consultation-hero-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.art-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.8;
  animation: floatOrb 6s ease-in-out infinite;
}

.orb-one {
  width: 132px;
  height: 132px;
  background: rgba(53, 82, 242, 0.45);
  top: 30px;
  left: 28px;
}

.orb-two {
  width: 88px;
  height: 88px;
  background: rgba(99, 102, 241, 0.35);
  right: 36px;
  bottom: 52px;
  animation-delay: 1.5s;
}

.consultation-card {
  position: relative;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(53, 82, 242, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}

.consultation-card.is-hidden {
  display: none;
}

.stepper {
  display: grid;
  gap: 16px;
}

.stepper-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.stepper-fill {
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3552f2 0%, #6d7cff 100%);
  transition: width 0.35s ease;
}

.stepper-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 8px;
  border: 1px solid #dbe4f0;
  border-radius: 16px;
  background: #f8faff;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.step-dot span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
}

.step-dot.active {
  border-color: rgba(53, 82, 242, 0.24);
  background: rgba(53, 82, 242, 0.08);
  color: #3552f2;
}

.step-dot.active span {
  background: linear-gradient(135deg, #3552f2 0%, #6d7cff 100%);
  color: #fff;
}

.step-label {
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1d4ed8;
}

.consultation-form {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}

.form-step {
  display: none;
  animation: fadeUp 0.3s ease;
}

.form-step.active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group.full {
  grid-column: 1 / -1;
}

.field-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #334155;
}

.field-group .required::after {
  content: "*";
  margin-left: 4px;
  color: #ef4444;
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  background: #fbfdff;
  color: #0f172a;
  font: inherit;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  outline: none;
  border-color: #3552f2;
  box-shadow: 0 0 0 3px rgba(53, 82, 242, 0.14);
}

.field-group.is-error input,
.field-group.is-error textarea,
.field-group.is-error select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

.field-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
  color: #64748b;
}

.field-error {
  min-height: 1.1rem;
  font-size: 0.82rem;
  color: #dc2626;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8faff;
}

.checkbox-card input {
  width: auto;
  accent-color: #3552f2;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.review-card {
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #f8faff;
}

.review-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: #111827;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
  color: #475569;
  font-size: 0.92rem;
  align-items: flex-start;
}

.review-item span {
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: right;
}

.review-item strong {
  color: #0f172a;
}

.consent-block {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #475569;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.consent-row input[type="checkbox"],
.consent-row input {
  margin-top: 3px;
  accent-color: #3552f2;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
}

.consent-row label {
  flex: 1;
  min-width: 0;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
  box-sizing: border-box;
}

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

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

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .form-actions .btn,
  .form-actions .btn[style*="display"],
  .form-actions button.btn,
  .form-actions a.btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .review-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .review-item span {
    text-align: left;
  }

  .footer-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-newsletter-form button {
    width: 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  touch-action: manipulation;
  min-height: 48px;
  box-sizing: border-box;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #3552f2 0%, #5b6fff 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(53, 82, 242, 0.22);
}

.btn-secondary {
  background: #eff4ff;
  color: #3552f2;
}

.submit-step {
  display: none;
}

.form-status {
  min-height: 1.2rem;
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #0f766e;
}

.success-state {
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 44px 24px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(53, 82, 242, 0.16);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.success-state[hidden],
.success-state:not(.is-visible) {
  display: none !important;
}

.success-checkmark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3552f2 0%, #6d7cff 100%);
  animation: scaleIn 0.4s ease;
}

.success-checkmark svg {
  width: 46px;
  height: 46px;
  color: #fff;
}

.success-state h2 {
  margin: 0;
  font-size: 2rem;
  color: #0f172a;
}

.success-state p {
  margin: 0;
  max-width: 640px;
  color: #475569;
  line-height: 1.8;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

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

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

@keyframes floatOrb {

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

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

.hero-button.animate-hero {
  animation: buttonSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.12s, subtleFloat 3s ease-in-out infinite 0.5s;
}

@keyframes buttonSlideUp {
  0% {
    transform: translateY(50px);
  }

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

@keyframes subtleFloat {

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

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

.hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(120, 115, 245, 0.4);
}

/* Responsive adjustments for Hero Section */
@media (max-width: 1024px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    padding: 100px 20px 40px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-box {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 auto;
    width: 92%;
    max-width: min(580px, calc(100vw - 32px));
    height: auto;
    min-height: fit-content;
    box-sizing: border-box;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transform: translateY(24px) scale(0.98);
  }

  .hero-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    width: 100%;
    max-width: 100%;
    margin: 0 0 16px 0;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-tagline {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.65;
    padding: 12px 18px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 16px;
    width: 100%;
  }

  .hero-button {
    font-size: 1.1rem;
    padding: 12px 28px;
    min-height: 48px;
    box-sizing: border-box;
    white-space: normal;
  }

  .hero-logo img,
  .hero-image img {
    width: clamp(52px, 8vw, 60px);
    height: clamp(52px, 8vw, 60px);
    object-fit: contain;
    margin: 0 auto 12px auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 16px 36px 16px;
  }

  .hero-box {
    width: 92%;
    max-width: min(540px, calc(100vw - 32px));
    padding: 24px 20px;
  }

  .consultation-hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .form-grid,
  .review-grid,
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2.1rem);
    margin: 0 0 14px 0;
  }

  .hero-tagline {
    font-size: clamp(0.9rem, 3.2vw, 1.02rem);
    padding: 10px 14px;
    line-height: 1.65;
  }

  .hero-button {
    font-size: 1rem;
    padding: 12px 24px;
    min-height: 48px;
  }

  .hero-actions {
    margin-top: 14px;
    gap: 12px;
  }

  .hero-logo img,
  .hero-image img {
    width: clamp(48px, 10vw, 56px);
    height: clamp(48px, 10vw, 56px);
  }

  .scrolling-text span {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .hero-button {
    width: 100%;
    max-width: 280px;
    min-height: 48px;
    padding: 12px 20px;
    font-size: clamp(0.9rem, 3.8vw, 1.05rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 85px 12px 28px 12px;
  }

  .hero-box {
    width: 94%;
    max-width: calc(100vw - 24px);
    padding: 20px 16px;
    border-radius: 12px;
  }

  .hero-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    margin-bottom: 12px;
  }

  .hero-tagline {
    font-size: clamp(0.85rem, 3.6vw, 0.95rem);
    line-height: 1.6;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .hero-button {
    font-size: 0.92rem;
    padding: 12px 18px;
    min-height: 48px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 12px;
  }

  .hero-logo img,
  .hero-image img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  .scrolling-text span {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: 80px 10px 24px 10px;
  }

  .hero-box {
    width: 95%;
    max-width: calc(100vw - 16px);
    padding: 16px 12px;
  }

  .hero-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .hero-tagline {
    font-size: 0.82rem;
    padding: 8px 10px;
    line-height: 1.55;
  }

  .hero-button {
    width: 100%;
    max-width: 100%;
    font-size: 0.88rem;
    min-height: 48px;
  }
}

/* ================= SLIDESHOW ================= */
.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center -40px;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Scrolling 3D Text Background */
.scrolling-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform-style: preserve-3d;
}

.scrolling-text span {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  animation: scrollText 20s linear infinite;
  transform: rotateX(10deg) rotateY(5deg);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes scrollText {
  0% {
    transform: translateX(100%) rotateX(10deg) rotateY(5deg);
  }

  100% {
    transform: translateX(-100%) rotateX(10deg) rotateY(5deg);
  }
}

/* Central Image */
.hero-image {
  position: relative;
  z-index: 2;
  animation: imageFloat 5s ease-in-out infinite;
}

.hero-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.1) rotateY(10deg);
}

@keyframes imageFloat {

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

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

/* ================= ABOUT ================= */
.corporate-about {
  padding: 60px 24px;
  background: #ffffff;
}

.corporate-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: #6d5cff;
  margin-bottom: 12px;
}

.about-intro h2,
.section-heading-row h2,
.contact-summary h2,
.careers-copy h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #0f172a;
}

.about-intro p,
.section-heading-row p,
.contact-summary p,
.careers-copy p,
.insight-feature p,
.insight-item p {
  color: #475569;
  line-height: 1.8;
  font-size: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(103, 93, 212, 0.16);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
  min-height: 200px;
}

.about-card.large {
  grid-row: span 2;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(235, 242, 255, 0.95));
}

.about-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #111827;
}

.about-card p {
  font-size: 0.96rem;
  color: #475569;
}

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

  .about-card.large {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .corporate-about {
    padding: 80px 16px 50px;
  }

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

  .about-card.large {
    grid-column: span 1;
  }
}

/* ================= MULTI-ACCENT ENTERPRISE ABOUT SECTION ================= */

.about-premium {
  position: relative;
  padding: 60px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Background Ambient Decorative Orbs & Grid */
.about-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(203, 213, 225, 0.4) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.55;
  pointer-events: none;
  z-index: -2;
}

.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
  animation: orbDrift 16s ease-in-out infinite alternate;
}

.about-orb-1 {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -140px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.13), transparent 70%);
}

.about-orb-2 {
  width: 480px;
  height: 480px;
  top: 42%;
  right: -120px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.11), transparent 70%);
  animation-delay: -6s;
}

.about-orb-3 {
  width: 440px;
  height: 440px;
  bottom: -100px;
  left: 8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.11), transparent 70%);
  animation-delay: -11s;
}

@keyframes orbDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(30px, -40px, 0) scale(1.06);
  }

  100% {
    transform: translate3d(-25px, 25px, 0) scale(0.95);
  }
}

.premium-about-shell {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
}

/* About Header Panel */
.about-head-panel {
  position: relative;
  padding: 56px 56px 48px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  color: #0f172a;
}

.about-head-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5 0%, #06b6d4 25%, #10b981 50%, #f59e0b 75%, #8b5cf6 100%);
}

.about-head-glow {
  position: absolute;
  bottom: -40px;
  right: 40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.about-head-line {
  display: none;
}

.about-head-panel .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.07);
  border: 1px solid rgba(79, 70, 229, 0.16);
  color: #4f46e5;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-head-panel .eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4f46e5;
  box-shadow: 0 0 8px rgba(79, 70, 229, 0.6);
}

.about-head-panel h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.12;
  margin: 18px 0 20px;
  letter-spacing: -0.035em;
  color: #0f172a;
  max-width: 920px;
  font-weight: 800;
}

.about-title-highlight-blue-cyan {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #2563eb;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-title-highlight-purple-indigo {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #7c3aed;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-title-highlight-cyan-emerald {
  background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #06b6d4;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-title-highlight-amber-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f59e0b;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-title-highlight-blue-violet {
  background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #2563eb;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-hero-copy {
  max-width: 780px;
  font-size: 1.08rem;
  line-height: 1.82;
  color: #475569;
}

.about-subtitle-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #2563eb;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  letter-spacing: -0.015em;
}

/* Metrics Section - Distinct Multi-Accent Icons */
.about-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.metric {
  position: relative;
  padding: 28px 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 12px 30px -8px rgba(15, 23, 42, 0.05);
  min-height: 170px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.metric::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.metric:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -10px rgba(15, 23, 42, 0.1);
}

.metric:hover::after {
  transform: scaleX(1);
}

.metric-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.25rem;
  margin-bottom: 18px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: iconFloat 5s ease-in-out infinite;
}

@keyframes iconFloat {

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

  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

.metric:hover .metric-icon {
  transform: translateY(-3px) scale(1.08) rotate(4deg);
}

/* Metric 1: Deep Indigo */
.metric:nth-child(1)::after {
  background: #4f46e5;
}

.metric:nth-child(1) .metric-icon {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(79, 70, 229, 0.22));
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.22);
  box-shadow: 0 10px 20px -4px rgba(79, 70, 229, 0.15);
}

.metric:nth-child(1):hover {
  border-color: rgba(79, 70, 229, 0.3);
}

/* Metric 2: Cyan */
.metric:nth-child(2)::after {
  background: #06b6d4;
}

.metric:nth-child(2) .metric-icon {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.22));
  color: #0891b2;
  border: 1px solid rgba(6, 182, 212, 0.22);
  box-shadow: 0 10px 20px -4px rgba(6, 182, 212, 0.15);
}

.metric:nth-child(2):hover {
  border-color: rgba(6, 182, 212, 0.3);
}

/* Metric 3: Teal */
.metric:nth-child(3)::after {
  background: #0d9488;
}

.metric:nth-child(3) .metric-icon {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.22));
  color: #0d9488;
  border: 1px solid rgba(13, 148, 136, 0.22);
  box-shadow: 0 10px 20px -4px rgba(13, 148, 136, 0.15);
}

.metric:nth-child(3):hover {
  border-color: rgba(13, 148, 136, 0.3);
}

.metric h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.metric p {
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Accent Pill Row */
.accent-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.accent-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accent-pill:nth-child(1) {
  background: rgba(79, 70, 229, 0.06);
  color: #4338ca;
  border: 1px solid rgba(79, 70, 229, 0.18);
}

.accent-pill:nth-child(2) {
  background: rgba(16, 185, 129, 0.06);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.accent-pill:nth-child(3) {
  background: rgba(6, 182, 212, 0.06);
  color: #0e7490;
  border: 1px solid rgba(6, 182, 212, 0.18);
}

.accent-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -2px rgba(15, 23, 42, 0.06);
}

/* About Story Grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.95fr;
  gap: 30px;
  margin-top: 32px;
}

.story-panel {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 36px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.story-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #2563eb;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.story-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -10px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
}

.story-panel:hover::after {
  transform: scaleX(1);
}

.story-panel .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: #2563eb;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.story-panel .eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
}

.story-panel h2,
.story-main-title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 14px 0 20px;
  color: #0f172a;
  font-weight: 800;
}

.story-title-highlight-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #7c3aed;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.story-title-highlight-blue {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #2563eb;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.story-panel p {
  color: #475569;
  margin-bottom: 16px;
  line-height: 1.8;
}

.story-rail {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.story-rail-item {
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 18px 20px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.story-rail-item:nth-child(1) {
  border-left: 4px solid #4f46e5;
}

.story-rail-item:nth-child(2) {
  border-left: 4px solid #10b981;
}

.story-rail-item:nth-child(3) {
  border-left: 4px solid #8b5cf6;
}

.story-rail-item:hover {
  transform: translateX(4px);
  background: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.06);
}

.story-rail-item strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 0.96rem;
  font-weight: 700;
}

.story-rail-item span {
  color: #475569;
  line-height: 1.65;
  font-size: 0.92rem;
}

/* Mission & Vision Panels */
.mission-vision-stack {
  display: grid;
  gap: 22px;
}

.mission-vision-stack .glass-panel {
  padding: 32px 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 14px 32px -8px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mission-vision-stack .glass-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -10px rgba(15, 23, 42, 0.1);
}

.mission-icon,
.vision-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.25rem;
  margin-bottom: 16px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: iconFloat 4.8s ease-in-out infinite;
}

.mission-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.22));
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: 0 10px 20px -4px rgba(16, 185, 129, 0.15);
}

.vision-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.22));
  color: #7c3aed;
  border: 1px solid rgba(139, 92, 246, 0.22);
  box-shadow: 0 10px 20px -4px rgba(139, 92, 246, 0.15);
}

.mission-panel:hover .mission-icon {
  transform: translateY(-3px) scale(1.08) rotate(4deg);
  box-shadow: 0 14px 24px -4px rgba(16, 185, 129, 0.25);
}

.vision-panel:hover .vision-icon {
  transform: translateY(-3px) scale(1.08) rotate(4deg);
  box-shadow: 0 14px 24px -4px rgba(139, 92, 246, 0.25);
}

.mission-panel {
  border-top: 4px solid #10b981;
}

.mission-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #10b981;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.mission-panel:hover {
  border-color: rgba(16, 185, 129, 0.4);
}

.mission-panel:hover::after {
  transform: scaleX(1);
}

.mission-panel .eyebrow {
  color: #059669;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vision-panel {
  border-top: 4px solid #8b5cf6;
}

.vision-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #8b5cf6;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.vision-panel:hover {
  border-color: rgba(139, 92, 246, 0.4);
}

.vision-panel:hover::after {
  transform: scaleX(1);
}

.vision-panel .eyebrow {
  color: #7c3aed;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mission-vision-stack .glass-panel h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 14px 0 12px;
  color: #0f172a;
  line-height: 1.35;
}

.mission-vision-stack .glass-panel p {
  color: #475569;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Core Values Section */
.about-values-section {
  margin-top: 72px;
}

.section-heading-row {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section-heading-row .eyebrow {
  color: #4f46e5;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading-tight h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  color: #0f172a;
  max-width: 800px;
  font-weight: 800;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 22px;
}

/* Core Values Interactive Slider */
.values-slider-wrapper {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
  outline: none;
}

.values-slider-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.values-slider-nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.values-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.values-nav-btn:hover:not(:disabled) {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.values-nav-btn:active:not(:disabled) {
  transform: translateY(0) scale(0.95);
}

.values-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.values-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.values-slider-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.values-slider-track::-webkit-scrollbar {
  display: none;
}

.values-slider-track.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.values-slider-track .value-card {
  flex: 0 0 calc(33.333% - 15px);
  min-width: 280px;
  scroll-snap-align: start;
  box-sizing: border-box;
}

.values-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.values-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.8);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-dot.active {
  width: 28px;
  background: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

@media (max-width: 1024px) {
  .values-slider-track .value-card {
    flex: 0 0 calc(50% - 11px);
    min-width: 260px;
  }
}

@media (max-width: 640px) {
  .values-slider-track .value-card {
    flex: 0 0 88%;
    min-width: 240px;
  }
}


.value-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 24px;
  padding: 30px 26px;
  min-height: 230px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 12px 30px -8px rgba(15, 23, 42, 0.05);
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px -10px rgba(15, 23, 42, 0.1);
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 20px;
  font-size: 1.25rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: iconFloat 4.8s ease-in-out infinite;
}

.value-card:hover .value-icon {
  transform: translateY(-3px) scale(1.08) rotate(4deg);
}

/* Value 1: Innovation - Royal Blue */
.value-card:nth-child(1)::after {
  background: #2563eb;
}

.value-card:nth-child(1) .value-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.22));
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.22);
  box-shadow: 0 10px 20px -4px rgba(37, 99, 235, 0.15);
}

.value-card:nth-child(1):hover {
  border-color: rgba(37, 99, 235, 0.3);
}

/* Value 2: Integrity - Teal */
.value-card:nth-child(2)::after {
  background: #0d9488;
}

.value-card:nth-child(2) .value-icon {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.22));
  color: #0d9488;
  border: 1px solid rgba(13, 148, 136, 0.22);
  box-shadow: 0 10px 20px -4px rgba(13, 148, 136, 0.15);
}

.value-card:nth-child(2):hover {
  border-color: rgba(13, 148, 136, 0.3);
}

/* Value 3: Excellence - Soft Amber */
.value-card:nth-child(3)::after {
  background: #f59e0b;
}

.value-card:nth-child(3) .value-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.22));
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.22);
  box-shadow: 0 10px 20px -4px rgba(245, 158, 11, 0.15);
}

.value-card:nth-child(3):hover {
  border-color: rgba(245, 158, 11, 0.3);
}

/* Value 4: Collaboration - Premium Purple */
.value-card:nth-child(4)::after {
  background: #8b5cf6;
}

.value-card:nth-child(4) .value-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.22));
  color: #7c3aed;
  border: 1px solid rgba(139, 92, 246, 0.22);
  box-shadow: 0 10px 20px -4px rgba(139, 92, 246, 0.15);
}

.value-card:nth-child(4):hover {
  border-color: rgba(139, 92, 246, 0.3);
}

/* Value 5: Customer Focus - Emerald Green */
.value-card:nth-child(5)::after {
  background: #10b981;
}

.value-card:nth-child(5) .value-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.22));
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: 0 10px 20px -4px rgba(16, 185, 129, 0.15);
}

.value-card:nth-child(5):hover {
  border-color: rgba(16, 185, 129, 0.3);
}

/* Value 6: Long-Term Thinking - Deep Indigo */
.value-card:nth-child(6)::after {
  background: #4f46e5;
}

.value-card:nth-child(6) .value-icon {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(79, 70, 229, 0.22));
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.22);
  box-shadow: 0 10px 20px -4px rgba(79, 70, 229, 0.15);
}

.value-card:nth-child(6):hover {
  border-color: rgba(79, 70, 229, 0.3);
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.value-card p {
  color: #475569;
  line-height: 1.72;
  font-size: 0.95rem;
}

/* Executive Leadership Section */
.executive-board-section {
  margin-top: 76px;
  display: grid;
  gap: 28px;
}

.executive-header {
  display: grid;
  gap: 12px;
}

.executive-header .eyebrow {
  color: #4f46e5;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.executive-header h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  color: #0f172a;
  max-width: 920px;
  font-weight: 800;
}

.executive-header p {
  color: #475569;
  line-height: 1.8;
  max-width: 880px;
  font-size: 1.02rem;
}

.executive-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  padding: 36px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 20px 48px -10px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.executive-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #8b5cf6, #f59e0b);
}

.executive-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -12px rgba(15, 23, 42, 0.12);
  border-color: rgba(79, 70, 229, 0.25);
}

.executive-portrait {
  min-height: 310px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px -6px rgba(15, 23, 42, 0.2);
}

.portfolio-ring {
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  pointer-events: none;
}

.executive-info {
  display: grid;
  gap: 16px;
}

.executive-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.08);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.executive-info h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  color: #0f172a;
  margin: 0;
  font-weight: 800;
}

.executive-info p {
  color: #475569;
  line-height: 1.75;
  font-size: 0.96rem;
  margin: 0;
}

.executive-highlights {
  display: grid;
  gap: 12px;
}

.executive-highlights div {
  padding: 12px 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.executive-highlights div:nth-child(1) {
  border-left: 4px solid #4f46e5;
}

.executive-highlights div:nth-child(2) {
  border-left: 4px solid #06b6d4;
}

.executive-highlights strong {
  display: block;
  color: #0f172a;
  margin-bottom: 4px;
  font-size: 0.92rem;
  font-weight: 700;
}

.executive-highlights span {
  color: #475569;
  line-height: 1.6;
  font-size: 0.9rem;
}

.executive-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.executive-meta-row span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Philosophy Cards Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.philosophy-card {
  position: relative;
  padding: 22px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 10px 24px -6px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.philosophy-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px -8px rgba(15, 23, 42, 0.08);
}

.philosophy-card:hover::after {
  transform: scaleX(1);
}

.philosophy-card i {
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.philosophy-card:hover i {
  transform: scale(1.15) rotate(4deg);
}

/* Philosophy Cards Multi-Accent Colors */
.philosophy-card:nth-child(1)::after {
  background: #2563eb;
}

.philosophy-card:nth-child(1) i {
  color: #2563eb;
}

.philosophy-card:nth-child(1):hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.philosophy-card:nth-child(2)::after {
  background: #0d9488;
}

.philosophy-card:nth-child(2) i {
  color: #0d9488;
}

.philosophy-card:nth-child(2):hover {
  border-color: rgba(13, 148, 136, 0.3);
}

.philosophy-card:nth-child(3)::after {
  background: #f59e0b;
}

.philosophy-card:nth-child(3) i {
  color: #d97706;
}

.philosophy-card:nth-child(3):hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.philosophy-card:nth-child(4)::after {
  background: #06b6d4;
}

.philosophy-card:nth-child(4) i {
  color: #0891b2;
}

.philosophy-card:nth-child(4):hover {
  border-color: rgba(6, 182, 212, 0.3);
}

.philosophy-card h4 {
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 700;
}

.philosophy-card p {
  color: #475569;
  line-height: 1.65;
  font-size: 0.9rem;
}

/* Executive Board Grid */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
}

.board-card {
  position: relative;
  padding: 26px 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.board-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.board-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px -8px rgba(15, 23, 42, 0.09);
}

.board-card:hover::after {
  transform: scaleX(1);
}

.board-avatar {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 16px;
  transition: transform 0.35s ease;
}

.board-card:hover .board-avatar {
  transform: translateY(-2px) rotate(3deg);
}

.board-card h4 {
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 700;
}

.board-card p {
  color: #475569;
  line-height: 1.68;
  font-size: 0.92rem;
}

.board-card span {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Board Card Multi-Accent Mapping */
.board-card:nth-child(1)::after {
  background: #06b6d4;
}

.board-card:nth-child(1) .board-avatar {
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border: 1px solid rgba(6, 182, 212, 0.22);
}

.board-card:nth-child(1) span {
  color: #0891b2;
}

.board-card:nth-child(1):hover {
  border-color: rgba(6, 182, 212, 0.3);
}

.board-card:nth-child(2)::after {
  background: #10b981;
}

.board-card:nth-child(2) .board-avatar {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.22);
}

.board-card:nth-child(2) span {
  color: #059669;
}

.board-card:nth-child(2):hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.board-card:nth-child(3)::after {
  background: #f59e0b;
}

.board-card:nth-child(3) .board-avatar {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.board-card:nth-child(3) span {
  color: #d97706;
}

.board-card:nth-child(3):hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.board-card:nth-child(4)::after {
  background: #8b5cf6;
}

.board-card:nth-child(4) .board-avatar {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
  border: 1px solid rgba(139, 92, 246, 0.22);
}

.board-card:nth-child(4) span {
  color: #7c3aed;
}

.board-card:nth-child(4):hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.board-card:nth-child(5)::after {
  background: #2563eb;
}

.board-card:nth-child(5) .board-avatar {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.22);
}

.board-card:nth-child(5) span {
  color: #2563eb;
}

.board-card:nth-child(5):hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.board-card:nth-child(6)::after {
  background: #4f46e5;
}

.board-card:nth-child(6) .board-avatar {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.22);
}

.board-card:nth-child(6) span {
  color: #4f46e5;
}

.board-card:nth-child(6):hover {
  border-color: rgba(79, 70, 229, 0.3);
}

/* Principles Grid */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.principle-card {
  position: relative;
  padding: 22px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 10px 24px -6px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.principle-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px -8px rgba(15, 23, 42, 0.08);
}

.principle-card:hover::after {
  transform: scaleX(1);
}

.principle-card i {
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.principle-card:hover i {
  transform: scale(1.15) rotate(4deg);
}

/* Principles Card Multi-Accent Colors */
.principle-card:nth-child(1)::after {
  background: #4f46e5;
}

.principle-card:nth-child(1) i {
  color: #4f46e5;
}

.principle-card:nth-child(1):hover {
  border-color: rgba(79, 70, 229, 0.3);
}

.principle-card:nth-child(2)::after {
  background: #06b6d4;
}

.principle-card:nth-child(2) i {
  color: #0891b2;
}

.principle-card:nth-child(2):hover {
  border-color: rgba(6, 182, 212, 0.3);
}

.principle-card:nth-child(3)::after {
  background: #10b981;
}

.principle-card:nth-child(3) i {
  color: #059669;
}

.principle-card:nth-child(3):hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.principle-card:nth-child(4)::after {
  background: #8b5cf6;
}

.principle-card:nth-child(4) i {
  color: #7c3aed;
}

.principle-card:nth-child(4):hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.principle-card h4 {
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 700;
}

.principle-card p {
  color: #475569;
  line-height: 1.65;
  font-size: 0.9rem;
}

/* Quote Shell */
.quote-shell {
  position: relative;
  padding: 34px 38px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 14px 36px -8px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.quote-shell::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, #4f46e5 0%, #8b5cf6 50%, #f59e0b 100%);
}

.quote-shell p {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.65;
  color: #0f172a;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

/* Leadership CTA & Closing Section */
.leadership-cta {
  text-align: center;
  padding: 38px 32px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.06);
}

.leadership-cta h3 {
  color: #0f172a;
  margin-bottom: 22px;
  font-size: 1.5rem;
  font-weight: 800;
}

.leadership-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.about-premium .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  color: #0f172a;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-premium .btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(15, 23, 42, 0.1);
  border-color: rgba(79, 70, 229, 0.3);
  background: #ffffff;
}

.about-premium .btn-contrast {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #2563eb 100%);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 10px 24px -4px rgba(79, 70, 229, 0.35);
}

.about-premium .btn-contrast:hover {
  box-shadow: 0 16px 32px -4px rgba(79, 70, 229, 0.5);
  transform: translateY(-3px);
}

.about-close {
  text-align: center;
  margin-top: 60px;
  padding: 44px 36px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 18px 44px -8px rgba(15, 23, 42, 0.06);
}

.about-close h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.35;
  color: #0f172a;
  font-weight: 800;
  max-width: 860px;
  margin: 0 auto 26px;
}

@media (max-width: 1024px) {
  .executive-feature-card {
    grid-template-columns: 1fr;
  }

  .philosophy-grid,
  .principles-grid,
  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {

  .philosophy-grid,
  .principles-grid,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .executive-feature-card {
    padding: 24px;
  }
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
}

.about-why-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.about-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
}

.about-why-card h3 {
  margin-bottom: 10px;
  color: #111827;
}

.about-why-card p {
  color: #475569;
  line-height: 1.75;
}

.venture-showcase {
  margin-top: 74px;
}

.venture-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 24px;
}

.venture-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
}

.venture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.12);
}

.venture-badge {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}

.venture-card h3 {
  margin-bottom: 12px;
  color: #111827;
}

.venture-card p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.venture-meta {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(226, 232, 240, 0.9);
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.venture-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: #0f172a;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.venture-card:hover .venture-btn {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.12);
}

.roadmap-block {
  margin-top: 74px;
}

.roadmap-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
}

.roadmap-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.roadmap-header h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.08;
  color: #111827;
}

.roadmap-timeline {
  margin-top: 36px;
  display: grid;
  gap: 20px;
}

.roadmap-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.roadmap-step-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  padding: 13px 16px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.roadmap-step h3 {
  margin-bottom: 10px;
  color: #111827;
}

.roadmap-step p {
  color: #475569;
  line-height: 1.8;
}

.about-close {
  margin-top: 82px;
  text-align: center;
  padding: 36px 30px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(245, 158, 11, 0.14);
  box-shadow: 0 18px 42px rgba(34, 34, 56, 0.08);
}

.about-close h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  margin-bottom: 24px;
  color: #111827;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 76, 255, 0.14);
  background: #ffffff;
  color: #18324a;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

/* Scroll Animations for About Us Section */
[data-scroll-animate] {
  opacity: 0;
  will-change: opacity, transform, filter;
  transition: opacity 0.2s ease-out, transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease-out;
}

[data-scroll-animate="blur-fade"] {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(15px);
}

[data-scroll-animate="blur-fade"].in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

[data-scroll-animate="fade-in-left"] {
  opacity: 0;
  transform: translateX(-25px);
}

[data-scroll-animate="fade-in-left"].in-view {
  opacity: 1;
  transform: translateX(0);
}

[data-scroll-animate="fade-in-right"] {
  opacity: 0;
  transform: translateX(25px);
}

[data-scroll-animate="fade-in-right"].in-view {
  opacity: 1;
  transform: translateX(0);
}

[data-scroll-animate="fade-in-scale"] {
  opacity: 0;
  transform: scale(0.96) translateY(12px);
}

[data-scroll-animate="fade-in-scale"].in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
}

[data-scroll-animate="fade-in-up"] {
  opacity: 0;
  transform: translateY(20px);
}

[data-scroll-animate="fade-in-up"].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {

  .about-story-grid,
  .executive-feature-card {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .board-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .philosophy-grid,
  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-head-panel {
    padding: 42px 32px 36px;
  }
}

@media (max-width: 768px) {
  .about-premium {
    padding: 48px 18px;
  }

  .about-head-panel {
    padding: 32px 24px 30px;
  }

  .about-hero-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
    width: 100%;
    touch-action: pan-y;
  }

  .about-hero-metrics .metric {
    width: 100%;
    min-height: auto;
    padding: 22px 20px;
    box-sizing: border-box;
    touch-action: pan-y;
  }

  .about-hero-metrics .metric:hover {
    transform: none;
    box-shadow: 0 12px 30px -8px rgba(15, 23, 42, 0.05);
  }

  .values-grid,
  .board-grid,
  .philosophy-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .story-panel,
  .mission-vision-stack .glass-panel,
  .executive-feature-card,
  .quote-shell,
  .leadership-cta,
  .about-close {
    padding: 26px 22px;
  }
}

@media (max-width: 480px) {
  .about-premium {
    padding: 60px 14px 40px;
  }

  .about-head-panel h1 {
    font-size: 1.95rem;
  }

  .executive-portrait {
    min-height: 240px;
  }
}

/* ================= ECOSYSTEM ================= */
.ecosystem-section,
.impact-section,
.why-solo-section,
.journey-section,
.careers-section,
.insights-section,
.contact-corporate {
  padding: 60px 24px;
  background: #ffffff;
}

.journey-section {
  position: relative;
  padding: 60px 24px;
  background: #ffffff;
  overflow: hidden;
}

/* Ambient Background Canvas */
.journey-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 60%, rgba(124, 58, 237, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 90%, rgba(5, 150, 105, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.journey-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 90%);
  opacity: 0.65;
  pointer-events: none;
}

.journey-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
  opacity: 0.35;
  animation: journeyOrbFloat 14s ease-in-out infinite alternate;
}

.journey-glow-orb--1 {
  top: 8%;
  left: -4%;
  width: 340px;
  height: 340px;
  background: rgba(37, 99, 235, 0.16);
}

.journey-glow-orb--2 {
  bottom: 12%;
  right: -4%;
  width: 380px;
  height: 380px;
  background: rgba(124, 58, 237, 0.13);
}

@keyframes journeyOrbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -40px) scale(1.08);
  }
}

/* Header & Section Title */
.journey-header {
  position: relative;
  max-width: 940px;
  margin: 0 auto 64px auto;
  text-align: center;
  z-index: 2;
}

.journey-eyebrow-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.85));
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  margin-bottom: 24px;
}

.journey-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
  animation: journeyDotPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes journeyDotPulse {

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

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

.journey-eyebrow-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #334155;
}

.journey-main-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 20px;
}

.journey-accent-blue {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #2563eb;
  -webkit-text-fill-color: transparent;
}

.journey-accent-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #7c3aed;
  -webkit-text-fill-color: transparent;
}

.journey-accent-emerald {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #059669;
  -webkit-text-fill-color: transparent;
}

.journey-main-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: #475569;
  line-height: 1.68;
  max-width: 780px;
  margin: 0 auto 36px;
}

/* Animated Divider */
.journey-divider {
  position: relative;
  width: 180px;
  height: 4px;
  margin: 0 auto 44px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(226, 232, 240, 0.8);
}

.journey-divider-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #059669, #06b6d4, #7c3aed, #d97706);
  border-radius: 999px;
}

.journey-divider-pulse {
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  animation: journeyDividerBeam 2.8s linear infinite;
}

@keyframes journeyDividerBeam {
  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }
}

/* Executive Narrative Banner */
.journey-executive-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  padding: 36px 40px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: left;
}

.journey-banner-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2563eb;
  display: block;
  margin-bottom: 8px;
}

.journey-banner-narrative h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 12px;
}

.journey-banner-narrative p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
}

.journey-banner-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.journey-pillar-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.journey-pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.journey-pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.journey-pillar--blue .journey-pillar-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.journey-pillar--emerald .journey-pillar-icon {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.journey-pillar--cyan .journey-pillar-icon {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}

.journey-pillar--amber .journey-pillar-icon {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

.journey-pillar-info strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
}

.journey-pillar-info span {
  font-size: 0.74rem;
  color: #64748b;
}

/* Timeline Container & Spine */
.journey-timeline-container {
  position: relative;
  max-width: 1140px;
  margin: 64px auto 0;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.journey-timeline-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background: rgba(226, 232, 240, 0.8);
  border-radius: 999px;
  z-index: 1;
}

.journey-spine-active {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2563eb 0%, #059669 25%, #06b6d4 50%, #7c3aed 75%, #d97706 100%);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.3);
}

/* Milestone Base Layout */
.journey-milestone {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  z-index: 2;
}

.journey-milestone--left .journey-card {
  grid-column: 1 / 2;
}

.journey-milestone--right .journey-card {
  grid-column: 2 / 3;
}

/* Node Marker (Centered on spine) */
.journey-node {
  position: absolute;
  left: 50%;
  top: 36px;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  display: grid;
  place-items: center;
  z-index: 5;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.journey-milestone:hover .journey-node {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
}

.journey-node-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.4;
  animation: journeyNodeGlow 2.5s ease-in-out infinite;
}

@keyframes journeyNodeGlow {

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

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

.journey-node-number {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  z-index: 2;
}

/* Theme colors for nodes */
.journey-milestone--blue .journey-node {
  color: #2563eb;
}

.journey-milestone--blue .journey-node-pulse {
  color: #2563eb;
}

.journey-milestone--emerald .journey-node {
  color: #059669;
}

.journey-milestone--emerald .journey-node-pulse {
  color: #059669;
}

.journey-milestone--cyan .journey-node {
  color: #06b6d4;
}

.journey-milestone--cyan .journey-node-pulse {
  color: #06b6d4;
}

.journey-milestone--purple .journey-node {
  color: #7c3aed;
}

.journey-milestone--purple .journey-node-pulse {
  color: #7c3aed;
}

.journey-milestone--amber .journey-node {
  color: #d97706;
}

.journey-milestone--amber .journey-node-pulse {
  color: #d97706;
}

/* Milestone Cards & Distinct Visual Identity */
.journey-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  padding: 32px 34px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.journey-card-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 28px 28px 0 0;
  transition: height 0.3s ease;
}

.journey-milestone:hover .journey-card {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(15, 23, 42, 0.1);
}

.journey-milestone:hover .journey-card-top-bar {
  height: 6px;
}

/* Distinct Top Bars & Accents */
.journey-milestone--blue .journey-card-top-bar {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.journey-milestone--blue:hover .journey-card {
  border-color: rgba(37, 99, 235, 0.35);
}

.journey-milestone--emerald .journey-card-top-bar {
  background: linear-gradient(90deg, #059669, #34d399);
}

.journey-milestone--emerald:hover .journey-card {
  border-color: rgba(5, 150, 105, 0.35);
}

.journey-milestone--cyan .journey-card-top-bar {
  background: linear-gradient(90deg, #06b6d4, #22d3ee);
}

.journey-milestone--cyan:hover .journey-card {
  border-color: rgba(6, 182, 212, 0.35);
}

.journey-milestone--purple .journey-card-top-bar {
  background: linear-gradient(90deg, #7c3aed, #c084fc);
}

.journey-milestone--purple:hover .journey-card {
  border-color: rgba(124, 58, 237, 0.35);
}

.journey-milestone--amber .journey-card-top-bar {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}

.journey-milestone--amber:hover .journey-card {
  border-color: rgba(217, 119, 6, 0.35);
}

/* Card Header & Icon Container */
.journey-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.journey-icon-container {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.journey-milestone:hover .journey-icon-container {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.journey-icon {
  width: 26px;
  height: 26px;
}

.journey-milestone--blue .journey-icon-container {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.04));
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #2563eb;
}

.journey-milestone--emerald .journey-icon-container {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(5, 150, 105, 0.04));
  border: 1px solid rgba(5, 150, 105, 0.2);
  color: #059669;
}

.journey-milestone--cyan .journey-icon-container {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(6, 182, 212, 0.04));
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #06b6d4;
}

.journey-milestone--purple .journey-icon-container {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(124, 58, 237, 0.04));
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: #7c3aed;
}

.journey-milestone--amber .journey-icon-container {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(217, 119, 6, 0.04));
  border: 1px solid rgba(217, 119, 6, 0.2);
  color: #d97706;
}

.journey-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.journey-phase-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}

.journey-year-badge {
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(203, 213, 225, 0.6);
  color: #1e293b;
}

/* Card Typography & Body */
.journey-card-title {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 12px;
}

.journey-card-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.68;
  margin-bottom: 24px;
}

/* Visual Diagram & Pills Box */
.journey-card-visual {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.7));
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 16px 18px;
}

.journey-diagram {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-diagram svg {
  width: 100%;
  height: 100%;
  max-height: 75px;
}

.journey-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.journey-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.6);
  font-size: 0.76rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
}

.journey-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.journey-milestone--blue .journey-pill-dot {
  color: #2563eb;
}

.journey-milestone--emerald .journey-pill-dot {
  color: #059669;
}

.journey-milestone--cyan .journey-pill-dot {
  color: #06b6d4;
}

.journey-milestone--purple .journey-pill-dot {
  color: #7c3aed;
}

.journey-milestone--amber .journey-pill-dot {
  color: #d97706;
}

/* Responsive Layouts */
@media (max-width: 992px) {
  .journey-executive-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .journey-timeline-container {
    gap: 44px;
    margin-top: 40px;
  }

  .journey-timeline-spine {
    left: 28px;
    transform: none;
  }

  .journey-milestone {
    grid-template-columns: 1fr;
    padding-left: 72px;
  }

  .journey-node {
    left: 28px;
    top: 36px;
    transform: translate(-50%, 0);
  }

  .journey-milestone:hover .journey-node {
    transform: translate(-50%, 0) scale(1.12);
  }

  .journey-milestone--left .journey-card,
  .journey-milestone--right .journey-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .journey-section {
    padding: 48px 16px;
  }

  .journey-header {
    margin-bottom: 40px;
  }

  .journey-banner-pillars {
    grid-template-columns: 1fr;
  }

  .journey-timeline-spine {
    left: 20px;
  }

  .journey-milestone {
    padding-left: 52px;
  }

  .journey-node {
    left: 20px;
    width: 44px;
    height: 44px;
  }

  .journey-node-number {
    font-size: 0.8rem;
  }

  .journey-card {
    padding: 24px 20px;
    border-radius: 22px;
  }
}

.ecosystem-section {
  background: linear-gradient(135deg, #f8faff 0%, #f3f6ff 100%);
}

/* ==========================================================================
   OUR IMPACT SECTION — FORTUNE 500 ENTERPRISE REDESIGN
   ========================================================================== */

:root {
  /* Multi-Color Enterprise Palette Tokens */
  --impact-blue: #2563eb;
  --impact-blue-light: rgba(37, 99, 235, 0.08);
  --impact-blue-glow: rgba(37, 99, 235, 0.16);

  --impact-emerald: #059669;
  --impact-emerald-light: rgba(5, 150, 105, 0.08);
  --impact-emerald-glow: rgba(5, 150, 105, 0.16);

  --impact-cyan: #0891b2;
  --impact-cyan-light: rgba(8, 145, 178, 0.08);
  --impact-cyan-glow: rgba(8, 145, 178, 0.16);

  --impact-indigo: #4f46e5;
  --impact-indigo-light: rgba(79, 70, 229, 0.08);
  --impact-indigo-glow: rgba(79, 70, 229, 0.16);

  --impact-purple: #7c3aed;
  --impact-purple-light: rgba(124, 58, 237, 0.08);
  --impact-purple-glow: rgba(124, 58, 237, 0.16);

  --impact-amber: #d97706;
  --impact-amber-light: rgba(217, 119, 6, 0.08);
  --impact-amber-glow: rgba(217, 119, 6, 0.16);

  --impact-teal: #0d9488;
  --impact-teal-light: rgba(13, 148, 136, 0.08);
  --impact-teal-glow: rgba(13, 148, 136, 0.16);
}

.impact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Background Ambient Mesh & Grid Pattern */
.impact-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.impact-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.15) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
  opacity: 0.75;
}

.impact-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.07;
  pointer-events: none;
  animation: impact-blob-float 20s ease-in-out infinite alternate;
}

.impact-mesh-blue {
  width: 450px;
  height: 450px;
  background: #2563eb;
  top: -100px;
  left: -100px;
}

.impact-mesh-emerald {
  width: 400px;
  height: 400px;
  background: #10b981;
  top: 20%;
  right: -100px;
  animation-delay: -5s;
}

.impact-mesh-purple {
  width: 420px;
  height: 420px;
  background: #7c3aed;
  bottom: -100px;
  left: 20%;
  animation-delay: -10s;
}

.impact-mesh-amber {
  width: 380px;
  height: 380px;
  background: #f59e0b;
  bottom: 10%;
  right: 15%;
  animation-delay: -15s;
}

@keyframes impact-blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 30px) scale(1.08);
  }

  100% {
    transform: translate(-30px, -20px) scale(0.95);
  }
}

.impact-geo-shape {
  position: absolute;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  pointer-events: none;
  animation: impact-geo-spin 40s linear infinite;
}

.impact-geo-1 {
  width: 180px;
  height: 180px;
  top: 15%;
  left: 5%;
}

.impact-geo-2 {
  width: 140px;
  height: 140px;
  bottom: 15%;
  right: 6%;
  animation-direction: reverse;
}

@keyframes impact-geo-spin {
  to {
    transform: rotate(360deg);
  }
}

.impact-shell {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Heading Styling & Animations
   -------------------------------------------------------------------------- */
.impact-heading {
  max-width: 820px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.impact-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.impact-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  position: relative;
}

.impact-pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.4);
  animation: impact-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes impact-ping {

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

.impact-eyebrow-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1e293b;
}

.impact-main-title {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.impact-title-highlight-blue {
  color: #2563eb;
  position: relative;
  display: inline-block;
}

.impact-title-highlight-gradient {
  background: linear-gradient(135deg, #059669 0%, #0891b2 50%, #4f46e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #059669;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.impact-main-desc {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #475569;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
}

.impact-heading-divider {
  position: relative;
  width: 140px;
  height: 4px;
  margin: 28px auto 0 auto;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(226, 232, 240, 0.8);
}

.impact-divider-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #2563eb, #059669, #0891b2, #4f46e5, #7c3aed, #d97706);
  border-radius: 999px;
}

.impact-divider-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  animation: impact-shimmer 3s infinite;
}

@keyframes impact-shimmer {
  100% {
    left: 100%;
  }
}

/* --------------------------------------------------------------------------
   Visual Stage & Interactive Network Nodes
   -------------------------------------------------------------------------- */
.impact-showcase {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.impact-visual-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.impact-visual-card:hover {
  box-shadow: 0 30px 65px -12px rgba(15, 23, 42, 0.1);
}

.impact-visual-stage {
  position: relative;
  min-height: 440px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 50%, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.7));
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  isolation: isolate;
}

.impact-visual-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(79, 70, 229, 0.08), transparent 50%),
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.06), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.06), transparent 40%);
  pointer-events: none;
}

/* Center Card Styling */
.impact-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(250px, 70%);
  text-align: center;
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(79, 70, 229, 0.18);
  box-shadow: 0 16px 40px -8px rgba(79, 70, 229, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
  z-index: 3;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.impact-center:hover {
  transform: translate(-50%, -52%) scale(1.02);
  border-color: rgba(79, 70, 229, 0.35);
}

.impact-center-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}

.impact-center-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4f46e5;
}

.impact-center-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4f46e5;
  margin-bottom: 4px;
  font-weight: 700;
}

.impact-center h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.impact-center p {
  color: #475569;
  line-height: 1.55;
  font-size: 0.88rem;
}

/* Connecting Lines */
.impact-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.impact-connectors path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
  animation: impact-line-drift 14s linear infinite;
}

/* Custom Multi-Color Nodes */
.impact-node {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  background: #ffffff;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.impact-node-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: transform 0.35s ease;
}

/* Color Themes for Nodes */
.node-theme-blue {
  color: #1e293b;
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.node-theme-blue .impact-node-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.node-theme-blue:hover {
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.node-theme-amber {
  color: #1e293b;
  border-color: rgba(217, 119, 6, 0.22);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.12);
}

.node-theme-amber .impact-node-icon {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

.node-theme-amber:hover {
  border-color: #d97706;
  color: #d97706;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.22);
}

.node-theme-cyan {
  color: #1e293b;
  border-color: rgba(8, 145, 178, 0.22);
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.12);
}

.node-theme-cyan .impact-node-icon {
  background: rgba(8, 145, 178, 0.1);
  color: #0891b2;
}

.node-theme-cyan:hover {
  border-color: #0891b2;
  color: #0891b2;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 28px rgba(8, 145, 178, 0.22);
}

.node-theme-emerald {
  color: #1e293b;
  border-color: rgba(5, 150, 105, 0.22);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.12);
}

.node-theme-emerald .impact-node-icon {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.node-theme-emerald:hover {
  border-color: #059669;
  color: #059669;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 28px rgba(5, 150, 105, 0.22);
}

.node-theme-teal {
  color: #1e293b;
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.12);
}

.node-theme-teal .impact-node-icon {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

.node-theme-teal:hover {
  border-color: #0d9488;
  color: #0d9488;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 28px rgba(13, 148, 136, 0.22);
}

.node-theme-purple {
  color: #1e293b;
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.12);
}

.node-theme-purple .impact-node-icon {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.node-theme-purple:hover {
  border-color: #7c3aed;
  color: #7c3aed;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.22);
}

.impact-node:hover .impact-node-icon {
  transform: rotate(12deg) scale(1.15);
}

/* Node Spaced Positions around Central Hub */
.impact-node-sk {
  left: 5%;
  top: 12%;
}

.impact-node-sarkari {
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
}

.impact-node-editora {
  right: 5%;
  top: 12%;
}

.impact-node-talksphere {
  left: 5%;
  bottom: 12%;
}

.impact-node-future {
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
}

.impact-node-apex {
  right: 5%;
  bottom: 12%;
}

/* Hover Overrides for Centered Orbit Nodes */
.impact-node-sarkari:hover {
  transform: translate(-50%, -4px) scale(1.04);
}

.impact-node-future:hover {
  transform: translate(-50%, -4px) scale(1.04);
}

/* Dedicated Info Panel below Visual Stage */
.impact-insight {
  position: relative;
  inset: auto;
  transform: none;
  width: 100%;
  margin-top: 18px;
  padding: 20px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 12px 30px -6px rgba(15, 23, 42, 0.05);
  z-index: 4;
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
}

.impact-insight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.impact-insight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.impact-insight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  transition: background-color 0.3s ease;
}

.impact-insight-pill {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2563eb;
  font-weight: 800;
  transition: color 0.3s ease;
}

.impact-insight-meta {
  display: inline-block;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  transition: all 0.3s ease;
}

.impact-insight h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.impact-insight p {
  color: #475569;
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0;
}

/* Dynamic Accent Colors for Insight Card based on active theme */
.impact-insight[data-active-theme="amber"] {
  border-color: rgba(217, 119, 6, 0.28);
  box-shadow: 0 12px 30px -6px rgba(217, 119, 6, 0.12);
}

.impact-insight[data-active-theme="amber"] .impact-insight-pill,
.impact-insight[data-active-theme="amber"] .impact-insight-meta {
  color: #d97706;
  background-color: rgba(217, 119, 6, 0.08);
}

.impact-insight[data-active-theme="amber"] .impact-insight-dot {
  background-color: #d97706;
}

.impact-insight[data-active-theme="cyan"] {
  border-color: rgba(8, 145, 178, 0.28);
  box-shadow: 0 12px 30px -6px rgba(8, 145, 178, 0.12);
}

.impact-insight[data-active-theme="cyan"] .impact-insight-pill,
.impact-insight[data-active-theme="cyan"] .impact-insight-meta {
  color: #0891b2;
  background-color: rgba(8, 145, 178, 0.08);
}

.impact-insight[data-active-theme="cyan"] .impact-insight-dot {
  background-color: #0891b2;
}

.impact-insight[data-active-theme="emerald"] {
  border-color: rgba(5, 150, 105, 0.28);
  box-shadow: 0 12px 30px -6px rgba(5, 150, 105, 0.12);
}

.impact-insight[data-active-theme="emerald"] .impact-insight-pill,
.impact-insight[data-active-theme="emerald"] .impact-insight-meta {
  color: #059669;
  background-color: rgba(5, 150, 105, 0.08);
}

.impact-insight[data-active-theme="emerald"] .impact-insight-dot {
  background-color: #059669;
}

.impact-insight[data-active-theme="teal"] {
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 12px 30px -6px rgba(13, 148, 136, 0.12);
}

.impact-insight[data-active-theme="teal"] .impact-insight-pill,
.impact-insight[data-active-theme="teal"] .impact-insight-meta {
  color: #0d9488;
  background-color: rgba(13, 148, 136, 0.08);
}

.impact-insight[data-active-theme="teal"] .impact-insight-dot {
  background-color: #0d9488;
}

.impact-insight[data-active-theme="purple"] {
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 12px 30px -6px rgba(124, 58, 237, 0.12);
}

.impact-insight[data-active-theme="purple"] .impact-insight-pill,
.impact-insight[data-active-theme="purple"] .impact-insight-meta {
  color: #7c3aed;
  background-color: rgba(124, 58, 237, 0.08);
}

.impact-insight[data-active-theme="purple"] .impact-insight-dot {
  background-color: #7c3aed;
}

/* --------------------------------------------------------------------------
   Story Cards Right Column
   -------------------------------------------------------------------------- */
.impact-story-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.impact-story-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  padding: 28px 26px;
  box-shadow: 0 12px 32px -6px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.impact-card-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.story-theme-cyan .impact-card-top-line {
  background: linear-gradient(90deg, #0891b2, #06b6d4);
}

.story-theme-emerald .impact-card-top-line {
  background: linear-gradient(90deg, #059669, #10b981);
}

.story-theme-indigo .impact-card-top-line {
  background: linear-gradient(90deg, #4f46e5, #6366f1);
}

.impact-story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -10px rgba(15, 23, 42, 0.1);
  background: #ffffff;
}

.impact-story-card:hover .impact-card-top-line {
  transform: scaleX(1);
}

.impact-story-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

/* Icon Wrapper Design */
.impact-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.icon-theme-cyan {
  background: rgba(8, 145, 178, 0.08);
  color: #0891b2;
  border: 1px solid rgba(8, 145, 178, 0.18);
}

.icon-theme-emerald {
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.18);
}

.icon-theme-indigo {
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.18);
}

.icon-theme-blue {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.icon-theme-purple {
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.18);
}

.impact-story-card:hover .impact-icon-wrapper {
  transform: scale(1.1) rotate(6deg);
}

.impact-story-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #475569;
}

.story-theme-cyan .impact-story-eyebrow {
  color: #0891b2;
}

.story-theme-emerald .impact-story-eyebrow {
  color: #059669;
}

.story-theme-indigo .impact-story-eyebrow {
  color: #4f46e5;
}

.impact-story-card h3 {
  font-size: 1.18rem;
  line-height: 1.55;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.impact-story-card p {
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
}

.impact-story-card-large {
  background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
  border-color: rgba(8, 145, 178, 0.18);
}

/* --------------------------------------------------------------------------
   Metrics Cards Section
   -------------------------------------------------------------------------- */
.impact-metrics {
  display: grid;
  grid-template-columns: 1.28fr repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.impact-metric {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 12px 30px -6px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.impact-metric:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px -8px rgba(15, 23, 42, 0.09);
}

.metric-theme-blue:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.metric-theme-cyan:hover {
  border-color: rgba(8, 145, 178, 0.3);
}

.metric-theme-emerald:hover {
  border-color: rgba(5, 150, 105, 0.3);
}

.metric-theme-purple:hover {
  border-color: rgba(124, 58, 237, 0.3);
}

.impact-metric-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.impact-metric-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.metric-theme-blue .impact-metric-label {
  color: #2563eb;
}

.metric-theme-cyan .impact-metric-label {
  color: #0891b2;
}

.metric-theme-emerald .impact-metric-label {
  color: #059669;
}

.metric-theme-purple .impact-metric-label {
  color: #7c3aed;
}

.impact-metric-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.impact-metric-large {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  border-color: rgba(37, 99, 235, 0.18);
}

.impact-metric p:last-child {
  color: #475569;
  line-height: 1.65;
  font-size: 0.92rem;
}

/* Responsive Styles for Impact Section */
@media (max-width: 1024px) {
  .impact-showcase {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .impact-section {
    padding: 48px 0;
  }

  .impact-main-title {
    font-size: 2rem;
  }

  .impact-visual-stage {
    min-height: 480px;
  }

  .impact-node {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .impact-node-icon {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  .impact-node-sk {
    left: 4%;
    top: 12%;
  }

  .impact-node-editora {
    right: 4%;
    top: 14%;
  }

  .impact-node-talksphere {
    left: 4%;
    bottom: 22%;
  }

  .impact-node-apex {
    right: 4%;
    bottom: 24%;
  }

  .impact-node-sarkari {
    left: 22%;
    top: 4%;
  }

  .impact-node-future {
    right: 20%;
    bottom: 4%;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .impact-story-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .impact-story-card {
    padding: 22px 20px;
    border-radius: 20px;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.why-feature-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(109, 92, 255, 0.12);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-feature-card.alt {
  background: linear-gradient(180deg, #f8f5ff 0%, #eef4ff 100%);
}

.why-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(109, 92, 255, 0.26);
}

.why-feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #111827;
}

.why-feature-card p {
  color: #475569;
  line-height: 1.75;
}

.timeline {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d5cff, #38bdf8);
  box-shadow: 0 0 16px rgba(109, 92, 255, 0.22);
  flex-shrink: 0;
  margin-top: 8px;
}

.timeline-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(109, 92, 255, 0.12);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-card {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.12);
}

.careers-shell {
  display: grid;
  gap: 24px;
}

.careers-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid rgba(86, 121, 255, 0.14);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.careers-hero-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  color: #0f172a;
  margin: 12px 0 16px;
  max-width: 680px;
}

.careers-hero-copy p {
  color: #475569;
  line-height: 1.75;
  max-width: 620px;
}

.careers-hero-actions,
.careers-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #4361ee, #4f7cff);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(67, 97, 238, 0.2);
}

.btn-secondary {
  background: #ffffff;
  color: #243b53;
  border: 1px solid rgba(86, 121, 255, 0.16);
}

.btn-small {
  padding: 10px 16px;
  font-size: 0.92rem;
  margin-top: 12px;
  background: linear-gradient(135deg, #f1f5ff, #e8f0ff);
  color: #3353d8;
}

.careers-hero-visual {
  position: relative;
  min-height: 280px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.12), rgba(14, 165, 233, 0.10));
  border: 1px solid rgba(67, 97, 238, 0.14);
  overflow: hidden;
}

.careers-visual-glow {
  position: absolute;
  inset: auto -20px -20px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.28), transparent 70%);
}

.careers-visual-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 220px;
  height: 220px;
  border-radius: 32px;
  border: 1px solid rgba(67, 97, 238, 0.17);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: rotate(-12deg);
}

.visual-line {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(67, 97, 238, 0.92), rgba(45, 212, 191, 0.6));
}

.visual-line-one {
  top: 38px;
  left: 36px;
  width: 148px;
  height: 8px;
}

.visual-line-two {
  top: 98px;
  left: 36px;
  width: 112px;
  height: 8px;
}

.visual-line-three {
  top: 158px;
  left: 36px;
  width: 86px;
  height: 8px;
}

.careers-story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr 0.92fr;
  gap: 16px;
}

.careers-story-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(86, 121, 255, 0.12);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.careers-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.09);
}

.careers-story-card-main {
  background: linear-gradient(135deg, #f7f9ff 0%, #eef4ff 100%);
  min-height: 100%;
}

.careers-story-card-accent {
  background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 100%);
}

.careers-story-card h3,
.careers-story-card h4,
.careers-culture-panel h3,
.opportunities-header h3,
.process-header h3,
.careers-cta h3 {
  color: #0f172a;
  margin: 10px 0 10px;
  line-height: 1.24;
}

.careers-story-card p,
.careers-culture-panel p,
.opportunity-panel p,
.careers-cta p {
  color: #475569;
  line-height: 1.7;
}

.careers-icon-wrap {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.18), rgba(45, 212, 191, 0.16));
  color: #4361ee;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.careers-culture-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
  border: 1px solid rgba(86, 121, 255, 0.14);
}

.culture-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.culture-highlights span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f5f8ff;
  color: #4361ee;
  font-weight: 600;
  border: 1px solid rgba(86, 121, 255, 0.12);
}

.careers-opportunities,
.careers-process,
.careers-cta {
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(86, 121, 255, 0.12);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.opportunities-header,
.process-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.text-link {
  color: #4361ee;
  font-weight: 700;
  text-decoration: none;
}

.opportunity-panels {
  display: grid;
  gap: 12px;
}

.opportunity-panel {
  border: 1px solid rgba(86, 121, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, #fcfdff, #f5f8ff);
  padding: 0 18px;
  overflow: hidden;
}

.opportunity-panel summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
}

.opportunity-panel summary::-webkit-details-marker {
  display: none;
}

.opportunity-panel strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
}

.opportunity-panel span {
  color: #64748b;
  font-size: 0.93rem;
}

.panel-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4361ee;
  font-weight: 700;
}

.panel-body {
  padding: 0 0 18px;
  border-top: 1px solid rgba(86, 121, 255, 0.1);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  position: relative;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7f9ff, #eef4ff);
  border: 1px solid rgba(86, 121, 255, 0.12);
  text-align: center;
}

.process-step span {
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4361ee;
  margin-bottom: 8px;
}

.process-step strong {
  color: #0f172a;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #4f63ff;
}

/* ==========================================================================
   ENTERPRISE KNOWLEDGE HUB — INSIGHTS SECTION DESIGN SYSTEM
   ========================================================================== */

.insights-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(6, 182, 212, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(147, 51, 234, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  color: #0f172a;
}

/* Background Canvas & Decorative Elements */
.insights-bg-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.insights-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.insights-orb-cyan {
  width: 480px;
  height: 480px;
  top: -100px;
  left: -120px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 70%);
}

.insights-orb-purple {
  width: 520px;
  height: 520px;
  top: 35%;
  right: -150px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.22), transparent 70%);
  animation-delay: -6s;
}

.insights-orb-blue {
  width: 420px;
  height: 420px;
  bottom: -80px;
  left: 30%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.20), transparent 70%);
  animation-delay: -12s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -40px) scale(1.08);
  }

  100% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.insights-mesh-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.insights-grid-lines {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 120px 100%;
}

.insights-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* --------------------------------------------------------------------------
   SECTION HEADER & TYPOGRAPHY
   -------------------------------------------------------------------------- */
.insights-intro-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: end;
  padding: 44px 48px;
  border-radius: 36px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 20px 50px -10px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}

.insights-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.2);
  margin-bottom: 20px;
}

.kicker-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 10px #2563eb;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

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

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

.kicker-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.insights-main-title {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.accent-word {
  display: inline;
  font-weight: 800;
  background: transparent !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
}

.accent-blue {
  color: #2563eb !important;
}

.accent-cyan {
  color: #0284c7 !important;
}

.accent-purple {
  color: #9333ea !important;
}

.accent-teal {
  color: #0d9488 !important;
}

.insights-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  max-width: 760px;
  margin: 0;
}

.insights-header-divider {
  position: relative;
  margin-top: 28px;
  height: 3px;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(90deg, #06b6d4 0%, #2563eb 40%, #9333ea 70%, transparent 100%);
  border-radius: 999px;
  overflow: hidden;
}

.divider-glow-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 0 12px #ffffff;
  opacity: 0.8;
  animation: dividerSlide 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes dividerSlide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(500%);
  }
}

.insights-header-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.insights-stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.insights-stat-box:hover {
  transform: translateX(-4px);
  box-shadow: 0 14px 30px -5px rgba(15, 23, 42, 0.08);
}

.insights-stat-box.stat-blue:hover {
  border-color: rgba(37, 99, 235, 0.4);
}

.insights-stat-box.stat-purple:hover {
  border-color: rgba(147, 51, 234, 0.4);
}

.insights-stat-box.stat-emerald:hover {
  border-color: rgba(5, 150, 105, 0.4);
}

.stat-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex-shrink: 0;
}

.stat-blue .stat-icon-wrapper {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.stat-purple .stat-icon-wrapper {
  background: rgba(147, 51, 234, 0.1);
  color: #9333ea;
}

.stat-emerald .stat-icon-wrapper {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-content strong {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
}

.stat-content span {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   CATEGORY FILTER NAVIGATION BAR
   -------------------------------------------------------------------------- */
.insights-category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 30px -8px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(16px);
}

.insight-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-filter-tab:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.insight-filter-tab.active {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.25s ease;
}

.insight-filter-tab:hover .tab-dot,
.insight-filter-tab.active .tab-dot {
  transform: scale(1.3);
}

.dot-all {
  background: linear-gradient(135deg, #06b6d4, #9333ea);
}

.dot-cyan {
  background: #06b6d4;
}

.dot-blue {
  background: #2563eb;
}

.dot-indigo {
  background: #4f46e5;
}

.dot-emerald {
  background: #059669;
}

.dot-purple {
  background: #9333ea;
}

.dot-amber {
  background: #d97706;
}

.dot-teal {
  background: #0d9488;
}

/* --------------------------------------------------------------------------
   EDITORIAL MAGAZINE GRID LAYOUT
   -------------------------------------------------------------------------- */
.insights-editorial-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Primary Featured Article Card (Hero Focal Point) */
.insight-card-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: 32px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(15, 23, 42, 0.07);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.insight-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 80px -16px rgba(6, 182, 212, 0.16);
  border-color: rgba(6, 182, 212, 0.4);
}

.featured-card-visual {
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #e0e7ff 100%);
  overflow: hidden;
}

.featured-svg-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-card-featured:hover .featured-svg-art {
  transform: scale(1.04);
}

.featured-spotlight-pill {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #0284c7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.featured-visual-icon {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: #ffffff;
  color: #0284c7;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  transition: transform 0.4s ease;
}

.insight-card-featured:hover .featured-visual-icon {
  transform: scale(1.1) rotate(-4deg);
}

.featured-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 40px;
}

.insight-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.insight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease;
}

.insight-badge.badge-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #0284c7;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.insight-badge.badge-blue {
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.insight-badge.badge-indigo {
  background: rgba(79, 70, 229, 0.1);
  color: #4338ca;
  border: 1px solid rgba(79, 70, 229, 0.25);
}

.insight-badge.badge-emerald {
  background: rgba(5, 150, 105, 0.1);
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.insight-badge.badge-purple {
  background: rgba(147, 51, 234, 0.1);
  color: #6b21a8;
  border: 1px solid rgba(147, 51, 234, 0.25);
}

.insight-badge.badge-amber {
  background: rgba(217, 119, 6, 0.1);
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.25);
}

.insight-badge.badge-teal {
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  border: 1px solid rgba(13, 148, 136, 0.25);
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
}

.featured-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.22;
  color: #0f172a;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.insight-card-featured:hover .featured-title {
  color: #0284c7;
}

.featured-excerpt {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.avatar-cyan {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.author-text {
  display: flex;
  flex-direction: column;
}

.author-text strong {
  font-size: 0.88rem;
  color: #0f172a;
  font-weight: 700;
}

.author-text span {
  font-size: 0.78rem;
  color: #64748b;
}

/* Button & Link Interactions */
.insight-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cyan {
  background: linear-gradient(135deg, #0284c7, #06b6d4);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(6, 182, 212, 0.25);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(6, 182, 212, 0.35);
  color: #ffffff;
}

.insight-read-btn svg {
  transition: transform 0.3s ease;
}

.insight-read-btn:hover svg {
  transform: translateX(4px);
}

/* Secondary Feature Showcase Grid */
.insights-secondary-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.insight-card-standard {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.insight-card-standard:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -12px rgba(15, 23, 42, 0.10);
}

.insight-card-standard.category-innovation:hover {
  border-color: rgba(37, 99, 235, 0.4);
}

.insight-card-standard.category-leadership:hover {
  border-color: rgba(79, 70, 229, 0.4);
}

.insight-card-standard.category-ai:hover {
  border-color: rgba(147, 51, 234, 0.4);
}

.insight-card-standard.category-business:hover {
  border-color: rgba(5, 150, 105, 0.4);
}

.insight-card-standard.category-news:hover {
  border-color: rgba(217, 119, 6, 0.4);
}

.insight-card-standard.category-vision:hover {
  border-color: rgba(13, 148, 136, 0.4);
}

.card-visual-header {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.header-blue {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.header-indigo {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

.header-purple {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.header-emerald {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.header-amber {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.header-teal {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.card-svg-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card-standard:hover .card-svg-bg {
  transform: scale(1.05);
}

.card-category-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.card-icon-box {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease;
}

.insight-card-standard:hover .card-icon-box {
  transform: scale(1.1);
}

.icon-blue {
  color: #2563eb;
}

.icon-indigo {
  color: #4f46e5;
}

.icon-purple {
  color: #9333ea;
}

.icon-emerald {
  color: #059669;
}

.icon-amber {
  color: #d97706;
}

.icon-teal {
  color: #0d9488;
}

.card-body-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 28px 30px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.insight-card-standard:hover .card-title {
  color: #2563eb;
}

.card-description {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.insight-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: color 0.25s ease;
}

.link-blue {
  color: #2563eb;
}

.link-indigo {
  color: #4f46e5;
}

.link-purple {
  color: #9333ea;
}

.link-emerald {
  color: #059669;
}

.link-amber {
  color: #d97706;
}

.link-teal {
  color: #0d9488;
}

.insight-link-btn svg {
  transition: transform 0.25s ease;
}

.insight-link-btn:hover svg {
  transform: translateX(4px);
}

/* 4-Card Responsive Article Grid */
.insights-grid-four {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Filter Transition Effects */
.insight-card-featured.is-hidden,
.insight-card-standard.is-hidden {
  display: none !important;
}

/* --------------------------------------------------------------------------
   KNOWLEDGE HIGHLIGHTS, TIMELINE & BRIEFING PANELS STRIP
   -------------------------------------------------------------------------- */
.insights-knowledge-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 16px;
}

.strip-panel {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strip-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -10px rgba(15, 23, 42, 0.08);
}

.panel-header {
  margin-bottom: 24px;
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kicker-cyan {
  color: #0284c7;
}

.kicker-amber {
  color: #d97706;
}

.kicker-purple {
  color: #9333ea;
}

.panel-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.briefing-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-top: 6px;
}

/* Pillars List */
.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillar-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(241, 245, 249, 0.9);
}

.pillar-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.item-cyan .pillar-icon {
  background: rgba(6, 182, 212, 0.1);
  color: #0284c7;
}

.item-blue .pillar-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.item-purple .pillar-icon {
  background: rgba(147, 51, 234, 0.1);
  color: #9333ea;
}

.pillar-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pillar-text strong {
  font-size: 0.92rem;
  color: #0f172a;
  font-weight: 700;
}

.pillar-text span {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
}

/* Timeline Stream */
.timeline-stream {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 12px;
}

.timeline-stream::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 15px;
  width: 2px;
  background: linear-gradient(180deg, #d97706, #06b6d4, #0d9488);
  border-radius: 999px;
}

.stream-entry {
  position: relative;
  padding-left: 24px;
}

.stream-badge-dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #d97706;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
}

.entry-cyan .stream-badge-dot {
  border-color: #06b6d4;
}

.entry-teal .stream-badge-dot {
  border-color: #0d9488;
}

.stream-body strong {
  display: block;
  font-size: 0.92rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 2px;
}

.stream-body p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Briefing Newsletter Form */
.briefing-panel {
  background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
  border-color: rgba(147, 51, 234, 0.2);
}

.insights-briefing-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.briefing-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.briefing-input-group input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.briefing-input-group input:focus {
  border-color: #9333ea;
  box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.12);
}

.briefing-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 16px;
  border: 0;
  background: linear-gradient(135deg, #7e22ce, #9333ea);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(147, 51, 234, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.briefing-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(147, 51, 234, 0.35);
}

.briefing-privacy-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #94a3b8;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .insights-intro-container {
    grid-template-columns: 1fr;
  }

  .insights-header-stats {
    flex-direction: row;
  }

  .insights-stat-box {
    flex: 1;
  }

  .insights-knowledge-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .insight-card-featured {
    grid-template-columns: 1fr;
  }

  .featured-card-visual {
    min-height: 280px;
  }

  .insights-secondary-row,
  .insights-grid-four {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .insights-section {
    padding: 48px 0;
  }

  .insights-intro-container {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .insights-main-title {
    font-size: 2.2rem;
  }

  .insights-header-stats {
    flex-direction: column;
  }

  .featured-card-content,
  .card-body-content,
  .strip-panel {
    padding: 24px;
  }

  .featured-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .insight-read-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .insights-category-bar {
    border-radius: 20px;
    padding: 8px;
  }

  .insight-filter-tab {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

.contact-premium-section {
  position: relative;
  padding: 60px 24px;
  background:
    radial-gradient(circle at top left, rgba(82, 109, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  overflow: hidden;
}

.contact-premium-section::before,
.contact-premium-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0px);
}

.contact-premium-section::before {
  width: 320px;
  height: 320px;
  left: -100px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.15), transparent 70%);
}

.contact-premium-section::after {
  width: 280px;
  height: 280px;
  right: -70px;
  top: -90px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 72%);
}

.contact-premium-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.contact-premium-header h2 {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 14px;
}

.contact-premium-header p {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.9;
}

.premium-divider {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.premium-divider span {
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.contact-premium-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: start;
  margin-top: 22px;
}

.contact-intro-panel,
.contact-form-panel,
.contact-detail-card,
.quick-help-card,
.location-card,
.contact-premium-cta {
  position: relative;
  overflow: hidden;
}

.contact-spotlight {
  background: linear-gradient(135deg, #ffffff 0%, #f7f8fa 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

.contact-spotlight::before {
  content: "";
  position: absolute;
  inset: auto -50px -50px auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 70%);
  pointer-events: none;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.contact-badges span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-spotlight h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 10px;
}

.contact-spotlight p {
  color: #475569;
  line-height: 1.8;
}

.contact-selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 20px;
}

.contact-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: #334155;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.contact-choice:hover,
.contact-choice.active {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.25);
  color: #2563eb;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.contact-choice i {
  font-size: 0.95rem;
}

.contact-direct-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.contact-direct-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #0f172a;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-direct-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.24);
}

.contact-direct-list a i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  flex-shrink: 0;
}

.contact-direct-list a span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-direct-list a strong {
  font-size: 0.95rem;
}

.contact-direct-list a small {
  color: #64748b;
  font-size: 0.82rem;
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
}

.contact-premium-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row.compact {
  align-items: end;
}

.field {
  position: relative;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background: #ffffff;
  padding: 20px 16px 12px;
  font: inherit;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.field label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  transition: all 0.2s ease;
  background: #ffffff;
  padding: 0 4px;
}

.field textarea+label {
  top: 22px;
  transform: none;
}

.field:focus-within label,
.field.has-value label {
  top: 6px;
  transform: none;
  font-size: 0.72rem;
  color: #2563eb;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.upload-field input[type="file"] {
  padding: 14px 12px 12px;
  cursor: pointer;
}

.upload-field label {
  top: 50%;
  transform: translateY(-50%);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 4px;
}

.consent-row input {
  margin-top: 3px;
}

.contact-submit {
  border: none;
  border-radius: 999px;
  padding: 13px 18px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.22);
}

.form-status {
  min-height: 24px;
  margin-top: 2px;
  color: #0f766e;
  font-size: 0.95rem;
}

.contact-premium-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.contact-detail-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.04);
}

.detail-stack {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.detail-stack strong,
.hours-timeline strong {
  display: block;
  color: #0f172a;
  margin-bottom: 4px;
}

.detail-stack a,
.detail-stack span,
.hours-timeline span {
  color: #475569;
  text-decoration: none;
}

.hours-timeline {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.hours-timeline div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.social-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-inline a {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  transition: transform 0.2s ease;
}

.social-inline a:hover {
  transform: translateY(-2px);
}

.contact-premium-bottom {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-top: 24px;
}

.quick-help-card,
.location-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.04);
}

.premium-faq-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  display: grid;
  gap: 20px;
  animation: faqReveal 0.7s ease both;
}

.premium-faq-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 70%);
  pointer-events: none;
}

.faq-intro {
  position: relative;
  z-index: 1;
}

.faq-intro h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  color: #0f172a;
  margin: 4px 0 10px;
  line-height: 1.25;
}

.faq-intro p {
  margin: 0;
  color: #475569;
  line-height: 1.75;
  max-width: 640px;
}

.faq-divider {
  width: 88px;
  height: 3px;
  border-radius: 999px;
  margin-top: 14px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  position: relative;
  overflow: hidden;
  animation: dividerPulse 2.4s ease-in-out infinite alternate;
}

.faq-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: translateX(-100%);
  animation: dividerSweep 2.2s infinite;
}

.faq-accordion {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.faq-panel {
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.faq-panel.active {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.08);
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border: none;
  background: transparent;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.faq-question-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.faq-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #2563eb;
  background: linear-gradient(135deg, #e8f1ff, #dff8ff);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-title {
  font-weight: 600;
  line-height: 1.45;
  color: #10233f;
}

.faq-panel.active .faq-icon {
  transform: scale(1.04);
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3f6ff;
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #2563eb;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-panel.active .faq-toggle {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  transform: rotate(180deg);
}

.faq-panel.active .faq-toggle::before,
.faq-panel.active .faq-toggle::after {
  background: #fff;
}

.faq-panel.active .faq-toggle::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
}

.faq-panel.active .faq-answer {
  max-height: 180px;
  padding: 0 18px 18px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.faq-footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.faq-footer-cta a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-footer-cta a:hover {
  transform: translateY(-2px);
  background: #f3f8ff;
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.08);
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes dividerPulse {
  from {
    transform: scaleX(0.75);
    opacity: 0.8;
  }

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

@keyframes dividerSweep {
  100% {
    transform: translateX(100%);
  }
}

.location-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: center;
}

.location-map {
  min-height: 220px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.24), transparent 20%),
    linear-gradient(135deg, #eaf2ff 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}

.location-map::before,
.location-map::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.18);
}

.location-map::before {
  width: 180px;
  height: 180px;
  inset: 16px auto auto 14px;
}

.location-map::after {
  width: 120px;
  height: 120px;
  inset: auto 12px 12px auto;
}

.location-copy h3 {
  font-size: 1.3rem;
  color: #0f172a;
  margin: 4px 0 8px;
}

.location-copy p {
  color: #475569;
  line-height: 1.8;
}

.location-copy a {
  display: inline-flex;
  margin-top: 10px;
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.contact-premium-cta {
  text-align: center;
  margin-top: 26px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.contact-premium-cta h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-premium-cta p {
  color: #475569;
  max-width: 720px;
  margin: 0 auto 18px;
  line-height: 1.8;
}

.contact-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-cta-actions a:first-child,
.contact-cta-actions a:nth-child(2) {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
}

.contact-cta-actions a:last-child {
  background: #fff;
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.16);
}

.contact-cta-actions a:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {

  .contact-premium-grid,
  .contact-premium-bottom,
  .contact-premium-details {
    grid-template-columns: 1fr;
  }

  .location-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-premium-section {
    padding: 48px 16px;
  }

  .contact-spotlight,
  .contact-form-panel,
  .contact-detail-card,
  .quick-help-card,
  .location-card,
  .contact-premium-cta {
    padding: 20px;
    border-radius: 22px;
  }

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

  .contact-selectors {
    gap: 8px;
  }

  .contact-choice {
    width: 100%;
    justify-content: center;
  }

  .contact-cta-actions {
    flex-direction: column;
  }

  .contact-cta-actions a {
    width: 100%;
  }
}

.section-heading-row {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ecosystem-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(109, 92, 255, 0.16);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ecosystem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109, 92, 255, 0.12), rgba(56, 189, 248, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ecosystem-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(47, 87, 255, 0.12);
}

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

.ecosystem-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #6d5cff, #38bdf8);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  transition: transform 0.35s cubic-bezier(.2, .9, .2, 1), box-shadow 0.35s ease, filter 0.35s ease;
  animation: floaty 6s ease-in-out infinite;
}

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

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

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

/* Assign distinct vibrant gradients and subtle glows per card */
.ecosystem-grid>.ecosystem-card:nth-child(1) .ecosystem-logo {
  background: linear-gradient(135deg, #ff7a59, #ffbf69);
  box-shadow: 0 12px 30px rgba(255, 122, 89, 0.14);
}

.ecosystem-grid>.ecosystem-card:nth-child(2) .ecosystem-logo {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.12);
}

.ecosystem-grid>.ecosystem-card:nth-child(3) .ecosystem-logo {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.12);
}

.ecosystem-grid>.ecosystem-card:nth-child(4) .ecosystem-logo {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.12);
}

.ecosystem-grid>.ecosystem-card:nth-child(5) .ecosystem-logo {
  background: linear-gradient(135deg, #f97316, #fb7185);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.12);
}

.ecosystem-grid>.ecosystem-card:nth-child(6) .ecosystem-logo {
  background: linear-gradient(135deg, #0ea5a4, #06b6d4);
  box-shadow: 0 12px 30px rgba(14, 165, 164, 0.12);
}

/* Hover & focus effects */
.ecosystem-card:hover .ecosystem-logo,
.ecosystem-card:focus-within .ecosystem-logo {
  transform: translateY(-8px) scale(1.06) rotate(-3deg);
  filter: brightness(1.04);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

/* Slight pop when the logo itself is hovered (for pointer on the logo) */
.ecosystem-logo:hover {
  transform: translateY(-6px) scale(1.08) rotate(-2deg);
}

/* SVG icon sizing and appearance inside the logo container */
.ecosystem-logo svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Hover pulse for emphasis */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

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

.ecosystem-card:hover .ecosystem-logo,
.ecosystem-card:focus-within .ecosystem-logo {
  animation: pulse 0.8s ease;
}

.ecosystem-card h3 {
  font-size: 1.15rem;
  color: #111827;
  margin-bottom: 8px;
}

.ecosystem-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

.ecosystem-industry,
.ecosystem-status {
  display: inline-block;
  margin-top: 12px;
  margin-right: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.ecosystem-industry {
  background: rgba(109, 92, 255, 0.12);
  color: #6d5cff;
}

.ecosystem-status {
  background: rgba(56, 189, 248, 0.12);
  color: #0f766e;
}

.corporate-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  color: #6d5cff;
  text-decoration: none;
}

.corporate-link::after {
  content: '→';
  transition: transform 0.25s ease;
}

.corporate-link:hover::after {
  transform: translateX(3px);
}

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

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

.services .services-grid {
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  padding: 28px 22px;
}

.service-icon {
  font-size: 2.8rem;
}

.service-title {
  font-size: 1.4rem;
}

.service-description {
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .services {
    padding: 50px 0 30px 0;
    margin: 0;
  }

  .services .section-heading {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }

  .services .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 10px;
    max-width: 100%;
  }

  .service-card {
    padding: 20px 15px;
    width: 100%;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .service-icon {
    font-size: 2rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.85rem;
  }
}

/* ================= PARTICLE ANIMATION ================= */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ff6ec4, #7873f5);
  border-radius: 50%;
  pointer-events: none;
  animation: particleBurst 1s ease-out forwards;
  z-index: 1000;
}

@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(var(--x), var(--y)) scale(0);
  }
}

/* Saffron glow animation for navbar */
@keyframes saffronGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.6);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 153, 51, 0.9), 0 0 40px rgba(255, 153, 51, 0.5);
  }
}

/* Blue glow animation for navbar */
@keyframes blueGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.9), 0 0 40px rgba(0, 123, 255, 0.5);
  }
}

/* =================== STATS =================== */
/* Stats Section */
.stats {
  padding: 80px 20px 2cm;
  background: linear-gradient(140deg, #ffffff 50%, #ffffff 50%);
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stats.visible {
  opacity: 1;
  transform: translateY(0);
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(200, 200, 200, 0.05);
  opacity: 0.2;
  z-index: 0;
}

.stats .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #555;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.stats .section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6ec4, #7873f5, #42e695, #ffeb3b, #007bff);
  border-radius: 2px;
}

.stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stats .stat-box {
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #555;
}

/* Assign light pastel colors to each stat box and colorful gradients to their icons */
.stats .stat-box:nth-child(1) {
  background: #e3f2fd;
  /* Light blue */
}

.stats .stat-box:nth-child(1) .stat-icon {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
}

.stats .stat-box:nth-child(2) {
  background: #f3e5f5;
  /* Light purple */
}

.stats .stat-box:nth-child(2) .stat-icon {
  background: linear-gradient(135deg, #da22ff, #9114ff);
  color: #fff;
}

.stats .stat-box:nth-child(3) {
  background: #e8f5e8;
  /* Light green */
}

.stats .stat-box:nth-child(3) .stat-icon {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  color: #fff;
}

.stats .stat-box:nth-child(4) {
  background: #fff3e0;
  /* Light orange */
}

.stats .stat-box:nth-child(4) .stat-icon {
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  color: #fff;
}

.stats .stat-box:nth-child(5) {
  background: #fce4ec;
  /* Light pink */
}

.stats .stat-box:nth-child(5) .stat-icon {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
}

.stats .stat-box:nth-child(6) {
  background: #e0f2f1;
  /* Light cyan */
}

.stats .stat-box:nth-child(6) .stat-icon {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #fff;
}

.stats .stat-box:nth-child(7) {
  background: #fffde7;
  /* Light yellow */
}

.stats .stat-box:nth-child(7) .stat-icon {
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #fff;
}

.stats .stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 200, 200, 0.1), transparent);
  transition: left 0.4s;
}

.stats .stat-box:hover::before {
  left: 100%;
}

.stats .stat-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(150, 150, 150, 0.3);
}

.stats .stat-icon {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  color: #666;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stats .stat-box:hover .stat-icon {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

.stat-fill {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #333;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.stat-fill::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ccc, #aaa);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.stats .stat-box:hover .stat-fill::after {
  width: 80%;
}

.stats .stat-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .stats {
    padding: 60px 20px;
  }

  .stats .section-heading {
    font-size: 2rem;
  }

  .stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stats .stat-box {
    padding: 22px 16px;
  }

  .stat-fill {
    font-size: 2rem;
  }

  .stats .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .stats .stat-title {
    font-size: 1.2rem;
  }
}

/* ================= PORTFOLIO ================= */
.portfolio {
  padding: 28px 60px 102px;
  margin: 0 0 -2cm 0;
  background: linear-gradient(140deg, #ffffff 50%, #ffffff 50%);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= PORTFOLIO DETAIL ================= */
.portfolio-detail {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 50%, #ffffff 50%);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-detail.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-detail .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-detail h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 40px;
  position: relative;
  animation: titleFadeIn 1s ease-out;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

.portfolio-detail img {
  max-height: 200px;
  width: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  animation: imageSlideIn 1.2s ease-out;
  margin-bottom: 40px;
}

@keyframes imageSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }

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

.portfolio-detail img:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1) saturate(1.2);
}

.portfolio-detail .intro-section,
.portfolio-detail .benefits-section,
.portfolio-detail .technologies-section {
  margin-bottom: 60px;
  animation: sectionFadeIn 1s ease-out forwards;
  opacity: 0;
}

.portfolio-detail .intro-section {
  animation-delay: 0.3s;
}

.portfolio-detail .benefits-section {
  animation-delay: 0.6s;
}

.portfolio-detail .technologies-section {
  animation-delay: 0.9s;
}

@keyframes sectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.portfolio-detail h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
  position: relative;
}

.portfolio-detail h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  border-radius: 2px;
}

.portfolio-detail p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
  max-width: 800px;
  margin: 0 auto 20px;
}

.portfolio-detail .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.portfolio-detail .benefit-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  animation: cardBounceIn 0.8s ease-out forwards;
  opacity: 0;
}

.portfolio-detail .benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.portfolio-detail .benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.portfolio-detail .benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.portfolio-detail .benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

.portfolio-detail .benefit-card:nth-child(5) {
  animation-delay: 0.5s;
}

.portfolio-detail .benefit-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes cardBounceIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }

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

.portfolio-detail .benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.portfolio-detail .benefit-card i {
  font-size: 3rem;
  color: #ff6ec4;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.portfolio-detail .benefit-card:hover i {
  transform: scale(1.2) rotate(10deg);
}

.portfolio-detail .benefit-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.portfolio-detail .benefit-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.portfolio-detail .tech-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.portfolio-detail .tech-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  animation: techFadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.portfolio-detail .tech-item:nth-child(1) {
  animation-delay: 0.1s;
}

.portfolio-detail .tech-item:nth-child(2) {
  animation-delay: 0.2s;
}

.portfolio-detail .tech-item:nth-child(3) {
  animation-delay: 0.3s;
}

.portfolio-detail .tech-item:nth-child(4) {
  animation-delay: 0.4s;
}

.portfolio-detail .tech-item:nth-child(5) {
  animation-delay: 0.5s;
}

.portfolio-detail .tech-item:nth-child(6) {
  animation-delay: 0.6s;
}

.portfolio-detail .tech-item:nth-child(7) {
  animation-delay: 0.7s;
}

.portfolio-detail .tech-item:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes techFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.portfolio-detail .tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-detail .tech-item i {
  font-size: 2.5rem;
  color: #7873f5;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.portfolio-detail .tech-item:hover i {
  transform: scale(1.1) rotate(5deg);
}

.portfolio-detail .tech-item span {
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
}

.portfolio-detail .back-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 30px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 110, 196, 0.3);
  animation: btnFloat 2s ease-in-out infinite;
}

@keyframes btnFloat {

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

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

.portfolio-detail .back-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 110, 196, 0.4);
}

/* Responsive Design for Portfolio Detail */
@media (max-width: 768px) {
  .portfolio-detail {
    padding: 60px 20px;
  }

  .portfolio-detail h1 {
    font-size: 2.5rem;
  }

  .portfolio-detail img {
    max-height: 250px;
  }

  .portfolio-detail h2 {
    font-size: 2rem;
  }

  .portfolio-detail .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-detail .benefit-card {
    padding: 25px 20px;
  }

  .portfolio-detail .tech-list {
    gap: 15px;
  }

  .portfolio-detail .tech-item {
    padding: 15px;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 3D model container inside the portfolio grid - spans two columns on wide screens */
.portfolio-3d {
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  /* full white box */
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  /* allow the model to occupy more grid space on larger screens */
  grid-column: span 2;
  position: relative;
  /* needed when video fills the card */
  overflow: hidden;
  /* keep same visual size as previous model-viewer setup */
  min-height: 360px;
}

/* Ensure the model shrinks to single column on smaller screens */
@media (max-width: 1024px) {
  .portfolio-3d {
    grid-column: span 1;
    min-height: 320px;
  }
}

/* Make the video fill the full `.portfolio-3d` card (no logos/poster shown) */
.portfolio-3d.video-full .portfolio-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  /* card already has rounded corners */
  object-fit: cover;
  display: block;
}

/* keep legacy selector to avoid layout regressions */
.portfolio-3d .portfolio-video {
  display: block;
  object-fit: cover;
}


/* ================= TECH ORBIT STYLES ================= */
/* Model Viewer Wrapper for Orbiting Tech Logos */
.model-viewer-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* two-column layout: model left, logos right */
.model-viewer-wrapper.two-column-layout {
  gap: 22px;
  justify-content: space-between;
}

.model-col {
  width: 58%;
  min-width: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  /* white panel behind 3D model */
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
  overflow: hidden;
}

.logos-col {
  width: 38%;
  min-width: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ensure model and logos sit above the animated code background */
.model-viewer-wrapper>model-viewer {
  z-index: 12;
  /* ensure model is above white panel and any background */
  position: relative;
  background: transparent;
}

.tech-orbit {
  z-index: 7;
  transform-origin: center center;
}

.tech-logo {
  z-index: 8;
}

/* make code-background appear inside logos column only; do NOT tint the white box */
.model-col .code-background {
  display: none;
}

.logos-col .code-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 12px;
  pointer-events: none;
  background: transparent;
  /* keep full white box underneath */
}

.logos-col .code-background::before {
  display: none;
}

/* remove overlay that previously darkened the box */

/* Tech Orbit Container - now constrained to the right column */
.tech-orbit {
  position: relative;
  width: 280px;
  height: 280px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  /* allow hover */
  transform-origin: center center;
  animation: orbit-wrapper 60s linear infinite;
  z-index: 6;
  background: transparent;
}

@media (max-width: 1024px) {
  .model-viewer-wrapper.two-column-layout {
    flex-direction: column;
    gap: 18px;
  }

  .model-col,
  .logos-col {
    width: 100%;
  }

  .tech-orbit {
    width: 220px;
    height: 220px;
  }
}

@keyframes orbit-wrapper {
  from {
    transform: rotate(0deg);
  }

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

@media (prefers-reduced-motion: reduce) {

  .tech-orbit,
  .tech-logo,
  .code-line {
    animation: none !important;
  }
}

/* Individual Tech Logo */
.tech-logo {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.9));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-size: 24px;
  color: #333;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  will-change: transform, opacity;
  backface-visibility: hidden;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Orbit Animation with 8 positions */
.tech-logo[style*="--orbit-index: 0"] {
  animation-name: orbit-0;
}

.tech-logo[style*="--orbit-index: 1"] {
  animation-name: orbit-1;
}

.tech-logo[style*="--orbit-index: 2"] {
  animation-name: orbit-2;
}

.tech-logo[style*="--orbit-index: 3"] {
  animation-name: orbit-3;
}

.tech-logo[style*="--orbit-index: 4"] {
  animation-name: orbit-4;
}

.tech-logo[style*="--orbit-index: 5"] {
  animation-name: orbit-5;
}

.tech-logo[style*="--orbit-index: 6"] {
  animation-name: orbit-6;
}

.tech-logo[style*="--orbit-index: 7"] {
  animation-name: orbit-7;
}

/* Keyframe animations for 8 evenly spaced logos (45 degrees apart) */
@keyframes orbit-0 {
  from {
    transform: rotate(0deg) translateX(110px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(110px) rotate(-360deg);
  }
}

@keyframes orbit-1 {
  from {
    transform: rotate(45deg) translateX(110px) rotate(-45deg);
  }

  to {
    transform: rotate(405deg) translateX(110px) rotate(-405deg);
  }
}

@keyframes orbit-2 {
  from {
    transform: rotate(90deg) translateX(110px) rotate(-90deg);
  }

  to {
    transform: rotate(450deg) translateX(110px) rotate(-450deg);
  }
}

@keyframes orbit-3 {
  from {
    transform: rotate(135deg) translateX(110px) rotate(-135deg);
  }

  to {
    transform: rotate(495deg) translateX(110px) rotate(-495deg);
  }
}

@keyframes orbit-4 {
  from {
    transform: rotate(180deg) translateX(110px) rotate(-180deg);
  }

  to {
    transform: rotate(540deg) translateX(110px) rotate(-540deg);
  }
}

@keyframes orbit-5 {
  from {
    transform: rotate(225deg) translateX(110px) rotate(-225deg);
  }

  to {
    transform: rotate(585deg) translateX(110px) rotate(-585deg);
  }
}

@keyframes orbit-6 {
  from {
    transform: rotate(270deg) translateX(110px) rotate(-270deg);
  }

  to {
    transform: rotate(630deg) translateX(110px) rotate(-630deg);
  }
}

@keyframes orbit-7 {
  from {
    transform: rotate(315deg) translateX(110px) rotate(-315deg);
  }

  to {
    transform: rotate(675deg) translateX(110px) rotate(-675deg);
  }
}

/* Hover Effect */
.tech-logo:hover {
  transform: scale(1.25) translateZ(0);
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  box-shadow: 0 12px 32px rgba(0, 123, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 123, 255, 0.6);
  animation-play-state: paused;
  z-index: 10;
}

/* Initial placement so logos sit on the orbit immediately */
.tech-orbit .tech-logo:nth-of-type(1) {
  transform: rotate(0deg) translateX(110px) rotate(0deg);
}

.tech-orbit .tech-logo:nth-of-type(2) {
  transform: rotate(45deg) translateX(110px) rotate(-45deg);
}

.tech-orbit .tech-logo:nth-of-type(3) {
  transform: rotate(90deg) translateX(110px) rotate(-90deg);
}

.tech-orbit .tech-logo:nth-of-type(4) {
  transform: rotate(135deg) translateX(110px) rotate(-135deg);
}

.tech-orbit .tech-logo:nth-of-type(5) {
  transform: rotate(180deg) translateX(110px) rotate(-180deg);
}

.tech-orbit .tech-logo:nth-of-type(6) {
  transform: rotate(225deg) translateX(110px) rotate(-225deg);
}

.tech-orbit .tech-logo:nth-of-type(7) {
  transform: rotate(270deg) translateX(110px) rotate(-270deg);
}

.tech-orbit .tech-logo:nth-of-type(8) {
  transform: rotate(315deg) translateX(110px) rotate(-315deg);
}

/* Tech Name Tooltip */
.tech-name {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  color: #333;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  letter-spacing: 0.5px;
}

.tech-logo:hover .tech-name {
  opacity: 1;
}

/* Responsive adjustments for tech logos */
@media (max-width: 768px) {
  .tech-logo {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .tech-logo[style*="--orbit-index: 0"],
  .tech-logo[style*="--orbit-index: 1"],
  .tech-logo[style*="--orbit-index: 2"],
  .tech-logo[style*="--orbit-index: 3"],
  .tech-logo[style*="--orbit-index: 4"],
  .tech-logo[style*="--orbit-index: 5"],
  .tech-logo[style*="--orbit-index: 6"],
  .tech-logo[style*="--orbit-index: 7"] {
    animation: orbit-small 20s linear infinite;
  }

  @keyframes orbit-small {
    from {
      transform: rotate(0deg) translateX(60px) rotate(0deg);
    }

    to {
      transform: rotate(360deg) translateX(60px) rotate(-360deg);
    }
  }
}

/* ================= ANIMATED CODING BACKGROUND ================= */

/* ----- model 'wave' fallback (CSS) ----- */
@keyframes model-wave {
  0% {
    transform: rotateY(0deg) translateZ(0);
  }

  20% {
    transform: rotateY(-6deg) translateZ(0);
  }

  40% {
    transform: rotateY(6deg) translateZ(0);
  }

  60% {
    transform: rotateY(-6deg) translateZ(0);
  }

  80% {
    transform: rotateY(3deg) translateZ(0);
  }

  100% {
    transform: rotateY(0deg) translateZ(0);
  }
}

.model-wave-apply {
  animation: model-wave 1.2s ease-in-out both;
}

/* Hello overlay */
.model-hello {
  position: absolute;
  left: 50%;
  top: 14%;
  transform: translateX(-50%) translateY(-6px) scale(0.96);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(.2, .9, .2, 1), transform 300ms cubic-bezier(.2, .9, .2, 1);
  z-index: 20;
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.28);
}

.model-hello.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}


/* Code Background Container (subtle over the white panel) */
.code-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 12px;
  pointer-events: none;
  background-color: rgba(6, 10, 20, 0.28);
  /* lighter so white panel shows through */
  mix-blend-mode: multiply;
  z-index: 1;
}

.code-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px, 100% 100%;
  mix-blend-mode: overlay;
  opacity: 0.9;
  pointer-events: none;
}

/* Individual Code Lines */
.code-line {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  opacity: 0;
  white-space: nowrap;
  will-change: transform, opacity;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.45);
  mix-blend-mode: screen;
  /* make lines pop over white */
}

/* Color scheme for different lines */
.code-line-1 {
  color: rgba(66, 230, 149, 0.95);
  animation: float-line-1 8s ease-in-out infinite;
}

.code-line-2 {
  color: rgba(255, 107, 107, 0.95);
  animation: float-line-2 10s ease-in-out infinite;
}

.code-line-3 {
  color: rgba(66, 165, 245, 0.95);
  animation: float-line-3 9s ease-in-out infinite;
}

.code-line-4 {
  color: rgba(255, 193, 7, 0.95);
  animation: float-line-4 11s ease-in-out infinite;
}

.code-line-5 {
  color: rgba(156, 39, 176, 0.95);
  animation: float-line-5 12s ease-in-out infinite;
}

.code-line-6 {
  color: rgba(244, 67, 54, 0.95);
  animation: float-line-6 9.5s ease-in-out infinite;
}

.code-line-7 {
  color: rgba(76, 175, 80, 0.95);
  animation: float-line-7 10.5s ease-in-out infinite;
}

.code-line-8 {
  color: rgba(33, 150, 243, 0.95);
  animation: float-line-8 11.5s ease-in-out infinite;
}

/* Floating animations for code lines (stronger visibility) */
@keyframes float-line-1 {
  0% {
    left: -300px;
    top: 10%;
    opacity: 0;
  }

  25% {
    opacity: 0.65;
  }

  50% {
    opacity: 0.95;
    left: 50%;
    top: 15%;
  }

  75% {
    opacity: 0.65;
  }

  100% {
    left: calc(100% + 100px);
    top: 20%;
    opacity: 0;
  }
}

@keyframes float-line-2 {
  0% {
    right: -350px;
    bottom: 10%;
    opacity: 0;
  }

  25% {
    opacity: 0.65;
  }

  50% {
    opacity: 0.95;
    right: 30%;
    bottom: 15%;
  }

  75% {
    opacity: 0.6;
  }

  100% {
    right: calc(100% + 150px);
    bottom: 20%;
    opacity: 0;
  }
}

@keyframes float-line-3 {
  0% {
    left: -400px;
    top: 30%;
    opacity: 0;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.9;
    left: 40%;
    top: 35%;
  }

  75% {
    opacity: 0.55;
  }

  100% {
    left: calc(100% + 120px);
    top: 40%;
    opacity: 0;
  }
}

@keyframes float-line-4 {
  0% {
    right: -300px;
    bottom: 30%;
    opacity: 0;
  }

  25% {
    opacity: 0.65;
  }

  50% {
    opacity: 0.95;
    right: 45%;
    bottom: 35%;
  }

  75% {
    opacity: 0.6;
  }

  100% {
    right: calc(100% + 100px);
    bottom: 40%;
    opacity: 0;
  }
}

@keyframes float-line-5 {
  0% {
    left: -380px;
    top: 50%;
    opacity: 0;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.9;
    left: 35%;
    top: 55%;
  }

  75% {
    opacity: 0.55;
  }

  100% {
    left: calc(100% + 130px);
    top: 60%;
    opacity: 0;
  }
}

@keyframes float-line-6 {
  0% {
    right: -320px;
    bottom: 50%;
    opacity: 0;
  }

  25% {
    opacity: 0.65;
  }

  50% {
    opacity: 0.95;
    right: 50%;
    bottom: 55%;
  }

  75% {
    opacity: 0.6;
  }

  100% {
    right: calc(100% + 140px);
    bottom: 60%;
    opacity: 0;
  }
}

@keyframes float-line-7 {
  0% {
    left: -360px;
    top: 70%;
    opacity: 0;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.9;
    left: 45%;
    top: 75%;
  }

  75% {
    opacity: 0.55;
  }

  100% {
    left: calc(100% + 110px);
    top: 80%;
    opacity: 0;
  }
}

@keyframes float-line-8 {
  0% {
    right: -340px;
    bottom: 70%;
    opacity: 0;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.95;
    right: 40%;
    bottom: 75%;
  }

  75% {
    opacity: 0.55;
  }

  100% {
    right: calc(100% + 125px);
    bottom: 80%;
    opacity: 0;
  }
}


@keyframes float-line-2 {
  0% {
    right: -350px;
    bottom: 10%;
    opacity: 0;
  }

  25% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.7;
    right: 30%;
    bottom: 15%;
  }

  75% {
    opacity: 0.4;
  }

  100% {
    right: calc(100% + 150px);
    bottom: 20%;
    opacity: 0;
  }
}

@keyframes float-line-3 {
  0% {
    left: -400px;
    top: 30%;
    opacity: 0;
  }

  25% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.65;
    left: 40%;
    top: 35%;
  }

  75% {
    opacity: 0.3;
  }

  100% {
    left: calc(100% + 120px);
    top: 40%;
    opacity: 0;
  }
}

@keyframes float-line-4 {
  0% {
    right: -300px;
    bottom: 30%;
    opacity: 0;
  }

  25% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.7;
    right: 45%;
    bottom: 35%;
  }

  75% {
    opacity: 0.35;
  }

  100% {
    right: calc(100% + 100px);
    bottom: 40%;
    opacity: 0;
  }
}

@keyframes float-line-5 {
  0% {
    left: -380px;
    top: 50%;
    opacity: 0;
  }

  25% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.65;
    left: 35%;
    top: 55%;
  }

  75% {
    opacity: 0.3;
  }

  100% {
    left: calc(100% + 130px);
    top: 60%;
    opacity: 0;
  }
}

@keyframes float-line-6 {
  0% {
    right: -320px;
    bottom: 50%;
    opacity: 0;
  }

  25% {
    opacity: 0.55;
  }

  50% {
    opacity: 0.75;
    right: 50%;
    bottom: 55%;
  }

  75% {
    opacity: 0.4;
  }

  100% {
    right: calc(100% + 140px);
    bottom: 60%;
    opacity: 0;
  }
}

@keyframes float-line-7 {
  0% {
    left: -360px;
    top: 70%;
    opacity: 0;
  }

  25% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.7;
    left: 45%;
    top: 75%;
  }

  75% {
    opacity: 0.35;
  }

  100% {
    left: calc(100% + 110px);
    top: 80%;
    opacity: 0;
  }
}

@keyframes float-line-8 {
  0% {
    right: -340px;
    bottom: 70%;
    opacity: 0;
  }

  25% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.7;
    right: 40%;
    bottom: 75%;
  }

  75% {
    opacity: 0.3;
  }

  100% {
    right: calc(100% + 125px);
    bottom: 80%;
    opacity: 0;
  }
}

/* Modern Portfolio Link */
.portfolio-link {
  text-decoration: none;
  height: 100%;
}

/* Responsive Portfolio Grid */
@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .portfolio {
    padding: 60px 20px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 0;
  }

  .portfolio-box {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio {
    padding: 60px 0 60px 0;
    margin: 0;
  }

  .portfolio h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 12px;
    max-width: 100%;
  }

  .portfolio-box {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 430px;
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 0;
    overflow: visible;
  }

  .portfolio-image {
    height: 190px;
  }

  .portfolio-content {
    padding: 15px 18px 18px;
    min-height: 130px;
  }

  .portfolio-arrow {
    opacity: 1;
    transform: translateX(0) translateY(0);
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1.5px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    z-index: 10;
  }

  .portfolio-arrow i {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
  }

  .portfolio-link:nth-child(1) .portfolio-arrow {
    color: #0284c7;
  }

  .portfolio-link:nth-child(2) .portfolio-arrow {
    color: #16a34a;
  }

  .portfolio-link:nth-child(3) .portfolio-arrow {
    color: #0d9488;
  }

  .portfolio-link:nth-child(4) .portfolio-arrow {
    color: #b45309;
  }

  .portfolio-link:nth-child(5) .portfolio-arrow {
    color: #a855f7;
  }

  .portfolio-link:nth-child(6) .portfolio-arrow {
    color: #475569;
  }

  .portfolio-link:nth-child(7) .portfolio-arrow {
    color: #7c3aed;
  }
}

@media (max-width: 480px) {
  .portfolio {
    padding: 50px 0 50px 0;
    margin: 0;
  }

  .portfolio h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 10px;
    max-width: 100%;
  }

  .portfolio-box {
    max-width: 100%;
    width: 100%;
    min-height: 410px;
    padding: 0;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: visible;
  }

  .portfolio-image {
    height: 165px;
  }

  .portfolio-content {
    padding: 13px 12px 18px;
    min-height: 110px;
  }

  .portfolio-arrow {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) !important;
    right: 16px !important;
    bottom: 16px !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    z-index: 10 !important;
  }

  .portfolio-arrow i {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .portfolio-link:nth-child(1) .portfolio-arrow {
    color: #0284c7;
  }

  .portfolio-link:nth-child(2) .portfolio-arrow {
    color: #16a34a;
  }

  .portfolio-link:nth-child(3) .portfolio-arrow {
    color: #0d9488;
  }

  .portfolio-link:nth-child(4) .portfolio-arrow {
    color: #b45309;
  }

  .portfolio-link:nth-child(5) .portfolio-arrow {
    color: #a855f7;
  }

  .portfolio-link:nth-child(6) .portfolio-arrow {
    color: #475569;
  }

  .portfolio-link:nth-child(7) .portfolio-arrow {
    color: #7c3aed;
  }
}

.portfolio h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.8rem;
  color: #090909;
  font-weight: 700;
  position: relative;
  letter-spacing: 0.5px;
}

.portfolio h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.portfolio-box {
  position: relative;
  width: 100%;
  max-width: none;
  height: 480px;
  border-radius: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid rgba(229, 231, 235, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.06);
  transform: translateY(0);
  opacity: 1;
}

/* Portfolio Image */
.portfolio-image {
  width: calc(100% + 4px);
  height: 220px;
  overflow: hidden;
  border-radius: 23px 23px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f9ff;
  margin: -2px -2px 0 -2px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.portfolio-box:hover .portfolio-image img {
  transform: scale(1.1);
}

/* Unique background colors for each card */
.portfolio-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.portfolio-link:nth-child(1) .portfolio-box::before {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.portfolio-link:nth-child(2) .portfolio-box::before {
  background: linear-gradient(90deg, #22c55e, #10b981);
}

.portfolio-link:nth-child(3) .portfolio-box::before {
  background: linear-gradient(90deg, #14b8a6, #06b6d4);
}

.portfolio-link:nth-child(4) .portfolio-box::before {
  background: linear-gradient(90deg, #d97706, #f97316);
}

.portfolio-link:nth-child(5) .portfolio-box::before {
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

.portfolio-link:nth-child(6) .portfolio-box::before {
  background: linear-gradient(90deg, #475569, #4f46e5);
}

.portfolio-link:nth-child(7) .portfolio-box::before {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.portfolio-box:hover::before {
  transform: scaleX(1);
}

/* Portfolio Icon - positioned at bottom left */
.portfolio-icon {
  position: absolute;
  bottom: 20px;
  left: 25px;
  font-size: 1.8rem;
  margin: 0;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  flex-shrink: 0;
}

.portfolio-link:nth-child(1) .portfolio-icon {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #0284c7;
}

.portfolio-link:nth-child(2) .portfolio-icon {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
}

.portfolio-link:nth-child(3) .portfolio-icon {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  color: #0d9488;
}

.portfolio-link:nth-child(4) .portfolio-icon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #b45309;
}

.portfolio-link:nth-child(5) .portfolio-icon {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
  color: #a855f7;
}

.portfolio-link:nth-child(6) .portfolio-icon {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  color: #475569;
}

.portfolio-link:nth-child(7) .portfolio-icon {
  background: linear-gradient(135deg, #f9fafb, #e5e7eb);
  color: #374151;
}

.portfolio-icon i {
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.portfolio-box:hover .portfolio-icon {
  transform: scale(1.25) rotateY(360deg);
}

.portfolio-box:hover .portfolio-icon i {
  animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {

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

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

/* Portfolio Content */
.portfolio-content {
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s ease;
  width: 100%;
  padding: 16px 25px 18px;
  min-height: 140px;
  position: relative;
}

.portfolio-badge {
  display: inline-block;
  padding: 3px 10px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  color: #0284c7;
  border-radius: 22px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  text-transform: uppercase;
  transition: all 0.6s ease;
  align-self: flex-start;
}

.portfolio-link:nth-child(2) .portfolio-badge {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
}

.portfolio-link:nth-child(3) .portfolio-badge {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  color: #0d9488;
}

.portfolio-link:nth-child(4) .portfolio-badge {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #b45309;
}

.portfolio-link:nth-child(5) .portfolio-badge {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
  color: #a855f7;
}

.portfolio-link:nth-child(6) .portfolio-badge {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  color: #475569;
}

.portfolio-box:hover .portfolio-badge {
  transform: scale(1.1);
}

.portfolio-content h3 {
  margin: 2px 0 4px;
  font-size: 1.5rem;
  color: #1f2937;
  font-weight: 700;
  transition: all 0.6s ease;
  text-align: center;
  letter-spacing: -0.5px;
}

.portfolio-box:hover .portfolio-content h3 {
  color: #0284c7;
}

.portfolio-box:nth-child(2):hover .portfolio-content h3 {
  color: #16a34a;
}

.portfolio-content p {
  font-size: 0.95rem;
  margin: 0 0 8px;
  color: #6b7280;
  line-height: 1.4;
  transition: all 0.6s ease;
  text-align: center;
  min-height: 26px;
}

.portfolio-box:hover .portfolio-content p {
  color: #374151;
}

/* Portfolio Meta Tags */
.portfolio-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  align-items: center;
  justify-content: flex-start;
  margin-top: 6px;
  margin-left: 70px;
}

.meta-item {
  font-size: 0.8rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  transition: all 0.5s ease;
  line-height: 1.3;
}

.meta-item i {
  font-size: 0.9rem;
}

.portfolio-box:hover .meta-item {
  color: #6b7280;
}

/* Portfolio Arrow */
.portfolio-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateX(10px) translateY(10px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.portfolio-link:nth-child(1) .portfolio-arrow {
  color: #0284c7;
}

.portfolio-link:nth-child(2) .portfolio-arrow {
  color: #16a34a;
}

.portfolio-link:nth-child(3) .portfolio-arrow {
  color: #0d9488;
}

.portfolio-link:nth-child(4) .portfolio-arrow {
  color: #b45309;
}

.portfolio-link:nth-child(5) .portfolio-arrow {
  color: #a855f7;
}

.portfolio-link:nth-child(6) .portfolio-arrow {
  color: #475569;
}

/* Hover Effects */
.portfolio-box:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18), 0 15px 35px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
}

.portfolio-box:hover .portfolio-arrow {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Scroll reveal animation - DISABLED for static services section */
/* .portfolio-box.reveal {
  animation: portfolioReveal 0.6s ease forwards;
}

@keyframes portfolioReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
} */

/* ================= STUDENTS ================= */
.students {
  padding: 100px 60px 81px 60px;
  background: linear-gradient(135deg, #ffffff 50%, #ffffff 50%);
  color: #333;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.students.visible {
  opacity: 1;
  transform: translateY(0);
}

.students .container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.students-content {
  flex: 1;
  text-align: left;
}

.students-content h2 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 30px;
  position: relative;
}

.students-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #28a745);
  border-radius: 2px;
}

.students-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 30px;
}

.students-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff6ec4, #7873f5);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 35px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 110, 196, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.students-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.students-btn:hover::before {
  left: 100%;
}

@keyframes bubble {

  0%,
  100% {
    transform: translateY(-3px) scale(1.1);
  }

  50% {
    transform: translateY(-5px) scale(1.15);
  }
}

.students-btn:hover {
  animation: bubble 0.8s ease-in-out infinite;
  box-shadow: 0 12px 35px rgba(255, 110, 196, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.students-image {
  flex: 1;
  text-align: center;
}

.students-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.students-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1) saturate(1.2);
}

/* Responsive Design for Students Section */
@media (max-width: 768px) {
  .students .container {
    flex-direction: column;
    gap: 30px;
  }

  .students-content {
    text-align: center;
  }

  .students-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .students-image img:hover {
    transform: scale(1.02) rotate(1deg);
  }
}

.navbar nav a:hover {
  color: #ffeb3b;
  /* Bright yellow hover color */
}

/* ================= JOIN US ================= */
.join-us {
  padding: 120px 20px;
  background: linear-gradient(135deg, #ffffff 50%, #ffffff 50%);
  color: #333;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.join-us.visible {
  opacity: 1;
  transform: translateY(0);
}

.join-us .container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.join-us-image {
  flex: 1;
  text-align: center;
  animation: fadeInLeft 1s ease-out;
  order: 1;
  /* Image on the left */
}

.join-us-content {
  flex: 1;
  text-align: center;
  /* Center the content */
  animation: fadeInRight 1s ease-out;
  order: 2;
  /* Content on the right */
}

.join-us-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-top: -0.5cm;
  margin-bottom: 1.7cm;
  color: #333;
  position: relative;
  text-align: center;
  white-space: normal;
}

.join-us-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6ec4, #7873f5, #42e695);
  border-radius: 2px;
}

.btn-join-us {
  display: block;
  margin: 0 auto;
}

.join-us-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.btn-join-us {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(45deg, #ff6ec4, #7873f5);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 110, 196, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-join-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-join-us:hover::before {
  left: 100%;
}

.btn-join-us:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 110, 196, 0.4);
}

.join-us-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.join-us-image img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) saturate(1.2);
}

/* Floating animation for eye-catching effect */
@keyframes float {

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

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

.join-us-image img {
  animation: float 6s ease-in-out infinite;
}

/* Fade-in animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

/* Responsive Design */
@media (max-width: 768px) {
  .join-us {
    padding: 60px 20px;
  }

  .join-us .container {
    flex-direction: column;
    gap: 40px;
  }

  .join-us-content h2 {
    font-size: 36px;
    text-align: center;
  }

  .join-us-content h2::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .join-us-content {
    text-align: center;
  }

  .join-us-image img:hover {
    transform: scale(1.03) rotate(1deg);
  }
}


/* ================= CONTACT ================= */
/* Contact Section Styling */
.contact {
  padding: 60px 5vw;
  /* Same reduced padding on sides */
  background: linear-gradient(135deg, #ffffff 50%, #ffffff 50%);
  color: #333;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 1.5cm;
  color: #333;
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6ec4, #7873f5, #42e695, #ffeb3b, #007bff);
  border-radius: 2px;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 30px;
}

.contact-item {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  width: 30%;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-item i {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 15px;
}

.contact-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.contact-item p {
  color: #666;
  font-size: 1rem;
}

/* Hover Effect for Contact Info */
.contact-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.contact-form-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  margin-top: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.contact-form-container:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  font-size: 0.95rem;
  color: #333;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
  background-color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button.submit-btn {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  font-size: 1rem;
  padding: 12px 25px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.contact-form button.submit-btn:hover {
  background: linear-gradient(135deg, #2980b9 0%, #1e5f8e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.contact-form button.submit-btn:active {
  transform: translateY(0);
}

.form-message {
  color: #28a745;
  font-size: 1.1rem;
  margin-top: 20px;
  font-weight: bold;
  display: none;
  /* Initially hidden */
  animation: slideIn 0.4s ease-out;
}

.form-message.sending {
  color: #ffc107;
}

.form-message.success {
  color: #28a745;
}

.form-message.error {
  color: #dc3545;
}

/* ================= SUCCESS MODAL ================= */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-modal.show {
  opacity: 1;
}

.success-modal-content {
  background: white;
  border-radius: 15px;
  padding: 50px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0.9);
}

.success-modal.show .success-modal-content {
  transform: scale(1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }

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

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg {
  width: 50px;
  height: 50px;
  color: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: checkmark 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes checkmark {
  0% {
    stroke-dashoffset: 50;
    stroke-dasharray: 50;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 50;
  }
}


.success-modal-content h3 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  font-weight: 700;
}

.success-modal-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.success-modal-content .form-details {
  color: #28a745;
  font-weight: 600;
  margin: 20px 0;
  font-size: 0.95rem;
}

.modal-close-btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  background: linear-gradient(135deg, #20c997, #28a745);
}

.modal-close-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    width: 80%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .contact-form-container {
    width: 90%;
  }
}

/* ================= CONTACT VIDEO SECTION ================= */
.contact-video {
  padding: 60px 5vw;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  color: #333;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-video.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Video */
@media screen and (max-width: 768px) {
  .contact-video {
    padding: 40px 5vw;
  }

  .video-container {
    border-radius: 8px;
  }

  .footer-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-newsletter-form button {
    width: 100%;
  }
}

/* ================= FOOTER ================= */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #111827 45%, #1f2937 100%);
  color: #f8fafc;
  padding: 60px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(0px);
}

.site-footer::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16), transparent 72%);
}

.site-footer::after {
  width: 280px;
  height: 280px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16), transparent 70%);
}

.footer-surface {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}

.footer-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
  padding: 0 0 32px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-hero-copy,
.footer-newsletter {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-hero-copy {
  padding: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-brand-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(139, 92, 246, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.footer-brand-mark img {
  width: 46px;
  height: auto;
  border-radius: 13px;
}

.footer-brand-name {
  font-size: 1.45rem;
  margin: 0;
  font-weight: 800;
  color: #f8fafc;
}

.footer-brand-tagline {
  margin: 3px 0 0;
  color: #94a3b8;
  font-size: 0.92rem;
}

.footer-brand-copy {
  margin: 0 0 22px;
  max-width: 630px;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #f8fafc;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(245, 158, 11, 0.16));
  border: 1px solid rgba(251, 191, 36, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.footer-cta-link:hover,
.footer-cta-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.2);
  color: #ffffff;
}

.footer-newsletter {
  padding: 0;
}

.footer-newsletter-heading {
  margin-bottom: 16px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.14);
}

.footer-newsletter h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #f8fafc;
}

.footer-newsletter p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.footer-newsletter-form {
  display: flex;
  gap: 10px;
  margin: 16px 0 12px;
  align-items: center;
  max-width: 440px;
  width: 100%;
}

.footer-newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.75);
  color: #f8fafc;
  font-size: 0.92rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-newsletter-form input::placeholder {
  color: #94a3b8;
}

.footer-newsletter-form input:focus {
  border-color: #3552f2;
  box-shadow: 0 0 0 3px rgba(53, 82, 242, 0.2);
}

.footer-newsletter-form button {
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  height: 44px;
  min-height: 44px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #3552f2, #5b6fff);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-newsletter-form button:hover,
.footer-newsletter-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.24);
}

.footer-newsletter-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.footer-newsletter-form button:hover::after {
  transform: translateX(100%);
}

.footer-newsletter-status {
  font-size: 0.88rem;
  color: #94a3b8;
  min-height: 1.5em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-newsletter-status.is-error {
  color: #f87171 !important;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 8px 14px;
  border-radius: 8px;
}

.footer-newsletter-status.is-success {
  color: #34d399 !important;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 14px;
  border-radius: 8px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 24px;
  padding: 8px 0 0;
}

.footer-column {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.footer-column-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 4px;
}

.footer-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(135deg, #10b981, #f59e0b);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-column-heading:hover .footer-section-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.16);
}

.footer-column h3 {
  margin: 0;
  font-size: 1rem;
  color: #f8fafc;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-link-list li a,
.footer-contact-list li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #10b981, #f59e0b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.footer-link-list li a:hover,
.footer-link-list li a:focus-visible,
.footer-contact-list li a:hover,
.footer-contact-list li a:focus-visible {
  color: #f8fafc;
  transform: translateX(2px);
}

.footer-link-list li a:hover::after,
.footer-link-list li a:focus-visible::after {
  transform: scaleX(1);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-contact-list li {
  display: grid;
  gap: 4px;
}

.footer-contact-list li span:first-child {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.footer-contact-list li span:last-child,
.footer-contact-list li a {
  color: #e2e8f0;
  font-size: 0.95rem;
  word-break: break-word;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 50;
}

.footer-social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff !important;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, rotate 0.25s ease;
  cursor: pointer !important;
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
  box-sizing: border-box;
}

.footer-social-links a i {
  font-size: 1.15rem;
  color: #ffffff !important;
  pointer-events: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.26);
  rotate: -4deg;
  animation: footerIconLift 0.4s ease both;
  cursor: pointer !important;
}

.footer-social-links a.linkedin {
  background: linear-gradient(135deg, #4338ca, #6366f1);
}

.footer-social-links a.github {
  background: linear-gradient(135deg, #111827, #475569);
}

.footer-social-links a.x {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.footer-social-links a.facebook {
  background: linear-gradient(135deg, #dc2626, #f59e0b);
}

.footer-social-links a.instagram {
  background: linear-gradient(135deg, #be185d, #f59e0b 55%, #7c3aed 100%);
}

.footer-social-links a.whatsapp {
  background: linear-gradient(135deg, #047857, #10b981);
}

.footer-bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 0;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #cbd5e1;
  font-size: 0.94rem;
  text-align: center;
}

.footer-bottom-copy p {
  margin: 0;
}

.footer-bottom-tagline {
  color: #94a3b8;
}

.footer-bottom-links {
  display: none;
}

.footer-bottom-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: #fbbf24;
}

.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.22);
  background: rgba(3, 7, 18, 0.8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.footer-back-top-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #f59e0b);
  color: #ffffff;
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.footer-back-top:hover .footer-back-top-arrow,
.footer-back-top:focus-visible .footer-back-top-arrow {
  transform: translateY(-2px);
}

@keyframes footerIconLift {
  0% {
    transform: translateY(-3px) scale(1.06);
  }

  100% {
    transform: translateY(-5px) scale(1.08);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}

@media (max-width: 860px) {
  .footer-hero {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 48px 14px 20px;
  }

  .footer-hero-copy,
  .footer-newsletter {
    padding: 0;
    border-radius: 0;
  }

  .footer-newsletter-form {
    flex-direction: column;
    max-width: 320px;
    margin: 14px 0 10px;
  }

  .footer-newsletter-form input {
    padding: 9px 14px;
    font-size: 0.88rem;
    height: 38px;
    box-sizing: border-box;
  }

  .footer-newsletter-form button {
    padding: 9px 16px;
    font-size: 0.88rem;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .footer-grid>.footer-column:nth-child(5) {
    grid-column: 1 / -1;
    padding-top: 6px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }

  .footer-column h3 {
    font-size: 0.92rem;
  }

  .footer-link-list li a,
  .footer-contact-list li a,
  .footer-contact-list li span:last-child {
    font-size: 0.85rem;
  }
}

/* ================= HAMBURGER MENU ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

/* Mobile Navigation Menu */
.navbar nav {
  display: flex;
}

.navbar nav.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 20px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex !important;
}

.navbar nav.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.navbar nav.mobile-menu a {
  color: #333 !important;
  padding: 15px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  margin: 0 !important;
}

.navbar nav.mobile-menu a:hover {
  background: rgba(255, 110, 196, 0.1);
  color: #ff6ec4 !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  .navbar {
    padding: 15px 25px;
  }

  .hamburger {
    display: flex;
  }

  .navbar nav {
    display: none !important;
  }

  .navbar nav.mobile-menu {
    display: flex !important;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .stats {
    flex-direction: column;
    gap: 30px;
  }
}

/* ================= HERO BADGE ================= */
.hero-badge-wrapper {
  position: absolute;
  top: 40%;
  right: 3%;
  transform: translateY(-50%);
  z-index: 10;
  margin-top: -140px;
  /* Adjusted upwards by 2cm */
}

.hero-badge {
  width: 210px;
  height: 56px;
  background: #ffffff;
  /* White background */
  border-radius: 30px;
  border: 2px solid #111;
  /* Dark border color */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  /* Subtle shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: Arial, sans-serif;
  font-weight: 600;
  color: #111;
  /* Text color */
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  /* Smooth transitions */
  animation: popUp 3s infinite ease-in-out;
  /* Continuous "pop" effect */
}

/* Continuous "Pop" Effect */
@keyframes popUp {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: scale(1.1);
    /* Slight zoom */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    /* Larger shadow for "pop" effect */
  }

  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
}

/* Hover Effect: Add glowing background outside the box */
.hero-badge:hover {
  border: 2px solid #0b5ed7;
  /* Blue border color on hover */
  box-shadow: 0 0 30px rgba(11, 94, 215, 0.7);
  /* Glowing blue effect */
  transform: scale(1.05);
  /* Slight zoom effect */
}

/* Adjusting text animation */
.hero-badge span {
  position: absolute;
  opacity: 0;
  white-space: nowrap;
  animation: badgeCycle 24s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Stagger the animation delays for each span */
.hero-badge span:nth-child(1) {
  animation-delay: 0s;
}

.hero-badge span:nth-child(2) {
  animation-delay: 4s;
}

.hero-badge span:nth-child(3) {
  animation-delay: 8s;
}

.hero-badge span:nth-child(4) {
  animation-delay: 12s;
}

.hero-badge span:nth-child(5) {
  animation-delay: 16s;
}

.hero-badge span:nth-child(6) {
  animation-delay: 20s;
}

/* Adjust keyframes for smooth fade in and out */
@keyframes badgeCycle {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  12% {
    opacity: 1;
  }

  17% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Hover effect on text: rotate and scale */
.hero-badge:hover span {
  transform: translate(-50%, -50%) rotate(1deg) scale(1.2);
  /* Slight rotation and zoom */
}

/* Mobile Hide */
@media (max-width: 768px) {
  .hero-badge-wrapper {
    display: none;
  }
}

.hero {
  perspective: 1000px;
}

.hero-content {
  transform-style: preserve-3d;
  animation: moveIn3D 0.5s ease-out forwards;
}

@keyframes moveIn3D {
  from {
    transform: translateZ(-100px);
  }

  to {
    transform: translateZ(0);
  }
}



/* ================= CHAT WIDGET ================= */
.chat-widget {
  position: fixed;
  bottom: 20px;
  /* bottom corner */
  right: 20px;
  /* right corner */
  width: 250px;
  /* smaller width */
  font-family: Arial, sans-serif;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transform: translateX(400px);
  /* start off-screen right */
  transition: transform 1s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

/* Slide-in effect */
.chat-widget.active {
  transform: translateX(0);
}

.chat-header {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #f8fafc;
  padding: 12px 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-header-title i {
  color: #38bdf8;
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-clear-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 13px;
  padding: 4px;
  transition: color 0.2s;
}

.chat-clear-btn:hover {
  color: #ef4444;
}

.chat-close {
  cursor: pointer;
  font-size: 18px;
  color: #cbd5e1;
  transition: color 0.2s;
}

.chat-close:hover {
  color: #ffffff;
}

.chat-body {
  height: 300px;
  max-height: 320px;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  background: #f8fafc;
}

.chat-message {
  padding: 10px 14px;
  border-radius: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  max-width: 88%;
  animation: messageFadeIn 0.25s ease;
}

@keyframes messageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.chat-message.bot {
  align-self: flex-start;
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.chat-message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.chat-link {
  color: #0284c7;
  font-weight: 600;
  text-decoration: underline;
}

.chat-link:hover {
  color: #0369a1;
}

.chat-suggested {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}

.chat-chip {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.chat-chip:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

/* Typing Dots Animation */
.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 2px;
}

.typing-dots .dot {
  width: 6px;
  height: 6px;
  background-color: #64748b;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dots .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dots .dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typingBounce {

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

  40% {
    transform: scale(1.0);
  }
}

.chat-input-area {
  display: flex;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

#chatInput {
  flex: 1;
  border: none;
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
  color: #0f172a;
}

#chatSend {
  background: #0284c7;
  color: #fff;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 13px;
}

#chatSend:hover {
  background: #0369a1;
}

@media (max-width: 768px) {
  .chat-widget {
    width: 200px;
    bottom: 15px;
    right: 15px;
  }

  /* Hide horizontal scroll on mobile */
  html,
  body {
    overflow-x: hidden;
  }
}

/* ================= GET STARTED FORM ================= */
.get-started {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ab4848 0%, #fff1a1 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.05)"/></svg>') repeat;
  opacity: 0.3;
  z-index: 0;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 1;
  animation: formSlideIn 1s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes formSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }

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

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    text-shadow: 0 0 10px rgba(255, 110, 196, 0.5);
  }

  to {
    text-shadow: 0 0 20px rgba(255, 110, 196, 0.8), 0 0 30px rgba(120, 115, 245, 0.5);
  }
}

.form-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  animation: subtitleFadeIn 1.5s ease-out;
}

@keyframes subtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.get-started-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
  animation: inputSlideIn 0.8s ease-out forwards;
  opacity: 0;
}

.form-group:nth-child(1) {
  animation-delay: 0.1s;
}

.form-group:nth-child(2) {
  animation-delay: 0.2s;
}

.form-group:nth-child(3) {
  animation-delay: 0.3s;
}

.form-group:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes inputSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: #ff6ec4;
  font-size: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff6ec4;
  box-shadow: 0 0 0 3px rgba(255, 110, 196, 0.1);
  transform: translateY(-2px);
}

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

.submit-btn {
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 110, 196, 0.3);
  position: relative;
  overflow: hidden;
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(255, 110, 196, 0.3);
  }

  50% {
    box-shadow: 0 12px 35px rgba(255, 110, 196, 0.5);
  }
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 110, 196, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.form-message {
  text-align: center;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #28a745;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-message.show {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .get-started {
    padding: 60px 20px;
  }

  .form-wrapper {
    padding: 30px;
    margin: 20px;
  }

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

  .form-subtitle {
    font-size: 1rem;
  }

  .submit-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .form-wrapper {
    padding: 25px;
  }

  .form-title {
    font-size: 1.8rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
  }

  .submit-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .consultation-page {
    padding: 40px 12px 60px;
    box-sizing: border-box;
  }

  .consultation-shell {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .consultation-hero {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    box-sizing: border-box;
  }

  .consultation-hero-art {
    min-height: 180px;
    max-width: 100%;
    overflow: hidden;
  }

  .consultation-card {
    padding: 20px 16px;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
  }

  .stepper-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .step-dot {
    min-height: 48px;
    padding: 6px 4px;
    font-size: 0.72rem;
    box-sizing: border-box;
  }

  .step-dot small {
    display: none;
  }

  .step-dot span {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
  }

  .review-grid,
  .checkbox-group,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 16px;
  }

  .form-actions .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 13px 16px;
    font-size: 0.95rem;
    min-height: 48px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .consultation-page {
    padding: 24px 8px 48px;
  }

  .consultation-card {
    padding: 16px 12px;
    border-radius: 16px;
  }

  .stepper {
    gap: 12px;
  }

  .stepper-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .step-dot {
    padding: 6px 2px;
    font-size: 0.65rem;
    border-radius: 10px;
    min-height: 44px;
  }

  .step-dot span {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .step-label {
    margin-top: 10px;
    font-size: 0.85rem;
  }

  .field-group input,
  .field-group textarea,
  .field-group select {
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .review-card {
    padding: 14px 12px;
    border-radius: 14px;
    box-sizing: border-box;
  }

  .review-list {
    gap: 8px;
  }

  .review-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 8px;
    font-size: 0.86rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .review-item span {
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .consent-block {
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .consent-row {
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .consent-row input[type="checkbox"],
  .consent-row input {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }

  .consent-row label {
    flex: 1;
    min-width: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .field-help {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .consultation-card {
    padding: 14px 10px;
  }

  .form-actions {
    flex-direction: column-reverse;
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .form-actions .btn,
  .form-actions .btn[style*="display"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 14px;
    font-size: 0.9rem;
    min-height: 46px;
    box-sizing: border-box !important;
  }
}

@media (max-width: 360px) {
  .consultation-card {
    padding: 12px 8px;
  }

  .step-label {
    font-size: 0.8rem;
  }

  .step-dot span {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }

  .form-actions .btn,
  .form-actions .btn[style*="display"] {
    padding: 10px 10px;
    font-size: 0.85rem;
    min-height: 44px;
  }
}

/* ================= MODERN CLIENT TESTIMONIALS - LIGHT THEME ================= */
.reviews-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f3f7 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(200, 220, 240, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(220, 230, 245, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header-top {
  display: block;
}

/* Scroll-triggered animation for reviews section */
.reviews-section.scroll-animate .reviews-header {
  animation: slideInFromBottom 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reviews-section.scroll-animate .reviews-header-top {
  animation: slideInFromBottom 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reviews-section.scroll-animate .reviews-grid {
  animation: slideInFromBottom 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.1s;
}

.reviews-section.scroll-animate .review-card {
  animation: slideInFromBottom 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Default state before scroll animation triggers */
.reviews-section:not(.scroll-animate) .reviews-header,
.reviews-section:not(.scroll-animate) .reviews-header-top,
.reviews-section:not(.scroll-animate) .reviews-grid,
.reviews-section:not(.scroll-animate) .review-card {
  opacity: 0;
  transform: translateY(20px);
}

.reviews-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8eef5 0%, #f5f7fc 100%);
  background-size: 200% 200%;
  color: #4a5f8f;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 8px 25px rgba(150, 170, 200, 0.15);
  border: 1px solid rgba(200, 220, 240, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: slideInDown 0.6s ease-out, subtlePulse 3s ease-in-out infinite 0.5s;
}

.reviews-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(150, 170, 200, 0.25);
  border-color: rgba(200, 220, 240, 0.7);
  background: linear-gradient(135deg, #f0f5fa 0%, #f8faff 100%);
  animation: none;
}

.reviews-header h2 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1a1f3a;
  margin: 15px 0;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #2c3e50 0%, #4a5f8f 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: #2c3e50;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  animation: slideInDown 0.7s ease-out 0.1s both;
  transition: all 0.4s ease;
}

.reviews-header h2:hover {
  animation: subtleGlow 0.6s ease forwards;
}

.reviews-header p {
  font-size: 1.25rem;
  color: #6b7280;
  margin: 20px 0 0 0;
  font-weight: 500;
  letter-spacing: 0.3px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInUp 0.7s ease-out 0.2s both;
  transition: all 0.4s ease;
}

.reviews-header p:hover {
  color: #4a5f8f;
}

.reviews-grid {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 45px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-grid:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

.reviews-grid::before,
.reviews-grid::after {
  content: '';
  position: absolute;
  top: 0;
  width: 500px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.reviews-grid::before {
  left: 0;
  background: none;
  border-radius: 24px 0 0 24px;
}

.reviews-grid::after {
  right: 0;
  background: none;
  border-radius: 0 24px 24px 0;
}

.reviews-slider {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 20px 50px;
  will-change: transform;
  animation: slideLeftModern 90s linear infinite;
}

.reviews-slider-ltr {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 20px 50px;
  will-change: transform;
  animation: slideLeftModern 90s linear infinite;
}

@keyframes slideLeftModern {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-6840px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

@keyframes cardFloat {

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

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes gradientShift {

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

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

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  50% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }
}

@keyframes starPulse {

  0%,
  100% {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  50% {
    text-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

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

@keyframes starGlisten {

  0%,
  100% {
    text-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
    opacity: 0.9;
  }

  50% {
    text-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
    opacity: 1;
  }
}

@keyframes starBounce {

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

  50% {
    transform: scale(1.25) translateY(-3px);
  }
}

@keyframes cardEntrance {

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

  50% {
    transform: translateY(-2px) scale(1.01);
  }
}

@keyframes shimmerMove {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes floatInPlace {

  0%,
  100% {
    transform: scale(1.2) rotate(-8deg) translateY(0px);
  }

  50% {
    transform: scale(1.2) rotate(-8deg) translateY(-5px);
  }
}

@keyframes subtlePulse {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(150, 170, 200, 0.15);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 10px 30px rgba(150, 170, 200, 0.25);
    transform: scale(1.02);
  }
}

@keyframes subtleGlow {
  0% {
    text-shadow: 0 0 0 rgba(90, 122, 159, 0);
  }

  50% {
    text-shadow: 0 0 12px rgba(90, 122, 159, 0.3);
  }

  100% {
    text-shadow: 0 0 0 rgba(90, 122, 159, 0);
  }
}

.review-card {
  min-width: 400px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafc 100%);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(200, 220, 240, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(150, 170, 200, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: none;
}

.reviews-section.scroll-animate .review-card {
  animation: slideInFromBottom 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards, cardEntrance 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite 0.4s;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c8d0e0 0%, #e0e8f0 50%, #c8d0e0 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.8;
}

.review-card:hover {
  border-color: rgba(150, 170, 200, 0.6);
  background: linear-gradient(135deg, #fafbff 0%, #f5f7fc 100%);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(150, 170, 200, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 1px rgba(200, 220, 240, 0.5);
  animation: none;
}

.review-card:hover::before {
  transform: scaleX(1);
  animation: shimmerMove 0.8s ease forwards;
}

.review-stars {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.review-stars i {
  color: #d4af37;
  font-size: 1.15rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
  animation: starGlisten 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.review-stars i:nth-child(1) {
  animation-delay: 0s;
}

.review-stars i:nth-child(2) {
  animation-delay: 0.15s;
}

.review-stars i:nth-child(3) {
  animation-delay: 0.3s;
}

.review-stars i:nth-child(4) {
  animation-delay: 0.15s;
}

.review-stars i:nth-child(5) {
  animation-delay: 0s;
}

.review-card:hover .review-stars i {
  animation: starBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
}

.review-card:hover .review-stars i:nth-child(1) {
  transform: scale(1.25) rotate(-12deg) translateY(-6px);
  animation-delay: 0.05s;
}

.review-card:hover .review-stars i:nth-child(2) {
  transform: scale(1.15) rotate(-8deg) translateY(-4px);
  animation-delay: 0.1s;
}

.review-card:hover .review-stars i:nth-child(3) {
  transform: scale(1.3) rotate(0deg) translateY(-8px);
  animation-delay: 0.15s;
}

.review-card:hover .review-stars i:nth-child(4) {
  transform: scale(1.15) rotate(8deg) translateY(-4px);
  animation-delay: 0.1s;
}

.review-card:hover .review-stars i:nth-child(5) {
  transform: scale(1.25) rotate(12deg) translateY(-6px);
  animation-delay: 0.05s;
}

.rating-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: #5a7a9f;
  margin-left: 10px;
  letter-spacing: -0.3px;
  animation: slideInRight 0.6s ease-out;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.review-card:hover .rating-text {
  color: #3a5a7f;
  transform: translateX(4px) scale(1.1);
  font-size: 1.05rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #5a6b7a;
  margin-bottom: 28px;
  font-weight: 500;
  flex: 1;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  animation: slideInLeft 0.7s ease-out;
  transition: all 0.4s ease;
}

.review-card:hover .review-text {
  color: #3a4a5a;
  transform: translateX(6px);
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  position: relative;
  z-index: 2;
  border-top: 2px solid #e8ecf1;
  padding-top: 20px;
  animation: slideInUp 0.8s ease-out;
  transition: all 0.4s ease;
}

.review-card:hover .review-footer {
  border-top-color: #d0d8e4;
}

.reviewer-info {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: 1;
  transition: all 0.4s ease;
}

.reviewer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d8e2ed;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(150, 170, 200, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  animation: scaleIn 0.8s ease-out;
}

.review-card:hover .reviewer-avatar {
  border-color: #a8c4e0;
  transform: scale(1.2) rotate(-8deg);
  box-shadow: 0 12px 32px rgba(150, 170, 200, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: floatInPlace 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #2c3e50;
  margin: 0;
  margin-bottom: 4px;
  letter-spacing: -0.4px;
  animation: slideInLeft 0.8s ease-out 0.1s both;
  transition: all 0.3s ease;
}

.review-card:hover .reviewer-info h4 {
  color: #5a7a9f;
  transform: translateX(4px);
}

.reviewer-company {
  font-size: 0.9rem;
  color: #8a9ab5;
  margin: 0;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.2px;
  animation: slideInLeft 0.8s ease-out 0.15s both;
  transition: all 0.3s ease;
}

.review-card:hover .reviewer-company {
  color: #5a7a9f;
}

.review-date {
  font-size: 0.8rem;
  color: #b0bfd0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
  transition: all 0.4s ease;
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.review-card:hover .review-date {
  color: #7a9fc4;
  transform: translateX(-3px);
}

.reviews-nav {
  text-align: center;
  padding-top: 20px;
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Responsive Design for Reviews */
/* Large Devices (1024px and above) */
@media (max-width: 1024px) {
  .reviews-header h2 {
    font-size: 2.5rem;
  }

  .review-card {
    min-width: 330px;
    padding: 26px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reviews-section {
    padding: 48px 20px;
  }

  .reviews-header {
    margin-bottom: 40px;
  }

  .reviews-header h2 {
    font-size: 2rem;
  }

  .review-card {
    min-width: 310px;
    padding: 24px;
  }

  .reviewer-avatar {
    width: 44px;
    height: 44px;
  }

  .review-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .reviews-slider {
    animation-duration: 50s !important;
    gap: 20px;
    padding: 18px;
  }

  .reviews-grid::before,
  .reviews-grid::after {
    width: 200px;
  }
}

/* Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .reviews-section {
    padding: 60px 15px;
  }

  .reviews-header {
    margin-bottom: 35px;
  }

  .reviews-header h2 {
    font-size: 1.7rem;
  }

  .reviews-grid {
    padding: 18px 0;
    border-radius: 14px;
  }

  .review-card {
    min-width: 280px;
    padding: 22px;
    border-radius: 12px;
  }

  .review-card:hover {
    transform: translateY(-5px);
  }

  .reviewer-avatar {
    width: 42px;
    height: 42px;
  }

  .reviewer-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
  }

  .reviewer-company {
    font-size: 0.8rem !important;
  }

  .review-rating {
    font-size: 0.85rem;
    gap: 4px;
  }

  .review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .review-date {
    font-size: 0.75rem;
  }

  .reviews-slider {
    animation-duration: 40s !important;
    gap: 16px;
    padding: 14px;
  }

  .reviews-grid::before,
  .reviews-grid::after {
    width: 120px;
  }
}

/* Mobile Screens (up to 480px) */
@media (max-width: 480px) {
  .reviews-section {
    padding: 50px 12px;
  }

  .reviews-header {
    margin-bottom: 25px;
  }

  .reviews-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 700;
  }

  .reviews-grid {
    padding: 12px 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
  }

  .review-card {
    min-width: 260px;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(150, 170, 200, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(150, 170, 200, 0.18);
  }

  .review-header {
    margin-bottom: 14px;
    gap: 10px;
  }

  .reviewer-avatar {
    width: 40px;
    height: 40px;
    border: 2px solid #d8e2ed;
  }

  .reviewer-info {
    gap: 10px;
  }

  .reviewer-info h4 {
    font-size: 0.92rem;
    margin-bottom: 2px;
    font-weight: 700;
    color: #2c3e50;
  }

  .reviewer-company {
    font-size: 0.8rem !important;
    line-height: 1.3;
    color: #8a9ab5;
  }

  .review-rating {
    font-size: 0.85rem;
    gap: 4px;
  }

  .review-rating i {
    font-size: 0.8rem;
  }

  .review-text {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #5a6b7a;
  }

  .review-date {
    font-size: 0.72rem;
    color: #b0bfd0;
  }

  .reviews-grid::before,
  .reviews-grid::after {
    width: 80px;
  }

  .reviews-slider {
    animation-duration: 35s !important;
    padding: 10px 5px;
    gap: 12px;
  }

  .reviews-nav {
    padding-top: 20px;
    font-size: 0.85rem;
  }
}

/* Extra Small Screens (up to 360px) */
@media (max-width: 360px) {
  .reviews-section {
    padding: 40px 6px;
  }

  .reviews-header {
    margin-bottom: 35px;
  }

  .section-badge {
    font-size: 0.65rem;
    padding: 6px 10px;
  }

  .reviews-header h2 {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }

  .reviews-header p {
    font-size: 0.85rem;
  }

  .reviews-stats {
    gap: 10px;
  }

  .stat-item {
    padding: 8px 8px;
    min-width: none;
    width: 100%;
  }

  .stat-item h4 {
    font-size: 1.15rem;
  }

  .stat-item p {
    font-size: 0.7rem;
  }

  .review-card {
    min-width: 240px;
    padding: 14px;
    border-radius: 10px;
  }

  .reviewer-avatar {
    width: 36px;
    height: 36px;
  }

  .reviewer-info h4 {
    font-size: 0.85rem;
  }

  .review-text {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .review-date {
    font-size: 0.68rem;
  }

  .review-rating {
    font-size: 0.75rem;
  }

  .reviews-slider {
    animation-duration: 30s !important;
    padding: 8px 4px;
    gap: 10px;
  }

  .reviews-grid::before,
  .reviews-grid::after {
    width: 60px;
  }
}


/* ================= CHAT WIDGET & FLOATING BUTTON ================= */
.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 92px;
  width: 340px;
  max-width: calc(100vw - 40px);
  background: linear-gradient(180deg, #ffffff, #f8f8fb);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(23, 19, 40, 0.25);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
  z-index: 1200;
  overflow: hidden;
}

.chat-widget.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-widget .chat-header {
  background: linear-gradient(90deg, #5b3cff, #ff6ec4);
  color: #fff;
  padding: 12px 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-widget .chat-body {
  max-height: 260px;
  overflow-y: auto;
  padding: 12px;
  background: transparent;
}

.chat-widget .chat-input-area {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.chat-widget .chat-input-area input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #e6e6f0;
}

.chat-widget .chat-input-area button {
  background: linear-gradient(90deg, #5b3cff, #ff6ec4);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* New Floating Contact Menu Wrap */
.floating-contact-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  pointer-events: none;
}

.floating-contact-wrap i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
}

.floating-contact-wrap * {
  pointer-events: auto;
}

/* Floating Contact Group (Options + Contact Trigger) */
.contact-group {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.floating-contact-wrap.scrolled .contact-group {
  transform: translateY(-76px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

/* Back to Hero Floating Button */
.back-to-hero-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #5b3cff, #ff6ec4);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 10, 40, 0.35);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.2s ease 0s, visibility 0.2s ease 0s, transform 0.2s ease 0s, box-shadow 0.25s ease, background 0.3s ease;
}

.back-to-hero-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 0.28s ease 0.1s, visibility 0.28s ease 0.1s, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s, box-shadow 0.25s ease, background 0.3s ease;
}

.back-to-hero-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 35px rgba(91, 60, 255, 0.45);
}

.back-to-hero-btn:focus-visible {
  outline: 2px solid #ff6ec4;
  outline-offset: 3px;
}

.back-to-hero-btn i {
  font-size: 1.35rem;
  grid-area: 1 / 1;
  transition: transform 0.25s ease;
}

.back-to-hero-btn:hover i {
  transform: translateY(-2px);
}

/* Trigger Button */
.contact-trigger {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #5b3cff, #ff6ec4);
  color: white;
  box-shadow: 0 10px 30px rgba(16, 10, 40, 0.35);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.contact-trigger:hover {
  transform: scale(1.08);
}

.contact-trigger i {
  font-size: 1.35rem;
  grid-area: 1 / 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-trigger .close-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

/* Toggle active trigger state */
.floating-contact-wrap.active .contact-trigger {
  background: linear-gradient(135deg, #ff6ec4, #5b3cff);
  transform: rotate(90deg);
}

.floating-contact-wrap.active .contact-trigger .chat-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.floating-contact-wrap.active .contact-trigger .close-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Options list sliding up */
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.28s;
}

.floating-contact-wrap.active .contact-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Option Buttons */
.contact-option-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.contact-option-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
}

.contact-option-btn.gmail {
  background: #D44638;
}

.contact-option-btn.phone {
  background: #25D366;
}

.contact-option-btn.chat {
  background: #3b82f6;
}

.chat-unread {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 2px 8px rgba(239, 68, 68, 0.45);
  display: none;
}

/* Notices & Chat widgets with z-index fixes */
.chat-notice {
  position: fixed;
  right: 96px;
  bottom: 30px;
  background: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(16, 10, 40, 0.12);
  z-index: 1299;
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms;
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 200px;
}

.chat-notice strong {
  display: block;
  font-size: 0.95rem;
}

.chat-notice .chat-notice-text {
  font-size: 0.85rem;
  color: #555;
}

.chat-notice.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
}

.chat-notice-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: #9aa0a6;
  cursor: pointer;
}

@media (max-width: 520px) {
  .chat-widget {
    right: 10px;
    left: 10px;
    width: auto;
    bottom: 88px;
  }

  .chat-notice {
    right: 86px;
    bottom: 22px;
  }
}


/* ================= FORM PAGE STYLES ================= */
/* Form Page Navbar Styling */
.navbar-red {
  background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3) !important;
}

.navbar-red.scrolled {
  background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
}

/* Generic Form Container */
.apply-container,
.get-started-container {
  min-height: 100vh;
  padding-top: 100px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
  padding-bottom: 50px;
}

/* Generic Form Wrapper */
.apply-form-wrapper,
.get-started-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Generic Form Header */
.apply-header,
.get-started-header {
  text-align: center;
  margin-bottom: 40px;
}

.apply-header h1,
.get-started-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}

.apply-header p,
.get-started-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Form Group Enhancements */
.apply-form .form-group,
.get-started-form .form-group {
  margin-bottom: 25px;
}

.apply-form .form-group label,
.get-started-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.apply-form .form-group input,
.apply-form .form-group textarea,
.apply-form .form-group select,
.get-started-form .form-group input,
.get-started-form .form-group textarea,
.get-started-form .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.apply-form .form-group input:focus,
.apply-form .form-group textarea:focus,
.apply-form .form-group select:focus,
.get-started-form .form-group input:focus,
.get-started-form .form-group textarea:focus,
.get-started-form .form-group select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.apply-form .form-group textarea,
.get-started-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Form Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Required Field Indicator */
.required::after {
  content: " *";
  color: #e74c3c;
  font-weight: bold;
}

/* Checkbox and Radio Groups */
.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-item,
.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.checkbox-item:hover,
.radio-item:hover {
  background: #f5f5f5;
}

.checkbox-item input,
.radio-item input {
  width: auto;
  margin: 0;
  cursor: pointer;
  accent-color: #667eea;
}

.checkbox-item label,
.radio-item label {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

/* Modern Notice Period Radio Group */
.form-group:has(input[name="noticePeriod"]) .radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

.form-group:has(input[name="noticePeriod"]) .radio-item {
  padding: 16px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #fafafa;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.form-group:has(input[name="noticePeriod"]) .radio-item:hover {
  background: #f0f4ff;
  border-color: #667eea;
  transform: translateY(-2px);
}

/* ================= RELATED SERVICES SECTION (SEO: Internal Linking) ================= */
.related-services {
  padding: 60px 5%;
  background: linear-gradient(135deg, #f9f7f2 0%, #fdfbf8 100%);
  border-top: 2px solid #e8dcc9;
}

.related-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.related-services-container h2 {
  font-size: 2.5rem;
  color: #1a1f36;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: center;
}

.related-services-container>p {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.related-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  gap: 1rem;
}

.related-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.15);
  border-color: #d4a574;
}

.related-service-card i {
  font-size: 2.5rem;
  color: #d4a574;
  transition: transform 0.3s ease;
}

.related-service-card:hover i {
  transform: scale(1.15);
}

.related-service-card h3 {
  font-size: 1.1rem;
  color: #1a1f36;
  font-weight: 600;
  margin: 0;
}

.related-service-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .related-services {
    padding: 40px 4%;
  }

  .related-services-container h2 {
    font-size: 1.8rem;
  }

  .related-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .related-service-card {
    padding: 1.2rem;
  }

  .related-service-card i {
    font-size: 2rem;
  }

  .related-service-card h3 {
    font-size: 0.95rem;
  }

  .related-service-card p {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .related-services {
    padding: 30px 3%;
  }

  .related-services-container h2 {
    font-size: 1.4rem;
  }

  .related-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .related-service-card {
    padding: 1rem;
  }

  .related-service-card i {
    font-size: 1.5rem;
  }

  .related-service-card h3 {
    font-size: 0.85rem;
  }

  .related-service-card p {
    font-size: 0.7rem;
  }
}

.form-group:has(input[name="noticePeriod"]) .radio-item input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #c0c0c0;
  border-radius: 50%;
  cursor: pointer;
  background: white;
  transition: all 0.2s ease;
  position: relative;
}

.form-group:has(input[name="noticePeriod"]) .radio-item input:hover {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group:has(input[name="noticePeriod"]) .radio-item input:checked {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.form-group:has(input[name="noticePeriod"]) .radio-item input:checked::after {
  content: '\2713';
  position: absolute;
  color: white;
  font-size: 12px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-group:has(input[name="noticePeriod"]) .radio-item input:checked+label {
  color: #667eea;
  font-weight: 600;
}

.form-group:has(input[name="noticePeriod"]) .radio-item input:checked~label {
  color: #667eea;
  font-weight: 600;
}

.form-group:has(input[name="noticePeriod"]) .radio-item label {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.2s ease;
}

/* Modern Purpose Radio Group */
.form-group:has(input[name="purpose"]) .radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.form-group:has(input[name="purpose"]) .radio-item {
  padding: 14px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.form-group:has(input[name="purpose"]) .radio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px 10px 0 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-group:has(input[name="purpose"]) .radio-item:hover {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.12);
}

.form-group:has(input[name="purpose"]) .radio-item input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  cursor: pointer;
  background: white;
  transition: all 0.2s ease;
  position: relative;
  margin: 0;
}

.form-group:has(input[name="purpose"]) .radio-item input:hover {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group:has(input[name="purpose"]) .radio-item input:checked {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.form-group:has(input[name="purpose"]) .radio-item input:checked+label {
  color: #667eea;
  font-weight: 600;
}

.form-group:has(input[name="purpose"]) .radio-item input:checked~label {
  color: #667eea;
  font-weight: 600;
}

.form-group:has(input[name="purpose"]) .radio-item input:checked {
  position: relative;
}

.form-group:has(input[name="purpose"]) .radio-item:has(input:checked) {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
  border-color: #667eea;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.form-group:has(input[name="purpose"]) .radio-item:has(input:checked)::before {
  opacity: 1;
}

.form-group:has(input[name="purpose"]) .radio-item label {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.95rem;
  color: #444;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.skill-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.skill-checkbox-item:hover {
  border-color: #667eea;
  background: #f9f9ff;
}

.skill-checkbox-item input {
  cursor: pointer;
  accent-color: #667eea;
}

.skill-checkbox-item label {
  cursor: pointer;
  flex: 1;
  margin: 0;
  font-weight: 500;
}

/* Modern Service Grid with Professional Styling */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.service-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.service-checkbox-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px 10px 0 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-checkbox-item:hover {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.12);
}

.service-checkbox-item input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  cursor: pointer;
  background: white;
  transition: all 0.2s ease;
  position: relative;
  margin: 0;
  flex-shrink: 0;
}

.service-checkbox-item input:hover {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.service-checkbox-item input:checked {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.service-checkbox-item input:checked::after {
  content: '\2713';
  position: absolute;
  color: white;
  font-size: 12px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-checkbox-item input:checked+label {
  color: #667eea;
  font-weight: 600;
}

.service-checkbox-item input:checked~label {
  color: #667eea;
  font-weight: 600;
}

.service-checkbox-item:has(input:checked) {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
  border-color: #667eea;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.service-checkbox-item:has(input:checked)::before {
  opacity: 1;
}

.service-checkbox-item label {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.95rem;
  color: #444;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Form Submit Button */
.form-submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.form-submit-btn:active {
  transform: translateY(-1px);
}

/* Success Message */
.success-message {
  display: none;
  background: #2ecc71;
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  animation: slideDown 0.5s ease;
}

.success-message.show {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* Back Button */
.back-button {
  display: inline-block;
  margin-bottom: 20px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-button:hover {
  color: #f1f1f1;
  transform: translateX(-5px);
}

/* Section Divider */
.section-divider {
  color: #333;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #667eea;
  padding-bottom: 10px;
}

/* Mobile Responsive Styles for Form Pages */
@media (max-width: 1024px) {
  .navbar nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    flex-direction: column;
    gap: 0;
    display: none !important;
    padding: 20px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar nav.mobile-menu {
    display: flex !important;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar nav.active,
  .navbar nav.mobile-menu.active {
    display: flex !important;
  }

  .navbar nav a {
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .navbar nav a:hover {
    background: rgba(0, 0, 0, 0.1);
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    height: 24px;
    margin-right: 15px;
  }

  .hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  .apply-container,
  .get-started-container {
    padding-top: 80px;
  }

  .apply-form-wrapper,
  .get-started-form-wrapper {
    padding: 25px;
    margin: 15px;
  }

  .apply-header h1,
  .get-started-header h1 {
    font-size: 1.8rem;
  }

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

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

  /* Notice Period - Mobile Responsive */
  .form-group:has(input[name="noticePeriod"]) .radio-group {
    grid-template-columns: 1fr;
  }

  .form-group:has(input[name="noticePeriod"]) .radio-item {
    flex-direction: row;
    text-align: left;
    padding: 14px;
  }

  /* Purpose - Mobile Responsive */
  .form-group:has(input[name="purpose"]) .radio-group {
    grid-template-columns: 1fr;
  }

  .form-group:has(input[name="purpose"]) .radio-item {
    flex-direction: row;
    padding: 12px;
  }

  /* Services Grid - Mobile Responsive */
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-checkbox-item {
    flex-direction: column;
    text-align: center;
    padding: 12px 10px;
  }

  .service-checkbox-item label {
    gap: 0;
  }
}

/* ================= WHY CHOOSE US SECTION ================= */
.why-choose-us {
  background: #fdfdfd;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
.why-choose-us::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: content-box;
  animation: floatBg 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatBg {

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

  50% {
    transform: translate(30px, 30px);
  }
}

/* ================= TESTIMONIAL GRID & CARDS ================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 28px;
  margin: 60px 0 50px 0;
  animation: fadeInUp 0.8s ease-out;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(200, 220, 240, 0.4);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: slideInUp 0.6s ease-out both;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.testimonial-quote {
  font-size: 4rem;
  color: #e0e7ff;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 900;
}

.testimonial-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 500;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 220, 240, 0.3);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  color: #1a1f3a;
  margin: 0 0 4px 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.testimonial-info p {
  font-size: 0.9rem;
  color: #8b92a6;
  margin: 0 0 8px 0;
  font-weight: 500;
}

.stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.star {
  color: #ffc107;
  font-size: 0.95rem;
  text-shadow: 0 2px 4px rgba(255, 193, 7, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover .star {
  text-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  animation: starPulse 0.6s ease forwards;
}

/* Read More Button Container */
.testimonials-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 48px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-read-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-read-more:hover::before {
  left: 100%;
}

.btn-read-more:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-read-more i {
  transition: transform 0.4s ease;
}

.btn-read-more:hover i {
  transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0 30px 0;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-quote {
    font-size: 2.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .btn-read-more {
    padding: 14px 36px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .reviews-header h2 {
    font-size: 2rem;
  }
}

/* ================= WHY SOLO ENTITY GROUP (REDESIGNED) ================= */
.why-solo-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #ffffff 70%, #f1f5f9 100%);
  padding: 60px 0;
  overflow: hidden;
}

/* Ambient Backdrop Glows & Subtle Grid */
.why-bg-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.why-mesh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}

.why-glow-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  animation: whyFloatGlow 18s ease-in-out infinite alternate;
}

.why-glow-2 {
  width: 600px;
  height: 600px;
  top: 30%;
  right: -150px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  animation: whyFloatGlow 22s ease-in-out infinite alternate-reverse;
}

.why-glow-3 {
  width: 550px;
  height: 550px;
  bottom: -100px;
  left: 20%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  animation: whyFloatGlow 15s ease-in-out infinite alternate;
}

@keyframes whyFloatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 30px) scale(1.1);
  }
}

.why-bg-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(226, 232, 240, 0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 232, 240, 0.4) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  opacity: 0.6;
}

.why-solo-section .corporate-shell {
  position: relative;
  z-index: 1;
}

/* SECTION HEADING SHOWCASE */
.why-header-showcase {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.why-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
  animation: whyPulse 2s infinite;
}

@keyframes whyPulse {

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

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

.why-pill-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e293b;
}

.why-pill-spark {
  color: #3b82f6;
}

.why-title-impact {
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.why-accent-word {
  display: inline-block;
  font-weight: 900;
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  color: #1d4ed8;
  -webkit-text-fill-color: transparent;
}

.why-accent-blue {
  background-image: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.why-accent-emerald {
  background-image: linear-gradient(135deg, #047857 0%, #10b981 100%);
}

.why-accent-purple {
  background-image: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
}

.why-subtitle-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #475569;
  font-weight: 450;
  max-width: 720px;
  margin-bottom: 28px;
}

.why-animated-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 160px;
  height: 24px;
}

.why-divider-line {
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, #3b82f6 30%, #10b981 50%, #8b5cf6 70%, transparent 100%);
}

.why-divider-diamond {
  width: 10px;
  height: 10px;
  background: #ffffff;
  border: 2px solid #3b82f6;
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
  position: relative;
  z-index: 2;
}

/* BENTO SHOWCASE GRID */
.why-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* FEATURE CARD BASE STYLING */
.why-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.why-card-top-bar {
  height: 3px;
  width: 100%;
  transition: all 0.4s ease;
}

.why-card-body {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

.why-card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.why-card-number {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #94a3b8;
  font-family: monospace, sans-serif;
}

/* ICON BOX WITH BESPOKE PALETTES */
.why-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid transparent;
}

.why-icon-box svg {
  width: 26px;
  height: 26px;
  transition: transform 0.4s ease;
}

/* INDIVIDUAL COLOR STYLES & ENHANCED HOVER ANIMATIONS */
/* Royal Blue (Innovation) */
.why-card--blue .why-card-top-bar {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.why-icon--blue {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.18) 100%);
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12);
}

.why-card--blue:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 22px 45px -12px rgba(37, 99, 235, 0.2), 0 0 20px rgba(37, 99, 235, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, rgba(37, 99, 235, 0.02) 100%);
}

/* Cyan (Technology) */
.why-card--cyan .why-card-top-bar {
  background: linear-gradient(90deg, #0891b2, #22d3ee);
}

.why-icon--cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(34, 211, 238, 0.18) 100%);
  color: #0891b2;
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.12);
}

.why-card--cyan:hover {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 22px 45px -12px rgba(6, 182, 212, 0.2), 0 0 20px rgba(6, 182, 212, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, rgba(6, 182, 212, 0.02) 100%);
}

/* Indigo (Strategic Leadership) */
.why-card--indigo .why-card-top-bar {
  background: linear-gradient(90deg, #4f46e5, #818cf8);
}

.why-icon--indigo {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(129, 140, 248, 0.18) 100%);
  color: #4f46e5;
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.12);
}

.why-card--indigo:hover {
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow: 0 22px 45px -12px rgba(79, 70, 229, 0.2), 0 0 20px rgba(79, 70, 229, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, rgba(79, 70, 229, 0.02) 100%);
}

/* Emerald Green (Business Development) */
.why-card--emerald .why-card-top-bar {
  background: linear-gradient(90deg, #059669, #34d399);
}

.why-icon--emerald {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.18) 100%);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.12);
}

.why-card--emerald:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 22px 45px -12px rgba(16, 185, 129, 0.2), 0 0 20px rgba(16, 185, 129, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, rgba(16, 185, 129, 0.02) 100%);
}

/* Soft Teal (Brand Building) */
.why-card--teal .why-card-top-bar {
  background: linear-gradient(90deg, #0d9488, #2dd4bf);
}

.why-icon--teal {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(45, 212, 191, 0.18) 100%);
  color: #0d9488;
  border-color: rgba(20, 184, 166, 0.2);
  box-shadow: 0 6px 18px rgba(20, 184, 166, 0.12);
}

.why-card--teal:hover {
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 22px 45px -12px rgba(20, 184, 166, 0.2), 0 0 20px rgba(20, 184, 166, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, rgba(20, 184, 166, 0.02) 100%);
}

/* Amber (Digital Infrastructure) */
.why-card--amber .why-card-top-bar {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}

.why-icon--amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.18) 100%);
  color: #d97706;
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.12);
}

.why-card--amber:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 22px 45px -12px rgba(245, 158, 11, 0.2), 0 0 20px rgba(245, 158, 11, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, rgba(245, 158, 11, 0.02) 100%);
}

/* Premium Purple (R&D) */
.why-card--purple .why-card-top-bar {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.why-icon--purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.18) 100%);
  color: #7c3aed;
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.12);
}

.why-card--purple:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 22px 45px -12px rgba(139, 92, 246, 0.2), 0 0 20px rgba(139, 92, 246, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, rgba(139, 92, 246, 0.02) 100%);
}

/* Deep Rose / Fuchsia (Long-Term Vision) */
.why-card--rose .why-card-top-bar {
  background: linear-gradient(90deg, #db2777, #f472b6);
}

.why-icon--rose {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(244, 114, 182, 0.18) 100%);
  color: #db2777;
  border-color: rgba(236, 72, 153, 0.2);
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.12);
}

.why-card--rose:hover {
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 22px 45px -12px rgba(236, 72, 153, 0.2), 0 0 20px rgba(236, 72, 153, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, rgba(236, 72, 153, 0.02) 100%);
}

/* GLOBAL CARD HOVER MICRO-ANIMATIONS */
.why-card:hover {
  transform: translateY(-10px) scale(1.015);
}

.why-card:hover .why-card-top-bar {
  height: 5px;
}

.why-card:hover .why-icon-box {
  transform: scale(1.12) rotate(4deg);
}

.why-card:hover .why-icon-box svg {
  transform: scale(1.08);
}

.why-card:hover .why-card-title {
  transform: translateX(4px);
}

.why-card:hover .why-card-number {
  transform: translateY(-2px);
  color: #64748b;
}

.why-card:hover .why-mini-badge {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


/* RESPONSIVE DESIGN FOR WHY SOLO SECTION */
@media (max-width: 1200px) {
  .why-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .why-solo-section {
    padding: 48px 0;
  }

  .why-bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-title-impact {
    font-size: 2rem;
  }

  .why-subtitle-lead {
    font-size: 1rem;
  }
}

/* ================= PROFESSIONAL SCROLL ANIMATIONS ================= */

/* Base Animation Classes */
[data-scroll-animate] {
  --animation-delay: 0ms;
  --animation-duration: 0.42s;
  --animation-easing: cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animated {
  animation-delay: var(--animation-delay);
  animation-duration: var(--animation-duration);
  animation-fill-mode: both;
  animation-timing-function: var(--animation-easing);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* FADE IN ANIMATIONS */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  35% {
    opacity: 1;
  }

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  35% {
    opacity: 1;
  }

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

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-25px);
  }

  35% {
    opacity: 1;
  }

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

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(25px);
  }

  35% {
    opacity: 1;
  }

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

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

  35% {
    opacity: 1;
  }

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

@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }

  35% {
    opacity: 1;
  }

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

/* SLIDE ANIMATIONS */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  35% {
    opacity: 1;
  }

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

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  35% {
    opacity: 1;
  }

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

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }

  35% {
    opacity: 1;
  }

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

/* SCALE IN ANIMATIONS */
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  35% {
    opacity: 1;
  }

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

/* ROTATE ANIMATIONS */
@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotate(-5deg) scale(0.9);
  }

  35% {
    opacity: 1;
  }

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

/* PULSE/BOUNCE ANIMATIONS */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {

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

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

/* COUNT UP ANIMATION */
@keyframes countUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }

  35% {
    opacity: 1;
  }

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

/* Apply animations to classes */
.scroll-animated.fade-in-down {
  animation-name: fadeInDown;
}

.scroll-animated.fade-in-up {
  animation-name: fadeInUp;
}

.scroll-animated.fade-in-left {
  animation-name: fadeInLeft;
}

.scroll-animated.fade-in-right {
  animation-name: fadeInRight;
}

.scroll-animated.fade-in-scale {
  animation-name: fadeInScale;
}

.scroll-animated.fade-in-zoom {
  animation-name: fadeInZoom;
}

.scroll-animated.slide-in-left {
  animation-name: slideInLeft;
}

.scroll-animated.slide-in-right {
  animation-name: slideInRight;
}

.scroll-animated.slide-up {
  animation-name: slideUp;
}

.scroll-animated.scale-in {
  animation-name: scaleIn;
}

.scroll-animated.rotate-in {
  animation-name: rotateIn;
}

.scroll-animated.pulse {
  animation-name: pulse;
  animation-duration: 2s;
}

.scroll-animated.bounce {
  animation-name: bounce;
  animation-duration: 1.5s;
}

.scroll-animated.count-up {
  animation-name: countUp;
}

/* Staggered animations for sequences */
@keyframes staggerFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  35% {
    opacity: 1;
  }

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

.scroll-animated.stagger {
  animation-name: staggerFadeUp;
}

/* ADVANCED COMBINATION ANIMATIONS */
@keyframes fadeUpRotate {
  from {
    opacity: 0;
    transform: translateY(30px) rotateZ(-2deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateZ(0deg);
  }
}

@keyframes slideSkew {
  from {
    opacity: 0;
    transform: translateX(-50px) skewX(15deg);
  }

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

@keyframes scaleRotate {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(45deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.scroll-animated.fade-up-rotate {
  animation-name: fadeUpRotate;
}

.scroll-animated.slide-skew {
  animation-name: slideSkew;
}

.scroll-animated.scale-rotate {
  animation-name: scaleRotate;
}

/* Wave animation for text */
@keyframes wave {

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

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

.scroll-animated.wave {
  animation-name: wave;
  animation-duration: 1.2s;
}

/* Flip animation */
@keyframes flipY {
  from {
    opacity: 0;
    transform: rotateY(90deg);
  }

  to {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

.scroll-animated.flip {
  animation-name: flipY;
  perspective: 1000px;
}

/* Float animation */
@keyframes float {

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

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

.scroll-animated.float {
  animation-name: float;
  animation-duration: 3s;
}

/* Blur fade in */
@keyframes blurFadeIn {
  from {
    opacity: 0;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    filter: blur(0px);
  }
}

.scroll-animated.blur-fade {
  animation-name: blurFadeIn;
}

/* Glow effect */
@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0);
  }

  50% {
    box-shadow: 0 0 20px rgba(123, 97, 255, 0.6);
  }
}

.scroll-animated.glow {
  animation-name: glow;
  animation-duration: 2s;
}

/* Shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.scroll-animated.shimmer {
  animation-name: shimmer;
  animation-duration: 2s;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
}

/* Text reveal animation */
@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.scroll-animated.text-reveal {
  animation-name: textReveal;
}

/* Parallax effect on scroll */
@keyframes parallaxUp {
  from {
    opacity: 0;
    transform: translateY(50px) translateZ(0);
  }

  to {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
}

.scroll-animated.parallax {
  animation-name: parallaxUp;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  [data-scroll-animate] {
    --animation-duration: 0.01s !important;
  }

  .scroll-animated {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Performance optimization for 60fps animations */
.scroll-animated {
  will-change: transform, opacity;
  backface-visibility: hidden;
  perspective: 1000px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
  [data-scroll-animate] {
    --animation-duration: 0.42s;
  }
}

@media (max-width: 480px) {
  [data-scroll-animate] {
    --animation-duration: 0.4s;
  }
}

/* ================= DATA-REVEAL ANIMATION SYSTEM (Journey, Executive sections) ================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.2s ease-out, transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition-duration: 0.01s !important;
    opacity: 1 !important;
    transform: none !important;
  }
}



/* ================= FUTURE VISION SECTION ================= */
.future-vision-section {
  position: relative;
  padding: 60px 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 45%, #F1F5F9 100%);
  color: #0F172A;
  overflow: hidden;
  --fv-emerald: #10B981;
  --fv-blue: #2563EB;
  --fv-purple: #8B5CF6;
  --fv-cyan: #06B6D4;
  --fv-indigo: #4F46E5;
  --fv-teal: #14B8A6;
  --fv-amber: #F59E0B;
  --fv-violet: #7C3AED;
}

/* Background Mesh & Geometric Ambient Grid */
.fv-bg-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fv-mesh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  animation: fvMeshFloat 14s ease-in-out infinite alternate;
}

.fv-mesh-glow-emerald {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.4), transparent 70%);
}

.fv-mesh-glow-indigo {
  width: 550px;
  height: 550px;
  bottom: 5%;
  left: -150px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.35), transparent 70%);
  animation-delay: -5s;
}

.fv-mesh-glow-purple {
  width: 450px;
  height: 450px;
  top: 40%;
  right: 15%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
  animation-delay: -9s;
}

.fv-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.16) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
}

@keyframes fvMeshFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -25px) scale(1.06);
  }

  100% {
    transform: translate(-20px, 20px) scale(0.96);
  }
}

.future-vision-shell {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ================= SECTION HEADER ================= */
.future-vision-intro {
  text-align: center;
  padding: 48px 36px 44px;
  border-radius: 36px;
  margin-bottom: 32px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.06);
}

.fv-eyebrow-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.future-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #3B82F6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.08));
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.08);
}

.fv-eyebrow-icon {
  color: #2563EB;
}

.fv-main-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.3rem, 4.1vw, 3.6rem);
  line-height: 1.16;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.fv-highlight {
  display: inline-block;
  font-weight: 800;
  -webkit-background-clip: text;
  background-clip: text;
  color: #2563EB;
  -webkit-text-fill-color: transparent;
}

.fv-highlight-blue {
  background-image: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
}

.fv-highlight-cyan {
  background-image: linear-gradient(135deg, #0EA5E9 0%, #10B981 100%);
}

.fv-highlight-purple {
  background-image: linear-gradient(135deg, #8B5CF6 0%, #D97706 100%);
}

/* Sweeping Divider Line */
.fv-heading-divider {
  position: relative;
  width: 160px;
  height: 3px;
  margin: 22px auto;
  background: rgba(226, 232, 240, 0.8);
  border-radius: 999px;
  overflow: hidden;
}

.fv-divider-beam {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #2563EB, #10B981, #8B5CF6, transparent);
  animation: fvBeamSweep 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes fvBeamSweep {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.fv-lead-text {
  max-width: 780px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 400;
}

.future-vision-intro-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.fv-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fv-meta-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.fv-meta-emerald {
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #047857;
}

.fv-meta-cyan {
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: #0369A1;
}

.fv-meta-purple {
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #6D28D9;
}

/* ================= NORTH STAR & METRIC GRID ================= */
.future-vision-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  margin-bottom: 32px;
}

.future-vision-card {
  position: relative;
  border-radius: 32px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.future-vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -12px rgba(15, 23, 42, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

.future-vision-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 70%);
  pointer-events: none;
}

.fv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fv-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fv-badge-indigo {
  background: rgba(79, 70, 229, 0.08);
  color: #4F46E5;
  border: 1px solid rgba(79, 70, 229, 0.18);
}

.fv-card-accent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 12px #10B981;
}

.future-vision-card h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.35;
  color: #0F172A;
  margin-bottom: 16px;
  font-weight: 700;
}

.future-vision-card p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 22px;
  font-size: 1.02rem;
}

.future-feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
}

.future-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  font-weight: 500;
  font-size: 0.98rem;
}

.fv-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fv-check-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.fv-check-blue {
  background: rgba(37, 99, 235, 0.12);
  color: #2563EB;
}

.fv-check-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #7C3AED;
}

.fv-check-amber {
  background: rgba(245, 158, 11, 0.12);
  color: #D97706;
}

/* Stat Stack */
.future-vision-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.future-vision-stat-card {
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.future-vision-stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  transition: width 0.3s ease;
}

.fv-stat-blue::before {
  background: linear-gradient(180deg, #2563EB, #3B82F6);
}

.fv-stat-emerald::before {
  background: linear-gradient(180deg, #10B981, #059669);
}

.fv-stat-purple::before {
  background: linear-gradient(180deg, #8B5CF6, #7C3AED);
}

.future-vision-stat-card:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.08);
}

.fv-stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.fv-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0F172A;
}

.fv-stat-pill {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
}

.fv-pill-blue {
  background: rgba(37, 99, 235, 0.08);
  color: #2563EB;
}

.fv-pill-emerald {
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
}

.fv-pill-purple {
  background: rgba(139, 92, 246, 0.08);
  color: #7C3AED;
}

.future-vision-stat-card h4 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
}

.future-vision-stat-card p {
  color: #64748B;
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

/* ================= STRATEGIC ROADMAP TIMELINE ================= */
.future-roadmap-block {
  border-radius: 36px;
  padding: 44px;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.05);
}

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

.fv-heading-sub {
  color: #64748B;
  font-size: 1rem;
  margin-top: 6px;
}

.future-roadmap {
  position: relative;
  margin-top: 40px;
}

.fv-roadmap-track-line {
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: rgba(226, 232, 240, 0.8);
  border-radius: 999px;
  z-index: 0;
  overflow: hidden;
}

.fv-roadmap-progress-beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #10B981 0%, #2563EB 35%, #8B5CF6 70%, #14B8A6 100%);
  animation: fvBeamTrack 6s linear infinite alternate;
}

@keyframes fvBeamTrack {
  0% {
    opacity: 0.4;
    transform: scaleX(0.7);
    transform-origin: left;
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

.future-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.future-roadmap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 12px;
}

.fv-step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.future-roadmap-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.fv-marker-emerald {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.fv-marker-blue {
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.fv-marker-purple {
  background: #F3E8FF;
  color: #6D28D9;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.fv-marker-teal {
  background: #CCFBF1;
  color: #0F766E;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.fv-step-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 4px solid #2563EB;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fv-step-emerald .fv-step-node {
  border-color: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}

.fv-step-blue .fv-step-node {
  border-color: #2563EB;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.fv-step-purple .fv-step-node {
  border-color: #8B5CF6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.18);
}

.fv-step-teal .fv-step-node {
  border-color: #14B8A6;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.18);
}

.future-roadmap-step:hover .fv-step-node {
  transform: scale(1.35);
}

.fv-step-content {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 20px 18px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 8px 24px -6px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.future-roadmap-step:hover .fv-step-content {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.08);
}

.fv-step-content h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;

}

.fv-step-content p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

/* ================= INNOVATION PILLARS (8 DISTINCT CARDS) ================= */
.future-pillars-section {
  border-radius: 36px;
  padding: 44px;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.05);
}

.future-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.future-pillars-card {
  position: relative;
  border-radius: 26px;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.future-pillars-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px -10px rgba(15, 23, 42, 0.1);
}

.fv-pillar-emerald:hover {
  border-color: rgba(16, 185, 129, 0.4);
}

.fv-pillar-blue:hover {
  border-color: rgba(37, 99, 235, 0.4);
}

.fv-pillar-purple:hover {
  border-color: rgba(139, 92, 246, 0.4);
}

.fv-pillar-cyan:hover {
  border-color: rgba(6, 182, 212, 0.4);
}

.fv-pillar-indigo:hover {
  border-color: rgba(79, 70, 229, 0.4);
}

.fv-pillar-teal:hover {
  border-color: rgba(20, 184, 166, 0.4);
}

.fv-pillar-amber:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

.fv-pillar-violet:hover {
  border-color: rgba(124, 58, 237, 0.4);
}

.fv-pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.future-pillars-card:hover .fv-pillar-icon-box {
  transform: scale(1.12) rotate(6deg);
}

.fv-icon-emerald {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.15);
}

.fv-icon-blue {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15);
}

.fv-icon-purple {
  background: linear-gradient(135deg, #F3E8FF, #E9D5FF);
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.15);
}

.fv-icon-cyan {
  background: linear-gradient(135deg, #ECFEFF, #CFFAFE);
  border: 1px solid rgba(6, 182, 212, 0.25);
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.15);
}

.fv-icon-indigo {
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  border: 1px solid rgba(79, 70, 229, 0.25);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.15);
}

.fv-icon-teal {
  background: linear-gradient(135deg, #CCFBF1, #99F6E4);
  border: 1px solid rgba(20, 184, 166, 0.25);
  box-shadow: 0 6px 16px rgba(20, 184, 166, 0.15);
}

.fv-icon-amber {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.15);
}

.fv-icon-violet {
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
  border: 1px solid rgba(124, 58, 237, 0.25);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.15);
}

.future-pillars-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}

.future-pillars-card p {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

.fv-pillar-accent-line {
  height: 3px;
  width: 100%;
  border-radius: 999px;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.fv-pillar-emerald .fv-pillar-accent-line {
  background: #10B981;
}

.fv-pillar-blue .fv-pillar-accent-line {
  background: #2563EB;
}

.fv-pillar-purple .fv-pillar-accent-line {
  background: #8B5CF6;
}

.fv-pillar-cyan .fv-pillar-accent-line {
  background: #06B6D4;
}

.fv-pillar-indigo .fv-pillar-accent-line {
  background: #4F46E5;
}

.fv-pillar-teal .fv-pillar-accent-line {
  background: #14B8A6;
}

.fv-pillar-amber .fv-pillar-accent-line {
  background: #F59E0B;
}

.fv-pillar-violet .fv-pillar-accent-line {
  background: #7C3AED;
}

.future-pillars-card:hover .fv-pillar-accent-line {
  transform: scaleX(1);
}

/* ================= CONNECTED ECOSYSTEM & GLOBAL HORIZONS ================= */
.future-ecosystem-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  margin-top: 32px;
}

.future-ecosystem-section {
  border-radius: 36px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.05);
}

.future-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.future-ecosystem-card {
  position: relative;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.future-ecosystem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.fv-eco-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fv-eco-blue .fv-eco-dot {
  background: #2563EB;
  box-shadow: 0 0 8px #2563EB;
}

.fv-eco-cyan .fv-eco-dot {
  background: #06B6D4;
  box-shadow: 0 0 8px #06B6D4;
}

.fv-eco-purple .fv-eco-dot {
  background: #8B5CF6;
  box-shadow: 0 0 8px #8B5CF6;
}

.fv-eco-emerald .fv-eco-dot {
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.fv-eco-indigo .fv-eco-dot {
  background: #4F46E5;
  box-shadow: 0 0 8px #4F46E5;
}

.fv-eco-teal .fv-eco-dot {
  background: #14B8A6;
  box-shadow: 0 0 8px #14B8A6;
}

.fv-eco-amber .fv-eco-dot {
  background: #F59E0B;
  box-shadow: 0 0 8px #F59E0B;
}

.fv-eco-violet .fv-eco-dot {
  background: #7C3AED;
  box-shadow: 0 0 8px #7C3AED;
}

.future-global-section {
  border-radius: 36px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.future-global-copy h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  line-height: 1.35;
  color: #0F172A;
  margin-top: 10px;
  margin-bottom: 12px;
}

.future-global-copy p {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.7;
}

.future-global-orbit {
  position: relative;
  height: 180px;
  width: 180px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-orbit-center {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #10B981);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.4);
  z-index: 2;
}

.fv-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px stroke rgba(226, 232, 240, 0.9);
  border: 1px dashed rgba(99, 102, 241, 0.25);
  animation: fvOrbitSpin 12s linear infinite;
}

.fv-ring-1 {
  inset: 0;
}

.fv-ring-2 {
  inset: 22px;
  animation-duration: 9s;
  animation-direction: reverse;
}

.fv-ring-3 {
  inset: 44px;
  animation-duration: 6s;
}

.fv-orbit-node {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.fv-node-emerald {
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
}

.fv-node-cyan {
  background: #06B6D4;
  box-shadow: 0 0 10px #06B6D4;
}

.fv-node-purple {
  background: #8B5CF6;
  box-shadow: 0 0 10px #8B5CF6;
}

@keyframes fvOrbitSpin {
  from {
    transform: rotate(0deg);
  }

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

/* ================= MANIFESTO STATEMENT ================= */
.future-statement {
  border-radius: 36px;
  padding: 44px 48px;
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.9) 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.05);
  text-align: center;
  position: relative;
}

.fv-statement-inner {
  max-width: 900px;
  margin: 0 auto;
}

.fv-quote-icon {
  color: #2563EB;
  margin-bottom: 12px;
}

.future-statement p {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.5;
  color: #0F172A;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.fv-statement-author {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748B;
}

/* ================= CALL TO ACTION ================= */
.future-cta {
  position: relative;
  border-radius: 36px;
  padding: 56px 40px;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 24px 60px -10px rgba(15, 23, 42, 0.07);
  text-align: center;
  overflow: hidden;
}

.fv-cta-glow-bg {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  pointer-events: none;
}

.future-cta h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: #0F172A;
  margin-bottom: 10px;
  font-weight: 700;
}

.fv-cta-sub {
  color: #64748B;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.future-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.future-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.future-cta-btn-primary {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 28px -5px rgba(37, 99, 235, 0.4);
}

.future-cta-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px -6px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
}

.future-cta-btn-secondary {
  background: #FFFFFF;
  color: #0F172A;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.future-cta-btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border-color: rgba(99, 102, 241, 0.4);
  color: #2563EB;
}

.future-cta-btn-tertiary {
  background: transparent;
  color: #475569;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.future-cta-btn-tertiary:hover {
  transform: translateY(-3px);
  color: #0F172A;
  background: rgba(241, 245, 249, 0.6);
}

/* ================= RESPONSIVE MEDIA QUERIES ================= */
@media (max-width: 1024px) {

  .future-vision-grid,
  .future-ecosystem-wrapper {
    grid-template-columns: 1fr;
  }

  .future-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .future-roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .fv-roadmap-track-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .future-vision-section {
    padding: 48px 16px;
  }

  .future-vision-intro,
  .future-vision-card,
  .future-roadmap-block,
  .future-pillars-section,
  .future-ecosystem-section,
  .future-global-section,
  .future-statement,
  .future-cta {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .future-roadmap-grid,
  .future-pillars-grid,
  .future-ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .future-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .future-cta-btn {
    width: 100%;
  }
}

.future-roadmap-step::before {
  left: 6px;
}

.future-ecosystem-grid,
.future-pillars-grid {
  grid-template-columns: 1fr;
}

/* ================= MODERN AD SPACE ================= */
/* Contemporary Glassmorphism Design */

.ad-space {
  max-width: 1200px;
  margin: 60px auto;
  padding: 2px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.ad-space::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(255, 93, 175, 0.05));
  border-radius: 24px;
  pointer-events: none;
}

.ad-space::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 60%);
  border-radius: 24px;
  pointer-events: none;
}

.ad-space-wrapper {
  background: linear-gradient(135deg, rgba(20, 25, 50, 0.4) 0%, rgba(15, 20, 40, 0.3) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 50px 30px;
  position: relative;
  z-index: 1;
}

.ad-space.above-contact {
  margin-bottom: 80px;
}

.ad-space-inner {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.ad-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(102, 126, 234, 0.8);
  background: rgba(102, 126, 234, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.ad-space-inner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.6;
}

/* ================= MODERN POPUP AD ================= */
/* Smooth, Contemporary Popup Notification - Bottom Right on Desktop */

.ad-popup-banner {
  position: fixed !important;
  left: 50% !important;
  bottom: 20px !important;
  right: auto !important;
  top: auto !important;
  width: min(320px, 28vw) !important;
  max-width: 320px !important;
  background: linear-gradient(135deg, rgba(20, 25, 50, 0.95) 0%, rgba(15, 20, 40, 0.92) 100%) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 18px !important;
  padding: 18px 20px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
  z-index: 9999 !important;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.320, 1), opacity 0.35s ease !important;
  opacity: 0 !important;
  transform: translate(-50%, 20px) !important;
  font-family: 'Poppins', sans-serif !important;
  pointer-events: none !important;
}

.ad-popup-banner.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.ad-popup-banner-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  line-height: 1;
  pointer-events: auto;
}

.ad-popup-banner-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05) rotate(90deg);
  box-shadow: 0 0 16px rgba(102, 126, 234, 0.24);
}

.ad-popup-banner-content {
  text-align: left;
  padding-right: 0;
  pointer-events: auto;
}

.ad-popup-banner-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(102, 126, 234, 0.95);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.ad-popup-banner-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .ad-space-wrapper {
    padding: 40px 24px;
  }

  .ad-space-inner {
    min-height: 240px;
  }
}

@media (max-width: 600px) {
  .ad-space {
    margin: 50px 16px;
  }

  .ad-space-wrapper {
    padding: 35px 20px;
  }

  .ad-space-inner {
    min-height: 220px;
    padding: 24px 16px;
  }

  .ad-popup-banner {
    width: calc(100vw - 28px);
    max-width: 100%;
    left: 14px;
    right: auto;
    bottom: 110px;
    top: auto;
    transform: translateY(0);
  }

  .ad-popup-banner-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .ad-popup-banner-title {
    font-size: 0.76rem;
  }

  .ad-popup-banner-text {
    font-size: 0.88rem;
  }

  .ad-popup-banner.show {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= COOKIE CONSENT BANNER TRANSITIONS ================= */
#skConsentBanner {
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

#skConsentBanner.hide {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  pointer-events: none !important;
}

/* ==========================================================================
   OUR VENTURES & ECOSYSTEM SECTION - ULTRA PREMIUM ENTERPRISE PORTFOLIO
   ========================================================================== */

.ventures-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  overflow: hidden;
}

/* Background Visual Elements */
.ventures-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ventures-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  animation: venturesBlobFloat 12s infinite ease-in-out alternate;
}

.ventures-mesh-blue {
  top: -10%;
  left: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #3b82f6 0%, rgba(59, 130, 246, 0) 70%);
}

.ventures-mesh-emerald {
  top: 30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #10b981 0%, rgba(16, 185, 129, 0) 70%);
  animation-delay: -3s;
}

.ventures-mesh-purple {
  bottom: 10%;
  left: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #8b5cf6 0%, rgba(139, 92, 246, 0) 70%);
  animation-delay: -6s;
}

.ventures-mesh-amber {
  bottom: -10%;
  right: 15%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #f59e0b 0%, rgba(245, 158, 11, 0) 70%);
  animation-delay: -9s;
}

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

  50% {
    transform: translateY(-30px) scale(1.06);
  }

  100% {
    transform: translateY(20px) scale(0.95);
  }
}

.ventures-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.ventures-geo-shape {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(203, 213, 225, 0.6);
  pointer-events: none;
}

.ventures-geo-1 {
  width: 300px;
  height: 300px;
  top: 15%;
  right: 8%;
  animation: geoSpin 45s linear infinite;
}

.ventures-geo-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 6%;
  animation: geoSpin 35s linear infinite reverse;
}

@keyframes geoSpin {
  from {
    transform: rotate(0deg);
  }

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

.ventures-shell {
  position: relative;
  z-index: 2;
}

/* Heading Styling */
.ventures-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}

.ventures-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  margin-bottom: 20px;
}

.ventures-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

.ventures-eyebrow-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #334155;
}

.ventures-main-title {
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 20px;
}

.ventures-title-highlight-blue {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: #2563eb;
  -webkit-text-fill-color: transparent;
}

.ventures-title-highlight-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: #7c3aed;
  -webkit-text-fill-color: transparent;
}

.ventures-title-highlight-emerald {
  background: linear-gradient(135deg, #059669, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: #059669;
  -webkit-text-fill-color: transparent;
}

.ventures-main-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #475569;
  max-width: 720px;
  margin: 0 auto 28px;
}

.ventures-heading-divider {
  position: relative;
  width: 160px;
  height: 4px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ventures-divider-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #059669, #7c3aed, #0891b2, #d97706, #0d9488);
  border-radius: 99px;
}

.ventures-divider-glow {
  position: absolute;
  width: 40px;
  height: 6px;
  background: #3b82f6;
  filter: blur(6px);
  border-radius: 99px;
  animation: dividerShimmer 3s infinite ease-in-out;
}

@keyframes dividerShimmer {
  0% {
    transform: translateX(-60px);
    opacity: 0.3;
  }

  50% {
    transform: translateX(60px);
    opacity: 0.9;
  }

  100% {
    transform: translateX(-60px);
    opacity: 0.3;
  }
}

/* Showcase Container */
.ventures-showcase-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Card Common Styles */
.card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: all 0.4s ease;
}

.accent-blue {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.accent-emerald {
  background: linear-gradient(90deg, #059669, #34d399);
}

.accent-purple {
  background: linear-gradient(90deg, #7c3aed, #c084fc);
}

.accent-cyan {
  background: linear-gradient(90deg, #0891b2, #38bdf8);
}

.accent-amber {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}

.accent-teal {
  background: linear-gradient(90deg, #0d9488, #2dd4bf);
}

.ventures-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.ventures-icon-wrapper svg {
  width: 36px;
  height: 36px;
  transition: transform 0.4s ease;
}

.theme-blue {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.theme-emerald {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.08);
}

.theme-purple {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border: 1px solid #ddd6fe;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
}

.theme-cyan {
  background: linear-gradient(135deg, #ecfeff, #cffafe);
  border: 1px solid #a5f3fc;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.08);
}

.theme-amber {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #fde68a;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.08);
}

.theme-teal {
  background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
  border: 1px solid #99f6e4;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.08);
}

.venture-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-blue {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.badge-emerald {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.badge-purple {
  background: #f5f3ff;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
}

.badge-cyan {
  background: #ecfeff;
  color: #0891b2;
  border: 1px solid #a5f3fc;
}

.badge-amber {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

.badge-teal {
  background: #f0fdfa;
  color: #0d9488;
  border: 1px solid #99f6e4;
}

.venture-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-active .status-dot {
  background: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.status-scaling .status-dot {
  background: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

.status-expanding .status-dot {
  background: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

.status-seeded .status-dot {
  background: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.venture-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0;
  transition: color 0.3s ease;
}

.venture-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Action Buttons */
.ventures-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ventures-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.ventures-btn:hover i {
  transform: translateX(4px);
}

.ventures-btn-blue {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.ventures-btn-blue:hover {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.ventures-btn-emerald {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
}

.ventures-btn-emerald:hover {
  background: #047857;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

.ventures-btn-purple {
  background: #7c3aed;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
}

.ventures-btn-purple:hover {
  background: #6d28d9;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
  transform: translateY(-2px);
}

.ventures-btn-cyan {
  background: #0891b2;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(8, 145, 178, 0.25);
}

.ventures-btn-cyan:hover {
  background: #0e7490;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 145, 178, 0.4);
  transform: translateY(-2px);
}

.ventures-btn-amber {
  background: #d97706;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.25);
}

.ventures-btn-amber:hover {
  background: #b45309;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
  transform: translateY(-2px);
}

.ventures-btn-teal {
  background: #0d9488;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
}

.ventures-btn-teal:hover {
  background: #0f766e;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
  transform: translateY(-2px);
}

.ventures-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ventures-btn-secondary:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: translateY(-2px);
}

/* FLAGSHIP CARD STYLING */
.ventures-flagship-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.ventures-flagship-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 24px 50px -10px rgba(37, 99, 235, 0.12);
}

.ventures-flagship-card:hover .ventures-icon-wrapper {
  transform: scale(1.08) rotate(3deg);
}

.flagship-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flagship-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.flagship-meta-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flagship-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.flagship-title {
  font-size: 1.85rem;
}

.venture-industry-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flagship-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flagship-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 820px;
}

.flagship-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 24px;
  padding: 16px 20px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.highlight-icon-blue {
  color: #2563eb;
  font-size: 1rem;
}

.flagship-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(241, 245, 249, 0.9);
  flex-wrap: wrap;
  gap: 16px;
}

.flagship-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.flagship-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.flagship-stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flagship-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* SECONDARY & TERTIARY GRID STYLING */
.ventures-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.ventures-tertiary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.venture-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
}

.venture-card:hover {
  transform: translateY(-8px);
}

.venture-card:hover .ventures-icon-wrapper {
  transform: scale(1.08) rotate(3deg);
}

.card-theme-emerald:hover {
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 20px 45px rgba(5, 150, 105, 0.12);
}

.card-theme-purple:hover {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.12);
}

.card-theme-cyan:hover {
  border-color: rgba(8, 145, 178, 0.35);
  box-shadow: 0 20px 45px rgba(8, 145, 178, 0.12);
}

.card-theme-amber:hover {
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: 0 20px 45px rgba(217, 119, 6, 0.12);
}

.card-theme-teal:hover {
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 20px 45px rgba(13, 148, 136, 0.12);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-feature-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-feature-list li {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-emerald {
  color: #059669;
}

.text-purple {
  color: #7c3aed;
}

.text-cyan {
  color: #0891b2;
}

.text-amber {
  color: #d97706;
}

.text-teal {
  color: #0d9488;
}

.card-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(241, 245, 249, 0.9);
  display: flex;
  align-items: center;
}

.card-footer .ventures-btn {
  width: 100%;
}

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

@media (max-width: 860px) {
  .ventures-section {
    padding: 48px 0;
  }

  .ventures-flagship-card {
    padding: 28px;
  }

  .flagship-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ventures-secondary-grid,
  .ventures-tertiary-grid {
    grid-template-columns: 1fr;
  }

  .flagship-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .flagship-actions {
    width: 100%;
  }

  .flagship-actions .ventures-btn,
  .flagship-actions .ventures-btn-secondary {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .ventures-section {
    padding: 48px 0;
  }

  .ventures-section .ventures-shell {
    max-width: 94%;
    padding: 0 4px;
  }

  .ventures-heading {
    margin-bottom: 40px;
  }

  .ventures-main-title {
    font-size: 1.95rem;
  }

  .ventures-flagship-card,
  .venture-card {
    padding: 22px;
    border-radius: 20px;
  }

  .flagship-actions {
    flex-direction: column;
  }

  .flagship-actions .ventures-btn,
  .flagship-actions .ventures-btn-secondary {
    width: 100%;
  }
}

/* ==========================================================================
   CAREERS V2 — PREMIUM ENTERPRISE RECRUITMENT SECTION STYLES
   ========================================================================== */

.careers-v2-section {
  position: relative;
  background-color: #ffffff;
  padding: 60px 0;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
}

/* Background Ambient Glows & Grid Pattern */
.careers-v2-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.careers-v2-bg-glow.glow-blue {
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
}

.careers-v2-bg-glow.glow-purple {
  top: 35%;
  right: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(90px);
}

.careers-v2-bg-glow.glow-teal {
  bottom: -100px;
  left: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
}

.careers-v2-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.12) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

.careers-v2-shell {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   HEADER & TYPOGRAPHY
   -------------------------------------------------------------------------- */

.careers-v2-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px auto;
}

.careers-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.18);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2563eb;
  box-shadow: 0 0 10px #2563eb;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {

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

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

.careers-v2-main-title {
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.16;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.accent-text-blue {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #2563eb;
  -webkit-text-fill-color: transparent;
}

.accent-text-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #7c3aed;
  -webkit-text-fill-color: transparent;
}

.careers-v2-heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 24px auto;
  max-width: 220px;
}

.divider-line-left,
.divider-line-right {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35), transparent);
}

.divider-gem {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

.careers-v2-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #475569;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   HERO BANNER & STAT PILLS
   -------------------------------------------------------------------------- */

.careers-v2-hero-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.05);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.careers-v2-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #7c3aed, #059669, #d97706);
}

.hero-banner-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-banner-text h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-banner-text p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 28px;
}

.hero-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.careers-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-blue-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}

.btn-blue-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.38);
  color: #ffffff !important;
}

.btn-blue-gradient i {
  transition: transform 0.3s ease;
}

.btn-blue-gradient:hover i {
  transform: translateX(4px);
}

.btn-glass-secondary {
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.8);
  color: #334155 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-glass-secondary:hover {
  border-color: #2563eb;
  color: #2563eb !important;
  background: rgba(37, 99, 235, 0.04);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Stat Pills Grid */
.hero-banner-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-pill-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.stat-pill-card:hover {
  transform: translateY(-4px);
}

.stat-theme-blue:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}

.stat-theme-purple:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.12);
}

.stat-theme-emerald:hover {
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.12);
}

.stat-theme-amber:hover {
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.12);
}

.stat-pill-number {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-theme-blue .stat-pill-number {
  color: #2563eb;
}

.stat-theme-purple .stat-pill-number {
  color: #7c3aed;
}

.stat-theme-emerald .stat-pill-number {
  color: #059669;
}

.stat-theme-amber .stat-pill-number {
  color: #d97706;
}

.stat-pill-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
}

/* --------------------------------------------------------------------------
   SECTION SUBHEADINGS
   -------------------------------------------------------------------------- */

.section-subheading {
  margin-bottom: 44px;
}

.section-subheading.text-center {
  text-align: center;
}

.subheading-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-subheading h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   HIGHLIGHT CARDS (7 MULTI-ACCENT DISTINCT CARDS)
   -------------------------------------------------------------------------- */

.careers-v2-highlights-section {
  margin-bottom: 40px;
}

.careers-v2-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.highlight-v2-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px 30px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.highlight-v2-card-wide {
  grid-column: 1 / -1;
  padding: 36px 40px;
}

/* Top Accent Bar */
.card-top-accent {
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  transition: all 0.3s ease;
}

/* Icon Container */
.highlight-v2-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.highlight-svg-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.highlight-v2-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.85;
}

.highlight-v2-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.highlight-v2-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  flex-grow: 1;
  margin-bottom: 20px;
}

.highlight-card-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(241, 245, 249, 0.9);
}

.footer-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
}

/* WIDE CARD LAYOUT FLEX */
.highlight-v2-content-flex {
  display: flex;
  align-items: center;
  gap: 28px;
}

.highlight-v2-text {
  flex: 1;
}

.highlight-v2-text h4 {
  margin-bottom: 6px;
}

.highlight-v2-text p {
  margin-bottom: 0;
}

.highlight-card-footer-wide {
  white-space: nowrap;
}

.footer-tag-wide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.08);
  color: #0d9488;
}

/* --------------------------------------------------------------------------
   THEME COLOR VARIATIONS
   -------------------------------------------------------------------------- */

/* ROYAL BLUE THEME */
.highlight-v2-card.theme-blue .card-top-accent {
  background: #2563eb;
}

.highlight-v2-card.theme-blue .highlight-v2-icon-wrap {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #2563eb;
}

.highlight-v2-card.theme-blue .highlight-v2-badge {
  color: #2563eb;
}

.highlight-v2-card.theme-blue:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

/* EMERALD GREEN THEME */
.highlight-v2-card.theme-emerald .card-top-accent {
  background: #059669;
}

.highlight-v2-card.theme-emerald .highlight-v2-icon-wrap {
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  color: #059669;
}

.highlight-v2-card.theme-emerald .highlight-v2-badge {
  color: #059669;
}

.highlight-v2-card.theme-emerald:hover {
  transform: translateY(-8px);
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 20px 45px rgba(5, 150, 105, 0.12);
}

/* PREMIUM PURPLE THEME */
.highlight-v2-card.theme-purple .card-top-accent {
  background: #7c3aed;
}

.highlight-v2-card.theme-purple .highlight-v2-icon-wrap {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: #7c3aed;
}

.highlight-v2-card.theme-purple .highlight-v2-badge {
  color: #7c3aed;
}

.highlight-v2-card.theme-purple:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.12);
}

/* DEEP INDIGO THEME */
.highlight-v2-card.theme-indigo .card-top-accent {
  background: #4f46e5;
}

.highlight-v2-card.theme-indigo .highlight-v2-icon-wrap {
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.2);
  color: #4f46e5;
}

.highlight-v2-card.theme-indigo .highlight-v2-badge {
  color: #4f46e5;
}

.highlight-v2-card.theme-indigo:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 20px 45px rgba(79, 70, 229, 0.12);
}

/* AMBER THEME */
.highlight-v2-card.theme-amber .card-top-accent {
  background: #d97706;
}

.highlight-v2-card.theme-amber .highlight-v2-icon-wrap {
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.2);
  color: #d97706;
}

.highlight-v2-card.theme-amber .highlight-v2-badge {
  color: #d97706;
}

.highlight-v2-card.theme-amber:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: 0 20px 45px rgba(217, 119, 6, 0.12);
}

/* SOFT CYAN THEME */
.highlight-v2-card.theme-cyan .card-top-accent {
  background: #0891b2;
}

.highlight-v2-card.theme-cyan .highlight-v2-icon-wrap {
  background: rgba(8, 145, 178, 0.08);
  border: 1px solid rgba(8, 145, 178, 0.2);
  color: #0891b2;
}

.highlight-v2-card.theme-cyan .highlight-v2-badge {
  color: #0891b2;
}

.highlight-v2-card.theme-cyan:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 145, 178, 0.35);
  box-shadow: 0 20px 45px rgba(8, 145, 178, 0.12);
}

/* TEAL THEME */
.highlight-v2-card.theme-teal .card-top-accent {
  background: #0d9488;
}

.highlight-v2-card.theme-teal .highlight-v2-icon-wrap {
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.2);
  color: #0d9488;
}

.highlight-v2-card.theme-teal .highlight-v2-badge {
  color: #0d9488;
}

.highlight-v2-card.theme-teal:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 20px 45px rgba(13, 148, 136, 0.12);
}

/* Hover Icon Transform */
.highlight-v2-card:hover .highlight-v2-icon-wrap {
  transform: scale(1.08) rotate(3deg);
}

/* --------------------------------------------------------------------------
   BENEFITS GRID
   -------------------------------------------------------------------------- */

.careers-v2-benefits-section {
  margin-bottom: 40px;
}

.benefits-v2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.benefit-v2-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.benefit-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  border-color: rgba(203, 213, 225, 1);
}

.benefit-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.benefit-icon-box.blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.benefit-icon-box.green {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.benefit-icon-box.purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.benefit-icon-box.cyan {
  background: rgba(8, 145, 178, 0.1);
  color: #0891b2;
}

.benefit-icon-box.amber {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

.benefit-icon-box.teal {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

.benefit-v2-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.benefit-v2-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* --------------------------------------------------------------------------
   INTERACTIVE OPPORTUNITIES (#opportunities)
   -------------------------------------------------------------------------- */

.careers-v2-opportunities {
  margin-bottom: 90px;
}

.opportunities-v2-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.opportunities-v2-header .header-desc {
  font-size: 1rem;
  color: #64748b;
  margin-top: 6px;
}

.careers-v2-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.careers-v2-text-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Filter Tab Bar */
.role-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  padding: 8px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.role-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s ease;
}

.role-tab-btn:hover {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.8);
}

.role-tab-btn.active {
  background: #ffffff;
  color: #2563eb;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.role-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.role-tab-btn.active .role-count {
  background: #2563eb;
  color: #ffffff;
}

/* Job Role Cards */
.role-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.role-v2-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.role-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
}

.role-card-main {
  flex: 1;
}

.role-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.role-cat-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.badge-purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.badge-blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.badge-emerald {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.badge-amber {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

.badge-teal {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

.role-type-badge,
.role-loc-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.role-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.role-snippet {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 16px;
}

.role-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  padding: 4px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.role-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-theme-purple {
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
}

.btn-theme-purple:hover {
  background: #7c3aed;
  color: #ffffff !important;
}

.btn-theme-blue {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.btn-theme-blue:hover {
  background: #2563eb;
  color: #ffffff !important;
}

.btn-theme-emerald {
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
}

.btn-theme-emerald:hover {
  background: #059669;
  color: #ffffff !important;
}

.btn-theme-amber {
  background: rgba(217, 119, 6, 0.08);
  color: #d97706;
}

.btn-theme-amber:hover {
  background: #d97706;
  color: #ffffff !important;
}

.btn-theme-teal {
  background: rgba(13, 148, 136, 0.08);
  color: #0d9488;
}

.btn-theme-teal:hover {
  background: #0d9488;
  color: #ffffff !important;
}

.role-apply-btn i {
  transition: transform 0.3s ease;
}

.role-apply-btn:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   RECRUITMENT PROCESS FLOW
   -------------------------------------------------------------------------- */

.careers-v2-process-section {
  margin-bottom: 90px;
}

.process-v2-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.process-v2-step {
  text-align: center;
}

.step-num-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

.process-v2-step h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.process-v2-step p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

.process-v2-line {
  height: 2px;
  width: 100%;
  min-width: 24px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.4), rgba(124, 58, 237, 0.4));
}

/* --------------------------------------------------------------------------
   CTA FOCAL POINT PANEL
   -------------------------------------------------------------------------- */

.careers-v2-cta-panel {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 24px 60px -10px rgba(15, 23, 42, 0.3);
}

.cta-panel-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(124, 58, 237, 0.15) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-panel-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #60a5fa;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-panel-content h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.cta-panel-content p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 36px;
}

.cta-panel-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.cta-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
}

.cta-trust-badges i {
  color: #38bdf8;
}

.bullet-dot {
  color: #475569;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .careers-v2-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-v2-card-wide {
    grid-column: span 2;
  }

  .hero-banner-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-v2-flow {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }

  .process-v2-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .careers-v2-section {
    padding: 48px 0;
  }

  .careers-v2-highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-v2-card-wide {
    grid-column: 1;
  }

  .highlight-v2-content-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .role-v2-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .role-card-action {
    width: 100%;
  }

  .role-apply-btn {
    width: 100%;
    justify-content: center;
  }

  .opportunities-v2-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .careers-v2-hero-banner {
    padding: 30px 24px;
  }

  .careers-v2-cta-panel {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .hero-banner-stats {
    grid-template-columns: 1fr;
  }

  .role-filter-bar {
    flex-direction: column;
  }

  .role-tab-btn {
    width: 100%;
    justify-content: space-between;
  }
}

/* ==========================================================================
   FORTUNE 500 ENTERPRISE CONTACT US SECTION (V2 MODULE)
   ========================================================================== */

.contact-v2-section {
  position: relative;
  padding: 80px 0 120px 0;
  background: #ffffff;
  overflow: hidden;
}

/* Ambient Background Canvas */
.contact-v2-bg-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
  pointer-events: none;
  animation: orbFloatSlow 18s ease-in-out infinite alternate;
}

.contact-orb.orb-blue {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, #2563eb, transparent 70%);
}

.contact-orb.orb-emerald {
  width: 450px;
  height: 450px;
  top: 25%;
  right: -100px;
  background: radial-gradient(circle, #059669, transparent 70%);
  animation-delay: -4s;
}

.contact-orb.orb-purple {
  width: 400px;
  height: 400px;
  bottom: 20%;
  left: -80px;
  background: radial-gradient(circle, #9333ea, transparent 70%);
  animation-delay: -8s;
}

.contact-orb.orb-cyan {
  width: 380px;
  height: 380px;
  bottom: -50px;
  right: 15%;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  animation-delay: -12s;
}

.contact-orb.orb-amber {
  width: 350px;
  height: 350px;
  top: 45%;
  left: 30%;
  background: radial-gradient(circle, #d97706, transparent 70%);
  animation-delay: -6s;
}

@keyframes orbFloatSlow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -40px) scale(1.08);
  }

  100% {
    transform: translate(-25px, 35px) scale(0.95);
  }
}

.contact-mesh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(248, 250, 252, 0.8) 100%);
}

.contact-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.7;
}

.contact-v2-shell {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Section Header & Typography
   -------------------------------------------------------------------------- */

.contact-v2-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 56px;
}

.contact-v2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.15);
  margin-bottom: 20px;
}

.kicker-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 10px #2563eb;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

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

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.kicker-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #1e40af;
  text-transform: uppercase;
}

.contact-v2-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.accent-word {
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-word.accent-blue {
  background-image: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.accent-word.accent-emerald {
  background-image: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.accent-word.accent-purple {
  background-image: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
}

.contact-v2-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  max-width: 760px;
  margin: 0 auto 28px;
}

/* Multi-Color Animated Divider */
.contact-v2-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  width: 140px;
  margin: 0 auto;
}

.divider-line {
  height: 3px;
  border-radius: 999px;
  flex: 1;
}

.line-blue {
  background: #2563eb;
}

.line-emerald {
  background: #059669;
}

.line-purple {
  background: #9333ea;
}

.divider-glow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #06b6d4;
  box-shadow: 0 0 12px #06b6d4;
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {

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

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

/* --------------------------------------------------------------------------
   Contact Info Cards Showcase Grid (7 Multi-Color Cards)
   -------------------------------------------------------------------------- */

.contact-v2-cards-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-bottom: 56px;
}

.contact-card-v2 {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.card-glow-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.contact-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.contact-card-v2:hover .card-glow-bg {
  opacity: 1;
}

/* Multi-Color Card Themes */

/* Royal Blue */
.card-theme-blue {
  border-top: 4px solid #2563eb;
}

.card-theme-blue .card-glow-bg {
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 70%);
}

.card-theme-blue:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.card-theme-blue .card-icon-container {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.tag-blue {
  background: rgba(37, 99, 235, 0.08);
  color: #1e40af;
}

.link-blue {
  color: #2563eb;
}

.badge-blue {
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}

/* Emerald Green */
.card-theme-emerald {
  border-top: 4px solid #059669;
}

.card-theme-emerald .card-glow-bg {
  background: radial-gradient(circle at top right, rgba(5, 150, 105, 0.08), transparent 70%);
}

.card-theme-emerald:hover {
  border-color: rgba(5, 150, 105, 0.3);
}

.card-theme-emerald .card-icon-container {
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.tag-emerald {
  background: rgba(5, 150, 105, 0.08);
  color: #065f46;
}

.link-emerald {
  color: #059669;
}

.badge-emerald {
  background: rgba(5, 150, 105, 0.06);
  color: #059669;
}

/* Deep Indigo */
.card-theme-indigo {
  border-top: 4px solid #4f46e5;
}

.card-theme-indigo .card-glow-bg {
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.08), transparent 70%);
}

.card-theme-indigo:hover {
  border-color: rgba(79, 70, 229, 0.3);
}

.card-theme-indigo .card-icon-container {
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.15);
}

.tag-indigo {
  background: rgba(79, 70, 229, 0.08);
  color: #3730a3;
}

.link-indigo {
  color: #4f46e5;
}

.badge-indigo {
  background: rgba(79, 70, 229, 0.06);
  color: #4f46e5;
}

/* Premium Purple */
.card-theme-purple {
  border-top: 4px solid #9333ea;
}

.card-theme-purple .card-glow-bg {
  background: radial-gradient(circle at top right, rgba(147, 51, 234, 0.08), transparent 70%);
}

.card-theme-purple:hover {
  border-color: rgba(147, 51, 234, 0.3);
}

.card-theme-purple .card-icon-container {
  background: rgba(147, 51, 234, 0.08);
  color: #9333ea;
  border: 1px solid rgba(147, 51, 234, 0.15);
}

.tag-purple {
  background: rgba(147, 51, 234, 0.08);
  color: #6b21a8;
}

.link-purple {
  color: #9333ea;
}

.badge-purple {
  background: rgba(147, 51, 234, 0.06);
  color: #9333ea;
}

/* Soft Cyan */
.card-theme-cyan {
  border-top: 4px solid #06b6d4;
}

.card-theme-cyan .card-glow-bg {
  background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.08), transparent 70%);
}

.card-theme-cyan:hover {
  border-color: rgba(6, 182, 212, 0.3);
}

.card-theme-cyan .card-icon-container {
  background: rgba(6, 182, 212, 0.08);
  color: #0891b2;
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.tag-cyan {
  background: rgba(6, 182, 212, 0.08);
  color: #155e75;
}

.link-cyan {
  color: #0891b2;
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.06);
  color: #0891b2;
}

/* Amber */
.card-theme-amber {
  border-top: 4px solid #d97706;
}

.card-theme-amber .card-glow-bg {
  background: radial-gradient(circle at top right, rgba(217, 119, 6, 0.08), transparent 70%);
}

.card-theme-amber:hover {
  border-color: rgba(217, 119, 6, 0.3);
}

.card-theme-amber .card-icon-container {
  background: rgba(217, 119, 6, 0.08);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.tag-amber {
  background: rgba(217, 119, 6, 0.08);
  color: #92400e;
}

.text-amber {
  color: #d97706;
}

.badge-amber {
  background: rgba(217, 119, 6, 0.06);
  color: #d97706;
}

/* Teal */
.card-theme-teal {
  border-top: 4px solid #0d9488;
}

.card-theme-teal .card-glow-bg {
  background: radial-gradient(circle at top right, rgba(13, 148, 136, 0.08), transparent 70%);
}

.card-theme-teal:hover {
  border-color: rgba(13, 148, 136, 0.3);
}

.card-theme-teal .card-icon-container {
  background: rgba(13, 148, 136, 0.08);
  color: #0d9488;
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.tag-teal {
  background: rgba(13, 148, 136, 0.08);
  color: #115e59;
}

.link-teal {
  color: #0d9488;
}

.badge-teal {
  background: rgba(13, 148, 136, 0.06);
  color: #0d9488;
}

/* Common Card Internal Components */

.card-icon-container {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card-v2:hover .card-icon-container {
  transform: scale(1.1) rotate(-4deg);
}

.card-details {
  margin-bottom: 20px;
}

.card-category-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.card-details h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.card-details p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 14px;
}

.card-link-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.card-link-action:hover {
  gap: 10px;
}

.card-info-text {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
}

.card-sla-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Main Layout Grid (Form Left + Company Panel Right)
   -------------------------------------------------------------------------- */

.contact-v2-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 70px;
}

/* --------------------------------------------------------------------------
   Left Column: Premium Contact Form Card
   -------------------------------------------------------------------------- */

.contact-v2-form-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 38px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.form-card-header {
  margin-bottom: 28px;
}

.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.06);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.form-card-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.form-card-header p {
  font-size: 0.94rem;
  color: #64748b;
  line-height: 1.6;
}

/* Multi-Color Category Selector Pills */

.contact-v2-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-v2-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-v2-cat-pill:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
  color: #0f172a;
}

.contact-v2-cat-pill.active {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-blue {
  background: #2563eb;
}

.dot-emerald {
  background: #059669;
}

.dot-purple {
  background: #9333ea;
}

.dot-teal {
  background: #0d9488;
}

.dot-cyan {
  background: #06b6d4;
}

.dot-indigo {
  background: #4f46e5;
}

.dot-amber {
  background: #d97706;
}

.pill-blue.active {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.08);
  color: #1e40af;
}

.pill-emerald.active {
  border-color: rgba(5, 150, 105, 0.4);
  background: rgba(5, 150, 105, 0.08);
  color: #065f46;
}

.pill-purple.active {
  border-color: rgba(147, 51, 234, 0.4);
  background: rgba(147, 51, 234, 0.08);
  color: #6b21a8;
}

.pill-teal.active {
  border-color: rgba(13, 148, 136, 0.4);
  background: rgba(13, 148, 136, 0.08);
  color: #115e59;
}

.pill-cyan.active {
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.08);
  color: #155e75;
}

.pill-indigo.active {
  border-color: rgba(79, 70, 229, 0.4);
  background: rgba(79, 70, 229, 0.08);
  color: #3730a3;
}

.pill-amber.active {
  border-color: rgba(217, 119, 6, 0.4);
  background: rgba(217, 119, 6, 0.08);
  color: #92400e;
}

/* --------------------------------------------------------------------------
   Floating Label Form Controls
   -------------------------------------------------------------------------- */

.contact-v2-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-v2-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-v2-row.compact-row {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact-v2-floating-field {
  position: relative;
  width: 100%;
}

.contact-v2-floating-field input,
.contact-v2-floating-field textarea,
.contact-v2-floating-field select {
  width: 100%;
  padding: 24px 16px 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  outline: none;
  transition: all 0.25s ease;
  appearance: none;
}

.contact-v2-floating-field label {
  position: absolute;
  top: 17px;
  left: 16px;
  font-size: 0.9rem;
  color: #64748b;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left top;
}

/* Floating Label Active Trigger States */
.contact-v2-floating-field input:focus~label,
.contact-v2-floating-field input:not(:placeholder-shown)~label,
.contact-v2-floating-field.has-value input~label,
.contact-v2-floating-field textarea:focus~label,
.contact-v2-floating-field textarea:not(:placeholder-shown)~label,
.contact-v2-floating-field.has-value textarea~label,
.contact-v2-floating-field select:focus~label,
.contact-v2-floating-field.has-value select~label {
  top: 6px;
  transform: scale(0.78);
  color: #2563eb;
  font-weight: 700;
}

.contact-v2-floating-field input:focus,
.contact-v2-floating-field textarea:focus,
.contact-v2-floating-field select:focus {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.select-field {
  position: relative;
}

.select-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  font-size: 0.8rem;
}

.textarea-field textarea {
  resize: vertical;
  min-height: 110px;
}

/* File Upload Custom Field */

.contact-v2-file-field {
  position: relative;
}

.file-custom-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: 14px;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.file-custom-label:hover {
  background: #ffffff;
  border-color: #2563eb;
  color: #2563eb;
}

.contact-v2-file-field input[type="file"] {
  display: none;
}

/* Consent Checkbox */

.contact-v2-consent-wrap {
  position: relative;
}

.consent-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.5;
}

.consent-checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(15, 23, 42, 0.25);
  background: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
  position: relative;
}

.consent-checkbox-label input[type="checkbox"]:checked~.checkbox-box {
  background: #2563eb;
  border-color: #2563eb;
}

.consent-checkbox-label input[type="checkbox"]:checked~.checkbox-box::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: bold;
}

.consent-text a {
  color: #2563eb;
  text-decoration: underline;
}

/* Error Shake Animation for Validation */
.error-shake {
  animation: shakeField 0.5s ease-in-out;
}

.error-shake input,
.error-shake textarea,
.error-shake select {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12) !important;
}

@keyframes shakeField {

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

  20%,
  60% {
    transform: translateX(-6px);
  }

  40%,
  80% {
    transform: translateX(6px);
  }
}

/* Submit Action Bar & Magnetic Button */

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}

.contact-v2-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.contact-v2-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.38);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
}

.contact-v2-submit-btn:hover .btn-shine {
  left: 150%;
}

.btn-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.btn-spinner {
  display: none;
  animation: spinSlow 1s linear infinite;
}

.contact-v2-submit-btn.loading .send-icon {
  display: none;
}

.contact-v2-submit-btn.loading .btn-spinner {
  display: inline-block;
}

.contact-v2-submit-btn.loading {
  opacity: 0.85;
  pointer-events: none;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

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

.form-trust-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}

.form-trust-note i {
  color: #059669;
}

/* Status Alert Messages */

.form-status-v2 {
  margin-top: 16px;
  font-size: 0.9rem;
  border-radius: 14px;
}

.form-status-v2.error {
  padding: 12px 16px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-status-v2.info {
  padding: 12px 16px;
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-success-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  color: #166534;
  animation: slideFadeDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideFadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.success-icon {
  font-size: 1.4rem;
  color: #16a34a;
}

.success-copy strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.success-copy span {
  font-size: 0.88rem;
  color: #15803d;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Right Column: Executive Company Information Panel
   -------------------------------------------------------------------------- */

.contact-v2-company-card {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 26px;
  padding: 36px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.company-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.kicker-glow {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
}

.company-card-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.company-intro-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
}

/* Direct Channels Stack */

.company-channels-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.channel-item:hover {
  transform: translateX(4px);
  border-color: rgba(37, 99, 235, 0.2);
}

.channel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-blue .channel-icon {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.item-emerald .channel-icon {
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
}

.item-cyan .channel-icon {
  background: rgba(6, 182, 212, 0.08);
  color: #0891b2;
}

.channel-info strong {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.channel-info a,
.channel-info span {
  font-size: 0.96rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.channel-info a:hover {
  color: #2563eb;
}

/* Business Hours Schedule Box */

.company-hours-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hours-box-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-box-title i {
  color: #d97706;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: #475569;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-row strong {
  color: #0f172a;
}

.hours-row.dim span,
.hours-row.dim strong {
  color: #94a3b8;
}

/* Social Connection Pills */

.company-social-block h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.company-social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.pill-linkedin:hover {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.3);
  background: rgba(10, 102, 194, 0.06);
}

.pill-github:hover {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.3);
  background: rgba(15, 23, 42, 0.06);
}

.pill-instagram:hover {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.3);
  background: rgba(225, 48, 108, 0.06);
}

.pill-facebook:hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.3);
  background: rgba(24, 119, 242, 0.06);
}

/* Trust Strip */

.company-trust-strip {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #059669;
  background: rgba(5, 150, 105, 0.06);
  padding: 6px 12px;
  border-radius: 8px;
}

/* --------------------------------------------------------------------------
   FAQ Accordion & Bottom Consultation Banner
   -------------------------------------------------------------------------- */

.contact-v2-bottom-strip {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-v2-faq-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 40px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
}

.faq-card-intro {
  margin-bottom: 30px;
}

.faq-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #9333ea;
  background: rgba(147, 51, 234, 0.06);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.faq-card-intro h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.faq-card-intro p {
  font-size: 0.95rem;
  color: #64748b;
}

.contact-v2-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-v2-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #f8fafc;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-v2-item.active {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
}

.faq-v2-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.trigger-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
}

.trigger-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.icon-blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.icon-emerald {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.icon-purple {
  background: rgba(147, 51, 234, 0.1);
  color: #9333ea;
}

.icon-amber {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

.trigger-chevron {
  color: #64748b;
  transition: transform 0.3s ease;
}

.faq-v2-item.active .trigger-chevron {
  transform: rotate(180deg);
  color: #2563eb;
}

.faq-v2-content {
  display: none;
  padding: 0 22px 20px 68px;
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.7;
}

.faq-v2-item.active .faq-v2-content {
  display: block;
}

.faq-v2-content a {
  color: #2563eb;
  text-decoration: underline;
}

/* Consultation Bottom Banner */

.contact-v2-cta-banner {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 28px;
  padding: 48px;
  overflow: hidden;
  color: #ffffff;
  margin-top: 50px;
  margin-bottom: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.25), transparent 60%),
    radial-gradient(circle at bottom left, rgba(5, 150, 105, 0.2), transparent 60%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.cta-banner-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-banner-content p {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-blue-glow {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.btn-blue-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.45);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Executive Inquiry Desk - Complete Mobile Responsive Overhaul
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .contact-v2-main-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-v2-form-card,
  .contact-v2-company-card {
    padding: 32px 24px;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .contact-v2-section {
    padding: 45px 0 85px 0;
    width: 100%;
    overflow: hidden;
  }

  .contact-v2-shell {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-v2-header {
    margin-bottom: 28px;
    text-align: center;
    width: 100%;
  }

  .contact-v2-kicker {
    font-size: 0.68rem;
    padding: 4px 10px;
    letter-spacing: 0.1em;
  }

  .contact-v2-title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 12px;
  }

  .contact-v2-subtitle {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .contact-v2-cards-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .contact-card-v2 {
    padding: 20px 16px;
    border-radius: 18px;
    width: 100%;
    box-sizing: border-box;
  }

  .card-details h4 {
    font-size: 1.1rem;
  }

  .card-details p {
    font-size: 0.86rem;
  }

  .contact-v2-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
    width: 100%;
  }

  .contact-v2-form-card,
  .contact-v2-company-card {
    padding: 22px 16px;
    border-radius: 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .form-card-header {
    margin-bottom: 20px;
  }

  .form-header-badge {
    font-size: 0.68rem;
    padding: 5px 10px;
  }

  .form-card-header h3,
  .company-card-header h3 {
    font-size: 1.3rem;
    line-height: 1.25;
  }

  .form-card-header p,
  .company-intro-desc {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  /* Category Selector Bar on Mobile */
  .contact-v2-category-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin-bottom: 20px;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-v2-category-bar::-webkit-scrollbar {
    display: none;
  }

  .contact-v2-cat-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 0.78rem;
    min-height: 38px;
    touch-action: pan-y;
  }

  /* Form Fields Stacking */
  .contact-v2-form {
    gap: 16px;
    width: 100%;
  }

  .form-v2-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .form-v2-row.compact-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .contact-v2-floating-field {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-v2-floating-field input,
  .contact-v2-floating-field textarea,
  .contact-v2-floating-field select {
    font-size: 16px;
    padding: 22px 14px 8px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-v2-floating-field select {
    padding-right: 38px;
  }

  .contact-v2-floating-field label {
    font-size: 0.85rem;
    left: 14px;
    top: 14px;
    max-width: calc(100% - 28px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .contact-v2-floating-field input:focus~label,
  .contact-v2-floating-field input:not(:placeholder-shown)~label,
  .contact-v2-floating-field.has-value input~label,
  .contact-v2-floating-field textarea:focus~label,
  .contact-v2-floating-field textarea:not(:placeholder-shown)~label,
  .contact-v2-floating-field.has-value textarea~label,
  .contact-v2-floating-field select:focus~label,
  .contact-v2-floating-field.has-value select~label {
    top: 4px;
    transform: scale(0.75);
  }

  /* File Input & Label */
  .contact-v2-file-field {
    width: 100%;
    box-sizing: border-box;
  }

  .file-custom-label {
    padding: 12px 14px;
    font-size: 0.8rem;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  #contactFileName {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Consent Wrap */
  .contact-v2-consent-wrap {
    width: 100%;
  }

  .consent-checkbox-label {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Submit Row */
  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 4px;
    width: 100%;
  }

  .contact-v2-submit-btn {
    width: 100%;
    min-height: 50px;
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: 12px;
    justify-content: center;
    box-sizing: border-box;
  }

  .form-trust-note {
    justify-content: center;
    text-align: center;
    font-size: 0.74rem;
    width: 100%;
  }

  /* Company Card Channels */
  .company-channels-stack {
    gap: 10px;
    width: 100%;
  }

  .channel-item {
    padding: 12px;
    gap: 10px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .channel-info strong {
    font-size: 0.74rem;
  }

  .channel-info a,
  .channel-info span {
    font-size: 0.86rem;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .company-hours-box {
    padding: 14px;
    border-radius: 14px;
  }

  .hours-row {
    font-size: 0.8rem;
  }

  .company-social-pills {
    gap: 6px;
  }

  .social-pill {
    padding: 7px 11px;
    font-size: 0.76rem;
  }

  .company-trust-strip {
    flex-wrap: wrap;
    gap: 6px;
  }

  .trust-pill {
    font-size: 0.72rem;
    padding: 5px 8px;
  }

  /* FAQ & CTA Banner */
  .contact-v2-faq-card {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .faq-card-intro h3 {
    font-size: 1.35rem;
  }

  .faq-v2-trigger {
    padding: 14px 14px;
  }

  .trigger-title {
    font-size: 0.92rem;
    gap: 10px;
  }

  .faq-v2-content {
    padding: 0 14px 16px 14px;
    font-size: 0.88rem;
  }

  .contact-v2-cta-banner {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .cta-banner-content h3 {
    font-size: 1.45rem;
  }

  .cta-banner-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .cta-banner-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .cta-v2-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .contact-v2-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-v2-form-card,
  .contact-v2-company-card {
    padding: 18px 12px;
    border-radius: 16px;
  }
}

/* --------------------------------------------------------------------------
   Mobile Touch Slider System & Centered Core Values Header (<= 820px)
   -------------------------------------------------------------------------- */

@media (max-width: 820px) {

  /* Center Core Values Heading on Mobile */
  .about-values-section .values-slider-header-row,
  .values-slider-header-row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
  }

  .about-values-section .section-heading-tight,
  .about-values-section .section-head,
  .values-slider-header-row .section-heading-row,
  .values-slider-header-row .section-head {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  .values-slider-nav-controls {
    justify-content: center !important;
    margin: 0 auto !important;
  }

  /* Universal Section Boxes Touch Slider on Mobile */
  .mobile-slider-active {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding-bottom: 14px !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mobile-slider-active::-webkit-scrollbar {
    display: none !important;
  }

  .mobile-slider-active>* {
    flex: 0 0 86% !important;
    min-width: 250px !important;
    max-width: 86% !important;
    scroll-snap-align: center !important;
    touch-action: pan-y !important;
    box-sizing: border-box !important;
  }

  .mobile-slider-active.is-dragging {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    cursor: grabbing !important;
  }

  .slider-dots-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 16px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .slider-dot.active {
    width: 24px;
    border-radius: 999px;
    background: #2563eb;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
  }

  /* Future Ecosystem & Global Horizons Mobile Responsiveness */
  .future-ecosystem-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .future-ecosystem-section,
  .future-global-section {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 22px 16px !important;
    border-radius: 20px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .future-section-heading h3,
  .future-global-copy h3 {
    font-size: clamp(1.2rem, 4.8vw, 1.4rem) !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .fv-heading-sub,
  .future-global-copy p {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .future-ecosystem-grid {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .future-ecosystem-card {
    font-size: 0.85rem !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    box-sizing: border-box !important;
  }

  .future-global-orbit {
    width: 150px !important;
    height: 150px !important;
    margin: 16px auto 0 !important;
    max-width: 100% !important;
  }

  .fv-orbit-center {
    width: 42px !important;
    height: 42px !important;
  }

  .future-statement,
  .future-cta {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 24px 16px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .future-cta h3 {
    font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
    word-break: break-word !important;
  }
}

@media (max-width: 480px) {

  .future-ecosystem-section,
  .future-global-section {
    padding: 18px 12px !important;
    border-radius: 16px !important;
  }

  .future-global-orbit {
    width: 130px !important;
    height: 130px !important;
  }

  .fv-ring-2 {
    inset: 16px !important;
  }

  .fv-ring-3 {
    inset: 32px !important;
  }
}

/* ================= LEGAL PAGES DESIGN SYSTEM ================= */

.legal-page-wrapper {
  padding-top: 110px;
  padding-bottom: 90px;
  min-height: 80vh;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 40%);
}

.legal-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Breadcrumb Navigation */
.legal-breadcrumb {
  margin-bottom: 24px;
}

.legal-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
}

.legal-breadcrumb a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-breadcrumb a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.legal-breadcrumb .separator {
  color: #cbd5e1;
  font-size: 0.8rem;
}

.legal-breadcrumb [aria-current="page"] {
  color: #1e293b;
  font-weight: 600;
}

/* Clean Page Hero Header */
.legal-hero-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.legal-title {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.legal-description {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: #475569;
  line-height: 1.6;
  max-width: 820px;
  margin-bottom: 18px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.legal-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legal-meta-divider {
  color: #cbd5e1;
}

/* Main Layout Grid */
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}

/* Desktop Sidebar TOC */
.legal-sidebar {
  position: sticky;
  top: 100px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.legal-toc-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #334155;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-toc-link {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.86rem;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.legal-toc-link:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.legal-toc-link.active {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  font-weight: 600;
  border-left: 3px solid #2563eb;
  padding-left: 9px;
}

/* Main Content Container Card */
.legal-content-card {
  max-width: 900px;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.legal-section {
  margin-bottom: 36px;
  scroll-margin-top: 110px;
}

.legal-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-section p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.legal-section li {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 8px;
}

.legal-callout {
  background: rgba(255, 247, 237, 0.9);
  border: 1px solid #fed7aa;
  border-left: 4px solid #f97316;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 22px 0;
  color: #9a2c00;
}

.legal-callout strong {
  color: #c2410c;
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.legal-callout p {
  color: #9a2c00;
  margin-bottom: 0;
}

.legal-callout a {
  color: #c2410c;
  font-weight: 600;
  text-decoration: underline;
}

.legal-table-wrap {
  overflow-x: auto;
  touch-action: pan-y;
  margin: 22px 0;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.legal-table th {
  background: #f8fafc;
  color: #1e293b;
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
}

.legal-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

/* Interlinking Cards Box */
.legal-interlinks-box {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.legal-interlinks-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.legal-chip:hover {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

.legal-chip.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* Bottom Action Buttons */
.legal-actions-box {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.legal-actions-box .hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 0.95rem;
  text-decoration: none;
}

/* Sitemap Page Specific Styling */
.sitemap-search-wrap {
  margin-bottom: 30px;
  position: relative;
}

.sitemap-search-input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border-radius: 16px;
  border: 1px solid #cbd5e1;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.sitemap-search-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.sitemap-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.1rem;
}

.sitemap-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.sitemap-group-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  transition: all 0.25s ease;
}

.sitemap-group-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.sitemap-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sitemap-group-title i {
  color: #2563eb;
}

.sitemap-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sitemap-link-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitemap-link-item a:hover {
  color: #2563eb;
}

.sitemap-link-item a i {
  font-size: 0.75rem;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.sitemap-link-item a:hover i {
  transform: translateX(3px);
  color: #2563eb;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    display: none;
    /* Hide TOC sidebar on mobile/tablet to give full width to reading card */
  }

  .legal-content-card {
    padding: 30px 22px;
  }
}

@media (max-width: 640px) {
  .legal-page-wrapper {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .legal-title {
    font-size: 1.8rem;
  }

  .legal-content-card {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .legal-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .legal-meta-divider {
    display: none;
  }

  .legal-actions-box {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-actions-box .hero-button {
    width: 100%;
  }
}

/* ================= LEGAL PAGES BRAND RED ACCENT NAVBAR ================= */
.legal-navbar,
body.legal-page .navbar {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.95), rgba(185, 28, 28, 0.92)) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 8px 30px rgba(229, 9, 20, 0.25) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.legal-navbar.scrolled,
body.legal-page .navbar.scrolled {
  background: linear-gradient(135deg, #e50914 0%, #dc2626 50%, #991b1b 100%) !important;
  box-shadow: 0 10px 30px rgba(153, 27, 27, 0.45) !important;
  padding: 7px 30px;
}

.legal-navbar nav a,
body.legal-page .navbar nav a {
  color: #ffffff !important;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.legal-navbar nav a:hover,
body.legal-page .navbar nav a:hover {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.legal-navbar nav a::after,
body.legal-page .navbar nav a::after {
  background: #ffffff !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.legal-navbar .logo-text,
body.legal-page .navbar .logo-text {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.legal-navbar .logo-tagline,
body.legal-page .navbar .logo-tagline {
  color: rgba(255, 255, 255, 0.9) !important;
}

.legal-navbar .hamburger span,
body.legal-page .navbar .hamburger span {
  background: #ffffff !important;
}

/* ================= LEGAL PAGES MOBILE HAMBURGER MENU OPTIONS ================= */
@media (max-width: 1024px) {

  .legal-navbar .hamburger,
  body.legal-page .navbar .hamburger {
    display: flex !important;
    z-index: 1001;
  }

  .legal-navbar nav,
  body.legal-page .navbar nav,
  .legal-navbar nav.mobile-menu,
  body.legal-page .navbar nav.mobile-menu {
    background: linear-gradient(135deg, #8b0000 0%, #b91c1c 50%, #7f1d1d 100%) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
    z-index: 1000;
  }

  .legal-navbar nav.mobile-menu.active,
  body.legal-page .navbar nav.mobile-menu.active,
  .legal-navbar nav.active,
  body.legal-page .navbar nav.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .legal-navbar nav.mobile-menu a,
  body.legal-page .navbar nav.mobile-menu a,
  .legal-navbar nav a,
  body.legal-page .navbar nav a {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 14px 25px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    display: block !important;
  }

  .legal-navbar nav.mobile-menu a:hover,
  body.legal-page .navbar nav.mobile-menu a:hover,
  .legal-navbar nav a:hover,
  body.legal-page .navbar nav a:hover {
    color: #ffeb3b !important;
    background: rgba(255, 255, 255, 0.12) !important;
    text-shadow: 0 0 8px rgba(255, 235, 59, 0.8) !important;
  }
}

/* ================= CORPORATE INNER PAGES REDDISH NAVBAR ALIASES ================= */
.navbar-red,
header.navbar.navbar-red,
body.inner-page header.navbar {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.95), rgba(185, 28, 28, 0.92)) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 8px 30px rgba(229, 9, 20, 0.25) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar-red.scrolled,
header.navbar.navbar-red.scrolled,
body.inner-page header.navbar.scrolled {
  background: linear-gradient(135deg, #e50914 0%, #dc2626 50%, #991b1b 100%) !important;
  box-shadow: 0 10px 30px rgba(153, 27, 27, 0.45) !important;
  padding: 7px 30px;
}

.navbar-red nav a,
body.inner-page header.navbar nav a {
  color: #ffffff !important;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar-red nav a:hover,
body.inner-page header.navbar nav a:hover {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.navbar-red .logo-text,
body.inner-page header.navbar .logo-text {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-red .logo-tagline,
body.inner-page header.navbar .logo-tagline {
  color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-red .hamburger span,
body.inner-page header.navbar .hamburger span {
  background: #ffffff !important;
}

/* ================= DEDICATED CORPORATE PAGE HEADER BANNER (LIGHT THEME) ================= */
.inner-header-banner {
  position: relative;
  padding: 130px 24px 55px 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 60%, #F1F5F9 100%);
  border-bottom: 1px solid #E2E8F0;
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
}

.inner-header-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 480px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(99, 102, 241, 0.04) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.inner-header-container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  background: #FFFFFF;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid #E2E8F0;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.inner-breadcrumb a {
  color: #2563EB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.inner-breadcrumb a:hover {
  color: #1D4ED8;
  text-decoration: underline;
}

.breadcrumb-separator {
  font-size: 0.7rem;
  color: #94A3B8;
}

.breadcrumb-current {
  color: #0F172A;
  font-weight: 600;
}

.inner-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.inner-header-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563EB;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
}

.inner-header-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #334155 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 0 14px 0;
  text-shadow: none;
}

.inner-header-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #4F46E5, #10B981);
  border-radius: 2px;
  margin: 6px 0 18px 0;
}

.inner-header-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  color: #475569;
  font-weight: 400;
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto;
}

/* ================= INNER PAGES MOBILE VERTICAL STACK & NO SLIDERS ================= */
@media (max-width: 768px) {

  body.inner-page .slider-container,
  body.inner-page .card-slider,
  body.inner-page .slider-wrapper,
  body.inner-page .horizontal-scroll,
  body.inner-page .ventures-slider,
  body.inner-page .tech-slider,
  body.inner-page .careers-slider,
  body.inner-page .insights-slider,
  .inner-page .slider-track,
  .inner-header-banner+* .slider-container,
  .inner-header-banner+* .card-slider {
    display: flex !important;
    flex-direction: column !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    gap: 20px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    transform: none !important;
  }

  .inner-header-banner {
    padding: 110px 16px 40px 16px;
    margin-bottom: 20px;
  }

  .inner-header-title {
    font-size: 2.1rem;
  }

  .inner-header-subtitle {
    font-size: 0.98rem;
  }

  .inner-breadcrumb {
    font-size: 0.78rem;
    padding: 5px 12px;
  }
}

/* ================= FORTUNE 500 INNER PAGES CORPORATE LIGHT STYLING ================= */
.corp-page-wrapper {
  background: #FCFCFD;
  color: #1E293B;
  font-family: 'Poppins', Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
}

.corp-section {
  padding: 80px 24px;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

/* Support alternate section shading */
.corp-section[style*="background"] {
  background: #F8FAFC !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.corp-section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 50px auto;
}

.corp-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.22);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.corp-section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.corp-section-subtitle {
  font-size: 1.08rem;
  color: #475569;
  line-height: 1.7;
}

.corp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.corp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.corp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {

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

@media (max-width: 768px) {
  .corp-section {
    padding: 50px 16px;
  }

  .corp-grid-2,
  .corp-grid-3,
  .corp-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Modern Premium Light Corporate Card */
.corp-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.corp-card:hover {
  transform: translateY(-5px);
  border-color: #CBD5E1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
  background: #FFFFFF;
}

/* Vibrant Individual Corporate Icons */
.corp-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(79, 70, 229, 0.15) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #2563EB;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.corp-card:hover .corp-card-icon {
  transform: scale(1.08) translateY(-2px);
}

/* Vibrant Icon Accent Palette Rotation */
.corp-card:nth-child(6n+1) .corp-card-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(59, 130, 246, 0.18) 100%);
  border-color: rgba(37, 99, 235, 0.25);
  color: #2563EB;
}

.corp-card:nth-child(6n+2) .corp-card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.18) 100%);
  border-color: rgba(16, 185, 129, 0.25);
  color: #059669;
}

.corp-card:nth-child(6n+3) .corp-card-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(99, 102, 241, 0.18) 100%);
  border-color: rgba(124, 58, 237, 0.25);
  color: #7C3AED;
}

.corp-card:nth-child(6n+4) .corp-card-icon {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, rgba(6, 182, 212, 0.18) 100%);
  border-color: rgba(13, 148, 136, 0.25);
  color: #0D9488;
}

.corp-card:nth-child(6n+5) .corp-card-icon {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.12) 0%, rgba(234, 88, 12, 0.18) 100%);
  border-color: rgba(217, 119, 6, 0.25);
  color: #D97706;
}

.corp-card:nth-child(6n+6) .corp-card-icon {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(56, 189, 248, 0.18) 100%);
  border-color: rgba(2, 132, 199, 0.25);
  color: #0284C7;
}

.corp-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
}

.corp-card-desc {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.corp-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.corp-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #E2E8F0;
}

.corp-tag.red {
  background: rgba(229, 9, 20, 0.08);
  color: #DC2626;
  border-color: rgba(229, 9, 20, 0.2);
}

.corp-tag.blue {
  background: rgba(37, 99, 235, 0.08);
  color: #2563EB;
  border-color: rgba(37, 99, 235, 0.2);
}

.corp-tag.emerald,
.corp-tag.green {
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.2);
}

.corp-tag.purple {
  background: rgba(124, 58, 237, 0.08);
  color: #7C3AED;
  border-color: rgba(124, 58, 237, 0.2);
}

.corp-tag.amber {
  background: rgba(217, 119, 6, 0.08);
  color: #D97706;
  border-color: rgba(217, 119, 6, 0.2);
}

/* Timeline Components (Light Theme) */
.story-timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px 0;
}

.story-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, #2563EB 0%, #4F46E5 50%, #10B981 100%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .story-timeline::before {
    left: 20px;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
  padding: 0 30px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

@media (max-width: 768px) {
  .timeline-item {
    width: 100% !important;
    left: 0 !important;
    padding-left: 50px !important;
    padding-right: 10px !important;
    text-align: left !important;
  }
}

.timeline-dot {
  position: absolute;
  top: 15px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2563EB;
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

@media (max-width: 768px) {
  .timeline-dot {
    left: 11px !important;
    right: auto !important;
  }
}

.timeline-content {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}

.timeline-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

/* Statistics Grid (Light Corporate Theme) */
.corp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .corp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.corp-stat-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.corp-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.corp-stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #0F172A 0%, #2563EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}

.corp-stat-label {
  font-size: 0.88rem;
  color: #475569;
  font-weight: 600;
}

/* FAQ Accordion Styling (Light Theme) */
.corp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.corp-faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.corp-faq-item:hover {
  border-color: #2563EB;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}

.corp-faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0F172A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.corp-faq-question i {
  color: #2563EB;
  transition: transform 0.3s ease;
}

.corp-faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

/* Corporate Call to Action (Light Enterprise Theme) */
.corp-cta-box {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #F0FDF4 100%) !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
  margin: 60px 0 20px 0;
}

.corp-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.corp-cta-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
}

.corp-cta-desc {
  font-size: 1.05rem;
  color: #475569;
  max-width: 680px;
  margin: 0 auto 30px auto;
}

.corp-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-corp-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e50914 0%, #dc2626 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.35);
  transition: all 0.3s ease;
}

.btn-corp-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.5);
  color: #ffffff;
}

.btn-corp-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #1E293B;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.btn-corp-secondary:hover {
  background: #F8FAFC;
  border-color: #2563EB;
  color: #2563EB;
}