:root {
  --primary: #2f6fe4;
  --primary-dark: #2459bb;
  --primary-light: #69a1ff;
  --primary-glow: rgba(47, 111, 228, 0.2);
  --dark: #1b2537;
  --dark-light: #2c3e50;
  --gray-900: #0f1923;
  --gray-800: #1a2332;
  --gray-700: #2c3e50;
  --gray-600: #4a6274;
  --gray-500: #6b8299;
  --gray-400: #94a8b8;
  --gray-300: #bcc8d4;
  --gray-200: #dce4eb;
  --gray-100: #edf1f5;
  --gray-50: #f7f9fd;
  --white: #ffffff;
  --black: #000000;
  --accent-blue: #2196F3;
  --accent-green: #168736;
  --accent-red: #c31924;
  --font-primary: 'EYInterstate', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'EYInterstate', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 8px rgba(31, 52, 88, 0.06);
  --shadow-md: 0 8px 22px rgba(31, 52, 88, 0.08);
  --shadow-lg: 0 14px 34px rgba(31, 52, 88, 0.11);
  --shadow-xl: 0 24px 64px rgba(31, 52, 88, 0.14);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --header-height: 72px;
  --container-max: 1320px;
  --container-padding: 24px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--dark);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #e8eef7;
  height: var(--header-height);
  transition: background var(--transition-base), box-shadow var(--transition-base), transform 0.35s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-img {
  height: 56px;
  width: auto;
  max-width: min(180px, 42vw);
  object-fit: contain;
}

.logo-text {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-light);
  letter-spacing: -1px;
  line-height: 1;
}

.logo-tagline {
  font-size: 10px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  height: 100%;
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  transform: scaleX(1);
}

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

.nav-link .icon-chevron {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
  margin-top: -3px;
}

.nav-item.active .nav-link .icon-chevron {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1001;
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--gray-900);
  border-radius: 50%;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-search:hover {
  background: rgba(15, 23, 42, 0.08);
  color: var(--primary);
}

.btn-search svg {
  width: 20px;
  height: 20px;
}

.btn-location {
  display: none;
}

.lang-switcher {
  position: relative;
}

.btn-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  padding: 6px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-lang:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  min-width: 170px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  color: var(--gray-800);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}

.lang-option:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.lang-option.active {
  color: var(--primary-light);
  background: rgba(21,101,192,0.14);
}

.lang-flag {
  font-size: 18px;
  line-height: 1;
}

