*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --charcoal: #1E1E1E;
  --dark: #2A2A2A;
  --dark-card: #333333;
  --orange: #F5A623;
  --orange-hover: #E6961A;
  --white: #FFFFFF;
  --gray-light: #F7F7F7;
  --gray-mid: #B0B0B0;
  --gray-text: #666666;
}
html { scroll-behavior: smooth; }
h1, h2, h3, h4, h5 { text-transform: uppercase; }
body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--charcoal); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

/* ========== ACCESSIBILITY ========== */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--orange); color: var(--charcoal); padding: 12px 24px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: top 0.3s ease;
}
.skip-link:focus { top: 8px; outline: 3px solid var(--orange); outline-offset: 2px; }
*:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
::selection { background: var(--orange); color: var(--charcoal); }

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .timeline-item { opacity: 1; transform: none; }
  .img-reveal-wrap::before { transform: scaleX(0); }
  .title-animated .word { opacity: 1; transform: none; }
  .parallax-img, .hero-bg-image, .page-hero-bg { transform: none !important; }
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 1001;
  background: var(--orange); width: 0%; transition: width 0.1s linear;
  will-change: width;
}

/* ========== SUBTLE GRAIN TEXTURE ========== */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ========== CUSTOM CURSOR DOT ========== */
.cursor-dot {
  position: fixed; width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%; pointer-events: none; z-index: 9997;
  transition: transform 0.15s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference; opacity: 0;
}
.cursor-dot.visible { opacity: 1; }
.cursor-dot.hover { transform: translate(-50%, -50%) scale(4); opacity: 0.3; }
@media (pointer: coarse) { .cursor-dot { display: none; } }

/* ========== SMOOTH LINK UNDERLINE ========== */
.footer ul a, .breadcrumb a {
  position: relative;
}
.footer ul a::after, .breadcrumb a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.3s ease;
}
.footer ul a:hover::after, .breadcrumb a:hover::after { width: 100%; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(30,30,30,0.97); backdrop-filter: blur(12px);
  padding: 0 60px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-logo { display: flex; align-items: center; gap: 4px; text-decoration: none; cursor: pointer; }
.nav-logo-icon { display: flex; flex-direction: column; gap: 3px; margin-right: 4px; }
.nav-logo-row { display: flex; gap: 3px; }
.nav-logo-dot { width: 10px; height: 10px; background: var(--white); }
.nav-logo-dot.orange { background: var(--orange); }
.nav-logo-text { font-size: 38px; font-weight: 700; color: var(--white); letter-spacing: 2px; }
.nav-logo-text span { color: var(--orange); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--gray-mid); text-decoration: none; font-size: 14px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s ease;
  position: relative; cursor: pointer;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--orange); color: var(--charcoal); padding: 10px 28px; border: none;
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none;
}
.nav-cta:hover { background: var(--orange-hover); transform: translateY(-1px); }
/* Language Switcher */
.lang-switch { display: flex; gap: 4px; margin-left: 12px; }
.lang-btn { color: var(--gray-mid); text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; padding: 4px 8px; border: 1px solid rgba(255,255,255,0.15); transition: all 0.3s ease; cursor: pointer; }
.lang-btn.active { color: var(--orange); border-color: var(--orange); }
.lang-btn:hover { color: var(--white); border-color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(30,30,30,0.98);
  padding: 24px; flex-direction: column; gap: 20px; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--gray-mid); text-decoration: none; font-size: 16px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px; padding: 8px 0; transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--orange); }

/* ========== PAGE TRANSITIONS ========== */
.page { display: none; opacity: 0; transition: opacity 0.4s ease; }
.page.active { display: block; animation: pageFadeIn 0.5s ease forwards; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 140px 60px 80px; background: var(--charcoal); position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; opacity: 0.32; background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,30,30,0.88) 0%, rgba(30,30,30,0.55) 60%, rgba(30,30,30,0.35) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero .breadcrumb {
  font-size: 13px; font-weight: 400; color: var(--gray-mid); margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--orange); text-decoration: none; }
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero p { font-size: 17px; font-weight: 300; color: var(--gray-mid); line-height: 1.7; max-width: 560px; }

