:root {
  --bg: #05080e;
  --bg-soft: #090f19;
  --surface: #0e1726;
  --surface-2: #142236;
  --surface-3: #1a2c47;
  --text: #ffffff;
  --muted: #cbd5e1;
  --muted-2: #8092a9;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.35);
  --accent-gold: #f59e0b;
  --accent-gold-glow: rgba(245, 158, 11, 0.35);
  --accent-indigo: #6366f1;
  --danger: #ef4444;
  --success: #10b981;
  --shadow-lux: 0 30px 90px rgba(0, 0, 0, 0.6);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1240px;
  --header-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); overflow-x: clip; max-width: 100%; }
[hidden] { display: none !important; }
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.screen-reader-text:focus {
  position: fixed !important;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 100000;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 10px 16px !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  color: #04120d;
  background: #ffffff;
  border-radius: 10px;
}
:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid #fbbf24;
  outline-offset: 3px;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-tajawal), 'Tajawal', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

::selection { background: rgba(16, 185, 129, 0.3); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
svg { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -.03em; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5.5vw, 5.2rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.4rem); font-weight: 850; }
.section-title-sm { font-size: clamp(1.4rem, 2.5vw, 2.15rem) !important; font-weight: 850; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 750; }
p { margin: 0; color: var(--muted); }

.breadcrumbs {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: .86rem;
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs-item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.breadcrumbs-item a {
  color: var(--muted);
  transition: color .2s ease;
}
.breadcrumbs-item a:hover { color: var(--accent-emerald); }
.breadcrumbs-item + .breadcrumbs-item::before {
  content: "/";
  color: var(--muted-2);
  margin-inline-end: 8px;
}
.breadcrumbs-item [aria-current="page"] { overflow-wrap: anywhere; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; max-width: 100%; }
.section { padding: clamp(32px, 4vw, 54px) 0; position: relative; max-width: 100%; overflow-x: clip; }

.eyebrow-lux {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-emerald);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.eyebrow-lux::before {
  content: '';
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #10b981, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header { max-width: 760px; margin-bottom: 28px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { font-size: 1.1rem; max-width: 680px; }
.section-header--center { text-align: center; margin-inline: auto; }
.section-header--center .eyebrow-lux { justify-content: center; }

/* Site Header */
.site-header { position: sticky; top: 0; z-index: 99999; height: var(--header-h); background: rgba(5, 8, 14, 0.88); border-bottom: 1px solid var(--line); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); transition: background-color .25s ease, border-color .25s ease; }
.site-header:has(.mobile-menu-drawer[open]),
body.has-mobile-menu-open .site-header { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; width: 100% !important; z-index: 9999999 !important; }
.header-inner { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 15px; color: #022c22; background: linear-gradient(135deg, var(--accent-emerald), #a7f3d0); font-weight: 900; font-size: 1.4rem; box-shadow: 0 10px 30px var(--accent-emerald-glow); }
.brand-logo-img { width: 46px; height: 46px; border-radius: 14px; object-fit: contain; flex: 0 0 auto; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-strong); padding: 2px; }
.footer-logo-img { width: 52px; height: 52px; border-radius: 16px; object-fit: contain; flex: 0 0 auto; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-strong); padding: 2px; }
.brand strong { font-size: 1.1rem; display: block; line-height: 1.2; }
.brand small { color: var(--muted-2); font-size: .75rem; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 2vw, 32px); }
.desktop-nav a { color: var(--muted); font-size: .92rem; font-weight: 600; transition: color .2s ease; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav-knowledge { position: relative; }
.desktop-nav-knowledge > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.desktop-nav-knowledge > summary::-webkit-details-marker { display: none; }
.desktop-nav-knowledge > summary svg { width: 14px; height: 14px; }
.desktop-nav-knowledge[open] > summary,
.desktop-nav-knowledge > summary:hover { color: #fff; }
.desktop-nav-knowledge > summary:focus-visible {
  outline: 2px solid var(--accent-emerald);
  outline-offset: 5px;
  border-radius: 4px;
}
.desktop-nav-knowledge[open] > summary svg { transform: rotate(180deg); }
.desktop-nav-submenu {
  position: absolute;
  inset-block-start: calc(100% + 14px);
  inset-inline-end: 0;
  z-index: 10;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #0b111c;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .42);
}
.desktop-nav-submenu a {
  display: block;
  padding: 11px 13px;
  border-radius: 9px;
  color: var(--muted-2);
  white-space: nowrap;
}
.desktop-nav-submenu a:hover,
.desktop-nav-submenu a:focus-visible {
  color: #fff;
  background: rgba(16, 185, 129, .12);
  outline: none;
}
.mobile-menu { display: none; }

/* Buttons */
.btn-lux {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 16px;
  font-weight: 800;
  font-size: .98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn-lux:hover { transform: translateY(-3px); }
.btn-lux--primary {
  color: #022c22;
  background: linear-gradient(135deg, var(--accent-emerald), #34d399);
  box-shadow: 0 14px 40px var(--accent-emerald-glow);
}
.btn-lux--primary:hover {
  box-shadow: 0 18px 50px rgba(16, 185, 129, 0.5);
}
.btn-lux--outline {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-strong);
  color: #fff;
}
.btn-lux--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-lux--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.3);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-emerald);
  font-weight: 800;
  font-size: .94rem;
  transition: transform .2s ease;
}
.btn-text-link:hover { transform: translateX(-4px); }

/* Hero Reimagined with 3D Holographic Stage */
.hero--reimagined {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-3d-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.hero-bg-glows { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(140px); }
.glow-orb--emerald { width: 650px; height: 650px; right: -180px; top: -120px; background: rgba(16, 185, 129, 0.16); }
.glow-orb--gold { width: 550px; height: 550px; left: -150px; bottom: -100px; background: rgba(245, 158, 11, 0.12); }
.glow-grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, #000 20%, transparent 90%); }

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(30px, 4vw, 60px);
  padding-block: clamp(30px, 4vw, 50px);
  position: relative;
  z-index: 2;
}

.hero-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 26px;
}
.pulse-radar { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-emerald); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.2); animation: radarPulse 2s infinite; }
@keyframes radarPulse { 50% { box-shadow: 0 0 0 14px transparent; } }
.badge-text { color: #a7f3d0; font-size: .88rem; font-weight: 700; }

.hero-headline { max-width: 820px; font-size: clamp(1.5625rem, 1rem + 1.5vw, 2.8125rem); line-height: 1.25; }
.hero-lead-text { margin-top: 26px; font-size: clamp(1.08rem, 1.5vw, 1.28rem); max-width: 720px; color: var(--muted); }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-trust-bar { margin-top: 32px; display: flex; align-items: center; gap: 12px; color: #cbd5e1; font-size: .95rem; }
.hero-trust-bar svg { color: var(--accent-gold); }

.hero-market-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag-label { color: var(--muted-2); font-size: .82rem; }
.market-pill { border: 1px solid var(--line); background: rgba(255,255,255,0.03); color: var(--muted); border-radius: 999px; padding: 6px 14px; font-size: .82rem; }

/* 3D Hero Visual Stage */
.hero-stage-3d { position: relative; min-height: 560px; display: grid; place-items: center; }
.stage-frame-wrapper {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.18);
  background: var(--surface);
  box-shadow: var(--shadow-lux), 0 0 50px rgba(16, 185, 129, 0.15);
  overflow: visible;
}
.stage-glow-backdrop { position: absolute; inset: -20px; border-radius: 40px; background: radial-gradient(circle, var(--accent-emerald-glow), transparent 70%); z-index: -1; opacity: 0.7; }
.stage-visual-container { width: 100%; height: 100%; border-radius: var(--radius-lg); overflow: hidden; }
.stage-visual-container picture { display: block; width: 100%; height: 100%; }
.hero-3d-img { width: 100%; height: 100%; object-fit: cover; }

.floating-badge-3d {
  position: absolute;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(14, 23, 38, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(16, 185, 129, 0.08);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.floating-badge-3d:hover {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 30px rgba(16, 185, 129, 0.2);
}
/* Shimmer light sweep */
.floating-badge-3d::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: badgeShimmer 5s ease-in-out infinite;
  pointer-events: none;
}
/* Glowing border pulse */
.floating-badge-3d::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), transparent 40%, transparent 60%, rgba(245, 158, 11, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  animation: badgeBorderGlow 4s ease-in-out infinite;
  pointer-events: none;
}
.floating-badge-3d--top { right: -25px; top: 40px; animation: badgeFloatUp 6s ease-in-out infinite; }
.floating-badge-3d--bottom { left: -25px; bottom: 40px; animation: badgeFloatDown 7s ease-in-out infinite; }
.floating-badge-3d--bottom::after { animation-delay: 2.5s; }
.floating-badge-3d--bottom::before { animation-delay: 2s; }
@keyframes badgeFloatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes badgeFloatDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes badgeShimmer {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}
@keyframes badgeBorderGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.badge-icon-wrap { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; flex: 0 0 auto; }
.badge-icon-wrap.emerald { background: rgba(16, 185, 129, 0.12); color: var(--accent-emerald); border: 1px solid rgba(16, 185, 129, 0.25); }
.badge-icon-wrap.gold { background: rgba(245, 158, 11, 0.12); color: var(--accent-gold); border: 1px solid rgba(245, 158, 11, 0.25); }
.badge-icon-wrap svg { width: 22px; height: 22px; }
.badge-title { display: block; color: var(--muted-2); font-size: .78rem; }
.badge-value { display: block; font-size: 1.25rem; color: #fff; font-weight: 800; line-height: 1.2; }
.badge-sub { display: block; color: var(--muted); font-size: .72rem; }

/* Ticker Bar */
.hero-ticker-bar { border-top: 1px solid var(--line); background: rgba(255,255,255,0.015); overflow: hidden; white-space: nowrap; direction: ltr; }
.ticker-content { display: flex; align-items: center; width: max-content; direction: ltr; animation: tickerScroll var(--hero-ticker-duration, 55s) linear infinite; will-change: transform; }
.ticker-track { display: flex; align-items: center; flex-shrink: 0; }
.ticker-item { display: inline-flex; align-items: center; gap: 28px; padding: 18px 24px; color: var(--muted); font-weight: 600; font-size: .92rem; direction: rtl; }
.ticker-sparkle { color: var(--accent-emerald); font-size: .75rem; }
@keyframes tickerScroll { to { transform: translateX(calc(-1 * var(--hero-ticker-distance, 50%))); } }

/* Paradigm Section */
.section--paradigm { background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent); border-bottom: 1px solid var(--line); }
.paradigm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.paradigm-card { border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 44px); border: 1px solid var(--line); position: relative; overflow: hidden; transform-style: preserve-3d; }
.paradigm-card--negative { background: rgba(239, 68, 68, 0.025); border-color: rgba(239, 68, 68, 0.18); }
.paradigm-card--positive { background: linear-gradient(145deg, rgba(16, 185, 129, 0.06), rgba(14, 23, 38, 0.9)); border-color: rgba(16, 185, 129, 0.35); box-shadow: 0 25px 60px rgba(0,0,0,0.4); }
.card-status-pill { display: inline-block; padding: 5px 14px; border-radius: 999px; font-size: .8rem; font-weight: 800; margin-bottom: 20px; }
.card-status-pill.danger { background: rgba(239, 68, 68, 0.12); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.25); }
.card-status-pill.success { background: rgba(16, 185, 129, 0.12); color: #a7f3d0; border: 1px solid rgba(16, 185, 129, 0.25); }
.paradigm-card h3 { font-size: 1.6rem; margin-bottom: 22px; }
.paradigm-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.paradigm-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--muted); }
.paradigm-list span { font-weight: 900; font-size: 1.1rem; flex: 0 0 auto; }
.paradigm-card--negative span { color: var(--danger); }
.paradigm-card--positive span { color: var(--success); }

