/* Reduce bottom padding for cards section */
.quick-links-section {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/* Reduce top padding for next section */
.section {
  padding-top: 40px !important;
}
/* Getiva Solutions — Modern Insight Global-Inspired Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Primary Brand - Deep Navy/Dark Blue */
  --color-primary: #0a2540;
  --color-primary-light: #1a3a5c;
  --color-primary-dark: #051627;
  
  /* Accent - Vibrant Teal/Green */
  --color-accent: #00c389;
  --color-accent-hover: #00a874;
  --color-accent-light: #e0f7f0;
  --color-accent-glow: rgba(0, 195, 137, 0.3);
  
  /* Secondary - Warm Orange for CTAs */
  --color-cta: #ff6b35;
  --color-cta-hover: #e55a2a;
  
  /* Text Colors */
  --color-text: #1a202c;
  --color-text-muted: #64748b;
  --color-text-light: rgba(255, 255, 255, 0.85);
  
  /* Backgrounds */
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-subtle: #f1f5f9;
  --color-bg-dark: #0a2540;
  --color-bg-darker: #051627;
  
  /* Borders */
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  
  /* Gradients */
  --color-gradient-primary: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  --color-gradient-accent: linear-gradient(135deg, #00c389 0%, #00a874 100%);
  --color-gradient-dark: linear-gradient(180deg, #0a2540 0%, #0d2d4a 50%, #0a2540 100%);
  --color-gradient-hero: linear-gradient(135deg, #051627 0%, #0a2540 50%, #1a3a5c 100%);
  --color-gradient-overlay: linear-gradient(to right, rgba(10, 37, 64, 0.85) 0%, rgba(10, 37, 64, 0.6) 50%, rgba(10, 37, 64, 0.4) 100%);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  --section-padding: 100px;
  --section-padding-sm: 64px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 4px 20px var(--color-accent-glow);
  --shadow-accent: 0 4px 20px rgba(0, 195, 137, 0.25);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
}

/* Accessibility: Skip to main content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

/* ----- Header ----- */
.site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: #fff;
  border-bottom: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Gradient accent line below header */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #0077b6 50%, var(--color-primary) 100%);
  pointer-events: none;
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: transparent;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo:hover {
  color: var(--color-primary);
}

.logo:hover .logo-company {
  color: var(--color-primary-light);
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  object-position: left center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-company {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 1px;
}

@media (max-width: 900px) {
  .logo-tagline {
    display: none;
  }
  .site-header-inner {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .logo-img {
    height: 36px;
    max-width: 40px;
  }
  .logo-company {
    font-size: 1.05rem;
  }
  .logo-tagline {
    display: none;
  }
  .logo-text {
    display: flex;
  }
  .logo {
    gap: 10px;
  }
  .site-header-inner {
    padding: 0 16px;
    height: 64px;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  padding: 8px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
  position: relative;
}

.nav-list a:hover {
  background: transparent;
  color: var(--color-primary);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger: hidden on desktop, shown on tablet/phone */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  border-radius: 6px;
  color: var(--color-primary);
  transition: background 0.2s;
}
.hamburger:hover {
  background: var(--color-bg-alt);
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
body.menu-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
body.menu-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

/* Mobile menu: Right-side slide-in panel over hero */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }
  
  /* Hamburger turns to X when menu is open */
  body.menu-open .hamburger {
    color: var(--color-primary);
  }
  body.menu-open .hamburger:hover {
    background: var(--color-bg-alt);
  }
  
  /* Backdrop overlay */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  body.menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 300px;
    max-width: 85vw;
    background: #ffffff;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 0 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    opacity: 1;
    visibility: visible;
    border-left: 1px solid #e5e7eb;
  }
  
  body.menu-open .main-nav {
    transform: translateX(0);
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  .main-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    text-align: left;
  }
  
  .main-nav .nav-list > li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
  }
  
  body.menu-open .main-nav .nav-list > li {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Stagger animation for each menu item */
  body.menu-open .main-nav .nav-list > li:nth-child(1) { transition-delay: 0.05s; }
  body.menu-open .main-nav .nav-list > li:nth-child(2) { transition-delay: 0.1s; }
  body.menu-open .main-nav .nav-list > li:nth-child(3) { transition-delay: 0.15s; }
  body.menu-open .main-nav .nav-list > li:nth-child(4) { transition-delay: 0.2s; }
  body.menu-open .main-nav .nav-list > li:nth-child(5) { transition-delay: 0.25s; }
  body.menu-open .main-nav .nav-list > li:nth-child(6) { transition-delay: 0.3s; }
  body.menu-open .main-nav .nav-list > li:nth-child(7) { transition-delay: 0.35s; }
  body.menu-open .main-nav .nav-list > li:nth-child(8) { transition-delay: 0.4s; }
  
  .main-nav .nav-list a {
    color: #0a1628;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 24px;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    border: none;
    border-radius: 0;
    background: #ffffff;
  }
  
  .main-nav .nav-list a:hover {
    color: var(--color-accent);
    background: #f1f5f9;
  }
  
  .main-nav .nav-cta {
    flex-direction: column;
    padding: 24px;
    gap: 12px;
    border-bottom: none;
    margin-top: auto;
  }
  
  .main-nav .nav-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  
  .main-nav .nav-cta .btn-primary {
    background: var(--color-accent);
    color: #fff;
  }
  
  .main-nav .nav-cta .btn-primary:hover {
    background: var(--color-accent-hover);
  }
  
  .main-nav .nav-cta .btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
  }
  
  .main-nav .nav-cta .btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 166, 81, 0.15);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.25);
}

.btn-secondary {
  background: transparent;
  color: #374151;
  border: 1.5px solid #d1d5db;
}

.btn-secondary:hover {
  background: #f9fafb;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
}

.btn-white:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ----- Main ----- */
.main {
  min-height: 50vh;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ===== INSIGHT GLOBAL STYLE VIDEO HERO ===== */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: 72px;
  padding-bottom: 0;
  box-sizing: border-box;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,37,64,0.85) 0%, rgba(10,37,64,0.5) 60%, rgba(10,37,64,0.8) 100%);
  z-index: 1;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 60px;
  color: #fff;
}
@media (max-width: 900px) {
  .site-header-inner {
    padding: 0 16px;
  }
  .hero-video-section {
    padding-top: 60px;
    padding-bottom: 0;
    min-height: 40vh;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 60px;
  }
  .hero-video-section {
    padding-top: 50px;
    padding-bottom: 0;
    min-height: 200px;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(0, 195, 137, 0.15);
  border-radius: var(--radius-full);
}

.hero-video-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: #fff;
}

.hero-video-content h1 .highlight {
  color: var(--color-accent);
}

.hero-video-content .hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 36px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-cta-group .btn {
  min-width: 180px;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-cta-group .btn-primary {
  background: var(--color-cta);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.hero-cta-group .btn-primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.hero-cta-group .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-cta-group .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Hero quick links (Insight Global style cards at bottom) */
.hero-quick-links {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
}


.hero-quick-card {
  padding: 32px 28px;
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}



.hero-quick-card:hover {
  background: var(--color-accent);
}

.hero-quick-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-quick-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}

.hero-quick-card:hover p {
  color: rgba(255, 255, 255, 0.95);
}

.hero-quick-card .card-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.hero-quick-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .hero-quick-links {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  .hero-video-section {
    height: auto;
    min-height: 40vh;
    padding-bottom: 0;
  }
  .hero-video-content {
    padding: 120px 24px 40px;
  }
  .hero-video-content h1 {
    font-size: 2.25rem;
  }
  .hero-video-content .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-quick-links {
    position: relative;
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .hero-quick-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ===== PAGE HERO (Secondary pages with video) ===== */
.page-hero-video {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-video .hero-video-bg {
  position: absolute;
  inset: 0;
}

.page-hero-video .hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animated image background with Ken Burns effect */
.page-hero-video .hero-animated-bg {
  overflow: hidden;
}

.page-hero-video .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(1.1) translateX(-2%);
  }
}

.page-hero-video .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.75) 50%, rgba(10, 37, 64, 0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 60px;
  color: #fff;
}

.page-hero-content .hero-eyebrow {
  margin-bottom: 16px;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.page-hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 500px;
}

@media (max-width: 768px) {
  .page-hero-video {
    height: 50vh;
    min-height: 350px;
  }
  
  .page-hero-content {
    padding: 0 24px;
  }
  
  .page-hero-content h1 {
    font-size: 1.75rem;
  }
}

/* ----- Enterprise Hero (legacy support) ----- */
.hero-enterprise {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  color: #fff;
  padding: 48px 32px 48px;
  text-align: center;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero with video loop: video full-bleed, overlay for readable text */
.hero-enterprise--video {
  min-height: 0;
  height: 600px;
  max-height: 75vh;
  padding: 80px 32px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-enterprise-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero-enterprise--video .hero-enterprise-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* Hero background with simple overlay */
.hero-enterprise--with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

/* Optional: add real hero image. In HTML: style="--hero-bg-url: url('path/to/hero.jpg')" on the section. */
.hero-enterprise--with-bg {
  background-color: var(--color-primary-dark);
  background-image: var(--hero-bg-url, linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%));
  background-size: cover;
  background-position: center;
  min-height: 520px;
  max-height: 600px;
  height: auto;
}

.hero-enterprise-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-enterprise .container.hero-enterprise-content {
  width: 100%;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 12px;
}

.hero-company-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin: 12px 0 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-tagline-highlight {
  display: inline-block;
  color: #fff;
  background: var(--color-accent);
  padding: 0.5em 1.4em;
  border-radius: 30px;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  box-shadow: none;
  margin: 0 2px;
}

.hero-tagline-full {
  padding: 0.5em 1.6em;
  font-size: 0.9rem;
}

.hero-enterprise h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  margin: 0 0 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.hero-enterprise .subhead {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto 16px;
}

.hero-enterprise .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.hero-enterprise .btn-primary {
  background: var(--color-accent);
  color: #fff;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: none;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-enterprise .btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 166, 81, 0.3);
}

.hero-enterprise .btn-secondary {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  background: transparent;
  transition: all 0.2s ease;
}

.hero-enterprise .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
  color: #fff;
  transform: translateY(-2px);
}

/* ----- Section enhancements ----- */
.section--elevated {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  box-shadow: 0 1px 0 var(--color-border-light);
}

.section-image-bar {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.12);
}