/* ========== HERO (Home) ========== */
.hero {
  min-height: 100vh; background: var(--charcoal);
  display: flex; align-items: center; position: relative; overflow: hidden; padding: 0 60px;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1920&q=80') center center / cover no-repeat;
  opacity: 0.38;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,30,30,0.9) 0%, rgba(30,30,30,0.6) 45%, rgba(30,30,30,0.25) 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 25% 25%, var(--orange) 1px, transparent 1px), radial-gradient(circle at 75% 75%, var(--orange) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }

/* ========== HERO CAROUSEL (Econocom-style) ========== */
.hero-carousel {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 8s linear, opacity 1.2s ease;
  opacity: 0.35;
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}
.hero-overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,30,30,0.92) 0%, rgba(30,30,30,0.6) 45%, rgba(30,30,30,0.2) 100%);
}
/* Kinetic keyword — Ports4Impact-style fix */
.hero-keyword-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
  min-height: 1.2em;
}
.hero-keyword {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1), transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-keyword.active {
  position: relative;
  transform: translateY(0);
  opacity: 1;
}
.hero-keyword.exit {
  position: absolute;
  transform: translateY(-110%);
  opacity: 0;
}
/* Sub-tagline rotation */
.hero-tagline-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 28px;
}
.hero-tagline {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.15s;
  transform: translateY(110%);
  opacity: 0;
}
.hero-tagline.active {
  position: relative;
  transform: translateY(0);
  opacity: 1;
}
.hero-tagline.exit {
  position: absolute;
  transform: translateY(-110%);
  opacity: 0;
}
/* Side progress dots */
.hero-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}
.hero-dot.active {
  border-color: var(--orange);
  background: var(--orange);
}
.hero-dot::after {
  content: attr(data-label);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-mid);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-50%) translateX(8px);
  pointer-events: none;
}
.hero-dot:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.hero-dot.active::after {
  color: var(--orange);
}
/* Progress line under hero */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 10;
  transition: width 0.3s linear;
  width: 0;
}
@media (max-width: 768px) {
  .hero-dots { display: none; }
  .hero-keyword { font-size: clamp(28px, 8vw, 42px); }
  .hero-tagline { font-size: 12px; white-space: normal; }
}
.hero-badge {
  display: inline-block; border: 1px solid rgba(245,166,35,0.4); color: var(--orange);
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 20px; margin-bottom: 32px; animation: fadeInUp 0.8s ease both;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 72px); font-weight: 800; color: var(--white);
  line-height: 1.08; margin-bottom: 28px; animation: fadeInUp 0.8s ease 0.15s both;
}
.hero h1 .accent { color: var(--orange); }
.hero p {
  font-size: 18px; font-weight: 300; color: var(--gray-mid); line-height: 1.7;
  max-width: 540px; margin-bottom: 40px; animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-actions { display: flex; gap: 16px; animation: fadeInUp 0.8s ease 0.45s both; }

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--orange); color: var(--charcoal); padding: 16px 40px; border: none;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.3); }
.btn-secondary {
  background: transparent; color: var(--white); padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.25); font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-outline-dark {
  background: transparent; color: var(--charcoal); padding: 14px 36px;
  border: 2px solid var(--charcoal); font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--dark); border-top: 1px solid rgba(245,166,35,0.15);
  padding: 48px 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.stat-item { text-align: center; }
.stat-number { font-size: 42px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; font-weight: 400; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 1px; }

/* ========== SECTIONS ========== */
.section { padding: 100px 60px; }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-light { background: var(--gray-light); }
.section-header { text-align: center; margin-bottom: 72px; }
.section-tag { font-size: 12px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 16px; font-weight: 300; color: var(--gray-text); max-width: 560px; margin: 0 auto; line-height: 1.6; }
.section-dark .section-subtitle { color: var(--gray-mid); }

/* ========== EXPERTISE CARDS ========== */
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1200px; margin: 0 auto; }
.expertise-card {
  background: var(--white); padding: 44px 36px; border: 1px solid #ECECEC;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.expertise-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.expertise-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.expertise-card:hover::before { transform: scaleX(1); }
.expertise-icon { width: 48px; height: 48px; background: var(--charcoal); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.expertise-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.expertise-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--charcoal); }
.expertise-card p { font-size: 14px; font-weight: 300; color: var(--gray-text); line-height: 1.7; }

