﻿/*
  ═══════════════════════════════════════════════════════════
  COMPANY ELITE DESIGN SYSTEM
  Inspired by: TCS · Infosys · Kyndryl · Wipro · Tech Mahindra
  Architecture: Enterprise-grade, dark-mode ready, responsive
  ═══════════════════════════════════════════════════════════
*/

/* ───────────────────────────────────────────
   1. DESIGN TOKENS
─────────────────────────────────────────── */
:root {
  /* Brand */
  --e-blue:          #064771;
  --e-blue-dark:     #04325e;
  --e-blue-light:    #0678be;
  --e-blue-soft:     rgba(6, 71, 113, 0.10);
  --e-blue-glow:     rgba(6, 71, 113, 0.22);
  --e-teal:          #ea1f28;
  --e-teal-dark:     #c2181f;
  --e-teal-soft:     rgba(234, 31, 40, 0.10);
  --e-teal-glow:     rgba(234, 31, 40, 0.20);
  --e-violet:        #0678be;
  --e-violet-soft:   rgba(6, 120, 190, 0.10);
  --e-orange:        #ea1f28;
  --e-orange-soft:   rgba(234, 31, 40, 0.10);
  --e-navy:          #030d1e;
  --e-navy-mid:      #051628;
  --e-navy-surface:  #064771;

  /* Neutrals */
  --e-bg:            #FFFFFF;
  --e-bg-alt:        #f8f3eb;
  --e-bg-soft:       #fffdf8;
  --e-section-bg:    #faf7f0;
  --e-section-bg-alt:#f6efe4;
  --e-section-bg-soft:#fffdf8;
  --e-text:          #0D1117;
  --e-text-muted:    #5B6B8A;
  --e-text-soft:     #8A97B0;
  --e-border:        rgba(13,17,23,0.08);
  --e-border-strong: rgba(13,17,23,0.14);
  --e-white:         #FFFFFF;

  /* Typography */
  --e-font-heading: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --e-font-body:    "Inter", system-ui, -apple-system, sans-serif;

  /* Shadows */
  --e-shadow-xs:   0 1px 4px rgba(13,17,55,0.05), 0 4px 12px rgba(13,17,55,0.04);
  --e-shadow-sm:   0 4px 16px rgba(13,17,55,0.08), 0 1px 4px rgba(13,17,55,0.05);
  --e-shadow-md:   0 12px 40px rgba(13,17,55,0.10), 0 4px 12px rgba(13,17,55,0.07);
  --e-shadow-lg:   0 24px 80px rgba(13,17,55,0.14), 0 8px 24px rgba(13,17,55,0.09);
  --e-shadow-blue: 0 12px 40px rgba(6,71,113,0.25);
  --e-shadow-teal: 0 12px 40px rgba(234,31,40,0.22);

  /* Radii */
  --e-r-xs:   6px;
  --e-r-sm:   10px;
  --e-r-md:   16px;
  --e-r-lg:   24px;
  --e-r-xl:   32px;
  --e-r-pill: 999px;

  /* Motion */
  --e-ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --e-ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --e-ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --e-dur-fast:  180ms;
  --e-dur-base:  320ms;
  --e-dur-slow:  560ms;

  /* Gradients */
  --e-grad-blue:      linear-gradient(135deg, #064771 0%, #0678be 100%);
  --e-grad-teal:      linear-gradient(135deg, #ea1f28 0%, #c2181f 100%);
  --e-grad-brand:     linear-gradient(135deg, #064771 0%, #0678be 100%);
  --e-grad-dark:      linear-gradient(135deg, #030d1e 0%, #064771 100%);
  --e-grad-hero:      linear-gradient(135deg, #020e24 0%, #030d1e 60%, #051628 100%);
  --e-grad-text:      linear-gradient(135deg, #064771 0%, #0678be 55%, #ea1f28 100%);
  --e-grad-card-top:  linear-gradient(90deg, #064771 0%, #0678be 100%);
}

/* Dark mode tokens */
/* ───────────────────────────────────────────
   2. GLOBAL BASE
─────────────────────────────────────────── */
body.company-site {
  /* Multi-shade white background: base + subtle alt layers for depth */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%),
    linear-gradient(180deg, var(--e-section-bg-soft) 0%, var(--e-section-bg) 48%, var(--e-section-bg-alt) 100%) !important;
  color: var(--e-text) !important;
  font-family: var(--e-font-body) !important;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.company-site h1,
body.company-site h2,
body.company-site h3,
body.company-site h4,
body.company-site h5,
body.company-site h6 {
  font-family: var(--e-font-heading) !important;
  color: var(--e-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.company-site-chrome { display: none; }

/* ───────────────────────────────────────────
   3. NAVIGATION / HEADER
─────────────────────────────────────────── */

/* Light enterprise header */
body.company-site #header {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
  border-bottom: 1px solid var(--e-border) !important;
  padding: 0 !important;
  height: 72px;
  transition: all var(--e-dur-base) var(--e-ease);
  box-shadow: 0 6px 24px rgba(13,17,23,0.06);
  z-index: 9999;
  color: var(--e-text);
}

/* Home page: fully transparent over hero */
body.company-site #header.header-transparent {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

/* After scroll: fully opaque light */
body.company-site #header.header-scrolled {
  background: rgba(255,255,255,0.98) !important;
  border-bottom-color: var(--e-border-strong) !important;
  box-shadow: 0 8px 40px rgba(13,17,23,0.06) !important;
}

/* Active link bottom-highlight visible after scroll on transparent state too */
body.company-site #header.header-scrolled #navbar > ul > li > a.active {
  color: #fff !important;
  background: rgba(0, 87, 255, 0.22) !important;
}

body.company-site .company-nav-shell {
  height: 72px;
}

/* ── Logo ── */
body.company-site .company-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

body.company-site .company-logo__mark {
  width: 40px;
  height: 40px;
  background: var(--e-grad-brand);
  color: #fff;
  font-family: var(--e-font-heading);
  font-weight: 800;
  font-size: 18px;
  border-radius: var(--e-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--e-blue-glow);
  transition: transform var(--e-dur-base) var(--e-ease-back);
}

body.company-site .company-logo a:hover .company-logo__mark {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 24px var(--e-blue-glow);
}

body.company-site .company-logo__title {
  display: block;
  font-family: var(--e-font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--e-text);
  letter-spacing: -0.03em;
  line-height: 1;
}

body.company-site .company-logo__subtitle {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--e-text-soft);
  line-height: 1;
  margin-top: 3px;
}

/* ── Nav links ── */
body.company-site #navbar > ul {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.company-site #navbar > ul > li > a {
  font-family: var(--e-font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--e-text) !important;
  text-decoration: none;
  padding: 8px 13px;
  border-radius: var(--e-r-xs);
  transition: all var(--e-dur-fast) var(--e-ease);
  position: relative;
  letter-spacing: 0.01em;
}

body.company-site #navbar > ul > li > a:hover {
  color: var(--e-blue) !important;
  background: rgba(0, 87, 255, 0.06);
}

body.company-site #navbar > ul > li > a.active {
  color: #fff !important;
  background: var(--e-blue) !important;
  border-radius: var(--e-r-xs);
}

/* ── Login ghost button ── */
body.company-site .company-nav-login {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--e-text) !important;
  border: 1px solid var(--e-border) !important;
  border-radius: var(--e-r-pill) !important;
  padding: 7px 16px !important;
  transition: all var(--e-dur-fast) var(--e-ease) !important;
}

body.company-site .company-nav-login:hover {
  border-color: var(--e-blue) !important;
  color: var(--e-blue) !important;
  background: var(--e-blue-soft) !important;
}

/* ── CTA button ── */
body.company-site .company-nav-cta .company-nav-contact {
  background: var(--e-grad-blue) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: var(--e-r-pill) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 4px 16px var(--e-blue-glow);
  transition: all var(--e-dur-base) var(--e-ease-out) !important;
  white-space: nowrap;
}

body.company-site .company-nav-cta .company-nav-contact:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px var(--e-blue-glow) !important;
  background: linear-gradient(135deg, #064771 0%, #0678be 100%) !important;
}

/* ── Mobile nav toggle ── */
body.company-site .mobile-nav-toggle {
  font-size: 22px;
  color: var(--e-text-muted);
  cursor: pointer;
  display: none;
  line-height: 1;
  transition: color var(--e-dur-fast);
}

body.company-site .mobile-nav-toggle:hover { color: var(--e-text); }

/* ───────────────────────────────────────────
   4. HERO SECTION
─────────────────────────────────────────── */
.e-hero {
  position: relative;
  min-height: 100vh;
  /* Use light / white hero background to match the rest of the site */
  background: linear-gradient(180deg, var(--e-section-bg-soft) 0%, var(--e-section-bg) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px; /* floating header: 10px offset + 68px height + buffer */
}

/* Particle mesh bg — toned down for light backgrounds */
.e-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 25%, rgba(0,87,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 15%, rgba(124,58,237,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 70% 80% at 75% 90%, rgba(0,201,167,0.05) 0%, transparent 50%);
  z-index: 1;
}

/* Animated grid overlay */
.e-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 20%, rgba(0,0,0,0.6) 80%, transparent 100%);
  z-index: 1;
}