.btn-my-account {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  background: var(--primary);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.btn-my-account:hover {
  background: var(--primary-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* ========================================
   MEGA MENU
   ======================================== */
.mega-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  z-index: 999;
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px var(--container-padding) 50px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
}

.mega-menu-sidebar {
  border-right: 1px solid var(--gray-200);
  padding-right: 40px;
}

.mega-menu-sidebar h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.mega-menu-sidebar p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.mega-menu-sidebar .btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
  transition: gap var(--transition-fast);
}

.mega-menu-sidebar .btn-explore:hover {
  gap: 14px;
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mega-menu-column h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  margin-bottom: 16px;
  font-weight: 600;
}

.mega-menu-column ul li {
  margin-bottom: 10px;
}

.mega-menu-column ul li a {
  font-size: 14px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mega-menu-column ul li a:hover {
  color: var(--primary-dark);
  padding-left: 6px;
}

.mega-menu-column ul li a .arrow {
  opacity: 0;
  transition: opacity var(--transition-fast);
  font-size: 12px;
}

.mega-menu-column ul li a:hover .arrow {
  opacity: 1;
}

/* ========================================
   SEARCH OVERLAY
   ======================================== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: 100%;
  max-width: 720px;
  padding: 0 var(--container-padding);
  transform: translateY(-20px);
  transition: transform var(--transition-base);
}

.search-overlay.active .search-overlay-inner {
  transform: translateY(0);
}

.search-form {
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 8px;
}

.search-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 28px;
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 300;
}

.search-form input::placeholder {
  color: var(--gray-500);
}

.search-form .btn-search-submit {
  color: var(--primary);
  padding: 8px;
}

.search-form .btn-search-submit svg {
  width: 28px;
  height: 28px;
}

.btn-search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.btn-search-close:hover {
  background: rgba(255,255,255,0.1);
}

.search-trending {
  margin-top: 40px;
}

.search-trending h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.search-trending ul li {
  margin-bottom: 12px;
}

.search-trending ul li a {
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.search-trending ul li a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.search-results {
  margin-top: 28px;
  max-height: min(52vh, 420px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.search-results:not(.has-results) {
  display: none;
}

.search-results-empty {
  color: var(--gray-400);
  font-size: 15px;
  padding: 12px 0;
}

.search-results-group + .search-results-group {
  margin-top: 22px;
}

.search-results-heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94a8b8;
  margin-bottom: 12px;
  font-weight: 600;
}

.search-result-item {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: opacity 0.2s, padding-left 0.2s;
  touch-action: manipulation;
}

.search-result-item:hover,
.search-result-item:focus-visible {
  opacity: 0.92;
  padding-left: 6px;
}

.search-result-title {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.search-result-desc {
  display: block;
  color: #6b8299;
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.5;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--gray-900);
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 560px;
  flex: 1 1 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(22, 37, 70, 0.32) 0%, rgba(22, 37, 70, 0.12) 45%, rgba(22, 37, 70, 0.04) 100%);
  z-index: 1;
}

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, var(--primary) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--primary) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 88px var(--container-padding);
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 4;
}

.hero-cta .btn {
  position: relative;
  z-index: 1;
  min-height: 48px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

/* Currency ticker (CBA official rates via /api/currency-rates) */
.currency-ticker-bar {
  flex-shrink: 0;
  position: relative;
  z-index: 4;
  /* So the ticker doesn't feel "detached" from the hero section */
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 14, 22, 0.98) 0%, #0a0e16 100%);
  padding: 14px 0;
}

.currency-ticker-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.currency-ticker-track {
  display: flex;
  width: max-content;
  --currency-loop-shift: -50%;
  --currency-duration: 34s;
  animation: currency-ticker-marquee var(--currency-duration) linear infinite;
}

.currency-ticker-bar:hover .currency-ticker-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .currency-ticker-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    row-gap: 8px;
  }
  .currency-ticker-set {
    padding-right: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@keyframes currency-ticker-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--currency-loop-shift));
  }
}

.currency-ticker-set {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2.25rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.currency-ticker-item {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(230, 237, 245, 0.92);
}

.currency-ticker-item strong {
  font-weight: 700;
  color: var(--white);
}

.currency-ticker-item .ticker-azn {
  color: var(--gray-400);
  font-weight: 400;
}

.currency-ticker-bar.is-loading .currency-ticker-item,
.currency-ticker-bar.is-error .currency-ticker-item {
  font-size: 15px;
  color: var(--gray-400);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--gray-900);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid var(--dark);
  color: var(--dark);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--dark);
  padding: 14px 0;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
}

.btn-text:hover {
  color: var(--gray-600);
}

.btn .arrow-icon {
  transition: transform var(--transition-fast);
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

.hero-slider-controls {
  position: absolute;
  bottom: 40px;
  right: var(--container-padding);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: rgba(255,255,255,0.6);
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--gray-900);
  color: var(--white);
}

.section-gray {
  background: linear-gradient(180deg, #f7f9fd 0%, #f3f7fc 100%);
}

.section-header {
  margin-bottom: 50px;
}

.section-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.section-breadcrumb a,
.section-breadcrumb span {
  font-size: 13px;
  color: var(--gray-600);
}

.section-breadcrumb a:hover {
  color: var(--primary);
}

.section-breadcrumb .separator {
  color: var(--gray-500);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

.section-dark .section-description {
  color: var(--gray-300);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

/* ========================================
   TRENDING BAR
   ======================================== */
.trending-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
  margin-top: var(--header-height);
}

.trending-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trending-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  font-weight: 600;
  white-space: nowrap;
}

.trending-items {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.trending-items::-webkit-scrollbar {
  display: none;
}

.trending-item {
  white-space: nowrap;
  font-size: 13px;
  color: var(--dark);
  padding: 6px 16px;
  background: var(--gray-50);
  border-radius: 20px;
  transition: all var(--transition-fast);
  border: 1px solid var(--gray-200);
}

.trending-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ========================================
   SPOTLIGHT / SERVICES
   ======================================== */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.spotlight-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(209, 221, 238, 0.72);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 111, 228, 0.28);
}