/* Detail card (expertise page) */
.expertise-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px;
  margin: 0 auto 80px; align-items: center;
}
.expertise-detail.reverse { direction: rtl; }
.expertise-detail.reverse > * { direction: ltr; }
.expertise-detail-img {
  width: 100%; height: 360px; object-fit: cover; filter: brightness(0.85);
}
.expertise-detail-content h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; color: var(--charcoal); }
.expertise-detail-content p { font-size: 15px; font-weight: 300; color: var(--gray-text); line-height: 1.8; margin-bottom: 16px; }
.expertise-detail-content ul { list-style: none; padding: 0; }
.expertise-detail-content ul li {
  font-size: 14px; font-weight: 400; color: var(--charcoal); padding: 6px 0;
  padding-left: 20px; position: relative;
}
.expertise-detail-content ul li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 8px; height: 2px; background: var(--orange);
}

/* ========== SECTOR CARDS ========== */
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.sector-card { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); transition: all 0.4s ease; overflow: hidden; position: relative; }
.sector-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.sector-img { width: 100%; height: 160px; object-fit: cover; display: block; filter: grayscale(30%) brightness(0.7); transition: all 0.4s ease; }
.sector-card:hover .sector-img { filter: grayscale(0%) brightness(0.85); transform: scale(1.04); }
.sector-img-wrap { overflow: hidden; position: relative; }
.sector-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, var(--dark-card)); }
.sector-body { padding: 24px 24px 28px; text-align: left; }
.sector-icon-svg { width: 36px; height: 36px; margin-bottom: 14px; display: block; }
.sector-icon-svg svg { width: 36px; height: 36px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sector-card h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.sector-card p { font-size: 13px; font-weight: 300; color: var(--gray-mid); line-height: 1.6; }

/* Sector detail (sectors page) */
.sector-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
.sector-detail-card {
  background: var(--white); overflow: hidden; border: 1px solid #ECECEC; transition: all 0.4s ease;
}
.sector-detail-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.sector-detail-card img { width: 100%; height: 220px; object-fit: cover; }
.sector-detail-card .card-body { padding: 28px 32px; }
.sector-detail-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--charcoal); }
.sector-detail-card p { font-size: 14px; font-weight: 300; color: var(--gray-text); line-height: 1.7; }
.sector-detail-card .tag { display: inline-block; background: var(--charcoal); color: var(--orange); font-size: 11px; font-weight: 600; padding: 4px 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }

/* ========== APPROACH ========== */
.approach-wrapper { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.approach-wrapper::before { content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 2px; background: #E0E0E0; }
.approach-step { text-align: center; position: relative; padding: 0 20px; }
.approach-num { width: 80px; height: 80px; background: var(--charcoal); color: var(--orange); font-size: 28px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 2; }
.approach-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--charcoal); }
.approach-step p { font-size: 13px; font-weight: 300; color: var(--gray-text); line-height: 1.6; }

/* ========== CLIENTS MARQUEE ========== */
.clients-marquee { overflow: hidden; padding: 20px 0; }
.clients-track { display: flex; gap: 80px; animation: marquee 25s linear infinite; }
.client-logo { font-size: 22px; font-weight: 600; color: var(--gray-mid); white-space: nowrap; opacity: 0.5; transition: opacity 0.3s ease; }
.client-logo:hover { opacity: 1; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========== WHY OLIUM ========== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
.why-card { padding: 40px 32px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); transition: all 0.3s ease; }
.why-card:hover { border-color: var(--orange); background: rgba(245,166,35,0.04); }
.why-num { font-size: 48px; font-weight: 800; color: var(--orange); opacity: 0.3; margin-bottom: 12px; }
.why-card h4 { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 14px; font-weight: 300; color: var(--gray-mid); line-height: 1.7; }