.e-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 80px;
  padding-top: 60px;
}

.e-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--e-blue-soft);
  border: 1px solid rgba(0,87,255,0.18);
  color: var(--e-blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--e-r-pill);
  margin-bottom: 20px;
}

.e-hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ea1f28;
  box-shadow: 0 0 8px #ea1f28;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.e-hero__title {
  font-family: var(--e-font-heading) !important;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--e-text);
  margin-bottom: 20px;
}

.e-hero__title .e-grad-text {
  background: var(--e-grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.e-hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: var(--e-text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 20px!important;
}

.e-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.e-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--e-grad-blue);
  color: #fff !important;
  font-family: var(--e-font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--e-r-pill);
  text-decoration: none;
  box-shadow: 0 6px 20px var(--e-blue-glow);
  transition: all var(--e-dur-base) var(--e-ease-out);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.e-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--e-blue-glow);
  background: linear-gradient(135deg, #1A66FF 0%, #2B80FF 100%);
}

.e-btn-primary i { font-size: 15px; transition: transform var(--e-dur-base) var(--e-ease-back); }
.e-btn-primary:hover i { transform: translateX(4px); }

.e-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--e-text) !important;
  font-family: var(--e-font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: var(--e-r-pill);
  text-decoration: none;
  border: 1.5px solid var(--e-border-strong);
  transition: all var(--e-dur-base) var(--e-ease);
  white-space: nowrap;
}

.e-btn-ghost:hover {
  background: var(--e-blue-soft);
  border-color: var(--e-blue);
  color: var(--e-blue) !important;
  transform: translateY(-2px);
}

/* Hero stats row */
.e-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--e-border);
}

.e-hero-stat__value {
  display: block;
  font-family: var(--e-font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--e-text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.e-hero-stat__label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--e-text-soft);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero illustration (right column) */
.e-hero__visual {
  position: relative;
  padding-left: 40px;
}

.e-hero-card {
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-lg);
  padding: 28px;
  margin-bottom: 16px;
  transition: transform var(--e-dur-slow) var(--e-ease);
  box-shadow: var(--e-shadow-xs);
}

.e-hero-card:first-child { animation: float-up 6s ease-in-out infinite; }
.e-hero-card:last-child { animation: float-up 6s ease-in-out infinite 1.5s; }

@keyframes float-up {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.e-hero-card__icon {
  width: 44px;
  height: 44px;
  background: var(--e-grad-brand);
  border-radius: var(--e-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: var(--e-shadow-blue);
}

.e-hero-card__title {
  font-family: var(--e-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--e-text);
  margin-bottom: 8px;
}

.e-hero-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.e-hero-card__list li {
  font-size: 13px;
  color: var(--e-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.e-hero-card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--e-teal);
  flex-shrink: 0;
}

/* ───────────────────────────────────────────
   5. LOGO MARQUEE STRIP
─────────────────────────────────────────── */
.e-marquee-section {
  background: var(--e-section-bg-alt);
  border-top: 1px solid var(--e-border);
  border-bottom: 1px solid var(--e-border);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}

.e-marquee-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--e-text-soft);
  text-align: center;
  margin-bottom: 16px;
}

.e-marquee-track {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.e-marquee-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.e-marquee-inner:nth-child(2) {
  animation-delay: -14s;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.e-marquee-item {
  font-family: var(--e-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--e-text-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  letter-spacing: -0.01em;
  transition: color var(--e-dur-fast) var(--e-ease);
}

.e-marquee-item:hover { color: var(--e-blue); }

.e-marquee-item i {
  font-size: 18px;
  color: var(--e-blue-light);
  opacity: 0.7;
}

.e-marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--e-border-strong);
  flex-shrink: 0;
}

/* ───────────────────────────────────────────
   6. SECTION CORE STYLES
─────────────────────────────────────────── */
.e-section {
  padding: clamp(64px, 7vw, 100px) 0;
}

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

.e-section--dark {
  background: linear-gradient(180deg, var(--e-section-bg-soft) 0%, var(--e-section-bg) 100%);
  color: var(--e-text);
  border-top: 1px solid var(--e-border);
  border-bottom: 1px solid var(--e-border);
}

.e-section--dark .e-section-title,
.e-section--dark .e-kicker,
.e-section--dark .e-section-subtitle {
  color: inherit;
}

/* Section header pattern (matches how Infosys/TCS does it) */
.e-section-header {
  max-width: 680px;
  margin: 0 auto clamp(48px, 5vw, 72px);
  text-align: center;
}

.e-section-header--left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.e-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--e-blue);
  margin-bottom: 14px;
}

.e-kicker::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--e-grad-brand);
  border-radius: 2px;
}

.e-section-title {
  font-family: var(--e-font-heading) !important;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--e-text);
  margin-bottom: 16px;
  line-height: 1.12;
}

.e-section-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 400;
  color: var(--e-text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.e-section-header--left .e-section-subtitle { max-width: 480px; }

/* ───────────────────────────────────────────
   7. SERVICE CARDS
─────────────────────────────────────────── */
.e-service-card {
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-lg);
  padding: 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--e-dur-base) var(--e-ease-out),
    box-shadow var(--e-dur-base) var(--e-ease-out),
    border-color var(--e-dur-base) var(--e-ease);
  display: flex;
  flex-direction: column;
}

/* Gradient top line */
.e-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--e-grad-card-top);
  opacity: 0;
  transition: opacity var(--e-dur-base) var(--e-ease);
}

.e-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--e-shadow-md);
  border-color: rgba(0,87,255,0.2);
}

.e-service-card:hover::before { opacity: 1; }

.e-service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--e-r-md);
  background: var(--e-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--e-blue);
  margin-bottom: 20px;
  transition: all var(--e-dur-base) var(--e-ease-back);
  flex-shrink: 0;
}

.e-service-card:hover .e-service-icon {
  background: var(--e-grad-brand);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--e-shadow-blue);
}

.e-service-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--e-teal);
  margin-bottom: 8px;
}

.e-service-title {
  font-family: var(--e-font-heading) !important;
  font-size: 19px;
  font-weight: 700;
  color: var(--e-text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.e-service-description {
  font-size: 14px;
  color: var(--e-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.e-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--e-blue);
  text-decoration: none;
  transition: gap var(--e-dur-fast) var(--e-ease-back);
}

.e-service-link i { font-size: 14px; transition: transform var(--e-dur-fast) var(--e-ease-back); }
.e-service-link:hover { color: var(--e-blue-dark); }
.e-service-link:hover i { transform: translateX(4px); }

/* ───────────────────────────────────────────
   8. STATS SECTION
─────────────────────────────────────────── */
.e-stats-section {
  background: linear-gradient(180deg, var(--e-section-bg-soft) 0%, var(--e-section-bg) 100%);
  padding: clamp(56px, 6vw, 88px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--e-border);
  border-bottom: 1px solid var(--e-border);
}

.e-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,71,113,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,71,113,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.e-stat-item {
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.e-stat-item + .e-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(13,17,23,0.08);
}

.e-stat-value {
  font-family: var(--e-font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--e-text);
  line-height: 1;
  margin-bottom: 8px;
}

.e-stat-value .e-stat-accent {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--e-blue);
}

.e-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--e-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ───────────────────────────────────────────
   9. ABOUT / WHY US SECTION
─────────────────────────────────────────── */
.e-about-media {
  position: relative;
  border-radius: var(--e-r-xl);
  overflow: hidden;
}

.e-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  border-radius: var(--e-r-xl);
  display: block;
}