/* Stats Grid */
.section--stats-lux { padding-block: 28px; }
.stats-grid-lux { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.stat-card-lux::before { content: ''; position: absolute; top: 0; inset-inline: 0; height: 3px; background: linear-gradient(90deg, var(--accent-emerald), var(--accent-gold)); }
.stat-number { display: block; font-size: clamp(2.2rem, 3.5vw, 3.2rem); color: var(--accent-emerald); font-weight: 900; line-height: 1; margin-bottom: 12px; }
.stat-label { font-size: 1.05rem; margin-bottom: 6px; }
.stat-desc { font-size: .86rem; color: var(--muted-2); }

/* Services Lux Grid */
.section--services-lux { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015)); }
.services-grid-lux { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card-lux {
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card-lux:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 25px 65px rgba(0,0,0,0.5), 0 0 35px var(--accent-emerald-glow);
}
.card-num-pill { position: absolute; left: 30px; top: 28px; color: rgba(255,255,255,0.12); font-weight: 900; font-size: 1.8rem; }
.service-icon-lux { width: 56px; height: 56px; border-radius: 18px; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.22); color: var(--accent-emerald); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 28px; }
.service-card-lux h3 { font-size: 1.55rem; margin-bottom: 14px; }
.service-desc { font-size: .96rem; flex: 1; line-height: 1.7; }
.service-outcome-box { margin-top: 24px; padding: 14px 16px; border-radius: 14px; background: rgba(16, 185, 129, 0.05); border-inline-start: 3px solid var(--accent-emerald); font-size: .88rem; }
.service-outcome-box strong { color: #a7f3d0; display: block; margin-bottom: 3px; }
.service-link-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--accent-emerald); font-weight: 800; font-size: .92rem; }

/* Projects Lux Grid & Interactive Filter Bar */
.project-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.project-filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 20px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}
.project-filter-btn:hover,
.project-filter-btn.is-active {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: var(--accent-emerald);
  box-shadow: 0 0 20px var(--accent-emerald-glow);
}

.projects-grid-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, opacity .3s ease;
}
.project-card-lux.is-hidden { display: none !important; }
.project-card-lux:hover { transform: translateY(-7px); border-color: rgba(16, 185, 129, 0.38); }

.project-card-lux--hero {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}
.project-card-lux--hero .project-media-stage { min-height: 100%; order: 2; }

.project-media-stage { position: relative; min-height: 220px; overflow: hidden; background: var(--surface-2); display: flex; align-items: center; justify-content: center; }
.project-media-stage img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.project-card-lux:hover .project-media-stage img { transform: scale(1.04); }