/* ========== ABOUT PAGE ========== */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px;
  margin: 0 auto; align-items: center;
}
.about-intro img { width: 100%; height: 400px; object-fit: cover; }
.about-intro-text h2 { font-size: 30px; font-weight: 700; margin-bottom: 20px; color: var(--charcoal); }
.about-intro-text p { font-size: 15px; font-weight: 300; color: var(--gray-text); line-height: 1.8; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.value-card { text-align: center; padding: 40px 28px; }
.value-icon { width: 64px; height: 64px; background: var(--charcoal); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.value-icon svg { width: 28px; height: 28px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.value-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: var(--charcoal); }
.value-card p { font-size: 14px; font-weight: 300; color: var(--gray-text); line-height: 1.7; }
.timeline { max-width: 700px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: var(--orange); opacity: 0.3; }
.timeline-item { margin-bottom: 40px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -33px; top: 6px;
  width: 12px; height: 12px; background: var(--orange); border: 3px solid var(--charcoal);
}
.timeline-item h4 { font-size: 16px; font-weight: 600; color: var(--orange); margin-bottom: 4px; }
.timeline-item p { font-size: 14px; font-weight: 300; color: var(--gray-mid); line-height: 1.7; }

/* ========== CAREERS PAGE ========== */
.careers-intro { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.careers-intro p { font-size: 16px; font-weight: 300; color: var(--gray-text); line-height: 1.8; }
.jobs-grid { max-width: 900px; margin: 0 auto; }
.job-card {
  border: 1px solid #ECECEC; padding: 32px 36px; margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.3s ease; background: var(--white);
}
.job-card:hover { border-color: var(--orange); transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.job-info h4 { font-size: 17px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.job-meta { display: flex; gap: 20px; }
.job-meta span { font-size: 13px; font-weight: 400; color: var(--gray-text); }
.job-meta span svg { width: 14px; height: 14px; stroke: var(--orange); fill: none; stroke-width: 1.5; vertical-align: -2px; margin-right: 4px; }
.job-apply {
  background: var(--charcoal); color: var(--orange); padding: 10px 24px;
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; border: none; cursor: pointer;
  transition: all 0.3s ease;
}
.job-apply:hover { background: var(--orange); color: var(--charcoal); }
.perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.perk-card { text-align: center; padding: 32px 20px; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); }
.perk-card svg { width: 32px; height: 32px; stroke: var(--orange); fill: none; stroke-width: 1.5; margin-bottom: 16px; }
.perk-card h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.perk-card p { font-size: 13px; font-weight: 300; color: var(--gray-mid); }

/* ========== CONTACT PAGE ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px; margin: 0 auto; }
.contact-form { background: var(--white); padding: 48px; border: 1px solid #ECECEC; }
.contact-form h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: var(--charcoal); }
.contact-form .form-sub { font-size: 14px; font-weight: 300; color: var(--gray-text); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; border: 1px solid #DDD; font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 300; color: var(--charcoal); transition: border-color 0.3s ease;
  background: var(--gray-light); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info { padding: 48px 0; }
.contact-info h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: var(--charcoal); }
.contact-info > p { font-size: 14px; font-weight: 300; color: var(--gray-text); margin-bottom: 40px; line-height: 1.6; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; background: var(--charcoal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.contact-item-text h5 { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.contact-item-text p { font-size: 14px; font-weight: 300; color: var(--gray-text); }
.contact-item-text a { color: var(--orange); text-decoration: none; }
.contact-map { width: 100%; height: 200px; background: var(--gray-light); border: 1px solid #ECECEC; margin-top: 32px; display: flex; align-items: center; justify-content: center; }
.contact-map span { font-size: 14px; color: var(--gray-text); font-weight: 300; }

/* ========== CTA SECTION ========== */
.cta-section { background: var(--charcoal); padding: 100px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(245,166,35,0.08) 0%, transparent 70%); }
.cta-content { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 17px; font-weight: 300; color: var(--gray-mid); margin-bottom: 36px; }
.cta-section .btn-primary { padding: 18px 52px; font-size: 15px; }

/* ========== FOOTER ========== */
.footer { background: #151515; padding: 72px 60px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 14px; font-weight: 300; color: var(--gray-mid); line-height: 1.7; margin-top: 20px; max-width: 320px; }
.footer h5 { font-size: 13px; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: var(--gray-mid); text-decoration: none; font-size: 14px; font-weight: 300; transition: color 0.3s ease; cursor: pointer; }
.footer ul a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: var(--gray-text); font-weight: 300; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--gray-mid); text-decoration: none; font-size: 14px; transition: all 0.3s ease; }
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered grid children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.6s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.7s; }

/* ========== PARALLAX HERO ========== */
.hero-bg-image, .page-hero-bg {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* ========== IMAGE REVEAL (clip-path wipe) ========== */
.img-reveal-wrap {
  overflow: hidden;
  position: relative;
}
.img-reveal-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.img-reveal-wrap.revealed::before {
  transform: scaleX(0);
}
.img-reveal-wrap img, .img-reveal-wrap .sector-img {
  transform: scale(1.15);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}
.img-reveal-wrap.revealed img, .img-reveal-wrap.revealed .sector-img {
  transform: scale(1);
}

/* ========== 3D TILT HOVER (expertise cards) ========== */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.tilt-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.tilt-card .expertise-icon {
  transition: transform 0.4s ease;
}
.tilt-card:hover .expertise-icon {
  transform: translateZ(20px) scale(1.08);
}

/* ========== SECTOR DETAIL CARD HOVER (image zoom + overlay) ========== */
.sector-detail-card {
  overflow: hidden;
}
.sector-detail-card .img-container {
  position: relative;
  overflow: hidden;
}
.sector-detail-card .img-container img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease;
}
.sector-detail-card:hover .img-container img {
  transform: scale(1.08);
  filter: brightness(0.6);
}
.sector-detail-card .img-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0) 0%, rgba(245,166,35,0.25) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.sector-detail-card:hover .img-container::after {
  opacity: 1;
}
.sector-detail-card .img-container .hover-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s ease 0.1s;
  z-index: 3;
}
.sector-detail-card:hover .img-container .hover-label {
  opacity: 1;
  transform: translateY(0);
}