.e-about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(3,7,30,0.86);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--e-r-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.e-about-badge__icon {
  width: 44px;
  height: 44px;
  background: var(--e-grad-brand);
  border-radius: var(--e-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.e-about-badge__text strong {
  display: block;
  font-family: var(--e-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.e-about-badge__text span {
  font-size: 12px;
  color: rgba(235,240,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

.e-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.e-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.e-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--e-r-sm);
  background: var(--e-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--e-blue);
  flex-shrink: 0;
  transition: all var(--e-dur-base) var(--e-ease-back);
}

.e-feature-item:hover .e-feature-icon {
  background: var(--e-grad-brand);
  color: #fff;
  transform: scale(1.08);
}

.e-feature-content__title {
  font-family: var(--e-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--e-text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.e-feature-content__desc {
  font-size: 14px;
  color: var(--e-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ───────────────────────────────────────────
   10. PROCESS STEPS
─────────────────────────────────────────── */
.e-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.e-process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--e-blue), var(--e-teal));
  opacity: 0.25;
  z-index: 0;
}

.e-process-item {
  text-align: center;
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
  transition: transform var(--e-dur-base) var(--e-ease-out);
}

.e-process-item:hover { transform: translateY(-6px); }

.e-process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--e-bg);
  border: 2px solid var(--e-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--e-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--e-text-muted);
  letter-spacing: -0.03em;
  transition: all var(--e-dur-base) var(--e-ease-out);
  position: relative;
}

.e-process-item:hover .e-process-number {
  background: var(--e-grad-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--e-shadow-blue);
}

.e-process-title {
  font-family: var(--e-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--e-text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.e-process-desc {
  font-size: 13.5px;
  color: var(--e-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ───────────────────────────────────────────
   11. PORTFOLIO CARDS
─────────────────────────────────────────── */
.e-portfolio-card {
  border-radius: var(--e-r-lg);
  overflow: hidden;
  position: relative;
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  transition: all var(--e-dur-base) var(--e-ease-out);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.e-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--e-shadow-lg);
  border-color: rgba(0,87,255,0.2);
}

.e-portfolio-card__thumb {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.e-portfolio-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--e-dur-slow) var(--e-ease-out);
  border-radius: 0;
}

.e-portfolio-card:hover .e-portfolio-card__thumb img {
  transform: scale(1.06);
}

.e-portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,87,255,0.8) 0%, rgba(0,201,167,0.7) 100%);
  opacity: 0;
  transition: opacity var(--e-dur-base) var(--e-ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.e-portfolio-card:hover .e-portfolio-card__overlay { opacity: 1; }

.e-portfolio-card__overlay-link {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--e-blue);
  text-decoration: none;
  transform: scale(0.7);
  transition: transform var(--e-dur-base) var(--e-ease-back);
}

.e-portfolio-card:hover .e-portfolio-card__overlay-link {
  transform: scale(1);
}

.e-portfolio-card__body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.e-portfolio-card__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--e-teal);
  margin-bottom: 6px;
}

.e-portfolio-card__title {
  font-family: var(--e-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--e-text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color var(--e-dur-fast) var(--e-ease);
  flex: 1;
}

.e-portfolio-card__title:hover { color: var(--e-blue); }

.e-portfolio-card__desc {
  font-size: 13.5px;
  color: var(--e-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ───────────────────────────────────────────
   12. TESTIMONIAL / CLIENTS
─────────────────────────────────────────── */
.e-testimonial {
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-lg);
  padding: 32px;
  transition: all var(--e-dur-base) var(--e-ease-out);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.e-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--e-shadow-md);
  border-color: rgba(0,87,255,0.18);
}

.e-testimonial__stars {
  font-size: 14px;
  color: #F5A623;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.e-testimonial__quote {
  font-size: 15px;
  color: var(--e-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}

.e-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--e-border);
}

.e-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.e-testimonial__name {
  font-family: var(--e-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--e-text);
  display: block;
  margin-bottom: 2px;
}

.e-testimonial__role {
  font-size: 12px;
  color: var(--e-text-soft);
  font-weight: 500;
}

/* ───────────────────────────────────────────
   13. BLOG / INSIGHT CARDS
─────────────────────────────────────────── */
.e-blog-card {
  border-radius: var(--e-r-lg);
  overflow: hidden;
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  transition: all var(--e-dur-base) var(--e-ease-out);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.e-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--e-shadow-md);
  border-color: rgba(0,87,255,0.18);
}

.e-blog-card__thumb {
  height: 200px;
  overflow: hidden;
}

.e-blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--e-dur-slow) var(--e-ease-out);
}

.e-blog-card:hover .e-blog-card__thumb img { transform: scale(1.05); }

.e-blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.e-blog-card__cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--e-blue);
  background: var(--e-blue-soft);
  padding: 4px 10px;
  border-radius: var(--e-r-pill);
  display: inline-block;
  margin-bottom: 12px;
}

.e-blog-card__title {
  font-family: var(--e-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--e-text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-decoration: none;
  flex: 1;
  transition: color var(--e-dur-fast);
  display: block;
}

.e-blog-card__title:hover { color: var(--e-blue); }

.e-blog-card__excerpt {
  font-size: 13.5px;
  color: var(--e-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.e-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--e-text-soft);
  padding-top: 16px;
  border-top: 1px solid var(--e-border);
  font-weight: 500;
}

.e-blog-card__meta i { font-size: 13px; color: var(--e-blue-light); }

/* ───────────────────────────────────────────
   14. CAREERS / DARK CTA SECTION
─────────────────────────────────────────── */
.e-cta-dark {
  background: linear-gradient(180deg, var(--e-section-bg-soft) 0%, var(--e-section-bg) 100%);
  padding: clamp(72px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--e-border);
  border-bottom: 1px solid var(--e-border);
}

.e-cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 60%, rgba(6,120,190,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(234,31,40,0.06) 0%, transparent 55%);
}

.e-cta-dark__content { position: relative; z-index: 1; }

.e-cta-dark__title {
  font-family: var(--e-font-heading) !important;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  color: var(--e-text);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.e-cta-dark__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--e-text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.e-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.6);
  color: var(--e-text) !important;
  font-family: var(--e-font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--e-r-pill);
  text-decoration: none;
  border: 1.5px solid var(--e-border-strong);
  transition: all var(--e-dur-base) var(--e-ease-out);
  white-space: nowrap;
}

.e-btn-outline-white:hover {
  border-color: var(--e-blue);
  background: var(--e-bg);
  color: var(--e-blue) !important;
  transform: translateY(-2px);
}

.e-btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--e-grad-teal);
  color: #fff !important;
  font-family: var(--e-font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--e-r-pill);
  text-decoration: none;
  box-shadow: 0 6px 20px var(--e-teal-glow);
  transition: all var(--e-dur-base) var(--e-ease-out);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.e-btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--e-teal-glow);
  color: #fff !important;
}

/* ───────────────────────────────────────────
   15. PAGE HEADER (inner pages)
─────────────────────────────────────────── */
.e-page-header {
  /* light / white page header to match site background */
  background: linear-gradient(180deg, var(--e-section-bg-soft) 0%, var(--e-section-bg) 100%);
  padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-top: 90px; /* floating header: 10px offset + 68px height + buffer */
}

.e-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(0,87,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(0,201,167,0.04) 0%, transparent 55%);
}

.e-page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.e-page-header__content { position: relative; z-index: 2; }

.e-page-header__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--e-teal);
  margin-bottom: 14px;
}

.e-page-header__title {
  font-family: var(--e-font-heading) !important;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  color: var(--e-text);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.e-page-header__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--e-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ───────────────────────────────────────────
   16. CONTACT SECTION
─────────────────────────────────────────── */
.e-contact-info-card {
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  transition: all var(--e-dur-base) var(--e-ease-out);
}

.e-contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--e-shadow-sm);
  border-color: rgba(0,87,255,0.18);
}

.e-contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--e-r-sm);
  background: var(--e-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--e-blue);
  flex-shrink: 0;
}