.project-fallback-stage {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  position: relative;
  overflow: hidden;
  color: var(--accent-emerald);
}
.fallback-pattern { position: absolute; inset: 0; background-image: radial-gradient(rgba(16, 185, 129, 0.15) 1px, transparent 1px); background-size: 16px 16px; }
.fallback-icon { position: relative; z-index: 2; font-size: 2.2rem; }
.fallback-letter { position: relative; z-index: 2; font-weight: 900; font-size: 1.1rem; color: #fff; margin-top: 6px; }

.project-badge-overlay { position: absolute; top: 16px; right: 16px; z-index: 3; background: rgba(5,8,14,0.85); backdrop-filter: blur(12px); border: 1px solid var(--line); padding: 5px 12px; border-radius: 999px; font-size: .78rem; color: #fff; }
.project-featured-star { position: absolute; top: 16px; left: 16px; z-index: 3; background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.35); color: var(--accent-gold); padding: 4px 10px; border-radius: 999px; font-size: .75rem; font-weight: 800; }

.project-content-stage { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.project-meta-line { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.client-name { color: var(--accent-emerald); font-weight: 800; font-size: .88rem; }
.country-pill { color: var(--muted-2); font-size: .8rem; }
.project-content-stage h3 { font-size: 1.35rem; margin-bottom: 12px; }
.project-content-stage p { flex: 1; font-size: .92rem; line-height: 1.65; }
.project-metric-pill { margin-top: 18px; padding: 10px 14px; border-radius: 12px; background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.2); color: #ecfdf5; display: inline-flex; align-items: center; gap: 8px; font-weight: 750; font-size: .88rem; }
.project-footer-action { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }

.proof-guarantee-bar {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .9rem; }
.proof-item svg { color: var(--accent-emerald); }

/* Experience & Accreditations Reimagined Section */
.accreditations-grid-lux {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.accreditation-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease;
}
.accreditation-card-lux:hover { transform: translateY(-5px); border-color: rgba(16, 185, 129, 0.35); }
.acc-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.acc-icon-box.emerald { background: rgba(16, 185, 129, 0.12); color: var(--accent-emerald); border: 1px solid rgba(16, 185, 129, 0.25); }
.acc-icon-box.gold { background: rgba(245, 158, 11, 0.12); color: var(--accent-gold); border: 1px solid rgba(245, 158, 11, 0.25); }
.accreditation-card-lux h3 { font-size: 1.15rem; margin-bottom: 8px; }
.accreditation-card-lux p { font-size: .88rem; line-height: 1.6; color: var(--muted-2); }

.experience-timeline-stage {
  position: relative;
  margin-bottom: 40px;
}
.experience-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.experience-card-lux {
  background: linear-gradient(160deg, var(--surface), rgba(20, 34, 54, 0.6));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.experience-card-lux:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.38);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.exp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.exp-year-badge {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #a7f3d0;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
}
.exp-location-tag { color: var(--muted-2); font-size: .82rem; }
.exp-role-title { font-size: 1.4rem; margin-bottom: 8px; color: #fff; }
.exp-company-line { display: flex; align-items: center; gap: 8px; font-size: .95rem; color: var(--accent-emerald); margin-bottom: 14px; }
.exp-company-line strong { font-weight: 800; }
.exp-type-pill { background: rgba(255,255,255,0.05); border: 1px solid var(--line); color: var(--muted-2); padding: 2px 8px; border-radius: 6px; font-size: .75rem; }
.exp-summary-text { font-size: .92rem; line-height: 1.65; margin-bottom: 14px; color: var(--muted); }
.exp-highlights-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.exp-highlights-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--muted); }
.bullet-check { color: var(--accent-emerald); font-weight: 900; flex: 0 0 auto; }

/* Client Brand Grid */
.clients-grid-lux { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.client-brand-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.client-brand-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.05); border-color: rgba(16, 185, 129, 0.3); }
.client-logo-wrapper { width: 56px; height: 56px; border-radius: 16px; background: #fff; display: grid; place-items: center; padding: 8px; overflow: hidden; }
.client-logo-wrapper img { width: 100%; height: 100%; object-fit: contain; }
.logo-fallback-text { font-weight: 900; color: #111; font-size: 1.2rem; }
.client-brand-info strong { display: block; font-size: .92rem; color: #fff; }
.client-brand-info small { color: var(--muted-2); font-size: .75rem; }
.ext-icon-badge { position: absolute; top: 12px; left: 12px; color: var(--muted-2); opacity: 0.6; transition: color .2s ease, opacity .2s ease; }
.client-brand-card:hover .ext-icon-badge { color: var(--accent-emerald); opacity: 1; }

/* Testimonials Lux */
.testimonials-grid-lux { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card-lux {
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
}
.quote-mark-icon { font-size: 4rem; line-height: 0.6; color: var(--accent-gold); font-family: Georgia, serif; }
.quote-text { margin-top: 24px; font-size: 1.05rem; flex: 1; line-height: 1.75; color: #e2e8f0; }
.author-info { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 20px; display: flex; flex-direction: column; }
.author-info strong { color: #fff; font-size: 1rem; }
.author-info span { color: var(--muted-2); font-size: .82rem; }

/* Articles Lux */
.articles-grid-lux { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: transform .23s ease, border-color .23s ease;
}
.article-card-lux:hover { transform: translateY(-6px); border-color: rgba(16, 185, 129, 0.35); }
.article-thumb-wrap { height: 210px; overflow: hidden; background: var(--surface-2); position: relative; }
.article-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.article-thumb-fallback { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, var(--surface-2), var(--surface-3)); color: var(--muted-2); font-weight: 700; }
.article-body-wrap { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.article-meta-line { color: var(--accent-emerald); font-size: .8rem; margin-bottom: 10px; }
.article-body-wrap h3 { font-size: 1.35rem; margin-bottom: 12px; }
.article-body-wrap p { font-size: .92rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-body-wrap .btn-text-link { margin-top: 22px; }

/* Reimagined About Page Styles */
.hero--about-reimagined { padding-top: clamp(36px, 4.5vw, 60px); padding-bottom: clamp(20px, 2.5vw, 36px); }
.section--profile-lux { padding-block: 30px 40px; }
.profile-layout-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.profile-narrative-col h2 { font-size: clamp(24px, 2.5vw, 40px); line-height: 1.25; color: #fff; margin: 10px 0 18px; }
.profile-narrative-col .lead-paragraph { font-size: 1.18rem; line-height: 1.8; color: #f1f5f9; font-weight: 600; margin-bottom: 24px; }

.timeline-summary-card {
  background: linear-gradient(160deg, var(--surface), rgba(15, 23, 42, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-block: 28px;
  transform-style: preserve-3d;
}
.timeline-summary-card h3 { font-size: 1.25rem; color: var(--accent-emerald); margin-bottom: 18px; }
.timeline-summary-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.timeline-summary-card li { font-size: .95rem; line-height: 1.7; color: var(--muted); position: relative; padding-inline-start: 22px; }
.timeline-summary-card li::before { content: '✦'; position: absolute; right: 0; color: var(--accent-emerald); font-size: .85rem; }

.guarantee-confidentiality-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.22);
  margin-top: 30px;
}
.guarantee-confidentiality-box svg { color: var(--accent-emerald); width: 28px; height: 28px; flex: 0 0 auto; margin-top: 2px; }
.guarantee-confidentiality-box strong { display: block; color: #a7f3d0; font-size: .98rem; margin-bottom: 4px; }
.guarantee-confidentiality-box p { font-size: .88rem; line-height: 1.6; color: var(--muted); margin: 0; }

.spec-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: sticky;
  top: 100px;
  transform-style: preserve-3d;
}
.spec-card-title { font-size: 1.3rem; margin-bottom: 24px; text-align: center; color: #fff; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.spec-stat-item { margin-bottom: 22px; text-align: center; }
.spec-stat-item:last-child { margin-bottom: 0; }
.spec-label { display: block; font-size: .82rem; color: var(--muted-2); font-weight: 700; margin-bottom: 4px; }
.spec-val { display: block; font-size: 1.8rem; font-weight: 900; color: var(--accent-emerald); line-height: 1.1; }
.spec-stat-item small { display: block; font-size: .78rem; color: var(--muted-2); margin-top: 4px; }

/* Principles Section Lux */
.section--principles-lux { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015)); }
.principles-grid-lux { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.principle-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease;
}
.principle-card-lux:hover { transform: translateY(-6px); border-color: rgba(16, 185, 129, 0.38); }
.principle-num { position: absolute; left: 24px; top: 20px; font-size: 2.2rem; font-weight: 900; color: rgba(255,255,255,0.08); }
.principle-card-lux h3 { font-size: 1.25rem; margin-bottom: 12px; }
.principle-card-lux p { font-size: .92rem; line-height: 1.7; color: var(--muted); }

/* Markets Section Lux */
.markets-grid-lux { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.market-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease;
}
.market-card-lux:hover { transform: translateY(-6px); border-color: rgba(16, 185, 129, 0.38); }
.market-card-lux--primary { border-color: rgba(16, 185, 129, 0.3); background: linear-gradient(160deg, rgba(16, 185, 129, 0.08), var(--surface)); }
.market-flag { font-size: 2.5rem; margin-bottom: 14px; }
.market-card-lux h3 { font-size: 1.18rem; margin-bottom: 6px; }
.market-priority { display: inline-block; background: rgba(16, 185, 129, 0.12); color: #a7f3d0; border: 1px solid rgba(16, 185, 129, 0.25); padding: 2px 10px; border-radius: 999px; font-size: .75rem; font-weight: 800; margin-bottom: 12px; }
.market-status { display: inline-block; background: rgba(255,255,255,0.05); color: var(--muted-2); border: 1px solid var(--line); padding: 2px 10px; border-radius: 999px; font-size: .75rem; margin-bottom: 12px; }
.market-card-lux p { font-size: .88rem; line-height: 1.6; color: var(--muted-2); margin: 0; }

/* Education Section Lux */
.education-layout-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: start; }
.edu-cards-wrap, .dev-list-wrap { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.edu-card-lux, .dev-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transform-style: preserve-3d;
  transition: transform .2s ease, border-color .2s ease;
}
.edu-card-lux:hover, .dev-card-lux:hover { transform: translateY(-4px); border-color: rgba(16, 185, 129, 0.3); }
.edu-year, .dev-badge { display: inline-block; background: rgba(16, 185, 129, 0.1); color: var(--accent-emerald); padding: 2px 10px; border-radius: 6px; font-size: .78rem; font-weight: 800; margin-bottom: 10px; }
.edu-card-lux h3, .dev-content h3 { font-size: 1.15rem; margin-bottom: 6px; }
.edu-institution { color: var(--accent-gold); font-size: .88rem; display: block; margin-bottom: 8px; }
/* Ultra Executive Academic & Development Section Styles */
.section--academic-financial-lux { background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.03), transparent); }
.academic-cards-stage-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: stretch; }

.academic-hero-card {
  position: relative;
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.08), var(--surface));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform-style: preserve-3d;
}
.card-glow-aura { position: absolute; inset: -10px; border-radius: 40px; background: radial-gradient(circle at 10% 10%, var(--accent-emerald-glow), transparent 60%); pointer-events: none; }

.academic-secondary-card {
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.06), var(--surface));
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transform-style: preserve-3d;
}

.card-header-ribbon { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.degree-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  flex: 0 0 auto;
}
.degree-icon-box.gold { background: rgba(245, 158, 11, 0.12); border-color: rgba(245, 158, 11, 0.3); }
.degree-timeline { display: inline-block; background: rgba(255,255,255,0.06); color: var(--accent-emerald); font-size: .8rem; font-weight: 800; padding: 2px 10px; border-radius: 6px; margin-bottom: 4px; }
.card-header-ribbon h3 { font-size: 1.35rem; margin-bottom: 2px; }
.institution-name { color: var(--accent-gold); font-size: .92rem; display: block; }
.degree-lead-desc { font-size: .98rem; line-height: 1.7; color: var(--muted); margin-bottom: 24px; border-bottom: 1px solid var(--line); padding-bottom: 18px; }

.financial-pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.financial-pillar-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: transform .2s ease, border-color .2s ease;
}
.financial-pillar-item:hover { transform: translateY(-4px); border-color: rgba(16, 185, 129, 0.35); }
.pillar-icon { font-size: 1.5rem; margin-bottom: 10px; }
.financial-pillar-item h4 { font-size: .95rem; color: #fff; margin-bottom: 6px; }
.financial-pillar-item p { font-size: .84rem; line-height: 1.6; color: var(--muted-2); margin: 0; }

.cert-highlights-list { display: flex; flex-direction: column; gap: 12px; }
.cert-highlight-point { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--muted); background: rgba(255,255,255,0.02); border: 1px solid var(--line); padding: 12px 16px; border-radius: var(--radius-sm); }
.cert-highlight-point svg { color: var(--accent-gold); width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; }

/* Development & Accreditations Section */
.dev-cards-grid-lux { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.dev-card-ultra {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease;
}
.dev-card-ultra:hover { transform: translateY(-6px); border-color: rgba(16, 185, 129, 0.38); }
.dev-badge-year { position: absolute; top: 22px; left: 20px; background: rgba(16, 185, 129, 0.1); color: var(--accent-emerald); border: 1px solid rgba(16, 185, 129, 0.25); font-size: .75rem; font-weight: 800; padding: 2px 10px; border-radius: 999px; }
.dev-card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.dev-card-ultra h3 { font-size: 1.15rem; margin-bottom: 6px; }
.dev-org { display: block; color: var(--accent-gold); font-size: .85rem; margin-bottom: 12px; }
.dev-card-ultra p { font-size: .88rem; line-height: 1.65; color: var(--muted); margin: 0; }

/* Competencies Radar Grid */
.competencies-radar-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  margin-bottom: 28px;
  transform-style: preserve-3d;
}
.radar-header h3 { font-size: 1.3rem; margin-bottom: 6px; color: #fff; }
.radar-header p { font-size: .92rem; color: var(--muted-2); margin-bottom: 24px; }

.competencies-pills-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-pill-lux {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .88rem;
  font-weight: 700;
  color: #e2e8f0;
  transition: all .2s ease;
}
.skill-pill-lux:hover { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.4); color: #fff; transform: translateY(-2px); }
.skill-spark { color: var(--accent-emerald); font-size: .75rem; }

/* Languages Bar Lux */
.languages-scope-bar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  transform-style: preserve-3d;
}
.lang-title { font-size: 1.1rem; font-weight: 800; color: #fff; flex: 0 0 auto; }
.lang-items-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; flex: 1; }
.lang-item { display: flex; align-items: center; gap: 12px; }
.lang-flag { font-size: 1.8rem; }
.lang-item strong { display: block; color: #fff; font-size: .95rem; }
.lang-item small { color: var(--muted-2); font-size: .8rem; }

/* Reimagined Projects Archive & Single Case Study Styles */
.hero--projects-reimagined,
.hero--single-project-reimagined {
  padding-top: clamp(36px, 4.5vw, 60px);
  padding-bottom: clamp(20px, 2.5vw, 36px);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.projects-summary-stats { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.summary-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .85rem;
  color: var(--muted);
}
.summary-stat-pill svg { color: var(--accent-emerald); }

.confidential-guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), var(--surface));
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  margin-top: 48px;
  transform-style: preserve-3d;
}
.guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-gold);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex: 0 0 auto;
}
.confidential-guarantee-box h3 { font-size: 1.25rem; color: #fde68a; margin-bottom: 8px; }
.confidential-guarantee-box p { font-size: .92rem; line-height: 1.75; color: var(--muted); margin: 0; }

/* Single Project Styles */
.hero-inner--single-col {
  grid-template-columns: 1fr !important;
}
.hero--single-project-reimagined .hero-copy {
  text-align: right;
}
.project-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.project-meta-ribbon { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.meta-item { display: flex; align-items: center; gap: 8px; font-size: .92rem; }
.meta-label { color: var(--muted-2); }
.meta-item strong { color: #fff; }
.status-active { color: #a7f3d0; }

.hero-project-media {
  width: 100%;
}
.single-project-cover-stage {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow-lux), 0 0 40px rgba(16, 185, 129, 0.14);
  overflow: hidden;
  width: 100%;
}
.cover-img-wrapper { width: 100%; height: auto; overflow: hidden; }
.cover-img-wrapper img { width: 100%; height: auto; display: block; object-fit: contain; }

.project-detail-grid-lux { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.project-main-narrative { display: flex; flex-direction: column; gap: 28px; }

.case-block-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transform-style: preserve-3d;
}
.case-num-badge {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 16px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.case-num-badge.gold { color: var(--accent-gold); background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.25); }
.case-block-content { flex: 1; }
.case-block-content h2 { font-size: 1.4rem; margin-bottom: 14px; }
.case-block-content p { font-size: 1rem; line-height: 1.8; color: var(--muted); }

.project-services-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.service-tag-pill { background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 999px; padding: 4px 14px; font-size: .82rem; color: var(--muted); }

.approach-steps-list { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.approach-step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.step-num { font-weight: 900; color: var(--accent-emerald); font-size: 1.1rem; flex: 0 0 auto; margin-top: 2px; }
.step-text p { font-size: .95rem; line-height: 1.65; color: var(--muted); margin: 0; }

.case-block-lux--results { background: linear-gradient(160deg, rgba(245, 158, 11, 0.05), var(--surface)); border-color: rgba(245, 158, 11, 0.25); }
.results-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.result-metric-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.metric-icon-wrap { width: 38px; height: 38px; border-radius: 12px; background: rgba(16, 185, 129, 0.12); color: var(--accent-emerald); display: grid; place-items: center; flex: 0 0 auto; margin-top: 2px; }
.result-metric-card p { font-size: .92rem; font-weight: 700; color: #fff; line-height: 1.5; margin: 0; }

.confidential-note-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
}
.confidential-note-card svg { color: var(--accent-gold); width: 22px; height: 22px; flex: 0 0 auto; margin-top: 2px; }
.confidential-note-card p { font-size: .86rem; line-height: 1.6; color: var(--muted-2); margin: 0; }

/* Sticky Project Sidebar */
.project-sidebar-sticky { position: sticky; top: 100px; z-index: 20; align-self: start; }
.sidebar-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transform-style: preserve-3d;
}
.sidebar-title { font-size: 1.25rem; margin-bottom: 22px; border-bottom: 1px solid var(--line); padding-bottom: 14px; color: #fff; }
.sidebar-fact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.fact-item { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,0.04); padding-bottom: 12px; }
.fact-item:last-child { border-bottom: none; padding-bottom: 0; }
.fact-label { color: var(--muted-2); }
.fact-val { color: #fff; font-weight: 700; text-align: left; }
.status-val { color: var(--accent-emerald); }
.sidebar-cta-actions { display: flex; flex-direction: column; gap: 12px; }

/* Evidence Gallery Section (Optimized for Landscape Screenshots) */
.evidence-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.evidence-card-lux {
  background: linear-gradient(160deg, rgba(255,255,255,0.02), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.evidence-card-lux:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 30px var(--accent-emerald-glow);
}
.evidence-card-lux a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #060b13;
  padding: 16px;
  min-height: 280px;
  max-height: 480px;
}
.evidence-card-lux img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform .35s ease;
}
.evidence-card-lux:hover img { transform: scale(1.02); }
.evidence-card-lux:hover img { transform: scale(1.05); }
.evidence-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  opacity: 0;
  transition: opacity .25s ease;
  backdrop-filter: blur(4px);
}
.evidence-card-lux:hover .evidence-zoom-overlay { opacity: 1; }
.evidence-card-lux figcaption { padding: 14px 18px; font-size: .85rem; color: var(--muted-2); background: var(--surface-2); border-top: 1px solid var(--line); }

/* Closing CTA Stage */
.section--cta-lux { padding-bottom: clamp(36px, 4.5vw, 60px); }
.cta-stage-card {
  position: relative;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 80px) clamp(24px, 5vw, 60px);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0,0,0,0.6), 0 0 60px var(--accent-emerald-glow);
  transform-style: preserve-3d;
}
.cta-glow-aura { position: absolute; inset: -40px; border-radius: 50%; background: radial-gradient(circle at center, var(--accent-emerald-glow), transparent 70%); pointer-events: none; }
.cta-content-inner { position: relative; z-index: 2; max-width: 800px; margin-inline: auto; }
.cta-content-inner h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 18px; }
.cta-content-inner p { font-size: 1.15rem; margin-bottom: 36px; }
.cta-actions-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Scroll Reveal */
.haz-reveal,
.haz-reveal.is-visible { opacity: 1; }