.spotlight-card-image {
  height: 200px;
  overflow: hidden;
}

.spotlight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.spotlight-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.spotlight-card-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 12px;
}

.spotlight-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--dark);
}

.spotlight-card-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}

.spotlight-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.spotlight-card-link:hover {
  gap: 12px;
  color: var(--gray-600);
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 16px;
  border: 1px solid rgba(209, 221, 238, 0.72);
  transition: all var(--transition-base);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 111, 228, 0.3);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gray-50);
  transition: background var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: var(--primary);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--dark);
}

.service-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card-text {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========================================
   INDUSTRIES SECTION
   ======================================== */
.industries-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.industry-tab {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
}

.industry-tab:hover {
  color: var(--dark);
}

.industry-tab.active {
  color: var(--dark);
  border-bottom-color: var(--primary);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}

.industry-card-bg {
  position: absolute;
  inset: 0;
  background: var(--gray-700);
}

.industry-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.industry-card:hover .industry-card-bg img {
  transform: scale(1.08);
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
  transition: background var(--transition-base);
}

.industry-card:hover .industry-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.15) 100%);
}

.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.industry-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.industry-card-count {
  font-size: 13px;
  color: var(--gray-300);
}

.industry-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-base);
}

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

/* ========================================
   INSIGHTS / ARTICLES
   ======================================== */
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.insight-featured {
  grid-row: span 2;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 520px;
}

.insight-featured-bg {
  position: absolute;
  inset: 0;
}

.insight-featured-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.insight-featured:hover .insight-featured-bg img {
  transform: scale(1.05);
}

.insight-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.15) 100%);
}

.insight-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
}

.insight-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.insight-featured-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.insight-featured-text {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.65;
  margin-bottom: 16px;
}

.insight-meta {
  font-size: 13px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 16px;
}

.insight-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 16px;
  border: 1px solid rgba(209, 221, 238, 0.72);
  transition: all var(--transition-base);
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 111, 228, 0.25);
}

.insight-card-image {
  width: 180px;
  min-height: 140px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.insight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.insight-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 8px;
}

.insight-card-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.insight-card-meta {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
}

/* ========================================
   CASE STUDIES
   ======================================== */
.case-studies-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.case-studies-slider::-webkit-scrollbar {
  display: none;
}

.case-study-card {
  min-width: 380px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(209, 221, 238, 0.72);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 111, 228, 0.24);
}

.case-study-image {
  height: 220px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.case-study-body {
  padding: 24px;
}

.case-study-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

.case-study-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 10px;
}

.case-study-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: gap var(--transition-fast);
}

.case-study-link:hover {
  gap: 12px;
}