/* ========== FLOATING IMAGE PARALLAX (about/expertise detail) ========== */
.parallax-img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ========== EXPERTISE DETAIL IMAGE HOVER ========== */
.expertise-detail-img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease;
  position: relative;
}
.expertise-detail:hover .expertise-detail-img {
  transform: scale(1.03);
  filter: brightness(0.75);
}

/* ========== ORANGE LINE ACCENT ANIMATION ========== */
.section-title-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 20px auto 0;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}
.reveal.visible .section-title-line, .section-header.visible .section-title-line {
  transform: scaleX(1);
}

/* ========== SECTOR CARD HOVER ENHANCED ========== */
.sector-card {
  transform-style: preserve-3d;
}
.sector-card .sector-body h4 {
  transition: color 0.3s ease;
}
.sector-card:hover .sector-body h4 {
  color: var(--orange);
}
.sector-card .sector-icon-svg svg {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sector-card:hover .sector-icon-svg svg {
  transform: scale(1.15) rotate(-5deg);
}

/* ========== CTA GLOW PULSE ========== */
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  50% { box-shadow: 0 0 0 16px rgba(245,166,35,0); }
}
.cta-section .btn-primary {
  animation: ctaGlow 3s ease-in-out infinite;
}

/* ========== ANIMATED TITLES ========== */
.highlight {
  color: var(--orange);
  position: relative;
  display: inline;
}
.highlight-underline {
  color: var(--orange);
  position: relative;
  display: inline;
}
.highlight-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.4s;
}
.visible .highlight-underline::after,
.page.active .highlight-underline::after {
  transform: scaleX(1);
}
.title-animated {
  overflow: hidden;
}
.title-animated .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.title-animated.visible .word,
.page.active .title-animated .word {
  opacity: 1;
  transform: translateY(0);
}
.title-animated .word:nth-child(1) { transition-delay: 0.05s; }
.title-animated .word:nth-child(2) { transition-delay: 0.12s; }
.title-animated .word:nth-child(3) { transition-delay: 0.19s; }
.title-animated .word:nth-child(4) { transition-delay: 0.26s; }
.title-animated .word:nth-child(5) { transition-delay: 0.33s; }
.title-animated .word:nth-child(6) { transition-delay: 0.40s; }
.title-animated .word:nth-child(7) { transition-delay: 0.47s; }
.title-animated .word:nth-child(8) { transition-delay: 0.54s; }
.title-animated .word:nth-child(9) { transition-delay: 0.61s; }
.title-animated .word:nth-child(10) { transition-delay: 0.68s; }
@keyframes colorPulse {
  0%, 100% { color: var(--orange); }
  50% { color: #FFD080; }
}
.hero h1 .accent {
  animation: heroTextClip 1s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both, colorPulse 4s ease-in-out 1.5s infinite;
}
.page-hero h1 { animation: fadeInUp 0.8s ease 0.2s both; }
.page-hero h1 .accent { animation: heroTextClip 1s cubic-bezier(0.77, 0, 0.175, 1) 0.6s both; }
.page-hero p { animation: fadeInUp 0.8s ease 0.5s both; }
.page-hero .breadcrumb { animation: fadeInUp 0.6s ease 0.1s both; }
.cta-section h2 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  animation: lineGrow 1s ease 0.5s both;
}
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.expertise-detail-content h3 {
  position: relative;
  padding-left: 16px;
}
.expertise-detail-content h3::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
.reveal-left.visible .expertise-detail-content h3::before,
.reveal-right.visible .expertise-detail-content h3::before {
  transform: scaleY(1);
}
.sector-detail-card h3 { transition: color 0.3s ease; }
.sector-detail-card:hover h3 { color: var(--orange); }