.section-image-bar-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ----- Stats section ----- */
.stats-section {
  background: var(--color-bg-dark);
  padding: 72px 32px 80px;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.2s ease;
}
  right: 0;
  height: 3px;
  background: var(--color-gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-value {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

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

/* ----- Capabilities Banner (Scrolling) ----- */
.capabilities-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 24px 0;
  overflow: hidden;
}

.capabilities-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.capabilities-track:hover {
  animation-play-state: paused;
}

.capability-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: #fff;
  transition: all 0.3s ease;
}

.capability-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.capability-badge svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.capability-badge span {
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .capabilities-banner {
    padding: 16px 0;
  }
  
  .capability-badge {
    padding: 10px 18px;
  }
  
  .capability-badge span {
    font-size: 0.85rem;
  }
}

/* ----- Industries Section (Carousel like Testimonials) ----- */
.industries-section {
  background: var(--color-bg-alt);
  padding: 80px 32px;
  position: relative;
}

.industries-carousel-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 60px;
}

.industries-carousel {
  overflow: hidden;
  position: relative;
}

.industry-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.industry-slide.active {
  display: block;
}

.industry-card-new {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  display: block;
  transition: all 0.2s ease;
  border: 1px solid var(--color-border);
}

.industry-card-new:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.industry-card-image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-subtle);
  position: relative;
}

.industry-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.7) 100%);
}

.industry-card-content {
  padding: 32px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.industry-card-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 12px;
}

.industry-card-content p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Industries Carousel Navigation Buttons */
.industries-carousel-wrap .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.industries-carousel-wrap .carousel-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.05);
}

.industries-carousel-wrap .industries-prev {
  left: 0;
}

.industries-carousel-wrap .industries-next {
  right: 0;
}

/* Industries Dots Navigation */
.industries-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.industries-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.industries-dots .dot:hover {
  background: var(--color-primary-light);
}

.industries-dots .dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* Responsive Industries Carousel */
@media (max-width: 768px) {
  .industries-carousel-wrap {
    padding: 0 40px;
  }
  
  .industries-carousel-wrap .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  
  .industry-card-image {
    height: 180px;
  }
  
  .industry-card-content {
    padding: 20px;
  }
  
  .industry-card-content h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .industries-carousel-wrap {
    padding: 0 30px;
  }
  
  .industries-carousel-wrap .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

/* Legacy - keeping for other pages */
.client-logos-section {
  padding: 64px 32px 72px;
  background: var(--color-bg-alt);
}

.client-logos-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 0 8px;
}

.client-logos-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin: 0 0 28px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.client-logos-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* ----- Services Section (Carousel like Testimonials) ----- */
.services-section {
  background: var(--color-bg);
  padding: 80px 32px;
}

.services-carousel-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 60px;
}

.services-carousel {
  overflow: hidden;
  position: relative;
}

.service-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.service-slide.active {
  display: block;
}

.service-card-new {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  display: block;
  transition: all 0.2s ease;
  border: 1px solid var(--color-border);
}

.service-card-new:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-new .service-card-image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-subtle);
  position: relative;
}

.service-card-new .service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.5) 100%);
}

.service-card-new .service-card-content {
  padding: 28px;
  text-align: center;
  background: #fff;
}

.service-card-new .service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
}

.service-card-new:hover .service-icon {
  transform: scale(1.05);
}

.service-card-new .service-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
}

.service-card-new .service-card-content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Services Carousel Navigation Buttons */
.services-carousel-wrap .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.services-carousel-wrap .carousel-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.05);
}

.services-carousel-wrap .services-prev {
  left: 0;
}

.services-carousel-wrap .services-next {
  right: 0;
}

/* Services Dots Navigation */
.services-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.services-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.services-dots .dot:hover {
  background: var(--color-primary-light);
}

.services-dots .dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* Responsive Services Carousel */
@media (max-width: 768px) {
  .services-carousel-wrap {
    padding: 0 40px;
  }
  
  .services-carousel-wrap .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  
  .service-card-new .service-card-image {
    height: 180px;
  }
  
  .service-card-new .service-card-content {
    padding: 20px;
  }
  
  .service-card-new .service-card-content h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .services-carousel-wrap {
    padding: 0 30px;
  }
  
  .services-carousel-wrap .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

/* Legacy industries carousel wrap */
.industries-carousel-wrap-legacy {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 900px) {
  .industries-carousel-wrap-legacy {
    padding: 0 52px;
  }
}

.industry-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  min-width: 160px;
  flex: 1 1 200px;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 37, 64, 0.18);
}

.industry-card-bg {
  position: absolute;
  inset: 0;
  background-image: var(--industry-bg);
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-alt);
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.35) 0%, rgba(10, 37, 64, 0.75) 100%);
}

.industry-card-label {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Industries carousel: grid on desktop, swipe on small screens */
.industries-carousel {
  margin: 0;
  padding: 0 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.industries-carousel::-webkit-scrollbar {
  display: none;
}

@media (max-width: 900px) {
  .industries-carousel {
    margin: 0 -52px;
    padding: 0 52px 16px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .industries-carousel .industry-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: min(280px, 85vw);
    max-width: min(280px, 85vw);
    flex: 0 0 min(280px, 85vw);
  }
}

/* Industries carousel dots styling */
.industries-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.industries-carousel-dots .dot:hover {
  background: var(--color-primary-light);
}

.industries-carousel-dots .dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.industries-carousel-wrap .carousel-btn {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.industries-carousel-wrap .carousel-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.industries-carousel-wrap .industries-carousel-prev { left: 0; }
.industries-carousel-wrap .industries-carousel-next { right: 0; }

.industries-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.client-logo-placeholder {
  min-width: 140px;
  height: 64px;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

/* When you have client logos, replace the span with <img src="..." alt="Client name"> and adjust .client-logo-placeholder as needed. */

/* ----- Credibility Strip ----- */
.credibility-strip {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  padding: 32px 32px 36px;
  margin-top: -1px;
}

.credibility-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.credibility-item {
  padding: 0 16px;
}

.credibility-item .value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 4px;
  line-height: 1.2;
}

.credibility-item .label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .credibility-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 500px) {
  .credibility-strip-inner {
    grid-template-columns: 1fr;
  }
}

/* ===== INSIGHT GLOBAL STYLE SECTIONS ===== */

/* Content Block with Image and Text Side by Side */
.content-block {
  padding: var(--section-padding) 0;
}

.content-block-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-block--reverse .content-block-inner {
  direction: rtl;
}

.content-block--reverse .content-block-inner > * {
  direction: ltr;
}

.content-block-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-primary);
}

.content-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-block-image video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

.content-block-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 195, 137, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

.content-block-text {
  max-width: 500px;
}

.content-block-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.content-block-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.content-block-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 28px;
}