/* ========================================
   PRESS RELEASES
   ======================================== */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.press-featured {
  display: flex;
  gap: 28px;
  padding: 32px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.press-featured:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.press-featured-image {
  width: 220px;
  min-height: 180px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.press-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-featured-body {
  flex: 1;
}

.press-date {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.press-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 12px;
}

.press-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

.press-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.press-list-item {
  padding: 20px 24px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.press-list-item:hover {
  border-color: var(--primary);
  padding-left: 30px;
}

.press-list-item .press-date {
  margin-bottom: 6px;
}

.press-list-item .press-title {
  font-size: 15px;
  margin-bottom: 0;
}

/* ========================================
   NEWSLETTER / CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--gray-900);
  border-radius: 12px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: var(--primary);
  opacity: 0.06;
  border-radius: 50%;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-banner-text {
  font-size: 16px;
  color: var(--gray-300);
}

.cta-banner-form {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner-form input {
  padding: 14px 20px;
  border: 1px solid var(--gray-600);
  background: transparent;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 14px;
  border-radius: 4px;
  width: 300px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.cta-banner-form input::placeholder {
  color: var(--gray-500);
}

.cta-banner-form input:focus {
  border-color: var(--primary);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--white);
  color: var(--gray-800);
  padding: 60px 0 0;
  border-top: 1px solid #e8eef7;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--gray-200);
}

.footer-brand .logo-text {
  font-size: 36px;
}

.footer-brand p {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.7;
  margin-top: 16px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  background: rgba(21, 101, 192, 0.1);
}

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

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-700);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

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

.footer-bottom p {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
}

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

.footer-bottom-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  transition: color var(--transition-fast);
}

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

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ========================================
   AI CHAT WIDGET
   ======================================== */
.ai-chat-widget {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 920;
}

.ai-chat-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  padding: 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.ai-chat-toggle img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: min(360px, calc(100vw - 24px));
  background: var(--white);
  border: 1px solid #d7e0ec;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transition: all var(--transition-base);
}

.ai-chat-widget.open .ai-chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ai-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  color: var(--white);
  background: linear-gradient(135deg, #1565c0 0%, #114a9d 55%, #0b3d85 100%);
}

.ai-chat-header strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.ai-chat-close {
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  opacity: 0.92;
}

.ai-chat-messages {
  height: 280px;
  overflow-y: auto;
  padding: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
}

.ai-chat-message {
  max-width: 88%;
  font-size: 14px;
  line-height: 1.55;
  padding: 11px 13px;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.ai-chat-message.bot {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #dbe6f3;
}

.ai-chat-message.user {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  color: #fff;
  margin-left: auto;
}

.ai-chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #e2eaf5;
  background: var(--white);
}

.ai-chat-form input {
  flex: 1;
  border: 1px solid #cdd9ea;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  color: #0f172a;
}

.ai-chat-form input:focus {
  outline: none;
  border-color: #1565c0;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.16);
}

.ai-chat-form button {
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  color: var(--white);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   PAGE HEADER (for sub-pages)
   ======================================== */
.page-header {
  background: var(--white);
  margin-top: var(--header-height);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary);
  opacity: 0.06;
  border-radius: 50%;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.page-header .breadcrumb a,
.page-header .breadcrumb span {
  font-size: 13px;
  color: var(--gray-600);
}

.page-header .breadcrumb a:hover {
  color: var(--primary);
}

.page-header .breadcrumb .separator {
  color: var(--gray-500);
}

.page-header-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  max-width: 700px;
}

.page-header-description {
  font-size: 17px;
  color: var(--gray-700);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.7;
}
/* ========================================
   PARTNERS SLIDER
   ======================================== */
.partners-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  background: var(--gray-50);
}

.partners-slider {
  display: flex;
  width: max-content;
  animation: partnersScroll 20s linear infinite;
  gap: 60px;
}

.partners-slider:hover {
  animation-play-state: paused;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  flex-shrink: 0;
}

.partner-logo-box {
  width: 140px;
  height: 140px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  margin-bottom: 16px;
  overflow: hidden;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover .partner-logo-box {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.partner-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}

@keyframes partnersScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 30px)); }
}

.section-header.center-align {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header.center-align .section-label::before {
  display: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 1024px) {
  .mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mega-menu-sidebar {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 24px;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --container-padding: 16px;
  }

  .main-nav,
  .header-actions .lang-switcher,
  .header-actions .btn-my-account {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-900);
    z-index: 998;
    padding: 24px;
    overflow-y: auto;
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav-list li {
    border-bottom: 1px solid var(--gray-700);
  }

  .mobile-nav-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
  }

  .mobile-nav-list li.has-submenu .submenu {
    display: none;
    background: var(--gray-800);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-nav-list li.has-submenu .submenu.active {
    display: block;
  }

  .mobile-nav-list li.has-submenu .submenu li {
    border-bottom: 1px solid var(--gray-600);
  }

  .mobile-nav-list li.has-submenu .submenu li a {
    padding: 12px 0 12px 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-200);
  }

  .mobile-nav-list li.has-submenu .submenu li a:hover {
    color: var(--white);
  }

  .submenu-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
  }

  .submenu-toggle.active .submenu-arrow {
    transform: rotate(180deg);
  }

  .hero {
    min-height: 480px;
  }

  .hero-slider {
    min-height: 480px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 15px;
  }

  .section {
    padding: 60px 0;
  }

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

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

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

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

  .insight-featured {
    grid-row: span 1;
    min-height: 380px;
  }

  .insight-card {
    flex-direction: column;
  }

  .insight-card-image {
    width: 100%;
    height: 180px;
  }

  .case-study-card {
    min-width: 300px;
  }

  .press-featured {
    flex-direction: column;
  }

  .press-featured-image {
    width: 100%;
    height: 200px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .cta-banner-form {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner-form input {
    width: 100%;
  }
}

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

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
  }

  .logo-img {
    height: 44px;
    max-width: min(140px, 38vw);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

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