.e-contact-info-title {
  font-family: var(--e-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--e-text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.e-contact-info-value {
  font-size: 14px;
  color: var(--e-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Contact form */
.e-form-panel {
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-xl);
  padding: 40px;
  box-shadow: var(--e-shadow-sm);
}

.e-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--e-text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  display: block;
}

.e-form-control {
  width: 100%;
  background: var(--e-bg-alt) !important;
  border: 1.5px solid var(--e-border) !important;
  border-radius: var(--e-r-sm) !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  color: var(--e-text) !important;
  font-family: var(--e-font-body) !important;
  transition: all var(--e-dur-base) var(--e-ease) !important;
  outline: none !important;
}

.e-form-control:focus {
  border-color: var(--e-blue) !important;
  box-shadow: 0 0 0 4px var(--e-blue-soft) !important;
  background: var(--e-bg) !important;
}

.e-form-control::placeholder { color: var(--e-text-soft) !important; }

/* ───────────────────────────────────────────
   17. FOOTER
─────────────────────────────────────────── */
/* ── Override all Moderna footer colours first ── */
body.company-site #footer,
body.company-site #footer *:not(a):not(i):not(button) {
  background-color: transparent !important;
}

body.company-site #footer.company-footer {
  background: linear-gradient(180deg, var(--e-bg-alt) 0%, var(--e-bg) 100%) !important;
  color: var(--e-text-soft) !important;
  border-top: 1px solid var(--e-border) !important;
  position: relative;
}

/* subtle gradient top border for accent */
body.company-site #footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,87,255,0.12) 25%, rgba(0,201,167,0.10) 60%, rgba(124,58,237,0.10) 85%, transparent 100%);
}

body.company-site .footer-top {
  background: transparent !important;
  padding: 64px 0 56px !important;
}

body.company-site .footer-top h3 {
  font-family: var(--e-font-heading) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--e-text) !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 14px !important;
}

body.company-site .footer-info p {
  font-size: 14px !important;
  color: var(--e-text-soft) !important;
  line-height: 1.75 !important;
  margin-bottom: 24px !important;
}

body.company-site .footer-info .company-footer__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: var(--e-teal) !important;
  margin-bottom: 12px !important;
}

body.company-site .footer-links h4,
body.company-site .footer-contact h4 {
  font-family: var(--e-font-heading) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: var(--e-text-muted) !important;
  margin-bottom: 22px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(13,17,23,0.04) !important;
}

body.company-site .footer-links ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
body.company-site .footer-links ul li {
  margin-bottom: 11px !important;
  display: flex !important;
  align-items: center !important;
}

body.company-site .footer-links ul li a {
  font-size: 14px !important;
  color: var(--e-text) !important;
  text-decoration: none !important;
  transition: all var(--e-dur-fast) var(--e-ease) !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

body.company-site .footer-links ul li a:hover {
  color: var(--e-blue) !important;
  gap: 10px !important;
}

body.company-site .footer-links ul li i {
  color: var(--e-teal) !important;
  font-size: 11px !important;
  flex-shrink: 0 !important;
}

body.company-site .footer-contact p {
  font-size: 14px !important;
  color: var(--e-text-soft) !important;
  line-height: 1.85 !important;
}

body.company-site .footer-contact p strong {
  color: var(--e-text) !important;
  font-weight: 600 !important;
}

body.company-site .company-footer__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--e-grad-blue);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--e-r-pill);
  text-decoration: none;
  box-shadow: 0 4px 14px var(--e-blue-glow);
  transition: all var(--e-dur-base) var(--e-ease-out);
}

body.company-site .company-footer__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--e-blue-glow);
}

body.company-site .company-footer__bottom {
  padding: 24px 0 !important;
  border-top: 1px solid rgba(13,17,23,0.04) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

body.company-site .copyright {
  font-size: 13px;
  color: var(--e-text-muted);
}

body.company-site .copyright strong { color: var(--e-text); }

/* Footer social */
.e-footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.e-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(13,17,23,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--e-text-soft) !important;
  text-decoration: none;
  transition: all var(--e-dur-fast) var(--e-ease);
}

.e-footer-social a:hover {
  background: var(--e-blue);
  border-color: var(--e-blue);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ───────────────────────────────────────────
   18. BREADCRUMBS
─────────────────────────────────────────── */
body.company-site .breadcrumbs {
  background: transparent !important;
  padding: 100px 0 0 !important;
  margin-bottom: 0 !important;
}

body.company-site .breadcrumbs h2 {
  font-family: var(--e-font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--e-text);
}

body.company-site .breadcrumbs ol {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 13px;
}

body.company-site .breadcrumbs ol li a {
  color: var(--e-blue);
  text-decoration: none;
}

body.company-site .breadcrumbs ol li + li::before {
  content: '/';
  color: var(--e-text-soft);
  margin-right: 8px;
}

/* ───────────────────────────────────────────
   19. UTILITY BADGES & MISC
─────────────────────────────────────────── */
.e-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--e-r-pill);
}

.e-badge--blue {
  background: var(--e-blue-soft);
  color: var(--e-blue);
  border: 1px solid rgba(0,87,255,0.15);
}

.e-badge--teal {
  background: var(--e-teal-soft);
  color: var(--e-teal-dark);
  border: 1px solid rgba(0,201,167,0.2);
}

.e-badge--violet {
  background: var(--e-violet-soft);
  color: var(--e-violet);
  border: 1px solid rgba(124,58,237,0.15);
}

.e-grad-text-brand {
  background: var(--e-grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.e-divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--e-border-strong), transparent);
  margin: 0;
  border: none;
}

/* Back to top */
body.company-site .back-to-top {
  background: var(--e-grad-brand) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: var(--e-r-sm) !important;
  color: #fff !important;
  box-shadow: var(--e-shadow-blue) !important;
  bottom: 24px !important;
  right: 24px !important;
  border: none !important;
  transition: all var(--e-dur-base) var(--e-ease-back) !important;
}

body.company-site .back-to-top:hover {
  transform: translateY(-4px) scale(1.08) !important;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--e-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

#preloader .line {
  display: none;
}

/* Spinner ring */
#preloader::before {
  content: '';
  width: 52px;
  height: 52px;
  border: 3px solid rgba(0, 87, 255, 0.12);
  border-top-color: #0057ff;
  border-radius: 50%;
  animation: preloader-spin 0.85s linear infinite;
}

/* Brand name below spinner */
#preloader::after {
  content: 'XYZ Media';
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--e-text-muted);
  animation: preloader-fade 1.2s ease-in-out infinite alternate;
}

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

@keyframes preloader-fade {
  from { opacity: 0.4; }
  to   { opacity: 1; }
}

/* ───────────────────────────────────────────
   20. SCROLL REVEAL ANIMATIONS
─────────────────────────────────────────── */
.e-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--e-dur-slow) var(--e-ease-out),
    transform var(--e-dur-slow) var(--e-ease-out);
}

.e-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.e-reveal-delay-1 { transition-delay: 80ms; }
.e-reveal-delay-2 { transition-delay: 160ms; }
.e-reveal-delay-3 { transition-delay: 240ms; }
.e-reveal-delay-4 { transition-delay: 320ms; }
.e-reveal-delay-5 { transition-delay: 400ms; }
.e-reveal-delay-6 { transition-delay: 480ms; }

/* ───────────────────────────────────────────
   21. RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 991.98px) {
  body.company-site #navbar {
    position: fixed;
    top: 78px; /* floating header: 8px offset + 68px height */
    right: -100%;
    bottom: 0;
    width: 300px;
    background: linear-gradient(180deg, var(--e-bg-alt) 0%, var(--e-bg) 100%);
    border-left: 1px solid rgba(13,17,23,0.04);
    box-shadow: -8px 0 40px rgba(13,17,23,0.06);
    padding: 24px 16px;
    transition: right var(--e-dur-base) var(--e-ease-out);
    overflow-y: auto;
    z-index: 9998;
    backdrop-filter: blur(20px);
  }

  body.company-site #navbar.navbar-mobile {
    right: 0;
  }

  body.company-site #navbar > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  body.company-site #navbar > ul > li > a {
    width: 100%;
    padding: 10px 14px;
  }

  body.company-site .mobile-nav-toggle { display: block; }

  .e-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .e-process-grid::before { display: none; }
  .e-process-item + .e-process-item::before { display: none; }

  .e-hero__visual { display: none; }
}