.content-block-text .btn {
  padding: 14px 28px;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
}

@media (max-width: 900px) {
  .content-block-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  
  .content-block--reverse .content-block-inner {
    direction: ltr;
  }
  
  .content-block-text {
    max-width: 100%;
  }
}

/* Dark Section with accent */
.section-dark-accent {
  background: var(--color-primary);
  color: #fff;
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.section-dark-accent::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 195, 137, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.section-dark-accent .container {
  position: relative;
  z-index: 1;
}

/* Card Grid Section */
.card-grid-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg-alt);
}

.card-grid-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  padding: 0 40px;
}

.card-grid-header .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.card-grid-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.card-grid-header p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.insight-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.insight-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.insight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insight-card:hover .insight-card-image img {
  transform: scale(1.05);
}

.insight-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.insight-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
  line-height: 1.3;
}

.insight-card-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.insight-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-cta);
  margin-top: 20px;
  text-decoration: none;
}

.insight-card-link svg {
  transition: transform 0.2s ease;
}

.insight-card:hover .insight-card-link svg {
  transform: translateX(4px);
}

/* Featured Stats Banner */
.stats-banner {
  background: var(--color-primary);
  padding: 60px 0;
}

.stats-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stats-banner-item {
  text-align: center;
  color: #fff;
}

.stats-banner-item .number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-banner-item .label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
  .stats-banner-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .stats-banner-inner {
    grid-template-columns: 1fr;
  }
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 195, 137, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
  line-height: 1.6;
}

.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner .btn {
  padding: 16px 32px;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
}

.cta-banner .btn-primary {
  background: var(--color-cta);
  color: #fff;
}

.cta-banner .btn-primary:hover {
  background: var(--color-cta-hover);
}

.cta-banner .btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ----- Section defaults ----- */
.section {
  padding: var(--section-padding) 32px;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-bg-dark);
  color: #fff;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 20px;
  letter-spacing: -0.03em;
  position: relative;
}

.section-dark .section-title {
  color: #fff;
}

.section-intro {
  font-size: 1.1875rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.section-dark .section-intro {
  color: rgba(255,255,255,0.85);
}

/* ----- Services Carousel / Grid ----- */
.services-carousel-wrap {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 900px) {
  .services-carousel-wrap {
    padding: 0 52px;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.15);
}

.carousel-btn:hover {
  background: var(--color-gradient-accent);
  color: #fff;
  border-color: transparent;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 179, 65, 0.4);
}

.carousel-btn--prev { left: 8px; }
.carousel-btn--next { right: 8px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Swipeable carousel on smaller screens */
.services-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0;
  padding: 0 0 16px;
}

@media (max-width: 900px) {
  .services-carousel {
    margin: 0 -52px;
    padding: 0 52px 16px;
    grid-template-columns: repeat(4, minmax(280px, 1fr));
  }

  .services-carousel .service-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: min(280px, 85vw);
  }
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

@media (max-width: 520px) {
  .services-carousel {
    grid-template-columns: repeat(4, minmax(260px, 1fr));
  }

  .services-carousel .service-card {
    min-width: min(260px, 88vw);
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

@media (min-width: 901px) {
  .carousel-dots {
    display: none;
  }
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot:hover {
  background: var(--color-text-muted);
}

.carousel-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.2);
}

/* =============================================================================
   SERVICES SECTION - Award Style (Enhanced)
   ============================================================================= */

.services-section-enhanced {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  position: relative;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.services-header .section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services-header .section-intro {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  margin-top: 16px;
}

.services-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card-enhanced {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.12);
}

.service-card-enhanced:hover::before {
  transform: scaleX(1);
}

.service-icon-enhanced {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(0, 191, 166, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.service-card-enhanced:hover .service-icon-enhanced {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  transform: scale(1.1) rotate(5deg);
}

.service-icon-enhanced svg {
  color: var(--color-primary);
  transition: all 0.4s ease;
}

.service-card-enhanced:hover .service-icon-enhanced svg {
  color: #fff;
}

.service-number {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-number {
  opacity: 1;
  transform: scale(1.1);
}

.service-card-enhanced h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.service-card-enhanced:hover h3 {
  color: var(--color-accent);
}

.service-card-enhanced p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Stagger animation delays */
.service-card-enhanced:nth-child(1) { transition-delay: 0s; }
.service-card-enhanced:nth-child(2) { transition-delay: 0.1s; }
.service-card-enhanced:nth-child(3) { transition-delay: 0.2s; }
.service-card-enhanced:nth-child(4) { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-section-enhanced {
    padding: 70px 0;
  }
  
  .services-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-card-enhanced {
    padding: 32px 24px;
  }
  
  .service-icon-enhanced {
    width: 64px;
    height: 64px;
  }
  
  .service-icon-enhanced svg {
    width: 32px;
    height: 32px;
  }
}

/* ==========================================================================
   DELIVERY MODEL SECTION - ENHANCED AWARD STYLE
   ========================================================================== */

.delivery-section-enhanced {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.delivery-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label-gradient {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-accent), #14b8a6);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.delivery-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 16px;
}

.delivery-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.delivery-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.delivery-card-enhanced {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 48px 32px 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.delivery-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), #14b8a6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.delivery-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.delivery-card-enhanced:hover::before {
  transform: scaleX(1);
}

.delivery-icon-enhanced {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--color-accent), #14b8a6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.delivery-icon-enhanced svg {
  width: 40px;
  height: 40px;
  color: white;
  transition: transform 0.4s ease;
}

.delivery-card-enhanced:hover .delivery-icon-enhanced {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(29, 195, 164, 0.4);
}

.delivery-card-enhanced:hover .delivery-icon-enhanced svg {
  transform: scale(1.1);
}

.delivery-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.delivery-card-enhanced:hover .delivery-number {
  opacity: 1;
  transform: scale(1.1);
}

.delivery-card-enhanced h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.delivery-card-enhanced:hover h3 {
  color: var(--color-accent);
}

.delivery-card-enhanced p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Stagger animation delays */
.delivery-card-enhanced:nth-child(1) { transition-delay: 0s; }
.delivery-card-enhanced:nth-child(2) { transition-delay: 0.1s; }
.delivery-card-enhanced:nth-child(3) { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 1024px) {
  .delivery-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .delivery-section-enhanced {
    padding: 70px 0;
  }
  
  .delivery-header h2 {
    font-size: 1.875rem;
  }
  
  .delivery-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .delivery-card-enhanced {
    padding: 40px 24px 32px;
  }
  
  .delivery-icon-enhanced {
    width: 64px;
    height: 64px;
  }
  
  .delivery-icon-enhanced svg {
    width: 32px;
    height: 32px;
  }
}

/* Legacy service-card styles */
.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(10, 37, 64, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.14);
  transform: translateY(-2px);
}

.service-card-image {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-alt);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.03);
}

.service-card-body {
  padding: 24px 20px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.service-card:hover .service-icon {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.service-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 10px;
}

.service-card-body p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

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

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

/* ----- Who We Serve Section (Professional with Images) ----- */
.who-we-serve-section {
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  padding: 80px 32px;
}

.who-we-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.who-we-serve-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-we-serve-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.who-we-serve-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-subtle);
  position: relative;
}

.who-we-serve-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.3) 100%);
}

.who-we-serve-content {
  padding: 28px;
  text-align: center;
}

.who-we-serve-icon {
  width: 64px;
  height: 64px;
  margin: -52px auto 16px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 77, 160, 0.3);
}

.who-we-serve-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
}

.who-we-serve-content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

.who-we-serve-content .btn {
  min-width: 160px;
}

@media (max-width: 900px) {
  .who-we-serve-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* Legacy Audience sections (Employers | Candidates | Consulting) */
.audience-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.audience-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(10, 37, 64, 0.06);
}

.audience-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.12);
  transform: translateY(-3px);
}

.audience-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
}

.audience-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0 0 20px;
  line-height: 1.55;
}

.audience-card .btn {
  width: 100%;
  max-width: 200px;
}

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

/* ----- Why Choose Us (Redesigned) ----- */
.why-choose-section {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, #fff 100%);
  padding: 100px 32px;
  position: relative;
}

.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-choose-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(10, 22, 40, 0.2);
  position: relative;
}

.why-choose-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(0, 179, 65, 0.2);
  pointer-events: none;
}

.why-choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 450px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-image:hover img {
  transform: scale(1.03);
}

.why-choose-content .section-title {
  margin-bottom: 20px;
}

.why-choose-content .section-intro {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  margin-bottom: 40px;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}

.why-choose-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
  border: 1px solid rgba(0, 82, 204, 0.06);
  transition: all 0.3s ease;
}