/* Floating Actions Container (0-height fixed wrapper) */
.floating-actions-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  z-index: 99999;
  pointer-events: none;
  overflow: visible;
}
.floating-actions-container > * {
  pointer-events: auto;
}

/* Floating WhatsApp Action Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  direction: ltr;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: 999px;
  padding: 6px 8px 6px 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(37, 211, 102, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow .3s ease, border-color .3s ease, gap .28s ease;
}
.floating-whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: #25d366;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 35px rgba(37, 211, 102, 0.4);
}
.whatsapp-pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1.5px solid rgba(37, 211, 102, 0.6);
  animation: waPulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}
.whatsapp-pulse-ring--outer {
  animation-delay: 1.1s;
}
@keyframes waPulse {
  0% { transform: scale(0.96); opacity: 0.8; }
  50% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.24); opacity: 0; }
}
.whatsapp-text {
  font-size: .86rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: .02em;
  direction: rtl;
  text-align: right;
  transition: max-width .28s ease, opacity .22s ease, margin .28s ease;
}
.whatsapp-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  flex: 0 0 auto;
  transition: transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-icon-box svg { width: 24px; height: 24px; fill: currentColor; }
.floating-whatsapp-btn:hover .whatsapp-icon-box {
  transform: rotate(-10deg) scale(1.12);
}

/* Floating Action Controls - Back To Top Pill */
.floating-back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: 999px;
  padding: 6px 18px 6px 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  outline: none;
  margin: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1), visibility .35s cubic-bezier(0.16, 1, 0.3, 1), transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s ease, border-color .3s ease;
}
.floating-back-to-top-btn:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: #10b981;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 35px rgba(16, 185, 129, 0.4);
}
.floating-back-to-top-btn.is-at-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(16px) !important;
}
.back-to-top-text {
  font-size: .86rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: .02em;
  direction: rtl;
  text-align: right;
  transition: max-width .28s ease, opacity .22s ease, margin .28s ease;
}
.back-to-top-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  flex: 0 0 auto;
  transition: transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.back-to-top-icon-box svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2.5; }
.floating-back-to-top-btn:hover .back-to-top-icon-box {
  transform: translateY(-3px) scale(1.12);
}

@media (max-width: 640px) {
  .floating-whatsapp-btn,
  .floating-back-to-top-btn {
    bottom: 18px;
    padding: 6px;
    gap: 0;
  }
  .floating-whatsapp-btn {
    left: 18px;
  }
  .floating-back-to-top-btn {
    right: 18px;
  }
  .whatsapp-text,
  .back-to-top-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
  }
  .whatsapp-icon-box,
  .back-to-top-icon-box {
    width: 40px;
    height: 40px;
  }
  .whatsapp-icon-box {
    font-size: 1.2rem;
  }
  .floating-whatsapp-btn:hover,
  .floating-whatsapp-btn:focus-visible,
  .floating-whatsapp-btn.is-mobile-expanded,
  .floating-back-to-top-btn:hover,
  .floating-back-to-top-btn:focus-visible,
  .floating-back-to-top-btn.is-mobile-expanded {
    gap: 8px;
  }
  .floating-whatsapp-btn:hover .whatsapp-text,
  .floating-whatsapp-btn:focus-visible .whatsapp-text,
  .floating-whatsapp-btn.is-mobile-expanded .whatsapp-text,
  .floating-back-to-top-btn:hover .back-to-top-text,
  .floating-back-to-top-btn:focus-visible .back-to-top-text,
  .floating-back-to-top-btn.is-mobile-expanded .back-to-top-text {
    max-width: 160px;
    opacity: 1;
    margin-inline-end: 8px;
  }
}

/* Executive 3D Footer Styles */
.site-footer-lux {
  background: linear-gradient(180deg, var(--bg-dark), #03060c);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  color: var(--muted);
  margin-top: 30px;
}
.footer-top-banner {
  padding-block: 32px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.01);
}
.footer-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand-box { max-width: 580px; }
.footer-logo-link { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; margin-bottom: 14px; }
.brand-symbol-3d {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-emerald), #059669);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}
.brand-text-wrap { display: flex; flex-direction: column; }
.brand-title { color: #fff; font-size: 1.3rem; line-height: 1.1; }
.brand-sub { color: var(--muted-2); font-size: .78rem; letter-spacing: 1px; }
.footer-positioning { font-size: .95rem; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.footer-status-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.2); padding: 5px 14px; border-radius: 999px; font-size: .8rem; color: #a7f3d0; }
.radar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-emerald); box-shadow: 0 0 10px var(--accent-emerald); }

.footer-social-wrap { display: flex; flex-direction: column; gap: 12px; }
.social-title { font-size: .85rem; color: var(--muted-2); font-weight: 700; }
.social-links-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 14px;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease;
}
.social-btn svg { display: block; }
.social-btn:hover {
  transform: translateY(-4px) scale(1.08);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.social-btn--linkedin:hover { border-color: #0A66C2; color: #0A66C2; background: rgba(10, 102, 194, 0.12); box-shadow: 0 8px 25px rgba(10, 102, 194, 0.25); }
.social-btn--x:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.1); }
.social-btn--facebook:hover { border-color: #1877F2; color: #1877F2; background: rgba(24, 119, 242, 0.12); box-shadow: 0 8px 25px rgba(24, 119, 242, 0.25); }
.social-btn--instagram:hover { border-color: #E4405F; color: #E4405F; background: rgba(228, 64, 95, 0.12); box-shadow: 0 8px 25px rgba(228, 64, 95, 0.25); }
.social-btn--youtube:hover { border-color: #FF0000; color: #FF0000; background: rgba(255, 0, 0, 0.1); box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2); }

.footer-main-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; padding-block: 36px 28px; }
.footer-col h3 { color: #fff; font-size: 1.15rem; margin-bottom: 22px; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; right: 0; width: 32px; height: 2px; background: var(--accent-emerald); }
.footer-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-nav-list a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .2s ease, transform .2s ease; display: inline-block; }
.footer-nav-list a:hover { color: var(--accent-emerald); transform: translateX(-4px); }

.contact-methods-box { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.contact-item-link { display: flex; align-items: center; gap: 10px; color: var(--muted); text-decoration: none; font-size: .9rem; }
.contact-item-link svg { color: var(--accent-emerald); flex: 0 0 auto; width: 18px; height: 18px; }
.whatsapp-link { color: #25d366; font-weight: 750; }
.contact-item-info { display: flex; align-items: flex-start; gap: 10px; color: var(--muted-2); font-size: .85rem; line-height: 1.5; }
.contact-item-info svg { color: var(--accent-gold); flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; }

.nda-security-badge { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,0.02); border: 1px solid var(--line); font-size: .78rem; color: var(--muted-2); }
.nda-security-badge svg { color: var(--accent-emerald); width: 16px; height: 16px; flex: 0 0 auto; }

.footer-bottom-bar { border-top: 1px solid var(--line); padding-block: 24px; background: rgba(0,0,0,0.3); }
.bottom-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: .88rem; }
.copyright-text strong { color: #fff; }
.legal-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.legal-links a { color: var(--muted-2); text-decoration: none; font-size: .84rem; transition: color .2s ease; }
.legal-links a:hover { color: #fff; }

/* Mobile Drawer Menu Styles */
.mobile-menu-drawer { display: none; position: static; }
.mobile-menu-trigger {
  list-style: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  z-index: 99999999;
  transition: all .2s ease;
}
.mobile-menu-trigger::-webkit-details-marker { display: none; }
.mobile-menu-trigger:hover { background: rgba(16, 185, 129, 0.12); border-color: rgba(16, 185, 129, 0.35); color: var(--accent-emerald); }
.trigger-icon { display: flex; align-items: center; justify-content: center; }
.close-icon { display: none; }
.mobile-menu-drawer[open] .open-icon { display: none; }
.mobile-menu-drawer[open] .close-icon { display: flex; color: var(--accent-emerald); }

.mobile-drawer-content {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  width: 100%;
  min-height: calc(100dvh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  z-index: 9999998;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.12), rgba(5, 8, 14, 0.98));
  overflow: hidden;
}

.mobile-menu-drawer[open] .mobile-drawer-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0.86);
  z-index: 1;
  opacity: 0;
  transition: opacity .24s ease;
}

.mobile-menu-drawer[open] .mobile-drawer-backdrop {
  opacity: 1;
}

.mobile-drawer-inner {
  position: relative;
  z-index: 2;
  width: min(500px, 100%);
  max-height: calc(100% - 14px);
  overflow-y: auto;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer-shell {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(16, 185, 129, 0.16), rgba(15, 23, 42, 0.78));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(16, 185, 129, 0.18) inset;
  overflow: hidden;
}

.mobile-drawer-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: 28px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  opacity: 0.55;
}

.mobile-drawer-shell::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 10%;
  width: 120%;
  height: 45%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 72%);
  pointer-events: none;
  opacity: 0.85;
}

.mobile-drawer-shell-glow {
  position: absolute;
  inset: auto 12px 12px auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.4), transparent 72%);
  filter: blur(2px);
  opacity: 0.35;
  pointer-events: none;
}

.mobile-drawer-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.mobile-drawer-brand-dot {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(130deg, #10b981, #34d399);
  display: grid;
  place-items: center;
  color: #04110c;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.32);
  flex: 0 0 auto;
}

.mobile-drawer-brand-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-drawer-brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mobile-drawer-brand-copy strong {
  display: block;
  color: #fff;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.mobile-drawer-brand-copy small {
  display: block;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.79rem;
}

.mobile-drawer-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.mobile-drawer-close-btn:hover,
.mobile-drawer-close-btn:focus-visible {
  background: rgba(16, 185, 129, 0.16);
  border-color: rgba(16, 185, 129, 0.45);
  color: var(--accent-emerald);
}

.mobile-drawer-close-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-drawer-subtitle {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted-2);
  line-height: 1.7;
  font-size: .93rem;
}