@media (max-width: 767.98px) {
  .e-hero__stats { gap: 24px; }
  .e-process-grid { grid-template-columns: 1fr; gap: 24px; }
  .e-stat-item + .e-stat-item::before { display: none; }
  .e-stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .e-stat-item:last-child { border-bottom: none; }

  .e-form-panel { padding: 24px; }

  body.company-site .company-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ───────────────────────────────────────────
   22. SECTION-SPECIFIC OVERRIDES
─────────────────────────────────────────── */
/* Remove Moderna's default hero */
body.company-site #hero.d-flex { display: none !important; }

/* Override Moderna section defaults for elite sections */
body.company-site .e-section,
body.company-site .e-stats-section,
body.company-site .e-cta-dark,
body.company-site .e-page-header,
body.company-site .e-marquee-section {
  background-attachment: unset;
}

/* ───────────────────────────────────────────
   23. TECHY SPIDER BRAND OVERRIDES
─────────────────────────────────────────── */
:root {
  --company-color-primary: #f56118;
  --company-color-secondary: #000000;
  --company-bg: #ffffff;
  --company-bg-elevated: rgba(255, 255, 255, 0.92);
  --company-bg-strong: #ffffff;
  --company-bg-muted: #fff6f0;
  --company-section-bg: #ffffff;
  --company-section-bg-alt: #fff7f2;
  --company-section-bg-soft: #ffffff;
  --company-surface: rgba(255, 255, 255, 0.92);
  --company-surface-strong: #ffffff;
  --company-surface-soft: rgba(255, 255, 255, 0.74);
  --company-border: rgba(0, 0, 0, 0.08);
  --company-border-strong: rgba(0, 0, 0, 0.14);
  --company-text: #000000;
  --company-text-muted: rgba(0, 0, 0, 0.72);
  --company-text-soft: rgba(0, 0, 0, 0.56);
  --company-accent: #f56118;
  --company-accent-strong: #000000;
  --company-accent-soft: rgba(245, 97, 24, 0.12);
  --company-accent-glow: rgba(245, 97, 24, 0.22);
  --company-secondary: #000000;
  --company-highlight: #f56118;
  --company-ring: 0 0 0 4px rgba(245, 97, 24, 0.14);
  --company-shadow-glow: 0 26px 60px rgba(245, 97, 24, 0.16);

  --e-blue: #f56118;
  --e-blue-dark: #c74d11;
  --e-blue-light: #ff8c57;
  --e-blue-soft: rgba(245, 97, 24, 0.10);
  --e-blue-glow: rgba(245, 97, 24, 0.22);
  --e-teal: #000000;
  --e-teal-dark: #000000;
  --e-teal-soft: rgba(0, 0, 0, 0.06);
  --e-teal-glow: rgba(0, 0, 0, 0.18);
  --e-violet: #f56118;
  --e-violet-soft: rgba(245, 97, 24, 0.10);
  --e-orange: #f56118;
  --e-orange-soft: rgba(245, 97, 24, 0.12);
  --e-navy: #000000;
  --e-navy-mid: #111111;
  --e-navy-surface: #1a1a1a;
  --e-bg: #ffffff;
  --e-bg-alt: #fff7f2;
  --e-bg-soft: #ffffff;
  --e-section-bg: #ffffff;
  --e-section-bg-alt: #fff7f2;
  --e-section-bg-soft: #ffffff;
  --e-text: #000000;
  --e-text-muted: rgba(0, 0, 0, 0.70);
  --e-text-soft: rgba(0, 0, 0, 0.52);
  --e-border: rgba(0, 0, 0, 0.08);
  --e-border-strong: rgba(0, 0, 0, 0.14);
  --e-shadow-blue: 0 12px 40px rgba(245, 97, 24, 0.18);
  --e-shadow-teal: 0 12px 40px rgba(0, 0, 0, 0.16);
  --e-grad-blue: linear-gradient(135deg, #f56118 0%, #000000 100%);
  --e-grad-teal: linear-gradient(135deg, #000000 0%, #f56118 100%);
  --e-grad-brand: linear-gradient(135deg, #f56118 0%, #000000 100%);
  --e-grad-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --e-grad-hero: linear-gradient(135deg, #ffffff 0%, #fff7f2 55%, #ffffff 100%);
  --e-grad-text: linear-gradient(135deg, #f56118 0%, #000000 100%);
  --e-grad-card-top: linear-gradient(90deg, #f56118 0%, #000000 100%);
}

body.company-site .company-logo__mark {
  width: 48px;
  height: 48px;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(245, 97, 24, 0.16);
  border-radius: var(--e-r-md);
  box-shadow: 0 10px 28px rgba(245, 97, 24, 0.16);
  overflow: hidden;
}

body.company-site .company-logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.company-site .company-logo a:hover .company-logo__mark {
  transform: scale(1.04);
  box-shadow: 0 14px 34px rgba(245, 97, 24, 0.22);
}

body.company-site #header.header-scrolled #navbar > ul > li > a.active,
body.company-site #navbar > ul > li > a.active,
body.company-site .company-nav-cta .company-nav-contact,
body.company-site .company-footer__button,
body.company-site .back-to-top,
.e-btn-primary,
.e-btn-teal {
  background: var(--e-grad-brand) !important;
  color: #ffffff !important;
}

body.company-site #navbar > ul > li > a:hover,
body.company-site .e-service-link,
body.company-site .breadcrumbs ol li a,
.e-kicker,
.e-page-header__eyebrow,
.e-blog-card__cat,
.e-portfolio-card__cat,
.e-contact-info-icon,
.e-service-icon,
.e-feature-icon,
.e-badge--blue,
.e-badge--teal,
.e-badge--violet {
  color: var(--e-blue) !important;
}

body.company-site #navbar > ul > li > a:hover {
  background: var(--e-blue-soft) !important;
}

.e-hero::before {
  background:
    radial-gradient(ellipse 80% 60% at 15% 25%, rgba(245, 97, 24, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 15%, rgba(0, 0, 0, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 70% 80% at 75% 90%, rgba(245, 97, 24, 0.04) 0%, transparent 50%);
}

.e-hero::after,
.e-stats-section::before,
.e-page-header::after {
  background-image:
    linear-gradient(rgba(245, 97, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 97, 24, 0.05) 1px, transparent 1px);
}

.e-hero__eyebrow {
  background: rgba(245, 97, 24, 0.10);
  border-color: rgba(245, 97, 24, 0.18);
  color: var(--e-blue);
}

.e-hero__eyebrow::before {
  background: #000000;
  box-shadow: none;
}

.e-service-card:hover,
.e-blog-card:hover,
.e-testimonial:hover,
.e-contact-info-card:hover,
.e-portfolio-card:hover {
  border-color: rgba(245, 97, 24, 0.20);
}

.e-service-icon,
.e-feature-icon,
.e-contact-info-icon,
.e-badge--blue,
.e-badge--teal,
.e-badge--violet {
  background: var(--e-blue-soft) !important;
  border-color: rgba(245, 97, 24, 0.16) !important;
}

.e-service-card:hover .e-service-icon,
.e-feature-item:hover .e-feature-icon,
.e-about-badge__icon,
.e-hero-card__icon,
.e-process-item:hover .e-process-number,
.e-footer-social a:hover {
  background: var(--e-grad-brand) !important;
  box-shadow: var(--e-shadow-blue) !important;
  color: #ffffff !important;
}

.e-kicker::before {
  background: var(--e-grad-brand);
}

.e-form-control:focus {
  border-color: var(--e-blue) !important;
  box-shadow: 0 0 0 4px var(--e-blue-soft) !important;
}

body.company-site #footer::before {
  background: linear-gradient(90deg, transparent 0%, rgba(245, 97, 24, 0.16) 25%, rgba(0, 0, 0, 0.14) 60%, rgba(245, 97, 24, 0.12) 85%, transparent 100%);
}

#preloader::before {
  border: 3px solid rgba(245, 97, 24, 0.14);
  border-top-color: #f56118;
}

#preloader::after {
  content: 'Techy Spider';
  color: var(--e-text);
  letter-spacing: 0.14em;
}

/* Ensure elite sections override Moderna */
body.company-site #main > .e-section,
body.company-site .e-stats-section,
body.company-site .e-cta-dark {
  padding: clamp(64px, 7vw, 100px) 0 !important;
}

body.company-site .e-stats-section {
  padding: clamp(56px, 6vw, 88px) 0 !important;
}

body.company-site .e-marquee-section {
  padding: 24px 0 !important;
}

/* ───────────────────────────────────────────
   23. TEAM CARDS
─────────────────────────────────────────── */
.e-team-card {
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-lg);
  overflow: hidden;
  transition: all var(--e-dur-base) var(--e-ease-out);
  height: 100%;
}

.e-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--e-shadow-md);
  border-color: rgba(0,87,255,0.18);
}

.e-team-card__photo {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.e-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--e-dur-slow) var(--e-ease-out);
}

.e-team-card:hover .e-team-card__photo img { transform: scale(1.05); }

.e-team-card__social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(3,7,30,0.75));
  padding: 32px 16px 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
  transform: translateY(100%);
  transition: transform var(--e-dur-base) var(--e-ease-out);
}