.why-choose-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.1);
  border-color: rgba(0, 179, 65, 0.2);
}

.why-choose-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--color-gradient-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 179, 65, 0.3);
  transition: all 0.3s ease;
}

.why-choose-feature:hover .why-choose-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-choose-text h3 {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 8px;
}

.why-choose-text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-choose-image img {
    min-height: 280px;
  }
  
  .why-choose-content .section-intro {
    text-align: center;
  }
  
  .why-choose-content .section-title {
    text-align: center;
  }
  
  .why-choose-content {
    text-align: center;
  }
  
  .why-choose-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ----- Why Choose Us (Legacy) ----- */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-choose-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  padding: 36px 28px;
}

.why-choose-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
}

.why-choose-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

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

/* ==============================================
   PARTNERS SECTION - Clean Professional Design
   ============================================== */
.partners-clean-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.partners-clean-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

/* Header */
.partners-clean-header {
  text-align: center;
  margin-bottom: 50px;
}

.partners-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.partners-clean-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px 0;
}

.partners-clean-desc {
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Logo Carousel */
.logo-carousel-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  margin-bottom: 8px;
}

.logo-carousel-wrap::before,
.logo-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}

.logo-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.logo-carousel-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, #fff 100%);
}

/* Logo Track */
.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
}

.logo-carousel-track[data-direction="left"] {
  animation: logoScrollLeft 30s linear infinite;
}

.logo-carousel-track[data-direction="right"] {
  animation: logoScrollRight 30s linear infinite;
}

.logo-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes logoScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes logoScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Logo Card - Clean Style */
.logo-card-clean {
  flex-shrink: 0;
  min-width: 180px;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card-clean:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 30px rgba(0, 82, 204, 0.12);
  transform: translateY(-4px);
}

.logo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-card-clean:hover .logo-inner {
  transform: scale(1.05);
}

/* Stats Row */
.partners-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.partner-stat-box {
  text-align: center;
  padding: 16px;
  position: relative;
}

.partner-stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: #cbd5e1;
}

.stat-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.stat-txt {
  display: block;
  font-size: 0.9375rem;
  color: #64748b;
  margin-top: 8px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .partners-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partner-stat-box:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .partners-clean-section {
    padding: 60px 0;
  }
  
  .partners-clean-title {
    font-size: 1.875rem;
  }
  
  .logo-card-clean {
    min-width: 150px;
    padding: 18px 24px;
  }
  
  .logo-carousel-wrap::before,
  .logo-carousel-wrap::after {
    width: 60px;
  }
  
  .partners-stats-row {
    padding: 24px;
    gap: 16px;
  }
  
  .stat-num {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .partners-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .partner-stat-box::after {
    display: none !important;
  }
  
  .stat-num {
    font-size: 2rem;
  }
  
  .stat-txt {
    font-size: 0.8125rem;
  }
}

/* ----- Industries visual cards ----- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.industry-card-visual {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s, background 0.2s;
}

.industry-card-visual:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-alt);
}

.industry-card-visual .icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: var(--color-bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.industry-card-visual span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Industry cards with background image */
.industry-card--img {
  min-height: 140px;
  background-size: cover;
  background-position: center;
  padding: 24px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.industry-card--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 37, 64, 0.85) 100%);
  border-radius: 8px;
  pointer-events: none;
}

.industry-card-label {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.industry-card--img:hover {
  border-color: var(--color-accent);
}

.industry-card--img .icon-wrap {
  display: none;
}

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

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

/* ----- Split section (alternating image / text) ----- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  max-width: 1400px;
  margin: 0 auto;
}

.split-section-image {
  min-height: 320px;
  background: var(--color-bg-subtle);
  background-size: cover;
  background-position: center;
}

.split-section-content {
  display: flex;
  align-items: center;
  padding: 48px 0;
}

.split-section-content .container {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: left;
}

.split-section-content .section-title,
.split-section-content .section-intro {
  margin-left: 0;
  margin-right: 0;
}

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-border-light);
}

.img-placeholder-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 24px;
  max-width: 280px;
}

.why-choose-grid--compact {
  gap: 20px;
}

.why-choose-grid--compact .why-choose-card {
  padding: 24px 20px;
}

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

  .split-section-image {
    min-height: 240px;
  }

  .split-section-content .container {
    padding: 0 24px;
    text-align: center;
  }

  .split-section-content .section-title,
  .split-section-content .section-intro {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ----- Modern Process section with icons and animations ----- */
.process-diagram-modern {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.process-step-modern {
  position: relative;
  flex: 1 1 250px;
  max-width: 280px;
  padding: 48px 24px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  text-align: center;
  transition: all 0.2s ease;
}

.process-step-modern:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.18);
}

.process-step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  padding: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  color: #fff;
  transition: all 0.2s ease;
}

.process-step-modern:hover .process-step-icon {
  transform: scale(1.05);
}

.process-step-icon svg {
  width: 100%;
  height: 100%;
}

.process-step-num-modern {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.process-step-modern h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 10px;
}

.process-step-modern p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.65;
}

.process-connector-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  position: relative;
}

.connector-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.connector-line::before {
  display: none;
}

.connector-arrow {
  position: absolute;
  right: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(255,255,255,0.3);
}

/* Process step stagger animation */
.process-step-modern {
  opacity: 0;
  transform: translateY(30px);
  animation: processStepReveal 0.6s ease forwards;
}

.process-step-modern[data-step="1"] { animation-delay: 0.1s; }
.process-step-modern[data-step="2"] { animation-delay: 0.25s; }
.process-step-modern[data-step="3"] { animation-delay: 0.4s; }
.process-step-modern[data-step="4"] { animation-delay: 0.55s; }

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