.mobile-nav-list { display: flex; flex-direction: column; gap: 8px; }

.mobile-nav-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 17px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: #fff;
  font-size: 1rem;
  font-weight: 760;
  text-decoration: none;
  transition: all .2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--accent-emerald);
  transform: translateX(-4px);
}

.mobile-nav-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
  text-align: right;
}

.mobile-nav-item svg { color: var(--muted-2); transition: transform .2s ease; }
.mobile-nav-item:hover svg { color: var(--accent-emerald); transform: translateX(-4px); }

.mobile-drawer-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.mobile-drawer-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  min-height: 48px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 850;
  background: linear-gradient(135deg, var(--accent-emerald), #34d399);
  color: #041d16;
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.35);
}

.mobile-drawer-quick-link:hover,
.mobile-drawer-quick-link:focus-visible {
  transform: translateY(-2px);
  color: #041d16;
  box-shadow: 0 18px 38px rgba(16, 185, 129, 0.45);
}

.mobile-drawer-quick-link svg,
.mobile-drawer-ghost-link svg {
  width: 18px;
  height: 18px;
}

.mobile-drawer-ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 13px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-2);
  font-size: .94rem;
  transition: all .2s ease;
}

.mobile-drawer-ghost-link:hover,
.mobile-drawer-ghost-link:focus-visible {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.34);
  color: var(--accent-emerald);
}
.btn-mobile-full { width: 100%; justify-content: center; }

/* Responsive Adjustments & Mobile Compatibility */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .header-actions { display: none; }
  .mobile-menu-drawer { display: block; }
  .header-inner { display: flex; justify-content: space-between; align-items: center; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: .72rem; }
  
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-headline { margin-inline: auto; }
  .hero-lead-text { margin-inline: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust-bar { justify-content: center; }
  .hero-market-tags { justify-content: center; }
  .projects-summary-stats { justify-content: center; }
  
  /* About Page Mobile Responsiveness */
  .profile-layout-grid { grid-template-columns: 1fr; gap: 36px; }
  .spec-card-lux {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    align-items: center;
  }
  .spec-card-title { grid-column: span 2; margin-bottom: 12px; }
  .spec-stat-item { margin-bottom: 0; }

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

  .academic-cards-stage-grid { grid-template-columns: 1fr; gap: 24px; }
  .financial-pillars-grid { grid-template-columns: repeat(2, 1fr); }

  .dev-cards-grid-lux { grid-template-columns: repeat(2, 1fr); }
  .languages-scope-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .lang-items-row { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* Projects & Case Studies Mobile Responsiveness */
  .projects-grid-lux,
  .projects-grid-all { grid-template-columns: repeat(2, 1fr); }
  .project-card-lux--featured,
  .project-card-lux--hero { grid-column: span 2; grid-template-columns: 1fr; }
  .project-detail-grid-lux { grid-template-columns: 1fr; gap: 28px; }
  .project-sidebar-sticky { position: static; margin-top: 20px; }
  .results-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .evidence-gallery-grid { grid-template-columns: 1fr; gap: 20px; }

  .paradigm-grid { grid-template-columns: 1fr; }
  .stats-grid-lux { grid-template-columns: repeat(2, 1fr); }
  .services-grid-lux { grid-template-columns: repeat(2, 1fr); }
  .accreditations-grid-lux { grid-template-columns: repeat(2, 1fr); }
  .experience-cards-grid { grid-template-columns: 1fr; }
  .clients-grid-lux { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid-lux { grid-template-columns: 1fr; }
  .articles-grid-lux { grid-template-columns: 1fr; }
  .footer-main-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Projects Filter Bar Touch Swiping */
  .project-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 12px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    mask-image: linear-gradient(90deg, #000 90%, transparent);
  }
  .project-filter-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 8px 16px;
    font-size: .84rem;
  }

  /* Single Project Case Study Block Mobile Tuning */
  .case-block-lux {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
    border-radius: 20px;
  }
  .case-num-badge {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    border-radius: 12px;
  }
  .project-meta-ribbon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    font-size: .86rem;
    padding-top: 16px;
    margin-top: 20px;
  }
  .single-project-cover-stage {
    border-radius: 20px;
  }
  .confidential-guarantee-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 14px;
    padding: 22px 18px;
    border-radius: 20px;
  }
  .guarantee-icon { margin-bottom: 4px; }
}

@media (max-width: 640px) {
  .hero-stage-3d { min-height: 360px; }
  .stage-frame-wrapper { aspect-ratio: auto; min-height: 260px; }
  .floating-badge-3d { position: static; margin-top: 12px; width: 100%; box-shadow: none; }
  .floating-badge-3d--top, .floating-badge-3d--bottom { right: auto; left: auto; top: auto; bottom: auto; }

  .projects-summary-stats { flex-direction: column; align-items: stretch; gap: 8px; width: 100%; }
  .summary-stat-pill { justify-content: center; width: 100%; text-align: center; }

  .project-meta-ribbon { grid-template-columns: 1fr; gap: 8px; }

  .spec-card-lux { grid-template-columns: 1fr; }
  .spec-card-title { grid-column: auto; }
  
  .principles-grid-lux { grid-template-columns: 1fr; }
  .markets-grid-lux { grid-template-columns: 1fr; }
  .financial-pillars-grid { grid-template-columns: 1fr; }
  .dev-cards-grid-lux { grid-template-columns: 1fr; }
  .results-cards-grid { grid-template-columns: 1fr; }
  .evidence-card-lux a { min-height: 180px; max-height: 320px; padding: 8px; }

  .stats-grid-lux { grid-template-columns: 1fr; }
  .services-grid-lux { grid-template-columns: 1fr; }
  .projects-grid-all { grid-template-columns: 1fr; }
  .project-card-lux--hero { grid-column: auto; }
  .accreditations-grid-lux { grid-template-columns: 1fr; }
  .clients-grid-lux { grid-template-columns: repeat(2, 1fr); }
  .experience-highlights-box { grid-template-columns: 1fr; }
  
  /* Mobile Footer Organization */
  .footer-main-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-col h3::after { right: 50%; transform: translateX(50%); }
  .footer-nav-list li a { justify-content: center; }
  .footer-banner-inner { flex-direction: column; text-align: center; gap: 28px; }
  .footer-logo-link { justify-content: center; }
  .footer-positioning { color: rgba(255,255,255,0.85); line-height: 1.7; }
  .footer-status-pill { justify-content: center; }
  .social-links-grid { justify-content: center; }
  .social-title { display: block; text-align: center; margin-bottom: 12px; color: var(--accent-gold); }
  
  .contact-item-link, .contact-item-info { justify-content: center; text-align: center; flex-direction: row; align-items: center; gap: 10px; padding: 6px 0; }
  .contact-item-link svg, .contact-item-info svg { margin: 0; color: var(--accent-gold); width: 20px; height: 20px; }
  .nda-security-badge { justify-content: center; text-align: center; flex-direction: row; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); }
  .nda-security-badge svg { margin: 0; color: var(--accent-emerald); width: 18px; height: 18px; }
  
  .bottom-bar-inner { flex-direction: column; text-align: center; gap: 16px; }
  .legal-links { justify-content: center; flex-wrap: wrap; gap: 16px; }

}

/* Reimagined Services Archive & Single Service Styles */
.hero--services-reimagined,
.hero--single-service-reimagined {
  padding-top: clamp(36px, 4.5vw, 60px);
  padding-bottom: clamp(24px, 3vw, 42px);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.service-hero-outcome-ribbon {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), var(--surface));
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-top: 28px;
  max-width: 820px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.outcome-ribbon-icon { font-size: 1.6rem; flex: 0 0 auto; }
.outcome-ribbon-text strong { display: block; color: var(--accent-emerald); font-size: .88rem; margin-bottom: 2px; }
.outcome-ribbon-text span { color: #fff; font-size: .98rem; font-weight: 600; line-height: 1.5; }

.service-hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* Decision Matrix */
.decision-matrix-lux { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.decision-card-lux {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.decision-card-lux:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-emerald-glow);
}
.decision-icon { font-size: 2.2rem; margin-bottom: 16px; }
.decision-tag { font-size: .78rem; font-weight: 800; color: var(--accent-gold); text-transform: uppercase; margin-bottom: 8px; display: block; }
.decision-card-lux h3 { font-size: 1.15rem; color: #fff; margin-bottom: 10px; line-height: 1.4; }
.decision-card-lux p { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.decision-solution { border-top: 1px solid var(--line); padding-top: 16px; margin-top: auto; }
.decision-solution small { display: block; color: var(--muted-2); font-size: .78rem; margin-bottom: 6px; }
.solution-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-emerald); font-weight: 800; font-size: .95rem; text-decoration: none; transition: transform .2s ease, color .2s ease; }
.solution-link:hover { color: #a7f3d0; transform: translateX(-4px); }

/* Services Grid Lux */
.services-grid-lux { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px; }
.service-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card-lux:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--accent-emerald-glow);
}
.service-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.service-num { font-size: 1.6rem; font-weight: 900; color: var(--accent-emerald); font-family: monospace; }
.service-badge { font-size: .75rem; font-weight: 700; color: #a7f3d0; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.25); padding: 4px 12px; border-radius: 999px; }
.service-card-title { font-size: 1.35rem; color: #fff; margin-bottom: 12px; line-height: 1.35; }
.service-card-title a { color: inherit; text-decoration: none; transition: color .2s ease; }
.service-card-title a:hover { color: var(--accent-emerald); }
.service-card-excerpt { font-size: .92rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }

.service-outcome-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 20px;
}
.service-outcome-box small { display: block; color: var(--accent-gold); font-weight: 700; font-size: .78rem; margin-bottom: 4px; }
.service-outcome-box p { font-size: .86rem; color: #e2e8f0; line-height: 1.5; margin: 0; }

.service-scope-preview { margin-bottom: 24px; }
.preview-label { display: block; font-size: .8rem; font-weight: 700; color: var(--muted-2); margin-bottom: 8px; }
.scope-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.scope-bullets li { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--muted); }
.scope-bullets svg { color: var(--accent-emerald); flex: 0 0 auto; width: 15px; height: 15px; }

.service-card-footer { display: flex; gap: 12px; align-items: center; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.btn-service-details { flex: 1; justify-content: center; font-size: .86rem; padding: 10px 14px; }
.btn-service-ask { flex: 0 0 auto; font-size: .86rem; padding: 10px 18px; }

/* Workflow Steps Grid */
.workflow-steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 36px; }
.workflow-step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 18px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease;
}
.workflow-step-card:hover { transform: translateY(-5px); border-color: rgba(16, 185, 129, 0.35); }
.step-badge { font-size: 1.8rem; font-weight: 900; color: var(--accent-emerald); display: block; margin-bottom: 10px; font-family: monospace; opacity: .85; }
.workflow-step-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 8px; line-height: 1.35; }
.workflow-step-card p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Single Service Block Styles */
.audience-pills-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.audience-pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  color: #e2e8f0;
  font-size: .95rem;
  font-weight: 650;
}
.audience-pill-item svg { color: var(--accent-emerald); flex: 0 0 auto; width: 18px; height: 18px; }