.e-team-card:hover .e-team-card__social { transform: translateY(0); }

.e-team-card__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff !important;
  transition: all var(--e-dur-fast) var(--e-ease);
  text-decoration: none;
}

.e-team-card__social a:hover { background: var(--e-blue); border-color: var(--e-blue); }

.e-team-card__body {
  padding: 20px 22px 22px;
}

.e-team-card__name {
  font-family: var(--e-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--e-text);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.e-team-card__role {
  font-size: 12.5px;
  color: var(--e-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
}

/* ───────────────────────────────────────────
   24. INDUSTRIES / CAPABILITIES GRID
─────────────────────────────────────────── */
.e-capability-card {
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-lg);
  padding: 28px;
  background: var(--e-bg);
  transition: all var(--e-dur-base) var(--e-ease-out);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.e-capability-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--e-grad-card-top);
  opacity: 0;
  transition: opacity var(--e-dur-base) var(--e-ease);
}

.e-capability-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--e-shadow-md);
  border-color: rgba(0,87,255,0.15);
}

.e-capability-card:hover::after { opacity: 1; }

.e-capability-card__num {
  font-family: var(--e-font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--e-border-strong);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.e-capability-card__title {
  font-family: var(--e-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--e-text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.e-capability-card__desc {
  font-size: 14px;
  color: var(--e-text-muted);
  line-height: 1.67;
  margin: 0;
}

/* ───────────────────────────────────────────
   25. INLINE SVG VECTOR ILLUSTRATIONS
─────────────────────────────────────────── */
.e-svg-illustration {
  width: 100%;
  height: auto;
  max-width: 520px;
}

.e-svg-float {
  animation: float-up 6s ease-in-out infinite;
}

/* ───────────────────────────────────────────
   26. NUMBER COUNTER ANIMATION
─────────────────────────────────────────── */
.e-counter-value {
  display: inline-block;
  transition: all 0.1s;
}

/* ───────────────────────────────────────────
   27. PORTFOLIO PAGE EXTRAS (filter + new card BEM)
─────────────────────────────────────────── */

/* Filter buttons */
.e-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.e-portfolio-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--e-font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--e-r-pill);
  border: 1.5px solid var(--e-border-strong);
  background: transparent;
  color: var(--e-text-muted);
  cursor: pointer;
  transition: all var(--e-dur-base) var(--e-ease-out);
}

.e-portfolio-filter:hover {
  border-color: var(--e-blue);
  color: var(--e-blue);
  background: var(--e-blue-soft);
}

.e-portfolio-filter.active {
  background: var(--e-grad-blue);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px var(--e-blue-glow);
}

/* New portfolio card BEM aliases (img-wrap / img / tag / result / tech / client) */
.e-portfolio-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}

.e-portfolio-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--e-dur-slow) var(--e-ease-out);
  display: block;
}

.e-portfolio-card:hover .e-portfolio-card__img { transform: scale(1.06); }

.e-portfolio-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--e-teal-dark);
  background: rgba(0,201,167,0.15);
  border: 1px solid rgba(0,201,167,0.3);
  padding: 4px 10px;
  border-radius: var(--e-r-pill);
  backdrop-filter: blur(8px);
}

.e-portfolio-card__client {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--e-text-soft);
  margin-bottom: 4px;
}

.e-portfolio-card__result {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--e-teal-dark);
  margin: 12px 0 10px;
}

.e-portfolio-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.e-portfolio-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--e-r-pill);
  background: var(--e-blue-soft);
  color: var(--e-blue);
  border: 1px solid rgba(0,87,255,0.12);
}

/* ───────────────────────────────────────────
   28. TEAM CARD NEW BEM (img-wrap / img aliases)
─────────────────────────────────────────── */
.e-team-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  flex-shrink: 0;
}

.e-team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--e-dur-slow) var(--e-ease-out);
  display: block;
}

.e-team-card:hover .e-team-card__img { transform: scale(1.05); }

.e-team-card__img-wrap .e-team-card__social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(3,7,30,0.75));
  padding: 32px 16px 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
  transform: translateY(100%);
  transition: transform var(--e-dur-base) var(--e-ease-out);
}

.e-team-card:hover .e-team-card__img-wrap .e-team-card__social { transform: translateY(0); }

.e-team-card__desc {
  font-size: 13.5px;
  color: var(--e-text-muted);
  line-height: 1.65;
  margin: 4px 0 0;
}

/* ───────────────────────────────────────────
   29. TESTIMONIAL __TEXT ALIAS
─────────────────────────────────────────── */
.e-testimonial__text {
  font-size: 15px;
  color: var(--e-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}

/* ───────────────────────────────────────────
   30. CTA-DARK INNER / ACTIONS / SUB
─────────────────────────────────────────── */
.e-cta-dark__inner {
  position: relative;
  z-index: 1;
}

.e-cta-dark__sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--e-text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.e-cta-dark__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.e-cta-dark__decor {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
}

/* ───────────────────────────────────────────
   31. SECTION DESC UTILITY
─────────────────────────────────────────── */
.e-section-desc {
  font-size: 16px;
  color: var(--e-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ───────────────────────────────────────────
   32. CAPABILITY CARDS (About page)
─────────────────────────────────────────── */
.e-capability-card {
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-lg);
  padding: 32px;
  height: 100%;
  transition: all var(--e-dur-base) var(--e-ease-out);
  position: relative;
  overflow: hidden;
}

.e-capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--e-grad-brand);
  opacity: 0;
  transition: opacity var(--e-dur-base) var(--e-ease);
}

.e-capability-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--e-shadow-md);
  border-color: rgba(0,87,255,0.18);
}

.e-capability-card:hover::before { opacity: 1; }

/* ───────────────────────────────────────────
   33. FEATURE LIST (ul-style, on team page)
─────────────────────────────────────────── */
ul.e-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

ul.e-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--e-text-muted);
  line-height: 1.5;
}

ul.e-feature-list li i {
  color: var(--e-teal);
  font-size: 16px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   34. BLOG LIST PAGE  (blog.blade.php)
═══════════════════════════════════════════════════════════ */

.e-blog-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-xl);
  overflow: hidden;
  transition: all var(--e-dur-base) var(--e-ease-out);
  margin-bottom: 24px;
}

.e-blog-list-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--e-shadow-md);
  border-color: rgba(0,87,255,0.18);
}

.e-blog-list-item__thumb-link { display: block; overflow: hidden; flex-shrink: 0; }

.e-blog-list-item__thumb {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform var(--e-dur-slow) var(--e-ease-out);
}

.e-blog-list-item:hover .e-blog-list-item__thumb { transform: scale(1.05); }

.e-blog-list-item__body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.e-blog-list-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--e-text-soft);
  margin-bottom: 12px;
}

.e-blog-list-item__cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--e-blue);
  background: var(--e-blue-soft);
  padding: 3px 10px;
  border-radius: var(--e-r-pill);
}

.e-blog-list-item__divider { color: var(--e-border-strong); }

.e-blog-list-item__date,
.e-blog-list-item__author {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--e-text-soft);
}

.e-blog-list-item__date i,
.e-blog-list-item__author i { font-size: 12px; }

.e-blog-list-item__title {
  font-family: var(--e-font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--e-text);
  margin-bottom: 12px;
  line-height: 1.25;
}

.e-blog-list-item__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--e-dur-fast);
}

.e-blog-list-item__title a:hover { color: var(--e-blue); }

.e-blog-list-item__excerpt {
  font-size: 14.5px;
  color: var(--e-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.e-blog-list-item__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--e-blue);
  text-decoration: none;
  transition: gap var(--e-dur-fast) var(--e-ease-back);
  margin-top: auto;
}

.e-blog-list-item__read-more:hover { gap: 10px; color: var(--e-blue-dark); }
.e-blog-list-item__read-more i { transition: transform var(--e-dur-fast) var(--e-ease-back); }
.e-blog-list-item__read-more:hover i { transform: translateX(4px); }