@media (max-width: 1024px) {
  .process-diagram-modern {
    flex-wrap: wrap;
    gap: 24px;
  }

  .process-connector-modern {
    display: none;
  }

  .process-step-modern {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .process-diagram-modern {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .process-step-modern {
    flex: none;
    width: 100%;
    max-width: 320px;
  }
}

/* ----- Process section (diagram with connectors) ----- */
.process-diagram {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0 8px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-diagram .process-step {
  flex: 1 1 200px;
  max-width: 240px;
  padding: 0 8px;
}

.process-diagram .process-step::before {
  display: none;
}

.process-step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-dark .process-step-num {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.process-connector {
  width: 20px;
  min-width: 20px;
  margin-top: 36px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  align-self: center;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.process-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 8px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.section-dark .process-step h3 {
  color: #fff;
}

.section-dark .process-step p {
  color: rgba(255,255,255,0.85);
}

/* Legacy process (counter-based) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  counter-reset: step;
}

.process-steps .process-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 48px;
}

.section-dark .process-steps .process-step::before {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

@media (max-width: 768px) {
  .process-diagram {
    flex-direction: column;
    align-items: center;
  }

  .process-diagram .process-step {
    max-width: 280px;
  }

  .process-connector {
    width: 2px;
    height: 20px;
    margin: 0;
  }

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

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ----- Testimonials / Credibility ----- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  padding: 28px 24px;
}

.testimonial-card--with-bg {
  background-size: cover;
  background-position: center;
  border-color: rgba(10, 37, 64, 0.3);
  color: #fff;
}

.testimonial-card--with-bg .quote {
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-card--with-bg .attribution {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-card--with-bg .attribution strong {
  color: #fff;
}

.testimonial-card .quote {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 16px;
  font-style: italic;
}

.testimonial-card .attribution {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.testimonial-card .attribution strong {
  color: var(--color-primary);
  font-style: normal;
}

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

/* ----- Corporate Testimonials Style ----- */
.testimonial-card-corporate {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 82, 204, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card-corporate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.testimonial-card-corporate:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(10, 22, 40, 0.12);
}

.testimonial-company-logo {
  margin-bottom: 28px;
}

.company-logo-placeholder {
  width: 100px;
  height: 50px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-quote-corporate {
  margin-bottom: 28px;
  position: relative;
}

.testimonial-quote-corporate::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--color-accent);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-quote-corporate p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonial-meta-corporate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-author-corporate {
  text-align: center;
}

.testimonial-author-corporate strong {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.testimonial-author-corporate span {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Responsive Corporate Testimonials */
@media (max-width: 768px) {
  .testimonial-card-corporate {
    padding: 36px 24px;
  }
  
  .testimonial-quote-corporate p {
    font-size: 1.0625rem;
  }
  
  .company-logo-placeholder {
    width: 80px;
    height: 40px;
    font-size: 0.85rem;
  }
}

/* ----- Professional Commitment Section ----- */
.commitment-section-pro {
  padding: 100px 32px;
  background: #fff;
}

.commitment-header-pro {
  text-align: center;
  margin-bottom: 60px;
}

.commitment-label {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.commitment-header-pro .section-title {
  margin-bottom: 12px;
}

.commitment-header-pro .section-intro {
  max-width: 560px;
  margin: 0 auto;
}

.commitment-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Image Feature */
.commitment-image-feature {
  position: relative;
  height: 100%;
  min-height: 600px;
}

.commitment-image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  height: 420px;
}

.commitment-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commitment-image-overlay {
  position: absolute;
  bottom: 100px;
  left: -20px;
  background: var(--color-primary);
  color: #fff;
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 82, 204, 0.3);
  z-index: 2;
}

.overlay-stat {
  display: flex;
  flex-direction: column;
}

.overlay-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.overlay-text {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: 4px;
}

.commitment-image-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid #fff;
}

.commitment-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Professional Cards */
.commitment-cards-pro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.commitment-card-pro {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.commitment-card-pro:hover {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(0, 82, 204, 0.1);
  transform: translateX(8px);
}

.card-icon-pro {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0066cc 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.commitment-card-pro:hover .card-icon-pro {
  background: linear-gradient(135deg, var(--color-accent) 0%, #00bf5c 100%);
  transform: scale(1.05);
}

.card-body-pro {
  flex: 1;
}

.card-body-pro h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 4px;
}

.card-body-pro p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.card-metric {
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.1) 0%, rgba(0, 166, 81, 0.05) 100%);
  color: var(--color-accent);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
}

/* Trust Bar Professional */
.commitment-trust-pro {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  padding: 32px 48px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.trust-item-pro {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
}

.trust-check {
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .commitment-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .commitment-image-feature {
    min-height: auto;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .commitment-image-main {
    height: 320px;
  }
  
  .commitment-image-overlay {
    bottom: 60px;
    left: 0;
  }
  
  .commitment-image-accent {
    width: 160px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .commitment-section-pro {
    padding: 60px 20px;
  }
  
  .commitment-card-pro {
    flex-wrap: wrap;
    padding: 20px;
    gap: 16px;
  }
  
  .card-metric {
    width: 100%;
    text-align: center;
  }
  
  .commitment-trust-pro {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px;
  }
  
  .commitment-image-feature {
    display: none;
  }
}

/* ----- CTA Banner ----- */
.cta-banner {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 72px 32px;
  text-align: center;
  position: relative;
}

.cta-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 32px;
  line-height: 1.7;
}

.cta-banner .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-banner .btn-white,
.cta-banner .btn-primary {
  background: var(--color-accent);
  color: #fff;
  padding: 14px 36px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cta-banner .btn-white:hover,
.cta-banner .btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.cta-banner .btn-secondary {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 14px 36px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  background: transparent;
  transition: all 0.2s ease;
}

.cta-banner .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  transform: translateY(-2px);
}

/* ----- Structured Footer ----- */
.site-footer {
  background: var(--color-bg-darker);
  color: rgba(255,255,255,0.75);
  padding: 64px 32px 40px;
  position: relative;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px 40px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 20px;
  display: inline-flex;
  gap: 12px;
}

.footer-brand .logo-img {
  height: 52px;
  max-width: 60px;
}

.footer-brand .logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-brand .logo-company {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
}

.footer-tagline {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-accent);
  margin: 0 0 16px !important;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.7;
}

.site-footer h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  color: #fff;
  font-weight: 700;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 12px;
}

.site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9375rem;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Footer Contact List - Professional Design */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
  opacity: 0.9;
}

.footer-contact-list li a {
  color: rgba(255,255,255,0.85);
}

.footer-contact-list li a:hover {
  color: var(--color-primary);
}

/* Inline Social Links */
.footer-social-inline {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-inline a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.footer-social-inline a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Legacy Footer Contact Info - Hidden */
.footer-contact-info {
  display: none;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.footer-bottom p {
  margin: 0;
}

/* Hide old centered social bar */
.footer-social {
  display: none;
}

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

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-social-inline {
    justify-content: flex-start;
  }
}
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

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

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-social {
    gap: 16px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }
}

/* ----- Legacy / inner pages (keep compatible) ----- */
.hero {
  padding: 64px 24px 56px;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 16px;
  line-height: 1.25;
}

.hero .subhead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

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

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-card {
  padding: 28px 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.value-card h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin: 0 0 8px;
}

.value-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.why-list {
  max-width: 640px;
  margin: 0 auto 24px;
}

.why-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-text);
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.services-snapshot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-snapshot a {
  display: block;
  padding: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.services-snapshot a:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.08);
}

.services-snapshot a strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: 6px;
}

.services-snapshot a span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.industries-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.industries-strip a {
  padding: 10px 18px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 6px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
}

.industries-strip a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.cta-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-strip .box {
  padding: 32px 24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
}

.cta-strip .box h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.cta-strip .box p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.cta-strip .box .btn {
  background: #fff;
  color: var(--color-primary);
}

.cta-strip .box .btn:hover {
  background: var(--color-bg-alt);
}

/* Page content (inner pages) */
.page-header {
  padding: 56px 32px 40px;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border-light);
}

.page-header h1 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
}

.page-header .lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.content-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px 56px;
}

.content-block h2 {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin: 28px 0 12px;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p, .content-block ul {
  margin: 0 0 16px;
  color: var(--color-text);
}

.content-block ul {
  padding-left: 24px;
}

.content-block li {
  margin-bottom: 8px;
}

.content-block strong {
  color: var(--color-primary);
}

.industry-cards {
  display: grid;
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px 56px;
}

.industry-card {
  padding: 28px 32px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
}

.industry-card h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.industry-card .roles {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px 56px;
}

.contact-box {
  padding: 28px;
  background: var(--color-bg-alt);
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
}

.contact-box h2 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin: 0 0 12px;
}