/* ========== HERO TEXT REVEAL ========== */
@keyframes heroTextClip {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

/* ========== VALUE CARD HOVER ========== */
.value-card {
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.value-card:hover {
  border-color: #ECECEC;
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.value-icon {
  transition: all 0.4s ease;
}
.value-card:hover .value-icon {
  background: var(--orange);
}
.value-card:hover .value-icon svg {
  stroke: var(--charcoal);
}

/* ========== ABOUT IMAGE PARALLAX FRAME ========== */
.about-img-wrap {
  position: relative;
  overflow: hidden;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 2px solid var(--orange);
  z-index: -1;
  transition: all 0.5s ease;
}
.about-img-wrap:hover::after {
  top: 12px; left: 12px; right: -12px; bottom: -12px;
}

/* ========== TIMELINE ANIMATION ========== */
.timeline-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--charcoal); color: var(--gray-mid); padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 14px; font-weight: 300; line-height: 1.6;
  transform: translateY(100%); transition: transform 0.5s ease;
  border-top: 2px solid var(--orange);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { max-width: 700px; }
.cookie-banner p a { color: var(--orange); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn-accept { background: var(--orange); color: var(--charcoal); padding: 10px 24px; border: none; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; }
.cookie-btn-reject { background: transparent; color: var(--gray-mid); padding: 10px 24px; border: 1px solid rgba(255,255,255,0.2); font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; }

/* ========== LEGAL PAGE ========== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--charcoal); margin: 32px 0 12px; }
.legal-content h3 { font-size: 17px; font-weight: 600; color: var(--charcoal); margin: 24px 0 8px; }
.legal-content p { font-size: 15px; font-weight: 300; color: var(--gray-text); line-height: 1.8; margin-bottom: 12px; }

/* ========== BLOG PAGE ========== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.blog-card { background: var(--white); border: 1px solid #ECECEC; overflow: hidden; transition: all 0.4s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card-body .blog-date { font-size: 12px; font-weight: 500; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card-body h3 { font-size: 17px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; font-weight: 300; color: var(--gray-text); line-height: 1.7; }

/* ========== NOSCRIPT ========== */
noscript .noscript-msg { padding: 20px; background: var(--orange); color: var(--charcoal); text-align: center; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 500; }

/* ========== BUTTON MICRO-ANIMATIONS ========== */
.btn-primary, .btn-secondary, .btn-outline-dark, .nav-cta, .job-apply {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .nav-cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-primary:hover::after, .nav-cta:hover::after {
  width: 300px; height: 300px;
}
.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.btn-secondary:hover::after {
  transform: scaleX(1);
}

/* Stat number hover glow */
.stat-number {
  transition: text-shadow 0.3s ease;
}
.stat-item:hover .stat-number {
  text-shadow: 0 0 20px rgba(245,166,35,0.4);
}

/* Approach step hover */
.approach-num {
  transition: all 0.4s ease;
}
.approach-step:hover .approach-num {
  background: var(--orange);
  color: var(--charcoal);
  transform: scale(1.08);
}

/* Form input focus animation */
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}

/* Perk card icon rotation */
.perk-card svg {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.perk-card:hover svg {
  transform: rotateY(180deg);
}

/* Footer social hover scale */
.footer-social a {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px) scale(1.1);
}

/* Smooth section separator */
.section + .section-dark::before,
.section-dark + .section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3), transparent);
}