.scope-steps-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.scope-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.scope-step-num { font-size: 1.1rem; font-weight: 900; color: var(--accent-emerald); font-family: monospace; flex: 0 0 auto; margin-top: 2px; }
.scope-step-text p { font-size: .95rem; color: #fff; line-height: 1.6; margin: 0; }

.process-roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.roadmap-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
}
.roadmap-num { display: block; font-size: .78rem; font-weight: 800; color: var(--accent-gold); margin-bottom: 6px; text-transform: uppercase; }
.roadmap-card h3 { font-size: 1rem; color: #fff; margin: 0; line-height: 1.4; }

.deliverables-grid-lux { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.deliverable-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
}
.deliverable-card svg { color: var(--accent-emerald); flex: 0 0 auto; width: 18px; height: 18px; }

.service-faqs-accordion { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.faq-item-lux {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item-lux[open] { border-color: rgba(16, 185, 129, 0.35); background: rgba(16, 185, 129, 0.04); }
.faq-item-lux summary {
  list-style: none;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 750;
  font-size: .98rem;
  color: #fff;
}
.faq-item-lux summary::-webkit-details-marker { display: none; }
.faq-arrow { color: var(--muted-2); transition: transform .25s ease; width: 18px; height: 18px; }
.faq-item-lux[open] .faq-arrow { transform: rotate(180deg); color: var(--accent-emerald); }
.faq-answer { padding: 0 20px 18px; border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 4px; }
.faq-answer p { font-size: .92rem; color: var(--muted); line-height: 1.7; margin: 0; padding-top: 12px; }

/* Responsive adjustments for Services */
@media (max-width: 1024px) {
  .decision-matrix-lux { grid-template-columns: repeat(2, 1fr); }
  .services-grid-lux { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .service-hero-outcome-ribbon { flex-direction: column; text-align: center; align-items: center; padding: 18px 16px; }
  .deliverables-grid-lux { grid-template-columns: 1fr; }
  .process-roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .decision-matrix-lux { grid-template-columns: 1fr; }
  .services-grid-lux { grid-template-columns: 1fr; }
  .workflow-steps-grid { grid-template-columns: 1fr; }
  .process-roadmap-grid { grid-template-columns: 1fr; }
  .service-hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
}

/* Reimagined Experience Page Styles */
.hero--experience-reimagined {
  padding-top: clamp(36px, 4.5vw, 60px);
  padding-bottom: clamp(24px, 3vw, 42px);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.experience-layout-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.timeline-stream-container { position: relative; }
.timeline-cards-stream { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }

.timeline-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.timeline-card-lux:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 25px var(--accent-emerald-glow);
}
.timeline-card-lux--featured {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), var(--surface));
  border-color: rgba(16, 185, 129, 0.28);
}

.timeline-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.timeline-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 800;
  color: var(--accent-emerald);
}
.timeline-type-pill {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 999px;
}

.timeline-role-meta { margin-bottom: 14px; }
.timeline-role-title { font-size: 1.3rem; color: #fff; line-height: 1.35; margin-bottom: 6px; }
.timeline-company-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: .92rem; }
.company-name { color: var(--accent-gold); font-weight: 750; }
.location-dot { color: var(--muted-2); }
.location-text { color: var(--muted-2); }

.timeline-summary-text { font-size: .92rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }

.timeline-highlights-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.highlights-title { display: block; font-size: .82rem; font-weight: 800; color: #e2e8f0; margin-bottom: 10px; }
.timeline-highlights-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.timeline-highlights-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--muted); line-height: 1.5; }
.timeline-highlights-list svg { color: var(--accent-emerald); flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; }

@media (max-width: 1024px) {
  .experience-layout-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .timeline-card-lux { padding: 22px 18px; border-radius: 20px; }
  .timeline-role-title { font-size: 1.15rem; }
  .timeline-highlights-box { padding: 14px; }
}

/* Sidebar Responsive Sticky & Mobile Floating Button Rules */
.mobile-sidebar-drawer summary::-webkit-details-marker { display: none; }
.mobile-sidebar-toggle-btn { display: none; }

@media (min-width: 1025px) {
  .project-detail-grid-lux,
  .experience-layout-grid,
  .profile-layout-grid {
    display: grid;
    align-items: start !important;
  }
  .project-sidebar-sticky,
  .profile-specs-col,
  .mobile-sidebar-drawer {
    position: sticky !important;
    top: 105px !important;
    z-index: 20 !important;
    align-self: start !important;
    will-change: transform;
    display: block !important;
  }
  .mobile-sidebar-toggle-btn { display: none !important; }
  .mobile-sidebar-modal-wrap {
    display: block !important;
    position: static !important;
    background: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
  }
  .mobile-modal-header { display: block !important; }
  .mobile-modal-close-btn { display: none !important; }
}

@media (max-width: 1024px) {
  .project-sidebar-sticky,
  .profile-specs-col {
    position: static !important;
    height: auto !important;
    margin: 0 !important;
  }

  /* Floating Side Button on Left Middle Edge - Ultra Compact & Thin Profile */
  .mobile-sidebar-toggle-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    position: fixed !important;
    left: 0 !important;
    top: 45% !important;
    transform: translateY(-50%) !important;
    z-index: 99995 !important;
    background: rgba(14, 23, 38, 0.96) !important;
    border: 1px solid rgba(16, 185, 129, 0.45) !important;
    border-left: none !important;
    border-radius: 0 14px 14px 0 !important;
    padding: 10px 5px !important;
    width: auto !important;
    min-width: 28px !important;
    max-width: 32px !important;
    color: #fff !important;
    font-weight: 800 !important;
    font-size: .8rem !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(16, 185, 129, 0.2) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    cursor: pointer !important;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease !important;
  }
  .mobile-sidebar-toggle-btn:hover,
  .mobile-sidebar-toggle-btn:active {
    background: var(--surface-2) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 20px var(--accent-emerald-glow) !important;
    transform: translateY(-50%) translateX(3px) !important;
  }
  .toggle-pulse-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--accent-emerald) !important;
    box-shadow: 0 0 8px var(--accent-emerald) !important;
    flex: 0 0 auto !important;
    margin-bottom: 2px !important;
  }
  .toggle-label {
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
    transform: rotate(180deg) !important;
    letter-spacing: .03em !important;
    font-size: .8rem !important;
    white-space: nowrap !important;
    line-height: 1.1 !important;
  }

  /* Mobile Floating Modal Container - Compact & Sleek */
  .mobile-sidebar-drawer:not([open]) .mobile-sidebar-modal-wrap {
    display: none !important;
  }
  .mobile-sidebar-drawer[open] .mobile-sidebar-modal-wrap {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99998 !important;
    background: rgba(5, 8, 14, 0.88) !important;
    backdrop-filter: blur(25px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(160%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-drawer-dialog-box {
    width: min(92vw, 390px) !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    background: var(--surface) !important;
    border: 1px solid rgba(16, 185, 129, 0.35) !important;
    border-radius: 20px !important;
    padding: 16px 14px !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 30px var(--accent-emerald-glow) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin: auto !important;
  }
  .mobile-modal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid var(--line) !important;
    padding-bottom: 8px !important;
    margin-bottom: 0 !important;
  }
  .mobile-modal-header h3 {
    font-size: .98rem !important;
    color: #fff !important;
    margin: 0 !important;
  }
  .mobile-modal-close-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--line) !important;
    color: #fff !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 10px !important;
    display: grid !important;
    place-items: center !important;
    cursor: pointer !important;
    font-size: .85rem !important;
    font-weight: 700 !important;
    transition: all .2s ease !important;
  }
  .mobile-modal-close-btn:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444 !important;
  }
  .mobile-drawer-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
  .mobile-drawer-body .sidebar-card-lux {
    background: var(--surface-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
    box-shadow: none !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .mobile-drawer-body .sidebar-card-title {
    display: none !important;
  }
  .mobile-drawer-body .contact-channels-list {
    margin-top: 6px !important;
    gap: 8px !important;
  }
  .mobile-drawer-body .contact-channel-item {
    padding: 10px 12px !important;
    border-radius: 12px !important;
  }
  .mobile-drawer-body .channel-icon-glow {
    width: 34px !important;
    height: 34px !important;
    border-radius: 10px !important;
  }
  .mobile-drawer-body .channel-text strong {
    font-size: .84rem !important;
  }
}

/* Reimagined Clients Page Styles */
.clients-grid-lux {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.client-brand-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.client-brand-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px var(--accent-emerald-glow);
}
.client-brand-card--featured {
  border-color: rgba(16, 185, 129, 0.28);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), var(--surface));
}

.client-logo-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.client-logo-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; }
.logo-fallback-text { font-weight: 900; font-size: 1.4rem; color: #0f172a; }

.client-brand-name { font-size: 1.15rem; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.client-brand-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sector-pill { font-size: .78rem; font-weight: 700; color: var(--accent-emerald); background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.2); padding: 4px 10px; border-radius: 999px; }
.country-pill { font-size: .78rem; color: var(--muted-2); }

.client-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  transition: color .2s ease;
}
.client-card-link:hover { color: #fff; }
.client-card-link svg { width: 14px; height: 14px; }

/* Confidentiality & NDA Banner */
.confidentiality-banner-lux {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.04), var(--surface-2));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.confidentiality-icon-glow {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-gold);
  display: grid;
  place-items: center;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.2);
}
.confidentiality-icon-glow svg { width: 28px; height: 28px; }

.confidentiality-text-content h2 { font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.confidentiality-lead { font-size: 1rem; color: #e2e8f0; line-height: 1.7; margin-bottom: 12px; }
.confidentiality-text-content p { font-size: .92rem; color: var(--muted); line-height: 1.75; margin: 0; }
.confidentiality-text-content a { color: var(--accent-emerald); text-decoration: underline; text-underline-offset: 4px; font-weight: 700; }

/* Sectors Matrix */
.sectors-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sector-matrix-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
}
.sector-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.sector-num { font-size: 1.2rem; font-weight: 900; color: var(--accent-emerald); font-family: monospace; }
.sector-card-header h3 { font-size: 1.15rem; color: #fff; margin: 0; }
.sector-clients-list { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; }
.sector-clients-list strong { color: var(--muted-2); display: block; margin-bottom: 4px; }

@media (max-width: 1024px) {
  .clients-grid-lux { grid-template-columns: repeat(2, 1fr); }
  .sectors-matrix-grid { grid-template-columns: repeat(2, 1fr); }
  .confidentiality-banner-lux { grid-template-columns: 1fr; gap: 18px; padding: 26px 20px; }
}

@media (max-width: 640px) {
  .clients-grid-lux { grid-template-columns: 1fr; }
  .sectors-matrix-grid { grid-template-columns: 1fr; }
  .client-brand-card { padding: 20px; }
}

/* Reimagined Global 3D Closing CTA Component */
.section--cta-lux {
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
}
.cta-stage-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(15, 23, 42, 0.95), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(16, 185, 129, 0.15);
}
.cta-glow-aura {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25), transparent 70%);
  pointer-events: none;
}
.cta-content-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-content-inner h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: #fff;
  margin: 16px 0 14px;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.cta-content-inner p {
  font-size: clamp(.98rem, 1.5vw, 1.12rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 680px;
}
.cta-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-lux--whatsapp {
  background: rgba(37, 211, 102, 0.12) !important;
  border: 1px solid rgba(37, 211, 102, 0.4) !important;
  color: #25d366 !important;
}
.btn-lux--whatsapp:hover {
  background: #25d366 !important;
  color: #05080e !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
}

/* Reading Progress Bar */
#reading-progress-bar {
  position: fixed;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-emerald), #34d399);
  width: 0%;
  z-index: 999999;
  box-shadow: 0 0 10px var(--accent-emerald);
  transition: width .1s ease-out;
}