.contact-box p {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.contact-box a {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-form {
  max-width: 560px;
  margin: 32px auto 48px;
  padding: 0 32px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

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

.contact-form .note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* File Upload Styling */
.file-upload-wrapper {
  margin-bottom: 16px;
}

.contact-form input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 2px dashed var(--color-border, #d1d5db);
  border-radius: 8px;
  background: var(--color-surface, #f9fafb);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input[type="file"]:hover {
  border-color: var(--color-accent, #1a56db);
  background: var(--color-surface-hover, #f3f4f6);
}

.contact-form input[type="file"]:focus {
  outline: none;
  border-color: var(--color-accent, #1a56db);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.file-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted, #6b7280);
  margin-top: 6px;
  margin-bottom: 0;
}

/* ===== CAREERS PAGE - JOB LISTINGS ===== */
.job-listings {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.job-card {
  background: var(--color-surface, #ffffff);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.job-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--color-accent, #1a56db);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.job-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-text, #111827);
}

.job-type {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.job-type.contract {
  background: #dbeafe;
  color: #1e40af;
}

.job-type.fulltime {
  background: #dcfce7;
  color: #166534;
}

.job-type.contract-to-hire {
  background: #fef3c7;
  color: #92400e;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--color-text-muted, #6b7280);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-description {
  margin-bottom: 20px;
}

.job-description p {
  margin-bottom: 12px;
  color: var(--color-text, #374151);
}

.job-description h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--color-text, #111827);
}

.job-description ul {
  margin: 0 0 0 20px;
  padding: 0;
}

.job-description li {
  margin-bottom: 6px;
  color: var(--color-text-muted, #6b7280);
  font-size: 0.9rem;
}

/* Application Form Enhancements */
.application-form {
  background: var(--color-surface, #f9fafb);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--color-border, #e5e7eb);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--color-text, #374151);
}

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
.about-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.85) 0%, rgba(10, 26, 46, 0.9) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 80px 32px;
}

.about-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.about-hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.about-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section Label */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

/* About Mission */
.about-mission {
  padding: 80px 32px;
  background: #f8fafc;
}

.about-mission-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  color: #fff;
  margin-bottom: 24px;
}

.about-mission-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 16px;
}

.about-mission-text {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* About Story */
.about-story {
  padding: 100px 32px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-story-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 20px;
}

.about-story-content p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 16px;
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

/* About Leadership */
.about-leadership {
  padding: 80px 32px;
  background: linear-gradient(135deg, #0a1628 0%, #0f2137 100%);
  color: #fff;
}

.about-leadership .about-values-header h2 {
  color: #fff;
}

.about-leadership .about-values-header p {
  color: rgba(255,255,255,0.8);
}

.leadership-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.leadership-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.leadership-title {
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 24px;
}

.leadership-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
}

.leadership-info em {
  color: var(--color-accent);
  font-style: italic;
}

.leadership-contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.leadership-contact a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.leadership-contact a:hover {
  text-decoration: underline;
}

/* About Values */
.about-values {
  padding: 100px 32px;
  background: #f8fafc;
}

.about-values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.about-values-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.about-values-header p {
  font-size: 1.0625rem;
  color: #64748b;
  margin: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-value-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(0, 82, 204, 0.08);
  border-radius: 12px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.about-value-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.about-value-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* About Trust */
.about-trust {
  padding: 100px 32px;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-trust-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 32px;
}

.about-trust-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-trust-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 166, 81, 0.1);
  border-radius: 50%;
  color: var(--color-accent);
}

.about-trust-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 4px;
}

.about-trust-item p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.about-trust-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Delivery */
.about-delivery {
  padding: 100px 32px;
  background: #f8fafc;
}

.about-delivery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.about-delivery-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.about-delivery-header p {
  font-size: 1.0625rem;
  color: #64748b;
  margin: 0;
}

.about-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.about-delivery-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.about-delivery-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(0, 82, 204, 0.08);
  border-radius: 10px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.about-delivery-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 10px;
}

.about-delivery-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.about-delivery-industries {
  text-align: center;
}

.about-delivery-industries h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 20px;
}

.about-industries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.industry-tag {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.industry-tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* About CTA */
.about-cta {
  padding: 100px 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #003d99 100%);
}

.about-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.about-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.about-cta p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* About Page Mobile */
@media (max-width: 900px) {
  .about-story-grid,
  .about-trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-story-image {
    order: -1;
  }
  
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-delivery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-hero-content {
    padding: 60px 20px;
  }
  
  .about-mission,
  .about-story,
  .about-values,
  .about-trust,
  .about-delivery,
  .about-cta {
    padding: 60px 20px;
  }
  
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-story-image img,
  .about-trust-image img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .section { padding: var(--section-padding-sm) 20px; }
  .container { padding: 0 20px; }
  .site-header-inner {
    padding: 0 16px;
  }
  .logo {
    font-size: 1.2rem;
  }
}

/* Large screens (laptops, desktops, TVs): ensure nav doesn't get cramped */
@media (min-width: 901px) {
  .main-nav .nav-list {
    flex-wrap: wrap;
  }
}

/* ========================================
   PHASE 1: Insight Global Style Features
   ======================================== */

/* ----- Trusted By Logo Strip ----- */
.trusted-by-strip {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  padding: 24px 0;
  overflow: hidden;
}

.trusted-by-strip .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-by-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trusted-by-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}

.trusted-logo:hover {
  opacity: 1;
}

.trusted-logo svg {
  height: 28px;
  width: auto;
}

@media (max-width: 768px) {
  .trusted-by-strip .container {
    flex-direction: column;
    gap: 20px;
  }
  
  .trusted-by-logos {
    gap: 20px;
  }
  
  .trusted-logo svg {
    height: 22px;
  }
}

/* ----- Testimonials Section (Insight Global Style) ----- */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 50%, #0a2540 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.testimonials-section .section-title {
  color: #fff;
  margin-bottom: 12px;
}

.testimonials-section .section-intro {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.testimonials-carousel-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 30px 0 20px;
}

.testimonial-slide {
  padding: 0;
}

@media (max-width: 1024px) {
  .testimonials-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .testimonials-carousel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-quote {
  position: absolute;
  top: -20px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.4);
}

.testimonial-quote svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  opacity: 1;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text);
  margin: 16px 0 28px;
  flex: 1;
  font-style: normal;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.3);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-info strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-info span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.testimonials-dots {
  display: none;
}

.testimonials-carousel-wrap .carousel-btn {
  display: none;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 70px 0;
  }
}

/* ----- Sticky Mobile CTA ----- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 800;
  padding: 12px 16px;
  gap: 12px;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex;
  }
  
  /* Add padding to body so content isn't hidden behind sticky CTA */
  body {
    padding-bottom: 72px;
  }
}

.sticky-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
  flex: 1;
}

.sticky-cta-phone:hover {
  background: #072a47;
}

.sticky-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
  flex: 1;
}

.sticky-cta-contact:hover {
  background: var(--color-accent-hover);
}

/* ----- Enhanced Mega Footer ----- */
.mega-footer {
  background: var(--color-primary);
  color: #fff;
}

.footer-top {
  background: rgba(0, 0, 0, 0.2);
  padding: 24px 0;
}

.footer-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-cta-text h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.footer-cta-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9375rem;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phone-btn:hover {
  color: var(--color-accent);
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
}

.footer-brand-col {
  max-width: 320px;
}

.mega-footer .footer-logo-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.mega-footer .footer-company-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.mega-footer .footer-company-tagline {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.mega-footer .footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.footer-links-col h4 {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col li {
  margin-bottom: 12px;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: #fff;
}

.mega-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  background: transparent;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-inner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-tagline {
  color: var(--color-accent) !important;
  font-weight: 600;
}

/* Mega Footer Mobile */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-cta-strip {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-cta-actions {
    width: 100%;
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .footer-links-col {
    text-align: center;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

/* ========================================
   PHASE 2: Enhanced Features & Polish
   ======================================== */

/* ----- Awards & Recognition Section ----- */
.awards-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  position: relative;
}

.awards-header {
  text-align: center;
  margin-bottom: 60px;
}

.awards-header .section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.award-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.12);
}

.award-card:hover::before {
  transform: scaleX(1);
}

.award-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(0, 191, 166, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.award-card:hover .award-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  transform: scale(1.1);
}

.award-icon svg {
  color: var(--color-primary);
  transition: color 0.4s ease;
}

.award-card:hover .award-icon svg {
  color: #fff;
}

.award-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}

.award-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Awards Responsive */
@media (max-width: 900px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .awards-section {
    padding: 60px 0;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .award-card {
    padding: 32px 20px;
  }
}

/* ----- Insights / Blog Section ----- */
.insights-section {
  padding: 100px 0;
  background: #fff;
}

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.insights-header-text {
  max-width: 600px;
}

.insights-header-text .section-label {
  display: inline-block;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.insights-header-text .section-title {
  text-align: left;
  margin-bottom: 12px;
}

.insights-header-text .section-intro {
  text-align: left;
  margin: 0;
}

.insights-view-all {
  flex-shrink: 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.insight-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 82, 204, 0.12);
}

.insight-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease;
}

.insight-card:hover .insight-image {
  transform: scale(1.05);
}

.insight-card-featured .insight-image {
  height: 280px;
}

.insight-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.insight-category {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(0, 191, 166, 0.1));
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.insight-date {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
}

.insight-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.insight-card:hover .insight-content h3 {
  color: var(--color-primary);
}

.insight-card-featured .insight-content h3 {
  font-size: 1.5rem;
}

.insight-content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.insight-link svg {
  transition: transform 0.3s ease;
}

.insight-link:hover {
  color: var(--color-accent);
}

.insight-link:hover svg {
  transform: translateX(4px);
}

/* Insights Responsive */
@media (max-width: 1024px) {
  .insights-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .insight-card-featured {
    grid-column: span 2;
  }
  
  .insight-card-featured .insight-image {
    height: 240px;
  }
}

@media (max-width: 640px) {
  .insights-section {
    padding: 60px 0;
  }
  
  .insights-header {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .insights-header-text .section-title,
  .insights-header-text .section-intro {
    text-align: center;
  }
  
  .insights-view-all {
    align-self: center;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .insight-card-featured {
    grid-column: span 1;
  }
  
  .insight-card-featured .insight-image,
  .insight-image {
    height: 180px;
  }
  
  .insight-content {
    padding: 20px;
  }
  
  .insight-content h3,
  .insight-card-featured .insight-content h3 {
    font-size: 1.125rem;
  }
}

/* ----- Enhanced Service Cards Hover (Phase 2) ----- */
.service-card-new {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card-new::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card-new:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0, 82, 204, 0.2);
}

.service-card-new .service-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-new:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.service-card-new:hover .service-icon svg {
  stroke: #fff;
}

/* ----- Enhanced Stats Section (Phase 2) ----- */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.03) 0%, transparent 50%);
  animation: statsPulse 8s ease-in-out infinite;
}

@keyframes statsPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.stat-item {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(0, 191, 166, 0.1));
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-value {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----- Smooth Scroll & Micro-interactions (Phase 2) ----- */
html {
  scroll-behavior: smooth;
}

/* Button ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Enhanced focus states */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* Testimonial card enhancements */
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 82, 204, 0.2);
}