/* Content visibility for off-screen pages (performance) */
.page:not(.active) {
  content-visibility: hidden;
  contain-intrinsic-size: 0 5000px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .navbar { padding: 0 32px; } .hero { padding: 0 32px; } .section { padding: 72px 32px; }
  .stats-bar { padding: 36px 32px; grid-template-columns: repeat(2, 1fr); }
  .expertise-grid, .sectors-grid, .sector-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-wrapper { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .approach-wrapper::before { display: none; }
  .why-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-detail { grid-template-columns: 1fr; gap: 32px; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 120px 32px 60px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; } .nav-cta { display: none; } .hamburger { display: flex; }
  .hero { padding: 120px 24px 60px; min-height: auto; }
  .section { padding: 60px 24px; } .stats-bar { padding: 32px 24px; }
  .expertise-grid, .sectors-grid, .sector-detail-grid, .values-grid, .perks-grid, .blog-grid { grid-template-columns: 1fr; }
  .approach-wrapper { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .footer { padding: 48px 24px 24px; } .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cookie-banner { flex-direction: column; padding: 20px 24px; text-align: center; }
  .cookie-btns { justify-content: center; }
  .page-hero { padding: 110px 24px 48px; }
  .form-row { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .contact-form { padding: 32px 24px; }
}

/* ========================================================================== */
/* ============ PREMIUM ANIMATION PACKAGE — DETAILS QUI FONT LA DIFF ======= */
/* ========================================================================== */

/* ===== CARD SHINE EFFECT (hover reveals a light sweep) ===== */
.expertise-card, .sector-detail-card, .sector-card, .why-card, .value-card, .perk-card, .blog-card, .job-card {
  position: relative;
  overflow: hidden;
}
.expertise-card::after, .sector-detail-card::after, .blog-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 5;
}
.expertise-card:hover::after, .sector-detail-card:hover::after, .blog-card:hover::after {
  left: 150%;
}

/* ===== IMAGE ZOOM ON SCROLL (subtle ken burns as you scroll past) ===== */
.sector-detail-card img, .blog-card img {
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}
.sector-detail-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.65);
}
.blog-card:hover img {
  transform: scale(1.06);
}

/* ===== FLOATING DOT PARTICLES BACKGROUND ===== */
.hero::after {
  content: '';
  position: absolute;
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  top: 30%;
  right: 20%;
  opacity: 0.3;
  animation: floatDot 6s ease-in-out infinite;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  bottom: 25%;
  right: 35%;
  opacity: 0.15;
  animation: floatDot 8s ease-in-out 2s infinite;
  z-index: 1;
}
@keyframes floatDot {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.15; }
  25% { transform: translateY(-20px) translateX(10px); opacity: 0.3; }
  50% { transform: translateY(-8px) translateX(-5px); opacity: 0.2; }
  75% { transform: translateY(-25px) translateX(15px); opacity: 0.35; }
}

/* ===== SCROLL INDICATOR ARROW (bottom of hero) ===== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.scroll-indicator:hover { opacity: 1; }
.scroll-indicator svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 2; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTION DIVIDER LINES ===== */
.section-divider {
  width: 80px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto 40px;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
.reveal.visible .section-divider { transform: scaleX(1); }

/* ===== MAGNETIC BUTTON EFFECT ===== */
.btn-primary, .btn-secondary, .nav-cta {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-primary:active { transform: scale(0.96); }
.btn-secondary:active { transform: scale(0.96); }

/* ===== STAT COUNTER GLOW ===== */
.stat-item {
  transition: all 0.4s ease;
  padding: 20px;
}
.stat-item:hover {
  background: rgba(245,166,35,0.05);
}
.stat-item:hover .stat-number {
  text-shadow: 0 0 30px rgba(245,166,35,0.5);
  transform: scale(1.05);
}
.stat-number {
  transition: all 0.4s ease;
  display: inline-block;
}

/* ===== EXPERTISE CARD ICON FLOAT ===== */
.expertise-icon {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.expertise-card:hover .expertise-icon {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(245,166,35,0.2);
}

/* ===== APPROACH STEP CONNECTOR ANIMATION ===== */
.approach-num {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.approach-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--orange);
  opacity: 0;
  transition: all 0.4s ease;
}
.approach-step:hover .approach-num::after {
  opacity: 0.3;
  inset: -8px;
}
.approach-step:hover .approach-num {
  background: var(--orange);
  color: var(--charcoal);
  transform: scale(1.1);
}

/* ===== JOB CARD ARROW ===== */
.job-card::after {
  content: '→';
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  font-size: 20px;
  color: var(--orange);
  opacity: 0;
  transition: all 0.4s ease;
}
.job-card:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ===== VALUE CARD ICON SPIN ===== */
.value-icon svg {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.value-card:hover .value-icon svg {
  transform: rotateY(180deg);
}

/* ===== PERK CARD GLOW BORDER ===== */
.perk-card {
  transition: all 0.4s ease;
  position: relative;
}
.perk-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--orange), transparent, var(--orange));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.perk-card:hover::before {
  opacity: 0.3;
}
.perk-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.3);
}