@media (max-width: 767.98px) {
  .e-blog-list-item { grid-template-columns: 1fr; }
  .e-blog-list-item__thumb { min-height: 200px; height: 200px; }
  .e-blog-list-item__body { padding: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   35. SIDEBAR (blog + article pages)
═══════════════════════════════════════════════════════════ */

.e-sidebar { display: flex; flex-direction: column; gap: 24px; }

.e-sidebar--sticky { position: sticky; top: 100px; }

.e-sidebar-widget {
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-xl);
  padding: 28px;
}

.e-sidebar-widget__title {
  font-family: var(--e-font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--e-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--e-border);
}

/* Search */
.e-sidebar-search {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--e-border);
  border-radius: var(--e-r-pill);
  overflow: hidden;
  transition: border-color var(--e-dur-base) var(--e-ease);
  background: var(--e-bg-alt);
}

.e-sidebar-search:focus-within { border-color: var(--e-blue); box-shadow: 0 0 0 4px var(--e-blue-soft); }

.e-sidebar-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--e-text);
  font-family: var(--e-font-body);
  outline: none;
}

.e-sidebar-search__input::placeholder { color: var(--e-text-soft); }

.e-sidebar-search__btn {
  background: var(--e-grad-blue);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  margin: 4px;
  border-radius: var(--e-r-pill);
  transition: opacity var(--e-dur-fast);
  flex-shrink: 0;
}

.e-sidebar-search__btn:hover { opacity: 0.88; }

/* Recent posts */
.e-sidebar-posts { display: flex; flex-direction: column; gap: 14px; }

.e-sidebar-post {
  display: flex;
  gap: 12px;
  text-decoration: none;
  transition: opacity var(--e-dur-fast);
}

.e-sidebar-post:hover { opacity: 0.8; }

.e-sidebar-post__thumb {
  width: 64px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--e-r-sm);
  flex-shrink: 0;
}

.e-sidebar-post__info { display: flex; flex-direction: column; justify-content: center; gap: 3px; }

.e-sidebar-post__title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--e-text);
  font-family: var(--e-font-heading);
  line-height: 1.35;
  letter-spacing: -0.01em;
  display: block;
}

.e-sidebar-post__date {
  font-size: 11.5px;
  color: var(--e-text-soft);
  display: block;
}

/* Tags cloud */
.e-sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.e-sidebar-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--e-r-pill);
  background: var(--e-bg-alt);
  border: 1px solid var(--e-border);
  color: var(--e-text-muted);
  cursor: pointer;
  transition: all var(--e-dur-fast) var(--e-ease);
}

.e-sidebar-tag:hover {
  background: var(--e-blue-soft);
  border-color: var(--e-blue);
  color: var(--e-blue);
}

/* Sidebar CTA */
.e-sidebar-cta {
  background: var(--e-grad-dark) !important;
  border-color: rgba(255,255,255,0.07) !important;
  text-align: center;
}

.e-sidebar-cta__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--e-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--e-teal);
  margin: 0 auto 14px;
}

.e-sidebar-cta__title {
  font-family: var(--e-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.e-sidebar-cta__desc {
  font-size: 13.5px;
  color: rgba(235,240,255,0.6);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════════
   36. BLOG SINGLE / ARTICLE PAGE
═══════════════════════════════════════════════════════════ */

/* Article hero  */
.e-article-hero {
  /* light article hero */
  background: linear-gradient(180deg, var(--e-section-bg-soft) 0%, var(--e-section-bg) 100%);
  padding: clamp(88px, 11vw, 130px) 0 clamp(56px, 7vw, 80px);
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}

.e-article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(0,87,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(0,201,167,0.04) 0%, transparent 55%);
}

.e-article-hero__inner { position: relative; z-index: 2; max-width: 800px; }

.e-article-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--e-text-soft);
  margin-bottom: 18px;
}

.e-article-hero__breadcrumb a {
  color: var(--e-text-muted);
  text-decoration: none;
  transition: color var(--e-dur-fast);
}

.e-article-hero__breadcrumb a:hover { color: var(--e-blue); }

.e-article-hero__breadcrumb i { font-size: 9px; opacity: 0.6; }

.e-article-hero__title {
  font-family: var(--e-font-heading) !important;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--e-text);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 12px 0 24px;
}

.e-article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.e-article-hero__author-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.e-article-hero__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--e-border);
}

.e-article-hero__author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--e-text);
}

.e-article-hero__meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--e-border-strong);
}

.e-article-hero__date,
.e-article-hero__read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--e-text-soft);
}

.e-article-hero__date i,
.e-article-hero__read-time i { font-size: 12px; }

/* Cover image */
.e-article-cover {
  border-radius: var(--e-r-xl);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--e-shadow-md);
}

.e-article-cover__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

/* Article prose */
.e-article-body {
  font-size: 17px;
  line-height: 1.82;
  color: var(--e-text-muted);
  margin-bottom: 40px;
}

.e-article-body h2 {
  font-family: var(--e-font-heading) !important;
  font-size: 26px;
  font-weight: 800;
  color: var(--e-text);
  letter-spacing: -0.03em;
  margin: 40px 0 16px;
  padding-top: 8px;
  border-top: 1px solid var(--e-border);
}

.e-article-body h3 {
  font-family: var(--e-font-heading) !important;
  font-size: 20px;
  font-weight: 700;
  color: var(--e-text);
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
}

.e-article-body p { margin-bottom: 20px; }

.e-article-body strong { color: var(--e-text); font-weight: 700; }

.e-article-body ul, .e-article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.e-article-body a { color: var(--e-blue); text-decoration-thickness: 1.5px; }

.e-article-body blockquote {
  border-left: 3px solid var(--e-blue);
  background: var(--e-blue-soft);
  padding: 20px 24px;
  border-radius: 0 var(--e-r-md) var(--e-r-md) 0;
  margin: 28px 0;
  font-style: italic;
  font-size: 16px;
}

.e-article-body code {
  background: var(--e-bg-alt);
  border: 1px solid var(--e-border);
  padding: 2px 8px;
  border-radius: var(--e-r-xs);
  font-size: 14px;
  font-family: "Fira Code", "Cascadia Code", monospace;
}

.e-article-body pre {
  background: var(--e-navy);
  border-radius: var(--e-r-lg);
  padding: 24px;
  overflow-x: auto;
  margin-bottom: 24px;
}

.e-article-body pre code {
  background: transparent;
  border: none;
  color: #e2e8f0;
  font-size: 14px;
  padding: 0;
}

.e-article-body img {
  width: 100%;
  border-radius: var(--e-r-lg);
  margin: 8px 0 20px;
}

/* Share bar */
.e-article-share {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--e-bg-alt);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-lg);
  margin-bottom: 32px;
}

.e-article-share__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--e-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-right: auto;
}

.e-article-share__links { display: flex; gap: 8px; }

.e-article-share__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--e-border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--e-text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--e-dur-fast) var(--e-ease);
}

.e-article-share__btn:hover {
  background: var(--share-color, var(--e-blue));
  border-color: var(--share-color, var(--e-blue));
  color: #fff;
  transform: translateY(-2px);
}

/* Author bio */
.e-author-bio {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-xl);
  margin-bottom: 32px;
}

.e-author-bio__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--e-border);
}

.e-author-bio__name {
  font-family: var(--e-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--e-text);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.e-author-bio__role {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--e-blue);
  margin-bottom: 10px;
}

.e-author-bio__desc {
  font-size: 14px;
  color: var(--e-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.e-author-bio__links { display: flex; gap: 8px; }

.e-author-bio__links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--e-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--e-text-muted);
  text-decoration: none;
  transition: all var(--e-dur-fast);
}

.e-author-bio__links a:hover { background: var(--e-blue); border-color: var(--e-blue); color: #fff; }

/* TOC */
.e-toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }

.e-toc-item { margin: 0; }

.e-toc-item--sub { padding-left: 16px; }

.e-toc-link {
  font-size: 13px;
  color: var(--e-text-muted);
  text-decoration: none;
  display: block;
  padding: 5px 10px;
  border-radius: var(--e-r-xs);
  border-left: 2px solid transparent;
  transition: all var(--e-dur-fast);
  font-weight: 500;
  line-height: 1.4;
}

.e-toc-link:hover, .e-toc-link.active {
  color: var(--e-blue);
  background: var(--e-blue-soft);
  border-left-color: var(--e-blue);
}

/* ═══════════════════════════════════════════════════════════
   37. PORTFOLIO DETAILS / CASE STUDY PAGE
═══════════════════════════════════════════════════════════ */

.e-case-hero {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(40px,5vw,64px);
  padding-top: 100px;
  position: relative;
}