/* Why Choose feature hover */
.why-choose-feature {
  transition: all 0.3s ease;
  padding: 16px;
  margin: -16px;
  border-radius: 12px;
}

.why-choose-feature:hover {
  background: rgba(0, 82, 204, 0.04);
  transform: translateX(8px);
}

/* Process step enhanced animation */
.process-step-modern {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-modern:hover {
  transform: translateY(-8px) scale(1.02);
}

.process-step-modern:hover .process-step-num-modern {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  transform: scale(1.1);
}

/* Industry card enhanced hover */
.industry-card-new {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 82, 204, 0.15);
}

.industry-card-new:hover .industry-icon-wrap {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  transform: rotate(10deg) scale(1.1);
}

.industry-card-new:hover .industry-icon-wrap svg {
  stroke: #fff;
}

/* Logo hover effect */
.trusted-logo {
  transition: all 0.3s ease;
}

.trusted-logo:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Commitment card hover */
.commitment-card-pro {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.commitment-card-pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 82, 204, 0.12);
  border-color: var(--color-primary);
}

.commitment-card-pro:hover .commitment-icon-pro {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  transform: scale(1.1);
}

.commitment-card-pro:hover .commitment-icon-pro svg {
  stroke: #fff;
}

/* Partner logo card hover */
.logo-card-clean {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-card-clean:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* ===== INDUSTRIES WE SERVE SECTION ===== */
.industries-serve-section {
  background: var(--color-primary);
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.industries-serve-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}

.industries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.industries-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.industries-list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .industries-list {
    gap: 8px 12px;
    padding: 0 20px;
  }
  
  .industries-list a {
    font-size: 0.875rem;
    padding: 6px 14px;
  }
}

/* ===== NEWS & INSIGHTS SECTION ===== */
.news-insights-section {
  padding: 100px 0;
  background: #fff;
}

.news-insights-header {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.news-insights-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

.news-insights-header .view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-cta);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.news-insights-header .view-all:hover {
  gap: 12px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.news-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.news-card-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
  line-height: 1.4;
}

.news-card-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-cta);
  margin-top: 16px;
}

.news-card-link svg {
  transition: transform 0.2s ease;
}

.news-card:hover .news-card-link svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .news-insights-section {
    padding: 60px 0;
  }
  
  .news-insights-header {
    padding: 0 20px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* =============================================================================
   INSIGHTS PAGE - RICH ARTICLE STYLES
   ============================================================================= */

/* Insights Hero */
.insights-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d3352 100%);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.insights-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.insights-hero .hero-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 16px;
  position: relative;
}

.insights-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.insights-hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Insights Tabs */
.insights-tabs-section {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  position: sticky;
  top: 80px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.insights-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.insights-tab {
  background: transparent;
  border: 2px solid rgba(10, 37, 64, 0.15);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.insights-tab:hover {
  border-color: var(--color-accent);
  background: rgba(0, 195, 137, 0.05);
}

.insights-tab.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 195, 137, 0.3);
}

/* Insights Articles Section */
.insights-articles-section {
  background: #f8fafc;
  padding: 80px 0;
}

.insights-grid {
  display: grid;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual Article Card */
.insight-article {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(10, 37, 64, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(10, 37, 64, 0.12);
}

.insight-article-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.insight-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insight-article:hover .insight-article-image img {
  transform: scale(1.05);
}

.insight-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 195, 137, 0.4);
}

.insight-article-content {
  padding: 32px 40px 40px;
}

.insight-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.insight-meta span {
  font-size: 0.8125rem;
  color: #64748b;
}

.insight-date::before {
  content: '📅 ';
}

.insight-read-time::before {
  content: '⏱️ ';
}

.insight-article h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.insight-article:hover h2 {
  color: var(--color-accent);
}

.insight-excerpt {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Full Article Content (Expandable) */
.insight-full-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
}

.insight-full-content p {
  font-size: 1.0625rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 24px;
}

.insight-full-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 32px 0 16px;
}

/* Highlight Box */
.insight-highlight-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid var(--color-accent);
  padding: 28px 32px;
  border-radius: 0 16px 16px 0;
  margin: 32px 0;
}

.insight-highlight-box h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.insight-highlight-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.insight-highlight-box li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #334155;
  line-height: 1.6;
}

.insight-highlight-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Quote */
.insight-quote {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 40px;
  border-radius: 16px;
  margin: 32px 0;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  position: relative;
}

.insight-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 6rem;
  color: rgba(0, 195, 137, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
}

.insight-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
}

/* Stats Grid */
.insight-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.insight-stat {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d3352 100%);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* CTA Box */
.insight-cta-box {
  background: linear-gradient(135deg, var(--color-accent) 0%, #00a873 100%);
  padding: 32px 40px;
  border-radius: 16px;
  text-align: center;
  margin: 32px 0;
}

.insight-cta-box h4 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.insight-cta-box p {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.insight-cta-box .btn {
  background: #fff;
  color: var(--color-primary);
}

.insight-cta-box .btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Checklist */
.insight-checklist {
  background: #fff;
  border: 2px solid rgba(10, 37, 64, 0.1);
  padding: 28px 32px;
  border-radius: 16px;
  margin: 32px 0;
}

.insight-checklist h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(10, 37, 64, 0.05);
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item input {
  width: 22px;
  height: 22px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.checklist-item span {
  font-size: 1rem;
  color: #334155;
  transition: all 0.2s ease;
}

.checklist-item.checked span {
  text-decoration: line-through;
  color: #94a3b8;
}

/* Tip Box */
.insight-tip-box {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 24px 28px;
  border-radius: 16px;
  margin: 32px 0;
  align-items: flex-start;
}

.tip-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.tip-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.tip-content p {
  font-size: 0.9375rem;
  color: #78350f;
  line-height: 1.6;
  margin: 0;
}

/* Expand Button */
.insight-expand-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--color-accent);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 24px;
}

.insight-expand-btn:hover {
  background: var(--color-accent);
  color: #fff;
}

.insight-expand-btn svg {
  transition: transform 0.3s ease;
}

.insight-expand-btn.expanded svg {
  transform: rotate(180deg);
}

.insight-expand-btn .collapse-text {
  display: none;
}

.insight-expand-btn.expanded .expand-text {
  display: none;
}

.insight-expand-btn.expanded .collapse-text {
  display: inline;
}

/* Share Buttons */
.insight-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 37, 64, 0.1);
}

.insight-share span {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  transition: all 0.3s ease;
}

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

/* Newsletter Section */
.insights-newsletter {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d3352 100%);
  padding: 80px 0;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-text p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
}

.newsletter-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 16px 24px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  min-width: 300px;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.15);
}

.newsletter-form .btn {
  background: var(--color-accent);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
}

.newsletter-form .btn:hover {
  background: #00a873;
  transform: translateY(-2px);
}

/* Responsive Styles for Insights Page */
@media (max-width: 768px) {
  .insights-hero {
    padding: 140px 0 70px;
  }
  
  .insights-tabs-section {
    padding: 24px 0;
    top: 70px;
  }
  
  .insights-tabs {
    gap: 8px;
  }
  
  .insights-tab {
    padding: 10px 18px;
    font-size: 0.875rem;
  }
  
  .insights-articles-section {
    padding: 50px 0;
  }
  
  .insight-article-content {
    padding: 24px;
  }
  
  .insight-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  
  .newsletter-form input {
    min-width: unset;
    width: 100%;
  }
  
  .insight-quote {
    padding: 24px;
  }
  
  .insight-highlight-box,
  .insight-checklist,
  .insight-cta-box {
    padding: 24px;
  }
}

/* =============================================================================
   CEO CLASSIC SECTION - Clean Professional Style (Insight Global Inspired)
   ============================================================================= */

.ceo-classic-section {
  padding: 100px 0;
  background: #fff;
}

.ceo-classic-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* CEO Image */
.ceo-classic-image {
  display: flex;
  justify-content: center;
}

.ceo-image-container {
  position: relative;
}

.ceo-avatar {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ceo-avatar span {
  font-size: 7rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}

.ceo-avatar::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid var(--color-accent);
  border-radius: 50%;
}

/* CEO Content */
.ceo-classic-content {
  
}

.ceo-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.ceo-classic-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 32px;
  line-height: 1.2;
}

.ceo-name-title {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.1);
}

.ceo-name-title h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 6px;
}

.ceo-name-title p {
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0;
}

.ceo-description p {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 16px;
}

.ceo-description p:last-child {
  margin-bottom: 0;
}