/* Reimagined Blog Hub & Cards */
/* Reimagined Blog Hub & Cards */
.blog-articles-grid-lux {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.blog-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.blog-card-lux:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px var(--accent-emerald-glow);
}
.blog-card-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--surface-2);
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card-lux:hover .blog-card-thumb img { transform: scale(1.06); }
.blog-cat-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(5, 8, 14, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--accent-emerald);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.blog-meta-overlay {
  display: none;
}
.blog-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  font-size: .78rem;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 0.98rem;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 700;
  transition: color .2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-title a {
  color: #ffffff;
  transition: color 0.2s ease;
}
.blog-card-title a:hover { color: var(--accent-emerald); }
.blog-card-excerpt {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-readmore {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--accent-emerald);
  transition: gap .2s ease;
}
.blog-card-lux:hover .blog-card-readmore { gap: 12px; }

.blog-pagination-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.blog-pagination-lux .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-pagination-lux a,
.blog-pagination-lux span {
  padding: 8px 16px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  transition: all .2s ease;
}
.blog-pagination-lux span.current,
.blog-pagination-lux a:hover {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  color: #05080e;
}

/* Single Post Specific 3D Layout */
.hero--single-post { text-align: right; }
.post-hero-category-nav { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.post-cat-pill { font-size: .88rem; font-weight: 700; color: var(--accent-emerald); background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3); padding: 6px 14px; border-radius: 999px; }
.reading-time-pill { font-size: .88rem; color: var(--muted-2); }
.post-hero-headline { font-size: clamp(1.8rem, 3.8vw, 3rem); color: #fff; line-height: 1.25; margin-bottom: 24px; }
.post-hero-meta-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; margin-bottom: 32px; flex-wrap: wrap; }
.author-meta-mini { display: flex; align-items: center; gap: 12px; }
.author-avatar-circle { width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(135deg, var(--accent-emerald), #a7f3d0); color: #022c22; font-weight: 900; font-size: 1.3rem; display: grid; place-items: center; }
.author-info strong { font-size: .95rem; color: #fff; display: block; }
.author-info small { font-size: .78rem; color: var(--muted-2); }
.post-dates-meta { font-size: .84rem; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.post-hero-media-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); }
.post-hero-media-wrap img { width: 100%; height: auto; display: block; }

.single-post-grid-lux {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start !important;
}
.single-post-grid-lux > * { min-width: 0; }

.post-key-takeaways-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), var(--surface-2));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 36px;
}
.takeaways-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.takeaways-header h3 { font-size: 1.15rem; color: #fff; margin: 0; }
.post-key-takeaways-box p { font-size: 1rem; color: #cbd5e1; line-height: 1.7; margin: 0; }

.article-formatted-body { font-size: 1.08rem; line-height: 1.9; color: #cbd5e1; overflow-wrap: break-word; word-break: break-word; }
.post-main-content-lux { min-width: 0; overflow: hidden; }
.article-formatted-body pre { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; }
.article-formatted-body code { word-break: break-all; }
.article-formatted-body img,
.article-formatted-body video,
.article-formatted-body iframe { max-width: 100%; height: auto; }
.article-formatted-body img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.article-formatted-body .wp-block-image,
.article-formatted-body .wp-block-embed { max-width: 100%; overflow: hidden; }

/* Article Headings Typography */
.article-formatted-body h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  color: #fbbf24;
  margin: 44px 0 20px;
  line-height: 1.4;
  font-weight: 800;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.article-formatted-body h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-emerald), var(--accent-gold));
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.article-formatted-body h3 {
  font-size: 1.3rem;
  color: #34d399;
  margin: 34px 0 16px;
  font-weight: 700;
  line-height: 1.45;
  border-right: 3px solid var(--accent-emerald);
  padding-right: 12px;
}

.article-formatted-body h4 {
  font-size: 1.12rem;
  color: var(--accent-gold);
  margin: 26px 0 14px;
  font-weight: 700;
}

.article-formatted-body h5,
.article-formatted-body h6 {
  font-size: 1.02rem;
  color: #fff;
  margin: 22px 0 12px;
  font-weight: 700;
}

/* Article Inline Links - Distinct Cyan Blue (Never overlaps with Headings) */
.article-formatted-body a {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(56, 189, 248, 0.45);
  transition: all 0.25s ease;
  padding: 0 2px;
}
.article-formatted-body a:hover {
  color: #7dd3fc;
  text-decoration-color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border-radius: 4px;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.35);
}

.article-formatted-body p { margin-bottom: 22px; }
.article-formatted-body ul, .article-formatted-body ol { margin-bottom: 24px; padding-right: 24px; }
.article-formatted-body li { margin-bottom: 10px; }
.article-formatted-body blockquote { border-right: 4px solid var(--accent-emerald); padding: 16px 24px; background: rgba(16, 185, 129, 0.05); border-radius: 0 16px 16px 0; font-style: italic; color: #e2e8f0; margin: 28px 0; }

/* 3D Executive Article Table Styles */
.article-formatted-body figure.wp-block-table,
.article-formatted-body .table-wrapper,
.article-formatted-body table {
  width: 100%;
  margin: 32px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.05);
}
.article-formatted-body figure.wp-block-table table {
  margin: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.article-formatted-body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .95rem;
  direction: rtl;
  text-align: right;
  overflow: hidden;
}
.article-formatted-body thead tr,
.article-formatted-body table tr:first-child th,
.article-formatted-body table tr:first-child td {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(15, 23, 42, 0.95));
}
.article-formatted-body table tr:first-child th:first-child,
.article-formatted-body table tr:first-child td:first-child {
  border-top-right-radius: calc(var(--radius-lg) - 1px);
}
.article-formatted-body table tr:first-child th:last-child,
.article-formatted-body table tr:first-child td:last-child {
  border-top-left-radius: calc(var(--radius-lg) - 1px);
}
.article-formatted-body table tr:last-child td:first-child {
  border-bottom-right-radius: calc(var(--radius-lg) - 1px);
}
.article-formatted-body table tr:last-child td:last-child {
  border-bottom-left-radius: calc(var(--radius-lg) - 1px);
}
.article-formatted-body th {
  padding: 16px 20px;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  border-bottom: 2px solid rgba(16, 185, 129, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}
.article-formatted-body th:last-child {
  border-left: none;
}
.article-formatted-body td {
  padding: 14px 20px;
  color: #cbd5e1;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.6;
  vertical-align: middle;
}
.article-formatted-body td:last-child {
  border-left: none;
}
.article-formatted-body tbody tr:last-child td {
  border-bottom: none;
}
.article-formatted-body tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
.article-formatted-body tbody tr:hover {
  background: rgba(16, 185, 129, 0.06);
}
.article-formatted-body tbody tr:hover td {
  color: #ffffff;
}

/* Custom Scrollbar for Horizontal Scrollable Tables */
.article-formatted-body figure.wp-block-table::-webkit-scrollbar,
.article-formatted-body .table-wrapper::-webkit-scrollbar {
  height: 6px;
}
.article-formatted-body figure.wp-block-table::-webkit-scrollbar-track,
.article-formatted-body .table-wrapper::-webkit-scrollbar-track {
  background: var(--surface);
  border-radius: 999px;
}
.article-formatted-body figure.wp-block-table::-webkit-scrollbar-thumb,
.article-formatted-body .table-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent-emerald);
  border-radius: 999px;
}