.e-case-hero__inner { position: relative; z-index: 2; max-width: 860px; }

.e-case-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: rgba(235,240,255,0.5);
  margin-bottom: 14px;
}

.e-case-hero__breadcrumb a { color: rgba(235,240,255,0.65); text-decoration: none; }
.e-case-hero__breadcrumb a:hover { color: var(--e-teal); }
.e-case-hero__breadcrumb i { font-size: 9px; }

.e-case-hero__title {
  font-family: var(--e-font-heading) !important;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 12px 0 6px;
}

.e-case-hero__client {
  font-size: 16px;
  color: rgba(235,240,255,0.6);
  margin-bottom: 28px;
  font-weight: 500;
}

.e-case-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(3,7,30,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--e-r-lg);
  overflow: hidden;
  display: inline-flex;
}

.e-case-hero__stat {
  padding: 16px 28px;
  text-align: center;
}

.e-case-hero__stat-value {
  display: block;
  font-family: var(--e-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.e-case-hero__stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(235,240,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 2px;
}

.e-case-hero__stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 12px 0;
}

/* Gallery */
.e-case-gallery { margin-bottom: 40px; }

.e-case-gallery__main {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--e-r-xl);
  display: block;
  margin-bottom: 12px;
}

.e-case-gallery__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.e-case-gallery__row img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--e-r-lg);
  display: block;
}

/* Case sections */
.e-case-section {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-xl);
  margin-bottom: 20px;
}

.e-case-section__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--e-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.e-case-section__title {
  font-family: var(--e-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--e-text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.e-case-section__body {
  font-size: 15px;
  color: var(--e-text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Results */
.e-case-results {
  background: var(--e-grad-dark);
  border-radius: var(--e-r-xl);
  padding: 32px;
  margin-bottom: 20px;
}

.e-case-results__title {
  font-family: var(--e-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.e-case-results__title i { color: var(--e-teal); }

.e-case-results__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }

.e-case-results__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(235,240,255,0.88);
  line-height: 1.4;
}

.e-case-results__item i { color: var(--e-teal); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* Meta table */
.e-case-meta-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.e-case-meta-table tr { border-bottom: 1px solid var(--e-border); }
.e-case-meta-table tr:last-child { border-bottom: none; }

.e-case-meta-table td {
  padding: 10px 0;
  vertical-align: top;
  line-height: 1.4;
}

.e-case-meta-table td:first-child {
  color: var(--e-text-soft);
  font-weight: 500;
  white-space: nowrap;
  padding-right: 16px;
  width: 40%;
}

.e-case-meta-table td:last-child { color: var(--e-text); font-weight: 600; }

/* Case sidebar */
.e-case-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }

/* ═══════════════════════════════════════════════════════════
   38. CAREERS PAGE
═══════════════════════════════════════════════════════════ */

.e-job-card {
  display: flex;
  flex-direction: column;
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-xl);
  padding: 28px;
  height: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all var(--e-dur-base) var(--e-ease-out);
}

.e-job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--e-grad-brand);
  opacity: 0;
  transition: opacity var(--e-dur-base) var(--e-ease);
}

.e-job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--e-shadow-md);
  border-color: rgba(0,87,255,0.2);
}

.e-job-card:hover::before { opacity: 1; }

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

.e-job-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--e-r-md);
  background: var(--e-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--e-blue);
  flex-shrink: 0;
  transition: all var(--e-dur-base) var(--e-ease-back);
}

.e-job-card:hover .e-job-card__icon {
  background: var(--e-grad-brand);
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
}

.e-job-card__badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }

.e-job-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: var(--e-r-pill);
  display: flex;
  align-items: center;
  gap: 4px;
}

.e-job-badge--type { background: var(--e-blue-soft); color: var(--e-blue); border: 1px solid rgba(0,87,255,0.12); }
.e-job-badge--location { background: var(--e-teal-soft); color: var(--e-teal-dark); border: 1px solid rgba(0,201,167,0.18); }

.e-job-card__title {
  font-family: var(--e-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--e-text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  transition: color var(--e-dur-fast);
}

.e-job-card:hover .e-job-card__title { color: var(--e-blue); }

.e-job-card__dept {
  font-size: 12px;
  font-weight: 600;
  color: var(--e-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
  display: block;
}

.e-job-card__desc {
  font-size: 14px;
  color: var(--e-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.e-job-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--e-blue);
  transition: gap var(--e-dur-fast) var(--e-ease-back);
  margin-top: auto;
}

.e-job-card:hover .e-job-card__cta { gap: 10px; }

/* Careers show meta bar */
.e-job-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-xl);
  overflow: hidden;
  margin-bottom: 28px;
}

.e-job-meta-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  flex: 1;
  min-width: 140px;
  border-right: 1px solid var(--e-border);
}

.e-job-meta-bar__item:last-child { border-right: none; }

.e-job-meta-bar__item > i {
  font-size: 18px;
  color: var(--e-blue);
  flex-shrink: 0;
}

.e-job-meta-bar__item span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--e-text-soft);
  margin-bottom: 2px;
}

.e-job-meta-bar__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--e-text);
  font-family: var(--e-font-heading);
}

.e-job-body {
  padding: 28px;
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-xl);
  margin-bottom: 20px;
}

.e-job-body__heading {
  font-family: var(--e-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--e-text);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--e-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.e-job-body__heading i { color: var(--e-blue); }

.e-job-content {
  font-size: 15px;
  color: var(--e-text-muted);
  line-height: 1.75;
}

.e-job-perks { margin-bottom: 20px; }

.e-perk-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--e-text-muted);
  background: var(--e-bg);
  border: 1px solid var(--e-border);
  border-radius: var(--e-r-md);
  padding: 10px 14px;
  transition: all var(--e-dur-fast);
}

.e-perk-chip:hover {
  border-color: var(--e-teal);
  color: var(--e-teal-dark);
  background: var(--e-teal-soft);
}

.e-perk-chip i { color: var(--e-blue); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════
   39. EMPTY STATE
═══════════════════════════════════════════════════════════ */

.e-empty-state {
  text-align: center;
  padding: 48px 24px;
}

.e-empty-state__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--e-r-xl);
  background: var(--e-bg-alt);
  border: 1px solid var(--e-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--e-text-soft);
  margin: 0 auto 20px;
}

.e-empty-state__title {
  font-family: var(--e-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--e-text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.e-empty-state__desc {
  font-size: 15px;
  color: var(--e-text-muted);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   40. MISC RESPONSIVE IMPROVEMENTS
═══════════════════════════════════════════════════════════ */

@media (max-width: 991.98px) {
  .e-case-hero__stats { flex-direction: column; display: flex; }
  .e-case-hero__stat-divider { width: 100%; height: 1px; margin: 0; }
  .e-job-meta-bar { flex-direction: column; }
  .e-job-meta-bar__item { border-right: none; border-bottom: 1px solid var(--e-border); }
  .e-job-meta-bar__item:last-child { border-bottom: none; }
  .e-sidebar--sticky { position: static; }
  .e-case-sidebar { position: static; }
}

@media (max-width: 767.98px) {
  .e-article-cover__img { height: 240px; }
  .e-case-gallery__main { height: 220px; }
  .e-case-gallery__row img { height: 140px; }
  .e-author-bio { flex-direction: column; align-items: flex-start; }
  .e-article-hero__meta { gap: 12px; }
  .e-article-share { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   41. PAGINATION
═══════════════════════════════════════════════════════════ */

.e-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.e-pagination__item { display: inline-flex; }

.e-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--e-r-md);
  border: 1.5px solid var(--e-border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--e-text-muted);
  text-decoration: none;
  background: var(--e-bg);
  cursor: pointer;
  transition: all var(--e-dur-fast) var(--e-ease);
  font-family: var(--e-font-heading);
}

.e-pagination__link:hover {
  background: var(--e-blue-soft);
  border-color: var(--e-blue);
  color: var(--e-blue);
}

.e-pagination__item--active .e-pagination__link {
  background: var(--e-grad-brand);
  border-color: var(--e-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,87,255,0.28);
}

.e-pagination__item--disabled .e-pagination__link {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.e-pagination__link--dots {
  border-color: transparent;
  background: transparent;
  cursor: default;
  letter-spacing: 0.1em;
}


/* ── Floating WhatsApp Button ── */
.e-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.40);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}
.e-whatsapp-float:hover {
  transform: scale(1.10);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  color: #fff;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.40); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.70); }
}