/* CEO Quote */
.ceo-classic-quote {
  margin: 32px 0;
  padding: 24px 0 24px 24px;
  border-left: 4px solid var(--color-accent);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.7;
}

.ceo-classic-quote strong {
  color: var(--color-accent);
  font-style: normal;
}

/* CEO Actions */
.ceo-classic-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ceo-classic-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ceo-classic-actions .btn svg {
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .ceo-classic-section {
    padding: 70px 0;
  }
  
  .ceo-classic-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .ceo-avatar {
    width: 220px;
    height: 220px;
  }
  
  .ceo-avatar span {
    font-size: 5.5rem;
  }
  
  .ceo-name-title {
    text-align: center;
  }
  
  .ceo-classic-quote {
    border-left: none;
    border-top: 4px solid var(--color-accent);
    padding: 24px 0 0;
    text-align: center;
  }
  
  .ceo-classic-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ceo-avatar {
    width: 180px;
    height: 180px;
  }
  
  .ceo-avatar span {
    font-size: 4.5rem;
  }
  
  .ceo-classic-actions {
    flex-direction: column;
  }
  
  .ceo-classic-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================================================
   VALUES SECTION - Award-Style Motion Effects
   ============================================================================= */

.ig-values-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  position: relative;
}

.ig-values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.ig-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.ig-values-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 16px;
  line-height: 1.2;
}

.ig-values-header p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.ig-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.ig-value-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ig-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ig-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.12);
}

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

/* Value Icon - Award Style */
.ig-value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(0, 191, 166, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.ig-value-card:hover .ig-value-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  transform: scale(1.1) rotate(5deg);
}

.ig-value-icon svg {
  color: var(--color-primary);
  transition: all 0.4s ease;
}

.ig-value-card:hover .ig-value-icon svg {
  color: #fff;
}

.ig-value-number {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.ig-value-card:hover .ig-value-number {
  opacity: 1;
  transform: scale(1.1);
}

.ig-value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.ig-value-card:hover h3 {
  color: var(--color-accent);
}

.ig-value-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Stagger animation delays for cards */
.ig-value-card:nth-child(1) { transition-delay: 0s; }
.ig-value-card:nth-child(2) { transition-delay: 0.1s; }
.ig-value-card:nth-child(3) { transition-delay: 0.2s; }
.ig-value-card:nth-child(4) { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
  .ig-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ig-values-section {
    padding: 70px 0;
  }
  
  .ig-values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .ig-value-card {
    padding: 32px 24px;
  }
  
  .ig-value-icon {
    width: 64px;
    height: 64px;
  }
  
  .ig-value-icon svg {
    width: 32px;
    height: 32px;
  }
}


/* ================================================
   INSIGHTS PAGE - INSIGHT GLOBAL STYLE (CLEAN)
   ================================================ */

/* Page Header */
.ig-page-header {
  background: var(--color-bg);
  padding: 100px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.ig-page-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.ig-page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 20px;
}

.ig-page-header p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Filter Navigation */
.ig-filter-nav {
  background: var(--color-bg);
  padding: 32px 0;
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  border-bottom: 1px solid var(--color-border);
}

.ig-filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.ig-filter-tab {
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ig-filter-tab:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.ig-filter-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Featured Section */
.ig-featured-section {
  background: var(--color-bg-alt);
  padding: 80px 0;
}

.ig-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.ig-featured-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.ig-featured-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-featured-content {
  padding: 50px 50px 50px 0;
}

.ig-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.ig-featured-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 16px;
  line-height: 1.3;
}

.ig-featured-content p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.ig-meta {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ig-meta-dot {
  color: #cbd5e1;
}

.ig-read-more {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s ease;
}

.ig-read-more:hover {
  color: var(--color-accent);
}

/* Articles Grid */
.ig-articles-section {
  background: var(--color-bg);
  padding: 80px 0;
}

.ig-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ig-article-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ig-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.ig-article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.ig-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ig-article-card:hover .ig-article-image img {
  transform: scale(1.05);
}

.ig-article-body {
  padding: 28px;
}

.ig-article-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.ig-article-card:hover h3 {
  color: var(--color-accent);
}

.ig-article-body p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.ig-article-body .ig-meta {
  margin-bottom: 0;
}

/* Load More */
.ig-load-more {
  text-align: center;
  padding-top: 48px;
}

.btn-outline {
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Newsletter Section */
.ig-newsletter-section {
  background: var(--color-primary);
  padding: 80px 0;
}

.ig-newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.ig-newsletter-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.ig-newsletter-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.ig-newsletter-form {
  display: flex;
  gap: 12px;
}

.ig-newsletter-form input {
  padding: 14px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ig-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.ig-newsletter-form input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive Insights Page */
@media (max-width: 1024px) {
  .ig-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ig-featured-card {
    grid-template-columns: 1fr;
  }
  
  .ig-featured-content {
    padding: 40px;
  }
  
  .ig-featured-image {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .ig-page-header {
    padding: 80px 0 50px;
  }
  
  .ig-newsletter-box {
    flex-direction: column;
    text-align: center;
  }
  
  .ig-newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  
  .ig-newsletter-form input {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .ig-articles-grid {
    grid-template-columns: 1fr;
  }
  
  .ig-filter-tabs {
    gap: 8px;
  }
  
  .ig-filter-tab {
    padding: 10px 18px;
    font-size: 0.875rem;
  }
  
  .ig-featured-content {
    padding: 28px;
  }
  
  .ig-featured-content h2 {
    font-size: 1.5rem;
  }
}

/* =============================================================================
   ARTICLE MODAL - Full Article View
   ============================================================================= */

.article-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.article-modal.active {
  opacity: 1;
  visibility: visible;
}

.article-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(4px);
}

.article-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 100vh;
  overflow-y: auto;
  background: #fff;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.article-modal.active .article-modal-content {
  transform: translateY(0);
}

.article-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.article-modal-close:hover {
  background: var(--color-primary);
  color: #fff;
}

.article-modal-close:hover svg {
  stroke: #fff;
}

.article-modal-body {
  padding: 0;
}

/* Article Modal Header */
.article-modal-header {
  padding: 60px 60px 40px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.article-modal-header .ig-tag {
  margin-bottom: 20px;
}

.article-modal-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  margin: 0 0 20px;
}

.article-modal-meta {
  font-size: 0.9375rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Article Modal Image */
.article-modal-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.article-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Article Modal Text */
.article-modal-text {
  padding: 50px 60px;
  max-width: 750px;
  margin: 0 auto;
}

.article-modal-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #334155;
  margin: 0 0 24px;
}

.article-modal-text p.article-intro {
  font-size: 1.1875rem;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 32px;
}

.article-modal-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 40px 0 16px;
}

.article-modal-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 28px 0 12px;
}

.article-modal-text ul {
  margin: 0 0 24px;
  padding-left: 24px;
}

.article-modal-text ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 12px;
}

.article-modal-text ul li strong {
  color: var(--color-primary);
}

.article-modal-text blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: #f8fafc;
  border-left: 4px solid var(--color-accent);
  font-size: 1.125rem;
  font-style: italic;
  color: #475569;
  line-height: 1.7;
}

.article-modal-text blockquote span {
  display: block;
  margin-top: 12px;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
}

/* Article Author Styling */
.article-author {
  font-weight: 600;
  color: var(--text);
}

/* Article Intro Paragraph */
.article-intro {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #1e293b;
  border-left: 4px solid var(--color-primary);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 500;
  background: #f8fafc;
  padding: 1.5rem;
  padding-left: 1.5rem;
  border-radius: 0 8px 8px 0;
}

/* Enhanced Article Content Styling */
.article-modal-text h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #1e293b;
  font-weight: 700;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.5rem;
}

.article-modal-text h4 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  color: #1e293b;
  font-weight: 600;
}

.article-modal-text p strong {
  color: var(--color-primary);
}

/* Article Modal CTA */
.article-modal-cta {
  margin-top: 2rem;
  padding: 50px 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-radius: 12px;
}

.article-modal-cta h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 700;
  border: none;
  padding-bottom: 0;
  margin-top: 0;
}

.article-modal-cta p {
  font-size: 1.125rem;
  color: #475569;
  margin: 0 0 24px;
}

.article-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Article Modal */
@media (max-width: 768px) {
  .article-modal-header {
    padding: 40px 24px 32px;
  }
  
  .article-modal-image {
    height: 250px;
  }
  
  .article-modal-text {
    padding: 32px 24px;
  }
  
  .article-modal-cta {
    padding: 32px 24px;
  }
  
  .article-modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

/* Make article cards clickable */
.ig-article-card {
  cursor: pointer;
}