.inline-article-cta {
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 40px 0;
}
.cta-mini-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.cta-mini-header h4 { font-size: 1.1rem; color: #fff; margin: 0; }
.inline-article-cta p { font-size: .92rem; color: var(--muted); margin-bottom: 20px; }
.cta-mini-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Executive 3D Post Navigation Cards */
.post-navigation-lux {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
  margin-top: 48px;
}

.nav-card-lux {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav-card-lux:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.nav-card-arrow {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.nav-card-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.nav-card-lux--prev:hover .nav-card-arrow svg {
  transform: translateX(4px);
}

.nav-card-lux--next:hover .nav-card-arrow svg {
  transform: translateX(-4px);
}

.nav-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.nav-card-lux--next {
  text-align: left;
}

.nav-card-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-emerald);
  letter-spacing: 0.02em;
}

.nav-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .post-navigation-lux {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .nav-card-lux--next {
    text-align: right;
  }
}

.author-widget-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.author-widget-avatar { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--accent-emerald), #a7f3d0); color: #022c22; font-weight: 900; font-size: 1.4rem; display: grid; place-items: center; flex: 0 0 auto; }
.author-widget-name { font-size: 1.05rem; color: #fff; margin: 0 0 2px; }
.author-widget-role { font-size: .78rem; color: var(--muted-2); display: block; }
.author-widget-bio { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

@media (max-width: 1024px) {
  .blog-articles-grid-lux { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .single-post-grid-lux { grid-template-columns: 1fr; gap: 32px; }
  .post-navigation-lux { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .blog-articles-grid-lux {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .blog-card-thumb {
    height: 130px;
  }
  .blog-cat-badge {
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
    padding: 2px 8px;
    z-index: 3;
  }
  .blog-card-meta--desktop {
    display: none !important;
  }
  .blog-meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(5, 8, 14, 0.95), rgba(5, 8, 14, 0.5) 75%, transparent);
    padding: 6px 8px 5px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    backdrop-filter: blur(4px);
  }
  .blog-card-body {
    padding: 10px 12px 14px;
  }
  .blog-card-title {
    font-size: 0.84rem;
    line-height: 1.35;
    margin-bottom: 5px;
    font-weight: 700;
    color: #ffffff;
  }
  .blog-card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .blog-card-readmore {
    font-size: 0.74rem;
  }
  .cta-actions-row { flex-direction: column; width: 100%; }
  .btn-lux { width: 100%; justify-content: center; }
}

/* Reimagined Professional Opportunities Page Styles */
.opportunities-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.opp-type-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.opp-type-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px var(--accent-emerald-glow);
}
.opp-icon-glow {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}
.opp-icon-glow svg { width: 26px; height: 26px; }
.opp-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 4px 12px;
  border-radius: 999px;
}
.opp-type-card h3 { font-size: 1.3rem; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.opp-type-card p { font-size: .95rem; color: var(--muted); line-height: 1.7; margin: 0; }

.fit-criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fit-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
}
.fit-card-number { font-size: 1.4rem; font-weight: 900; color: var(--accent-emerald); font-family: monospace; margin-bottom: 10px; }
.fit-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.fit-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; }

.opp-engagement-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), var(--surface), rgba(245, 158, 11, 0.04));
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.engagement-text-wrap { max-width: 600px; }
.engagement-text-wrap h2 { font-size: 1.5rem; color: #fff; margin: 10px 0; }
.engagement-text-wrap p { font-size: .96rem; color: var(--muted); margin: 0; line-height: 1.6; }
.engagement-actions-wrap { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .opportunities-types-grid { grid-template-columns: 1fr; }
  .fit-criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .opp-engagement-card { flex-direction: column; text-align: center; justify-content: center; padding: 30px 24px; }
  .engagement-actions-wrap { justify-content: center; width: 100%; }
}

@media (max-width: 640px) {
  .fit-criteria-grid { grid-template-columns: 1fr; }
  .opp-type-card { padding: 24px 20px; }
  .opp-badge { position: static; display: inline-block; margin-bottom: 12px; }
  .engagement-actions-wrap { flex-direction: column; width: 100%; }
}

/* Reimagined Contact Us Page Styles */
.contact-layout-grid-lux {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start !important;
}
.contact-form-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.form-card-header { margin-bottom: 28px; }
.form-card-header h2 { font-size: 1.5rem; color: #fff; margin: 10px 0 6px; }
.form-card-header p { font-size: .95rem; color: var(--muted); margin: 0; }

.contact-form-lux { display: flex; flex-direction: column; gap: 20px; }
.form-grid-lux { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group-lux { display: flex; flex-direction: column; gap: 8px; }
.form-group-lux label { font-size: .9rem; font-weight: 700; color: #e2e8f0; }
.req-star { color: var(--accent-emerald); }

.form-group-lux input[type="text"],
.form-group-lux input[type="email"],
.form-group-lux input[type="tel"],
.form-group-lux select,
.form-group-lux textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group-lux input:focus,
.form-group-lux select:focus,
.form-group-lux textarea:focus {
  border-color: var(--accent-emerald);
  box-shadow: 0 0 15px var(--accent-emerald-glow);
}
.form-group-lux select option { background: #0f172a; color: #fff; }

/* Custom Executive 3D Select Dropdown Styling */
select,
.form-group-lux select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  min-height: 48px;
  line-height: 1.25;
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: left 16px center !important;
  padding-left: 46px !important;
  cursor: pointer !important;
}
select:focus-visible,
.form-group-lux select:focus-visible {
  border-color: var(--accent-emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}
select:disabled,
.form-group-lux select:disabled {
  cursor: not-allowed !important;
  opacity: .65;
}
select option,
.form-group-lux select option {
  background-color: #0d1527 !important;
  color: #f8fafc !important;
  padding: 14px 18px !important;
  font-size: .95rem !important;
}
select option:hover,
select option:focus,
select option:checked,
.form-group-lux select option:checked {
  background-color: #10b981 !important;
  color: #022c22 !important;
}

.author-avatar-circle,
.author-widget-avatar {
  overflow: hidden !important;
  position: relative !important;
}
.author-avatar-circle img,
.author-widget-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: inherit !important;
}

.form-submit-wrap { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.form-privacy-note { font-size: .84rem; color: var(--muted-2); margin: 0; line-height: 1.5; text-align: center; }

/* Contact Sidebar Widgets */
.contact-channels-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .2s ease, border-color .2s ease;
}
a.contact-channel-item:hover {
  transform: translateX(-4px);
  border-color: var(--accent-emerald);
}
.channel-icon-glow {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.channel-text span { font-size: .75rem; color: var(--muted-2); display: block; }
.channel-text strong { font-size: .92rem; color: #fff; display: block; }

.sidebar-card-lux--availability {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), var(--surface-2));
  border-color: rgba(16, 185, 129, 0.3);
}
.availability-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.availability-header h4 { font-size: 1rem; color: #fff; margin: 0; }
.sidebar-card-lux--availability p { font-size: .9rem; color: #cbd5e1; margin-bottom: 6px; line-height: 1.5; }
.sidebar-card-lux--availability small { font-size: .78rem; color: var(--muted-2); }

.contact-prep-list { padding-right: 20px; margin: 12px 0 0; font-size: .88rem; color: var(--muted); line-height: 1.6; }
.contact-prep-list li { margin-bottom: 6px; }

/* Reimagined Privacy Page Styles */
.privacy-sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.privacy-card-lux {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.privacy-card-lux:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px var(--accent-emerald-glow);
}
.privacy-card-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent-emerald);
  font-family: monospace;
  margin-bottom: 12px;
}
.privacy-card-lux h3 { font-size: 1.2rem; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.privacy-card-lux p { font-size: .92rem; color: var(--muted); line-height: 1.75; margin: 0; }
.privacy-card-lux a { color: var(--accent-emerald); text-decoration: underline; font-weight: 700; }

@media (max-width: 1024px) {
  .contact-layout-grid-lux { grid-template-columns: 1fr; gap: 32px; }
  .privacy-sections-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .form-grid-lux { grid-template-columns: 1fr; }
  .privacy-sections-grid { grid-template-columns: 1fr; }
  .contact-form-card-lux { padding: 22px 18px; }
  .mobile-drawer-dialog-box {
    padding: 16px 12px !important;
    width: 95vw !important;
  }
  .channel-text {
    min-width: 0;
    word-break: break-word;
  }
  .channel-text strong {
    font-size: .84rem !important;
    word-break: break-all;
  }
  .contact-channel-item {
    padding: 12px 10px !important;
    gap: 10px !important;
  }
}

/* Helpful 404 page */
.not-found {
  min-height: min(720px, calc(100vh - var(--header-h)));
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) 0;
  background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, .12), transparent 38%);
}
.not-found-card {
  width: min(760px, 100%);
  margin-inline: auto;
  padding: clamp(28px, 6vw, 58px);
  text-align: center;
  background: rgba(14, 23, 38, .9);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lux);
}
.not-found-code {
  display: block;
  color: var(--accent-emerald);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 900;
  line-height: .9;
}
.not-found-card h1 { margin: 22px 0 14px; }
.not-found-card > p { max-width: 600px; margin: 0 auto 28px; }
.not-found-search { max-width: 560px; margin: 0 auto 26px; }
.not-found-search label { display: block; margin-bottom: 8px; color: var(--text); font-weight: 700; text-align: start; }
.not-found-search-row { display: flex; gap: 10px; }
.not-found-search input {
  min-width: 0;
  flex: 1;
  padding: 12px 16px;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}
.not-found-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 18px; }
.not-found-links a { color: #6ee7b7; text-decoration: underline; text-underline-offset: 4px; }
.search-refine-form { margin-bottom: 30px; }
.search-results-count { margin-bottom: 20px; color: var(--text); font-weight: 700; }
.search-results-grid { margin-bottom: 30px; }
.search-empty-state { box-shadow: none; }
/* Footer Title Indicators & Glowing Accents */
.footer-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-emerald), transparent);
  border-radius: 2px;
}
.footer-col--knowledge .footer-col-title::after {
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}
.footer-col--projects .footer-col-title::after {
  background: linear-gradient(90deg, #38bdf8, transparent);
}

.title-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.title-indicator--emerald {
  background-color: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}
.title-indicator--cyan {
  background-color: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}
.title-indicator--gold {
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}
.title-indicator--pulse {
  background-color: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseDot 2s infinite;
}

@media (max-width: 640px) {
  .footer-col-title {
    justify-content: center;
  }
  .footer-col-title::after {
    right: 50%;
    transform: translateX(50%);
  }
}

.footer-desktop-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }

@media (min-width: 641px) {
  .footer-mobile-contact { display: none !important; }
  .footer-desktop-contact { display: flex !important; }
}
@media (max-width: 640px) {
  .footer-desktop-contact { display: none !important; }
  .footer-mobile-contact { display: flex !important; }
}
/* ==========================================================
   Executive Footer Contact Card 
   ========================================================== */
.footer-executive-card-3d {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.exec-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--accent-emerald);
  font-weight: 600;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 6px 12px;
  border-radius: 50px;
  width: fit-content;
}
.online-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.exec-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exec-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.exec-action-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}
.exec-action-btn--wa:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}
.exec-action-btn--email:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

.action-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.exec-action-btn--wa .action-icon {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
}
.exec-action-btn--email .action-icon {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
}
.action-icon svg { width: 20px; height: 20px; }

.action-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.action-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
.action-title {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.exec-card-markets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.markets-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}
.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.market-tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  color: #e2e8f0;
}

.exec-card-nda {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.exec-card-nda svg {
  width: 15px;
  height: 15px;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .footer-executive-card-3d {
    text-align: right;
  }
  .exec-card-status {
    margin: 0 auto;
  }
  .market-tags {
    justify-content: center;
  }
  .exec-card-nda {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  body.has-mobile-drawer-open,
  body.has-mobile-menu-open { overflow: hidden; }
}

@media (max-width: 520px) {
  .not-found-search-row { flex-direction: column; }
}

/* Reimagined Archive & Category Filter Navigation Bar */
.category-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 42px;
  justify-content: center;
}
.category-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.category-filter-pill:hover {
  background: var(--surface-2);
  border-color: rgba(16, 185, 129, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}
.category-filter-pill.is-active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), var(--surface-2));
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  box-shadow: 0 0 20px var(--accent-emerald-glow);
}
.category-filter-pill .cat-count-badge {
  font-size: .78rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 999px;
  color: inherit;
}
.category-filter-pill.is-active .cat-count-badge {
  background: rgba(16, 185, 129, 0.25);
  color: #ffffff;
}

/* Fallback Card Thumbnails for posts without featured images */
.blog-card-thumb--placeholder {
  background: linear-gradient(135deg, #09121f, #142236, #09121f);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.thumb-placeholder-glow {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: grid;
  place-items: center;
  color: var(--accent-emerald);
  box-shadow: 0 0 25px var(--accent-emerald-glow);
  transition: transform .3s ease, border-color .3s ease;
}
.blog-card-lux:hover .thumb-placeholder-glow {
  transform: scale(1.12) rotate(5deg);
  border-color: var(--accent-emerald);
}
.placeholder-spark-icon {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .category-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .category-filter-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 8px 16px;
    font-size: .86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Page Hero Reimagined Layout with Image Stage */
.page-hero-title {
  font-size: clamp(1.4rem, 2.6vw, 2rem) !important;
  line-height: 1.35 !important;
  margin-bottom: 12px !important;
  color: #ffffff !important;
  font-weight: 800 !important;
}

.page-hero-inner--with-thumb {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 36px !important;
  align-items: center !important;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 868px) {
  .page-hero-inner--with-thumb {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

.page-hero-stage {
  min-height: 0 !important;
  height: auto !important;
}

.page-hero-stage .stage-frame-wrapper {
  aspect-ratio: auto !important;
  min-height: 0 !important;
  height: auto !important;
  background: transparent !important;
  line-height: 0 !important;
  font-size: 0 !important;
  padding: 0 !important;
}

.page-hero-stage .stage-frame-wrapper img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}