/* ===== BLOG CARD DATE TAG ===== */
.blog-card-body .blog-date {
  position: relative;
  display: inline-block;
}
.blog-card-body .blog-date::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-date::after {
  transform: scaleX(1);
}

/* ===== CONTACT ITEM HOVER ===== */
.contact-item {
  transition: all 0.3s ease;
  padding: 8px;
  margin: -8px;
  border-radius: 0;
}
.contact-item:hover {
  background: rgba(245,166,35,0.03);
}
.contact-item-icon {
  transition: all 0.4s ease;
}
.contact-item:hover .contact-item-icon {
  background: var(--orange);
}
.contact-item:hover .contact-item-icon svg {
  stroke: var(--charcoal);
}

/* ===== TIMELINE DOT PULSE ===== */
.timeline-item::before {
  transition: all 0.4s ease;
}
.timeline-item:hover::before {
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.2);
}

/* ===== NAV LINK ACTIVE INDICATOR DOT ===== */
.nav-links a.active::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

/* ===== HERO BADGE SHIMMER ===== */
@keyframes badgeShimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
.hero-badge {
  background: linear-gradient(90deg, transparent 0%, rgba(245,166,35,0.08) 50%, transparent 100%);
  background-size: 200px 100%;
  animation: badgeShimmer 3s linear infinite;
}

/* ===== SMOOTH IMAGE ENTRANCE ===== */
@keyframes imgRevealZoom {
  from { transform: scale(1.15); filter: brightness(0.5); }
  to { transform: scale(1); filter: brightness(1); }
}
.img-reveal-wrap.revealed img {
  animation: imgRevealZoom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ===== FOOTER LINK HOVER SLIDE ===== */
.footer ul a {
  display: inline-block;
  transition: all 0.3s ease;
}
.footer ul a:hover {
  transform: translateX(4px);
  color: var(--orange);
}

/* ===== CTA SECTION ANIMATED BACKGROUND ===== */
@keyframes ctaBgPulse {
  0%, 100% { opacity: 0.06; transform: scale(1); }
  50% { opacity: 0.12; transform: scale(1.05); }
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  animation: ctaBgPulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* ===== PAGE HERO TEXT STAGGER ===== */
.page-hero h1 {
  animation: fadeInUp 0.8s ease 0.2s both;
}
.page-hero .breadcrumb {
  animation: fadeInUp 0.5s ease 0s both;
}
.page-hero p {
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* ===== ABOUT FRAME FLOAT ===== */
@keyframes frameFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, -4px); }
}
.about-img-wrap::after {
  animation: frameFloat 4s ease-in-out infinite;
}

/* ========== PRINT ========== */
@media print {
  .navbar, .hamburger, .mobile-menu, .scroll-progress, .cursor-dot, .cookie-banner,
  .hero-dots, .hero-progress, .cta-section, .footer-social, .btn-primary, .btn-secondary { display: none !important; }
  body::after { display: none !important; }
  .page { display: block !important; opacity: 1 !important; transform: none !important; }
  .reveal, .reveal-left, .reveal-right, .timeline-item { opacity: 1 !important; transform: none !important; }
  .section { padding: 24px 0 !important; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10px; color: #666; }
}
