/*
Theme Name: Sectrom
Theme URI: https://sectrom.com
Author: Sectrom SAL
Description: Custom theme for Sectrom SAL - Security, AV, and Unified Communications systems integrator.
Version: 1.0
Requires PHP: 7.4
Text Domain: sectrom
*/


/* ── TOKENS ─────────────────────────────────── */
:root {
  --navy:    #0B1F3A;
  --navy2:   #0D2B54;
  --blue:    #1565C0;
  --blue-lt: #E8F0FE;
  --cyan:    #E07B39;
  --cyan-lt: #FEF3EC;
  --white:   #FFFFFF;
  --off:     #F7F9FC;
  --gray1:   #F1F4F8;
  --gray2:   #E0E6EF;
  --gray3:   #90A4AE;
  --gray4:   #546E7A;
  --gray5:   #37474F;
  --text:    #1A2B3C;
  --radius:  10px;
  --radius-lg: 16px;
  --shadow:  0 2px 16px rgba(11,31,58,0.08);
  --shadow-md: 0 4px 24px rgba(11,31,58,0.12);
  --ff: 'Inter', system-ui, sans-serif;
  --ff-ar: 'Tajawal', sans-serif;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}
/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── NAVBAR ─────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray2);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 76px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: 2px; line-height: 1; }
.nav-logo-tag { font-size: 11px; color: var(--gray3); letter-spacing: 1px; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--gray4); transition: color var(--transition); }
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; align-items: center; gap: 1px;
  border: 1px solid var(--gray2); border-radius: 6px; overflow: hidden;
}
.lang-toggle button {
  padding: 5px 10px; font-size: 11px; font-weight: 600;
  color: var(--gray4); transition: all var(--transition);
}
.lang-toggle button.active { background: var(--navy); color: var(--white); }
.nav-cta {
  background: var(--blue); color: var(--white);
  padding: 9px 20px; border-radius: 7px;
  font-size: 13px; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }

/* ── HERO ───────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh; align-items: center;
  padding: 0 5%;
  background: var(--off);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,101,192,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left { padding: 80px 0; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-lt); color: var(--blue);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%; flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.05;
  color: var(--navy); margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero h1 span { color: var(--blue); }
.hero-sub {
  font-size: 16px; color: var(--gray4); line-height: 1.7;
  max-width: 440px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,0.3); }
.btn-secondary {
  background: var(--white); color: var(--navy);
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600; border: 1.5px solid var(--gray2);
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { }
.hero-stat-val { font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1; }
.hero-stat-val sup { font-size: 16px; font-weight: 700; color: var(--blue); }
.hero-stat-lbl { font-size: 12px; color: var(--gray3); font-weight: 500; margin-top: 4px; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; background: var(--gray2); align-self: stretch; margin: 4px 0; }

.hero-right { padding: 60px 0 60px 48px; z-index: 1; }
.hero-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.hero-img-main {
  grid-column: 1 / 3;
  height: 220px; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-img-sm {
  height: 140px; border-radius: var(--radius); overflow: hidden;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(11,31,58,0.85); backdrop-filter: blur(4px);
  color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 10px; border-radius: 5px;
}
.img-placeholder { color: var(--gray3); font-size: 11px; text-align: center; padding: 8px; }

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 16px 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.trust-bar-label { font-size: 11px; color: var(--gray3); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-logo { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 1px; transition: color var(--transition); }
.trust-logo:hover { color: rgba(255,255,255,0.85); }

/* ── SECTIONS SHARED ─────────────────────────── */
section { padding: 80px 5%; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::after { content: ''; flex: 1; max-width: 40px; height: 2px; background: var(--cyan); border-radius: 2px; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--gray4); max-width: 540px; line-height: 1.7; margin-bottom: 48px; }

/* ── SERVICES ───────────────────────────────── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray2);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gray2); transition: background var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { background: var(--blue); }
.service-card.featured { border-color: transparent; box-shadow: var(--shadow-md); }
.service-card.featured::before { background: var(--cyan); }
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-icon-wrap svg { width: 26px; height: 26px; }
.svc-number { font-size: 11px; font-weight: 700; color: var(--gray3); letter-spacing: 1px; margin-bottom: 8px; }
.svc-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--gray4); line-height: 1.65; margin-bottom: 20px; }
.svc-items { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.svc-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray5); }
.svc-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-card:hover .svc-link { gap: 10px; }

/* ── WHY SECTROM ────────────────────────────── */
.why { background: var(--navy); padding: 80px 5%; }
.why .section-eyebrow { color: var(--cyan); }
.why .section-eyebrow::after { background: var(--cyan); }
.why .section-title { color: var(--white); }
.why .section-sub { color: var(--gray3); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; }
.why-item {
  background: var(--navy2); padding: 28px 24px;
  transition: background var(--transition);
}
.why-item:hover { background: #122645; }
.why-num { font-size: 32px; font-weight: 900; color: rgba(0,180,216,0.25); line-height: 1; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.why-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-desc { font-size: 13px; color: var(--gray3); line-height: 1.55; }

/* ── FEATURED PROJECTS ──────────────────────── */
.projects { background: var(--off); }
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.project-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-card.large { grid-column: 1 / 3; flex-direction: row; }
.project-img {
  background: var(--navy); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.project-card:not(.large) .project-img { height: 200px; }
.project-card.large .project-img { width: 50%; flex-shrink: 0; min-height: 280px; }
.project-sector {
  position: absolute; top: 14px; left: 14px;
  background: rgba(11,31,58,0.8); backdrop-filter: blur(4px);
  color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 5px;
}
.project-featured {
  position: absolute; top: 14px; right: 14px;
  background: var(--cyan); color: var(--navy);
  font-size: 10px; font-weight: 800; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 5px;
}
.project-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.project-client { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.project-title { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 10px; }
.project-desc { font-size: 13px; color: var(--gray4); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.project-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.project-tag { background: var(--gray1); color: var(--gray5); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 5px; }
.project-link { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); margin-top: auto; }
.project-card:hover .project-link { gap: 10px; }

/* ── SECTORS ────────────────────────────────── */
.sectors { background: var(--white); }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector-card {
  border: 1px solid var(--gray2); border-radius: var(--radius-lg);
  padding: 24px 20px; transition: all var(--transition);
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.sector-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.88); transition: background var(--transition);
}
.sector-card > * { position: relative; z-index: 1; }
.sector-card:hover::before { background: rgba(13,33,69,0.84); }
.sector-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.sector-card:hover .sector-title { color: #fff; }
.sector-card:hover .sector-services { color: rgba(255,255,255,0.8); }
.sector-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gray1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: background var(--transition); }
.sector-card:hover .sector-icon { background: rgba(255,255,255,0.15); }
.sector-card:hover .sector-icon svg { stroke: var(--white); }
.sector-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--transition); }
.sector-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sector-services { font-size: 12px; color: var(--gray4); line-height: 1.6; }

/* ── PROCESS ────────────────────────────────── */
.process { background: var(--off); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: var(--gray2); z-index: 0;
}
.process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: all var(--transition);
  font-size: 18px; font-weight: 800; color: var(--gray3);
}
.process-step:hover .step-circle { border-color: var(--blue); background: var(--blue); color: var(--white); }
.step-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--gray4); line-height: 1.5; }

/* ── PARTNERS ───────────────────────────────── */
.partners { background: var(--white); }
.partners-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.partners-cat-btn { padding: 7px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; border: 1px solid var(--gray2); color: var(--gray4); transition: all var(--transition); }
.partners-cat-btn.active, .partners-cat-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.partner-tile {
  background: var(--white); border-radius: var(--radius); padding: 16px 14px;
  display: flex; align-items: center; justify-content: center;
  height: 76px; transition: all var(--transition);
  border: 1px solid var(--gray2);
}
.partner-tile:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.partner-tile.hidden { display: none; }
.partner-logo-img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
}
.partner-name { font-size: 12px; font-weight: 700; color: var(--gray4); letter-spacing: 0.5px; }

/* ── TESTIMONIALS PLACEHOLDER ───────────────── */
.testimonials { background: var(--off); text-align: center; }
.testimonials-placeholder {
  border: 2px dashed var(--gray2); border-radius: var(--radius-lg);
  padding: 48px; color: var(--gray3); font-size: 14px; line-height: 1.7;
}

/* ── CONTACT CTA ────────────────────────────── */
.cta-section {
  background: var(--navy); padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.cta-left .section-eyebrow { color: var(--cyan); }
.cta-left .section-eyebrow::after { background: var(--cyan); }
.cta-left .section-title { color: var(--white); margin-bottom: 12px; }
.cta-left p { font-size: 15px; color: var(--gray3); line-height: 1.7; }
.cta-right { display: flex; flex-direction: column; gap: 14px; }
.cta-info { display: flex; align-items: flex-start; gap: 14px; }
.cta-info-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-info-icon svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cta-info-title { font-size: 11px; color: var(--gray3); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 2px; }
.cta-info-val { font-size: 14px; color: var(--white); font-weight: 600; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.btn-white { background: var(--white); color: var(--navy); padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: all var(--transition); }
.btn-white:hover { background: var(--cyan); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: all var(--transition); }
.btn-outline-white:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: #06131F; padding: 48px 5% 28px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .nav-logo img { background: var(--white); padding: 8px 12px; border-radius: 8px; }
.footer-brand .nav-logo-name { color: var(--white); }
.footer-tagline { font-size: 13px; color: var(--gray3); line-height: 1.65; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: var(--gray3); transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--gray3); }
.footer-socials { display: flex; gap: 8px; }
.social-link { width: 32px; height: 32px; border-radius: 6px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.social-link:hover { background: var(--blue); }
.social-link svg { width: 15px; height: 15px; stroke: var(--gray3); fill: none; stroke-width: 1.8; transition: stroke var(--transition); }
.social-link:hover svg { stroke: var(--white); }
.footer-social-placeholder { font-size: 12px; color: rgba(255,255,255,0.25); font-style: italic; }

/* ── WHATSAPP BUTTON ────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}
.whatsapp-tooltip {
  position: fixed; bottom: 36px; right: 94px; z-index: 999;
  background: var(--navy); color: var(--white); font-size: 12px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-fab:hover + .whatsapp-tooltip { opacity: 1; }



/* ── HERO MEDIA STRIP ───────────────────────── */
.media-strip-section { background: var(--white); padding: 28px 0 32px; overflow: hidden; border-bottom: 1px solid var(--gray2); }
.media-strip-label { font-size: 11px; font-weight: 700; color: var(--gray3); letter-spacing: 1.5px; text-transform: uppercase; padding: 0 5%; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.media-strip-label::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gray2); }
.media-strip-track { display: flex; gap: 14px; padding: 0 5%; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
.media-strip-track::-webkit-scrollbar { display: none; }
.media-strip-item {
  flex: 0 0 auto; width: 220px; height: 140px; border-radius: var(--radius);
  overflow: hidden; scroll-snap-align: start; position: relative;
  cursor: pointer; transition: transform var(--transition);
}
.media-strip-item:hover { transform: scale(1.03); }
.media-strip-item .media-slot { border-radius: var(--radius); }
.media-strip-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,31,58,0.85));
  color: var(--white); font-size: 11px; font-weight: 600;
  padding: 20px 10px 8px; z-index: 2;
}

/* ── MEDIA SLOT (image / video / placeholder) ── */
.media-slot {
  position: relative; width: 100%; height: 100%;
  background: var(--navy2); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.media-slot img, .media-slot video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.media-slot .img-placeholder {
  color: rgba(255,255,255,0.55); font-size: 11px; text-align: center; padding: 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.media-slot .placeholder-icon { opacity: 0.9; }
.media-slot.has-video::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(11,31,58,0.15); pointer-events: none;
}
.media-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: all var(--transition); cursor: pointer; z-index: 2;
}
.media-play-btn:hover { transform: translate(-50%,-50%) scale(1.08); background: var(--white); }
.media-play-btn svg { width: 20px; height: 20px; fill: var(--navy); margin-left: 3px; }
.media-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(11,31,58,0.85); backdrop-filter: blur(4px);
  color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 9px; border-radius: 5px; display: flex; align-items: center; gap: 5px; z-index: 2;
}
.media-badge svg { width: 10px; height: 10px; }
.media-slot-sm { min-height: 140px; }
.media-slot-md { min-height: 200px; }
.media-slot-lg { min-height: 280px; }

/* ── SCROLL ANIMATIONS ──────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RTL ARABIC TOGGLE ──────────────────────── */
body.ar { font-family: var(--ff-ar); direction: rtl; }
body.ar .section-eyebrow::after { margin-right: 0; margin-left: auto; }
body.ar .hero-eyebrow::before { order: 1; }
body.ar .process-steps::before { left: 10%; right: 10%; }

/* ── RESPONSIVE ─────────────────────────────── */
.nav-toggle {
  display: none; width: 38px; height: 38px; border-radius: 8px;
  align-items: center; justify-content: center; background: var(--gray1);
  flex-shrink: 0; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--navy); position: relative; transition: all var(--transition);
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
nav.nav-open .nav-toggle span { background: transparent; }
nav.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
nav.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .why-grid, .why-vert-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .partners-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .process-steps { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 968px) {
  nav { flex-wrap: wrap; height: auto; min-height: 96px; padding-top: 14px; padding-bottom: 14px; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start; gap: 0;
    width: 100%; order: 3; padding-top: 16px; margin-top: 16px;
    border-top: 1px solid var(--gray2);
  }
  .nav-links a { width: 100%; padding: 12px 4px; border-bottom: 1px solid var(--gray1); }
  nav.nav-open .nav-links { display: flex; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 8px; }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
  .lang-toggle { transform: scale(0.92); }

  .hero, .vert-hero-grid, .cta-grid, .cta-section > div,
  section.cta > div, .case-study, .case-study-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-img-grid { order: -1; margin-bottom: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .services-grid, .why-grid, .why-vert-grid, .projects-grid,
  .sectors-grid, .cross-links-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .partners-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .process-steps { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
  .process-steps::before { display: none; }
  .case-media { grid-template-columns: 1fr !important; }

  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  .footer-brand { grid-column: 1 / -1; }

  .trust-logos { gap: 18px; }
}

@media (max-width: 640px) {
  .hero-left h1 { font-size: 34px !important; line-height: 1.15 !important; }
  .section-title { font-size: 26px !important; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 16px; }

  .services-grid, .why-grid, .why-vert-grid, .projects-grid,
  .sectors-grid, .partners-grid, .cross-links-grid {
    grid-template-columns: 1fr !important;
  }
  .process-steps { grid-template-columns: 1fr !important; }
  .footer-top { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .nav-logo img { height: 56px !important; }
  .nav-cta { display: none; }
  .whatsapp-fab { bottom: 16px; right: 16px; }
  .whatsapp-tooltip { display: none; }
}


/* ── Card background textures ─────────────────────────────────────────── */
/* Service / discipline cards */
.service-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8bGluZSB4MT0iMCIgeTE9IjI0MCIgeDI9IjI0MCIgeTI9IjAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyOCIvPgogIDxsaW5lIHgxPSIxMDAiIHkxPSIyNDAiIHgyPSIzNDAiIHkyPSIwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNCkiIHN0cm9rZS13aWR0aD0iMjAiLz4KICA8bGluZSB4MT0iMjAwIiB5MT0iMjQwIiB4Mj0iNDQwIiB5Mj0iMCIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDMpIiBzdHJva2Utd2lkdGg9IjE0Ii8+CiAgPGNpcmNsZSBjeD0iMzYwIiBjeT0iMzAiIHI9IjYwIiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.90); transition: background var(--transition);
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover::before { background: rgba(255,255,255,0.95); }

/* Why / reason cards (dark bg — use a lighter overlay) */
.why-vert-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8Y2lyY2xlIGN4PSI0MCIgY3k9IjQwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDgpIi8+CiAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iNDAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxNjAiIGN5PSI0MCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA4KSIvPgogIDxjaXJjbGUgY3g9IjIyMCIgY3k9IjQwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDgpIi8+CiAgPGNpcmNsZSBjeD0iMjgwIiBjeT0iNDAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIzNDAiIGN5PSI0MCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA4KSIvPgogIDxjaXJjbGUgY3g9IjQwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMTYwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMjIwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMjgwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMzQwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iNDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxMDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxNjAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIyMjAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIyODAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIzNDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSI0MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjEwMCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjE2MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjIyMCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjI4MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjM0MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjM4MCIgY3k9IjE4MCIgcj0iNDAiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDQpIi8+Cjwvc3ZnPg==');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.why-vert-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,33,69,0.82);
}
.why-vert-card > * { position: relative; z-index: 1; }

/* Cross-link / pillar cards */
.cross-link-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMDAiIHI9IjEyMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDUpIiBzdHJva2Utd2lkdGg9IjIiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMDAiIHI9Ijg1IiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNCkiIHN0cm9rZS13aWR0aD0iMiIvPgogIDxjaXJjbGUgY3g9IjM4MCIgY3k9IjIwMCIgcj0iNTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyIi8+CiAgPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iNjAiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDQpIi8+CiAgPGxpbmUgeDE9IjAiIHkxPSIyMjAiIHgyPSIxODAiIHkyPSI0MCIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDQpIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.cross-link-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.92); transition: background var(--transition);
}
.cross-link-card > * { position: relative; z-index: 1; }
.cross-link-card:hover::before { background: rgba(255,255,255,0.96); }

/* Case / project rows */
.case-row {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8cGF0aCBkPSJNMCw2MCBRMTAwLDMwIDIwMCw2MCBUNDAwLDYwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNSkiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIvPgogIDxwYXRoIGQ9Ik0wLDEwMCBRMTAwLDcwIDIwMCwxMDAgVDQwMCwxMDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPHBhdGggZD0iTTAsMTQwIFExMDAsMTEwIDIwMCwxNDAgVDQwMCwxNDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPHBhdGggZD0iTTAsMTgwIFExMDAsMTUwIDIwMCwxODAgVDQwMCwxODAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPGNpcmNsZSBjeD0iMzUwIiBjeT0iNDAiIHI9IjUwIiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}

/* Project cards */
.project-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8bGluZSB4MT0iMCIgeTE9IjAiIHgyPSI0MDAiIHkyPSIyNDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KICA8bGluZSB4MT0iMCIgeTE9IjgwIiB4Mj0iMzIwIiB5Mj0iMjQwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wMykiIHN0cm9rZS13aWR0aD0iMSIvPgogIDxsaW5lIHgxPSI4MCIgeTE9IjAiIHgyPSI0MDAiIHkyPSIxNjAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgPGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iNDUiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDUpIi8+CiAgPGNpcmNsZSBjeD0iMzcwIiBjeT0iMjEwIiByPSI0MCIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}

/* Partner tiles */
.partner-tile {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmYWZiZmMiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMCIgcj0iNTUiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDUpIi8+CiAgPGNpcmNsZSBjeD0iMzgwIiBjeT0iMjAiIHI9IjM1IiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgogIDxjaXJjbGUgY3g9IjIwIiBjeT0iMjAwIiByPSI0MCIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}



/* ===== additional styles from about.html ===== */


/* ── TOKENS ─────────────────────────────────── */
:root {
  --navy:    #0B1F3A;
  --navy2:   #0D2B54;
  --blue:    #1565C0;
  --blue-lt: #E8F0FE;
  --cyan:    #E07B39;
  --cyan-lt: #FEF3EC;
  --white:   #FFFFFF;
  --off:     #F7F9FC;
  --gray1:   #F1F4F8;
  --gray2:   #E0E6EF;
  --gray3:   #90A4AE;
  --gray4:   #546E7A;
  --gray5:   #37474F;
  --text:    #1A2B3C;
  --radius:  10px;
  --radius-lg: 16px;
  --shadow:  0 2px 16px rgba(11,31,58,0.08);
  --shadow-md: 0 4px 24px rgba(11,31,58,0.12);
  --ff: 'Inter', system-ui, sans-serif;
  --ff-ar: 'Tajawal', sans-serif;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}
/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── NAVBAR ─────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray2);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 76px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: 2px; line-height: 1; }
.nav-logo-tag { font-size: 11px; color: var(--gray3); letter-spacing: 1px; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--gray4); transition: color var(--transition); }
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; align-items: center; gap: 1px;
  border: 1px solid var(--gray2); border-radius: 6px; overflow: hidden;
}
.lang-toggle button {
  padding: 5px 10px; font-size: 11px; font-weight: 600;
  color: var(--gray4); transition: all var(--transition);
}
.lang-toggle button.active { background: var(--navy); color: var(--white); }
.nav-cta {
  background: var(--blue); color: var(--white);
  padding: 9px 20px; border-radius: 7px;
  font-size: 13px; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }

/* ── HERO ───────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh; align-items: center;
  padding: 0 5%;
  background: var(--off);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,101,192,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left { padding: 80px 0; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-lt); color: var(--blue);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%; flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.05;
  color: var(--navy); margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero h1 span { color: var(--blue); }
.hero-sub {
  font-size: 16px; color: var(--gray4); line-height: 1.7;
  max-width: 440px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,0.3); }
.btn-secondary {
  background: var(--white); color: var(--navy);
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600; border: 1.5px solid var(--gray2);
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { }
.hero-stat-val { font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1; }
.hero-stat-val sup { font-size: 16px; font-weight: 700; color: var(--blue); }
.hero-stat-lbl { font-size: 12px; color: var(--gray3); font-weight: 500; margin-top: 4px; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; background: var(--gray2); align-self: stretch; margin: 4px 0; }

.hero-right { padding: 60px 0 60px 48px; z-index: 1; }
.hero-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.hero-img-main {
  grid-column: 1 / 3;
  height: 220px; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-img-sm {
  height: 140px; border-radius: var(--radius); overflow: hidden;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(11,31,58,0.85); backdrop-filter: blur(4px);
  color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 10px; border-radius: 5px;
}
.img-placeholder { color: var(--gray3); font-size: 11px; text-align: center; padding: 8px; }

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 16px 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.trust-bar-label { font-size: 11px; color: var(--gray3); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-logo { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 1px; transition: color var(--transition); }
.trust-logo:hover { color: rgba(255,255,255,0.85); }

/* ── SECTIONS SHARED ─────────────────────────── */
section { padding: 80px 5%; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::after { content: ''; flex: 1; max-width: 40px; height: 2px; background: var(--cyan); border-radius: 2px; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--gray4); max-width: 540px; line-height: 1.7; margin-bottom: 48px; }

/* ── SERVICES ───────────────────────────────── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray2);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gray2); transition: background var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { background: var(--blue); }
.service-card.featured { border-color: transparent; box-shadow: var(--shadow-md); }
.service-card.featured::before { background: var(--cyan); }
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-icon-wrap svg { width: 26px; height: 26px; }
.svc-number { font-size: 11px; font-weight: 700; color: var(--gray3); letter-spacing: 1px; margin-bottom: 8px; }
.svc-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--gray4); line-height: 1.65; margin-bottom: 20px; }
.svc-items { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.svc-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray5); }
.svc-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-card:hover .svc-link { gap: 10px; }

/* ── WHY SECTROM ────────────────────────────── */
.why { background: var(--navy); padding: 80px 5%; }
.why .section-eyebrow { color: var(--cyan); }
.why .section-eyebrow::after { background: var(--cyan); }
.why .section-title { color: var(--white); }
.why .section-sub { color: var(--gray3); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; }
.why-item {
  background: var(--navy2); padding: 28px 24px;
  transition: background var(--transition);
}
.why-item:hover { background: #122645; }
.why-num { font-size: 32px; font-weight: 900; color: rgba(0,180,216,0.25); line-height: 1; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.why-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-desc { font-size: 13px; color: var(--gray3); line-height: 1.55; }

/* ── FEATURED PROJECTS ──────────────────────── */
.projects { background: var(--off); }
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.project-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-card.large { grid-column: 1 / 3; flex-direction: row; }
.project-img {
  background: var(--navy); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.project-card:not(.large) .project-img { height: 200px; }
.project-card.large .project-img { width: 50%; flex-shrink: 0; min-height: 280px; }
.project-sector {
  position: absolute; top: 14px; left: 14px;
  background: rgba(11,31,58,0.8); backdrop-filter: blur(4px);
  color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 5px;
}
.project-featured {
  position: absolute; top: 14px; right: 14px;
  background: var(--cyan); color: var(--navy);
  font-size: 10px; font-weight: 800; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 5px;
}
.project-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.project-client { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.project-title { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 10px; }
.project-desc { font-size: 13px; color: var(--gray4); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.project-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.project-tag { background: var(--gray1); color: var(--gray5); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 5px; }
.project-link { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); margin-top: auto; }
.project-card:hover .project-link { gap: 10px; }

/* ── SECTORS ────────────────────────────────── */
.sectors { background: var(--white); }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector-card {
  border: 1px solid var(--gray2); border-radius: var(--radius-lg);
  padding: 24px 20px; transition: all var(--transition);
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.sector-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.88); transition: background var(--transition);
}
.sector-card > * { position: relative; z-index: 1; }
.sector-card:hover::before { background: rgba(13,33,69,0.84); }
.sector-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.sector-card:hover .sector-title { color: #fff; }
.sector-card:hover .sector-services { color: rgba(255,255,255,0.8); }
.sector-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gray1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: background var(--transition); }
.sector-card:hover .sector-icon { background: rgba(255,255,255,0.15); }
.sector-card:hover .sector-icon svg { stroke: var(--white); }
.sector-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--transition); }
.sector-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sector-services { font-size: 12px; color: var(--gray4); line-height: 1.6; }

/* ── PROCESS ────────────────────────────────── */
.process { background: var(--off); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: var(--gray2); z-index: 0;
}
.process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: all var(--transition);
  font-size: 18px; font-weight: 800; color: var(--gray3);
}
.process-step:hover .step-circle { border-color: var(--blue); background: var(--blue); color: var(--white); }
.step-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--gray4); line-height: 1.5; }

/* ── PARTNERS ───────────────────────────────── */
.partners { background: var(--white); }
.partners-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.partners-cat-btn { padding: 7px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; border: 1px solid var(--gray2); color: var(--gray4); transition: all var(--transition); }
.partners-cat-btn.active, .partners-cat-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.partner-tile {
  background: var(--white); border-radius: var(--radius); padding: 16px 14px;
  display: flex; align-items: center; justify-content: center;
  height: 76px; transition: all var(--transition);
  border: 1px solid var(--gray2);
}
.partner-tile:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.partner-tile.hidden { display: none; }
.partner-logo-img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
}
.partner-name { font-size: 12px; font-weight: 700; color: var(--gray4); letter-spacing: 0.5px; }

/* ── TESTIMONIALS PLACEHOLDER ───────────────── */
.testimonials { background: var(--off); text-align: center; }
.testimonials-placeholder {
  border: 2px dashed var(--gray2); border-radius: var(--radius-lg);
  padding: 48px; color: var(--gray3); font-size: 14px; line-height: 1.7;
}

/* ── CONTACT CTA ────────────────────────────── */
.cta-section {
  background: var(--navy); padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.cta-left .section-eyebrow { color: var(--cyan); }
.cta-left .section-eyebrow::after { background: var(--cyan); }
.cta-left .section-title { color: var(--white); margin-bottom: 12px; }
.cta-left p { font-size: 15px; color: var(--gray3); line-height: 1.7; }
.cta-right { display: flex; flex-direction: column; gap: 14px; }
.cta-info { display: flex; align-items: flex-start; gap: 14px; }
.cta-info-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-info-icon svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cta-info-title { font-size: 11px; color: var(--gray3); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 2px; }
.cta-info-val { font-size: 14px; color: var(--white); font-weight: 600; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.btn-white { background: var(--white); color: var(--navy); padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: all var(--transition); }
.btn-white:hover { background: var(--cyan); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: all var(--transition); }
.btn-outline-white:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: #06131F; padding: 48px 5% 28px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .nav-logo img { background: var(--white); padding: 8px 12px; border-radius: 8px; }
.footer-brand .nav-logo-name { color: var(--white); }
.footer-tagline { font-size: 13px; color: var(--gray3); line-height: 1.65; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: var(--gray3); transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--gray3); }
.footer-socials { display: flex; gap: 8px; }
.social-link { width: 32px; height: 32px; border-radius: 6px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.social-link:hover { background: var(--blue); }
.social-link svg { width: 15px; height: 15px; stroke: var(--gray3); fill: none; stroke-width: 1.8; transition: stroke var(--transition); }
.social-link:hover svg { stroke: var(--white); }
.footer-social-placeholder { font-size: 12px; color: rgba(255,255,255,0.25); font-style: italic; }

/* ── WHATSAPP BUTTON ────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}
.whatsapp-tooltip {
  position: fixed; bottom: 36px; right: 94px; z-index: 999;
  background: var(--navy); color: var(--white); font-size: 12px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-fab:hover + .whatsapp-tooltip { opacity: 1; }

/* ── SCROLL ANIMATIONS ──────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RTL ARABIC TOGGLE ──────────────────────── */
body.ar { font-family: var(--ff-ar); direction: rtl; }
body.ar .section-eyebrow::after { margin-right: 0; margin-left: auto; }
body.ar .hero-eyebrow::before { order: 1; }
body.ar .process-steps::before { left: 10%; right: 10%; }


/* ── VERTICAL PAGE SPECIFIC STYLES ──────────── */
.vert-hero {
  background: var(--navy); padding: 64px 5% 56px; position: relative; overflow: hidden;
}
.vert-hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%;
  background: radial-gradient(circle, rgba(21,101,192,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.vert-breadcrumb { font-size: 12px; color: var(--gray3); margin-bottom: 20px; position: relative; z-index: 1; }
.vert-breadcrumb a { color: var(--gray3); transition: color var(--transition); }
.vert-breadcrumb a:hover { color: var(--cyan); }
.vert-icon-badge {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(21,101,192,0.2); border: 1px solid rgba(21,101,192,0.4);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.vert-icon-badge svg { width: 30px; height: 30px; }
.vert-hero h1 { font-size: clamp(34px,4vw,50px); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; max-width: 720px; position: relative; z-index: 1; }
.vert-hero-tag { font-size: 17px; color: var(--gray3); max-width: 600px; line-height: 1.6; margin-bottom: 32px; position: relative; z-index: 1; }
.vert-hero-btns { display: flex; gap: 12px; position: relative; z-index: 1; }

.vert-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.vert-hero-media-stack { display: flex; flex-direction: column; gap: 12px; height: 360px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); border-radius: var(--radius-lg); overflow: hidden; }
.vert-hero-media-main { flex: 1.4; position: relative; }
.vert-hero-media-sub { flex: 1; position: relative; }
.vert-hero-media-main .media-slot, .vert-hero-media-sub .media-slot { border-radius: 0; }


.vert-intro { padding: 64px 5%; max-width: 980px; margin: 0 auto; }
.vert-intro p { font-size: 18px; color: var(--gray5); line-height: 1.8; }
.vert-intro p strong { color: var(--navy); }

.deliver-section { background: var(--off); padding: 72px 5%; }
.deliver-list { display: flex; flex-direction: column; gap: 0; max-width: 980px; margin: 0 auto; }
.deliver-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--gray2);
}
.deliver-item:last-child { border-bottom: none; }
.deliver-icon {
  width: 56px; height: 56px; border-radius: 12px; background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.deliver-icon svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.deliver-title { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.deliver-desc { font-size: 14.5px; color: var(--gray4); line-height: 1.75; }

.why-vert { background: var(--navy); padding: 72px 5%; }
.why-vert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1200px; margin: 40px auto 0; }
.why-vert-card { background: var(--navy2); border-radius: var(--radius-lg); padding: 28px 22px; transition: all var(--transition); }
.why-vert-card:hover { background: #122645; transform: translateY(-3px); }
.why-vert-num { width: 36px; height: 36px; border-radius: 9px; background: rgba(0,180,216,0.15); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: var(--cyan); margin-bottom: 16px; }
.why-vert-text { font-size: 13.5px; color: var(--gray3); line-height: 1.65; }
.why-vert-footnote { text-align: center; font-size: 12px; color: var(--gray3); opacity: 0.7; margin-top: 24px; font-style: italic; }

.field-section { padding: 72px 5%; max-width: 1200px; margin: 0 auto; }
.field-intro { font-size: 16px; color: var(--gray4); line-height: 1.75; max-width: 700px; margin-bottom: 48px; }
.case-list { display: flex; flex-direction: column; gap: 20px; }
.case-row {
  display: grid; grid-template-columns: 360px 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--gray2); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
}
.case-row:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.case-media { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--gray2); }
.case-media .media-slot { min-height: 180px; }
.case-body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.case-client { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.case-desc { font-size: 14.5px; color: var(--gray5); line-height: 1.7; }
.case-desc strong { color: var(--navy); }

.cert-strip { background: var(--off); padding: 56px 5%; text-align: center; }
.cert-strip-title { font-size: 13px; font-weight: 700; color: var(--gray4); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; }
.cert-logos { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.cert-logo-tile { height: 56px; display: flex; align-items: center; justify-content: center; }
.cert-logo-tile img { max-height: 100%; max-width: 130px; object-fit: contain; }

.cross-links { background: var(--white); padding: 64px 5%; }
.cross-links-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 980px; margin: 32px auto 0; }
.cross-link-card {
  border: 1px solid var(--gray2); border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition); display: flex; align-items: center; gap: 18px;
}
.cross-link-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.cross-link-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--gray1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cross-link-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.cross-link-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cross-link-desc { font-size: 12.5px; color: var(--gray4); }
.cross-link-arrow { margin-left: auto; color: var(--blue); }

/* ── MEDIA SLOT (image / video / placeholder) ── */
.media-slot {
  position: relative; width: 100%; height: 100%;
  background: var(--navy2); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.media-slot img, .media-slot video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.media-slot .img-placeholder {
  color: rgba(255,255,255,0.55); font-size: 11px; text-align: center; padding: 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.media-slot .placeholder-icon { opacity: 0.9; }
.media-slot.has-video::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(11,31,58,0.15); pointer-events: none;
}
.media-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: all var(--transition); cursor: pointer; z-index: 2;
}
.media-play-btn:hover { transform: translate(-50%,-50%) scale(1.08); background: var(--white); }
.media-play-btn svg { width: 20px; height: 20px; fill: var(--navy); margin-left: 3px; }
.media-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(11,31,58,0.85); backdrop-filter: blur(4px);
  color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 9px; border-radius: 5px; display: flex; align-items: center; gap: 5px; z-index: 2;
}
.media-badge svg { width: 10px; height: 10px; }
.media-slot-sm { min-height: 140px; }
.media-slot-md { min-height: 200px; }
.media-slot-lg { min-height: 280px; }


/* ── RESPONSIVE ─────────────────────────────── */
.nav-toggle {
  display: none; width: 38px; height: 38px; border-radius: 8px;
  align-items: center; justify-content: center; background: var(--gray1);
  flex-shrink: 0; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--navy); position: relative; transition: all var(--transition);
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
nav.nav-open .nav-toggle span { background: transparent; }
nav.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
nav.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .why-grid, .why-vert-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .partners-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .process-steps { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 968px) {
  nav { flex-wrap: wrap; height: auto; min-height: 96px; padding-top: 14px; padding-bottom: 14px; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start; gap: 0;
    width: 100%; order: 3; padding-top: 16px; margin-top: 16px;
    border-top: 1px solid var(--gray2);
  }
  .nav-links a { width: 100%; padding: 12px 4px; border-bottom: 1px solid var(--gray1); }
  nav.nav-open .nav-links { display: flex; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 8px; }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
  .lang-toggle { transform: scale(0.92); }

  .hero, .vert-hero-grid, .cta-grid, .cta-section > div,
  section.cta > div, .case-study, .case-study-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-img-grid { order: -1; margin-bottom: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .services-grid, .why-grid, .why-vert-grid, .projects-grid,
  .sectors-grid, .cross-links-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .partners-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .process-steps { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
  .process-steps::before { display: none; }
  .case-media { grid-template-columns: 1fr !important; }

  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  .footer-brand { grid-column: 1 / -1; }

  .trust-logos { gap: 18px; }
}

@media (max-width: 640px) {
  .hero-left h1 { font-size: 34px !important; line-height: 1.15 !important; }
  .section-title { font-size: 26px !important; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 16px; }

  .services-grid, .why-grid, .why-vert-grid, .projects-grid,
  .sectors-grid, .partners-grid, .cross-links-grid {
    grid-template-columns: 1fr !important;
  }
  .process-steps { grid-template-columns: 1fr !important; }
  .footer-top { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .nav-logo img { height: 56px !important; }
  .nav-cta { display: none; }
  .whatsapp-fab { bottom: 16px; right: 16px; }
  .whatsapp-tooltip { display: none; }
}


/* ── Card background textures ─────────────────────────────────────────── */
/* Service / discipline cards */
.service-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8bGluZSB4MT0iMCIgeTE9IjI0MCIgeDI9IjI0MCIgeTI9IjAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyOCIvPgogIDxsaW5lIHgxPSIxMDAiIHkxPSIyNDAiIHgyPSIzNDAiIHkyPSIwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNCkiIHN0cm9rZS13aWR0aD0iMjAiLz4KICA8bGluZSB4MT0iMjAwIiB5MT0iMjQwIiB4Mj0iNDQwIiB5Mj0iMCIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDMpIiBzdHJva2Utd2lkdGg9IjE0Ii8+CiAgPGNpcmNsZSBjeD0iMzYwIiBjeT0iMzAiIHI9IjYwIiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.90); transition: background var(--transition);
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover::before { background: rgba(255,255,255,0.95); }

/* Why / reason cards (dark bg — use a lighter overlay) */
.why-vert-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8Y2lyY2xlIGN4PSI0MCIgY3k9IjQwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDgpIi8+CiAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iNDAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxNjAiIGN5PSI0MCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA4KSIvPgogIDxjaXJjbGUgY3g9IjIyMCIgY3k9IjQwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDgpIi8+CiAgPGNpcmNsZSBjeD0iMjgwIiBjeT0iNDAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIzNDAiIGN5PSI0MCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA4KSIvPgogIDxjaXJjbGUgY3g9IjQwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMTYwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMjIwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMjgwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMzQwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iNDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxMDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxNjAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIyMjAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIyODAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIzNDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSI0MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjEwMCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjE2MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjIyMCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjI4MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjM0MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjM4MCIgY3k9IjE4MCIgcj0iNDAiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDQpIi8+Cjwvc3ZnPg==');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.why-vert-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,33,69,0.82);
}
.why-vert-card > * { position: relative; z-index: 1; }

/* Cross-link / pillar cards */
.cross-link-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMDAiIHI9IjEyMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDUpIiBzdHJva2Utd2lkdGg9IjIiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMDAiIHI9Ijg1IiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNCkiIHN0cm9rZS13aWR0aD0iMiIvPgogIDxjaXJjbGUgY3g9IjM4MCIgY3k9IjIwMCIgcj0iNTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyIi8+CiAgPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iNjAiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDQpIi8+CiAgPGxpbmUgeDE9IjAiIHkxPSIyMjAiIHgyPSIxODAiIHkyPSI0MCIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDQpIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.cross-link-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.92); transition: background var(--transition);
}
.cross-link-card > * { position: relative; z-index: 1; }
.cross-link-card:hover::before { background: rgba(255,255,255,0.96); }

/* Case / project rows */
.case-row {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8cGF0aCBkPSJNMCw2MCBRMTAwLDMwIDIwMCw2MCBUNDAwLDYwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNSkiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIvPgogIDxwYXRoIGQ9Ik0wLDEwMCBRMTAwLDcwIDIwMCwxMDAgVDQwMCwxMDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPHBhdGggZD0iTTAsMTQwIFExMDAsMTEwIDIwMCwxNDAgVDQwMCwxNDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPHBhdGggZD0iTTAsMTgwIFExMDAsMTUwIDIwMCwxODAgVDQwMCwxODAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPGNpcmNsZSBjeD0iMzUwIiBjeT0iNDAiIHI9IjUwIiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}

/* Project cards */
.project-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8bGluZSB4MT0iMCIgeTE9IjAiIHgyPSI0MDAiIHkyPSIyNDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KICA8bGluZSB4MT0iMCIgeTE9IjgwIiB4Mj0iMzIwIiB5Mj0iMjQwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wMykiIHN0cm9rZS13aWR0aD0iMSIvPgogIDxsaW5lIHgxPSI4MCIgeTE9IjAiIHgyPSI0MDAiIHkyPSIxNjAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgPGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iNDUiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDUpIi8+CiAgPGNpcmNsZSBjeD0iMzcwIiBjeT0iMjEwIiByPSI0MCIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}

/* Partner tiles */
.partner-tile {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmYWZiZmMiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMCIgcj0iNTUiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDUpIi8+CiAgPGNpcmNsZSBjeD0iMzgwIiBjeT0iMjAiIHI9IjM1IiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgogIDxjaXJjbGUgY3g9IjIwIiBjeT0iMjAwIiByPSI0MCIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}



/* ===== additional styles from sectors.html ===== */


/* ── TOKENS ─────────────────────────────────── */
:root {
  --navy:    #0B1F3A;
  --navy2:   #0D2B54;
  --blue:    #1565C0;
  --blue-lt: #E8F0FE;
  --cyan:    #E07B39;
  --cyan-lt: #FEF3EC;
  --white:   #FFFFFF;
  --off:     #F7F9FC;
  --gray1:   #F1F4F8;
  --gray2:   #E0E6EF;
  --gray3:   #90A4AE;
  --gray4:   #546E7A;
  --gray5:   #37474F;
  --text:    #1A2B3C;
  --radius:  10px;
  --radius-lg: 16px;
  --shadow:  0 2px 16px rgba(11,31,58,0.08);
  --shadow-md: 0 4px 24px rgba(11,31,58,0.12);
  --ff: 'Inter', system-ui, sans-serif;
  --ff-ar: 'Tajawal', sans-serif;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}
/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── NAVBAR ─────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray2);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 76px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: 2px; line-height: 1; }
.nav-logo-tag { font-size: 11px; color: var(--gray3); letter-spacing: 1px; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--gray4); transition: color var(--transition); }
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; align-items: center; gap: 1px;
  border: 1px solid var(--gray2); border-radius: 6px; overflow: hidden;
}
.lang-toggle button {
  padding: 5px 10px; font-size: 11px; font-weight: 600;
  color: var(--gray4); transition: all var(--transition);
}
.lang-toggle button.active { background: var(--navy); color: var(--white); }
.nav-cta {
  background: var(--blue); color: var(--white);
  padding: 9px 20px; border-radius: 7px;
  font-size: 13px; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }

/* ── HERO ───────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh; align-items: center;
  padding: 0 5%;
  background: var(--off);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,101,192,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left { padding: 80px 0; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-lt); color: var(--blue);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%; flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.05;
  color: var(--navy); margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero h1 span { color: var(--blue); }
.hero-sub {
  font-size: 16px; color: var(--gray4); line-height: 1.7;
  max-width: 440px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,0.3); }
.btn-secondary {
  background: var(--white); color: var(--navy);
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600; border: 1.5px solid var(--gray2);
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { }
.hero-stat-val { font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1; }
.hero-stat-val sup { font-size: 16px; font-weight: 700; color: var(--blue); }
.hero-stat-lbl { font-size: 12px; color: var(--gray3); font-weight: 500; margin-top: 4px; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; background: var(--gray2); align-self: stretch; margin: 4px 0; }

.hero-right { padding: 60px 0 60px 48px; z-index: 1; }
.hero-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.hero-img-main {
  grid-column: 1 / 3;
  height: 220px; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-img-sm {
  height: 140px; border-radius: var(--radius); overflow: hidden;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(11,31,58,0.85); backdrop-filter: blur(4px);
  color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 10px; border-radius: 5px;
}
.img-placeholder { color: var(--gray3); font-size: 11px; text-align: center; padding: 8px; }

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 16px 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.trust-bar-label { font-size: 11px; color: var(--gray3); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-logo { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 1px; transition: color var(--transition); }
.trust-logo:hover { color: rgba(255,255,255,0.85); }

/* ── SECTIONS SHARED ─────────────────────────── */
section { padding: 80px 5%; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::after { content: ''; flex: 1; max-width: 40px; height: 2px; background: var(--cyan); border-radius: 2px; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--gray4); max-width: 540px; line-height: 1.7; margin-bottom: 48px; }

/* ── SERVICES ───────────────────────────────── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray2);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gray2); transition: background var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { background: var(--blue); }
.service-card.featured { border-color: transparent; box-shadow: var(--shadow-md); }
.service-card.featured::before { background: var(--cyan); }
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-icon-wrap svg { width: 26px; height: 26px; }
.svc-number { font-size: 11px; font-weight: 700; color: var(--gray3); letter-spacing: 1px; margin-bottom: 8px; }
.svc-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--gray4); line-height: 1.65; margin-bottom: 20px; }
.svc-items { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.svc-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray5); }
.svc-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-card:hover .svc-link { gap: 10px; }

/* ── WHY SECTROM ────────────────────────────── */
.why { background: var(--navy); padding: 80px 5%; }
.why .section-eyebrow { color: var(--cyan); }
.why .section-eyebrow::after { background: var(--cyan); }
.why .section-title { color: var(--white); }
.why .section-sub { color: var(--gray3); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; }
.why-item {
  background: var(--navy2); padding: 28px 24px;
  transition: background var(--transition);
}
.why-item:hover { background: #122645; }
.why-num { font-size: 32px; font-weight: 900; color: rgba(0,180,216,0.25); line-height: 1; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.why-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-desc { font-size: 13px; color: var(--gray3); line-height: 1.55; }

/* ── FEATURED PROJECTS ──────────────────────── */
.projects { background: var(--off); }
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.project-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-card.large { grid-column: 1 / 3; flex-direction: row; }
.project-img {
  background: var(--navy); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.project-card:not(.large) .project-img { height: 200px; }
.project-card.large .project-img { width: 50%; flex-shrink: 0; min-height: 280px; }
.project-sector {
  position: absolute; top: 14px; left: 14px;
  background: rgba(11,31,58,0.8); backdrop-filter: blur(4px);
  color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 5px;
}
.project-featured {
  position: absolute; top: 14px; right: 14px;
  background: var(--cyan); color: var(--navy);
  font-size: 10px; font-weight: 800; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 5px;
}
.project-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.project-client { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.project-title { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 10px; }
.project-desc { font-size: 13px; color: var(--gray4); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.project-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.project-tag { background: var(--gray1); color: var(--gray5); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 5px; }
.project-link { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); margin-top: auto; }
.project-card:hover .project-link { gap: 10px; }

/* ── SECTORS ────────────────────────────────── */
.sectors { background: var(--white); }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector-card {
  border: 1px solid var(--gray2); border-radius: var(--radius-lg);
  padding: 24px 20px; transition: all var(--transition);
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.sector-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.88);
  transition: background var(--transition);
}
.sector-card > * { position: relative; z-index: 1; }
.sector-card:hover::before { background: rgba(13,33,69,0.82); }
.sector-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.sector-card:hover .sector-title { color: #fff; }
.sector-card:hover .sector-services { color: rgba(255,255,255,0.8); }
.sector-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gray1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: background var(--transition); }
.sector-card:hover .sector-icon { background: var(--blue); }
.sector-card:hover .sector-icon svg { stroke: var(--white); }
.sector-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--transition); }
.sector-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sector-services { font-size: 12px; color: var(--gray4); line-height: 1.6; }

/* ── PROCESS ────────────────────────────────── */
.process { background: var(--off); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: var(--gray2); z-index: 0;
}
.process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: all var(--transition);
  font-size: 18px; font-weight: 800; color: var(--gray3);
}
.process-step:hover .step-circle { border-color: var(--blue); background: var(--blue); color: var(--white); }
.step-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--gray4); line-height: 1.5; }

/* ── PARTNERS ───────────────────────────────── */
.partners { background: var(--white); }
.partners-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.partners-cat-btn { padding: 7px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; border: 1px solid var(--gray2); color: var(--gray4); transition: all var(--transition); }
.partners-cat-btn.active, .partners-cat-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.partner-tile {
  background: var(--white); border-radius: var(--radius); padding: 16px 14px;
  display: flex; align-items: center; justify-content: center;
  height: 76px; transition: all var(--transition);
  border: 1px solid var(--gray2);
}
.partner-tile:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.partner-tile.hidden { display: none; }
.partner-logo-img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
}
.partner-name { font-size: 12px; font-weight: 700; color: var(--gray4); letter-spacing: 0.5px; }

/* ── TESTIMONIALS PLACEHOLDER ───────────────── */
.testimonials { background: var(--off); text-align: center; }
.testimonials-placeholder {
  border: 2px dashed var(--gray2); border-radius: var(--radius-lg);
  padding: 48px; color: var(--gray3); font-size: 14px; line-height: 1.7;
}

/* ── CONTACT CTA ────────────────────────────── */
.cta-section {
  background: var(--navy); padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.cta-left .section-eyebrow { color: var(--cyan); }
.cta-left .section-eyebrow::after { background: var(--cyan); }
.cta-left .section-title { color: var(--white); margin-bottom: 12px; }
.cta-left p { font-size: 15px; color: var(--gray3); line-height: 1.7; }
.cta-right { display: flex; flex-direction: column; gap: 14px; }
.cta-info { display: flex; align-items: flex-start; gap: 14px; }
.cta-info-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-info-icon svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cta-info-title { font-size: 11px; color: var(--gray3); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 2px; }
.cta-info-val { font-size: 14px; color: var(--white); font-weight: 600; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.btn-white { background: var(--white); color: var(--navy); padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: all var(--transition); }
.btn-white:hover { background: var(--cyan); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: all var(--transition); }
.btn-outline-white:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: #06131F; padding: 48px 5% 28px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .nav-logo img { background: var(--white); padding: 8px 12px; border-radius: 8px; }
.footer-brand .nav-logo-name { color: var(--white); }
.footer-tagline { font-size: 13px; color: var(--gray3); line-height: 1.65; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: var(--gray3); transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--gray3); }
.footer-socials { display: flex; gap: 8px; }
.social-link { width: 32px; height: 32px; border-radius: 6px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.social-link:hover { background: var(--blue); }
.social-link svg { width: 15px; height: 15px; stroke: var(--gray3); fill: none; stroke-width: 1.8; transition: stroke var(--transition); }
.social-link:hover svg { stroke: var(--white); }
.footer-social-placeholder { font-size: 12px; color: rgba(255,255,255,0.25); font-style: italic; }

/* ── WHATSAPP BUTTON ────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}
.whatsapp-tooltip {
  position: fixed; bottom: 36px; right: 94px; z-index: 999;
  background: var(--navy); color: var(--white); font-size: 12px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-fab:hover + .whatsapp-tooltip { opacity: 1; }

/* ── SCROLL ANIMATIONS ──────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RTL ARABIC TOGGLE ──────────────────────── */
body.ar { font-family: var(--ff-ar); direction: rtl; }
body.ar .section-eyebrow::after { margin-right: 0; margin-left: auto; }
body.ar .hero-eyebrow::before { order: 1; }
body.ar .process-steps::before { left: 10%; right: 10%; }


/* ── VERTICAL PAGE SPECIFIC STYLES ──────────── */
.vert-hero {
  background: var(--navy); padding: 64px 5% 56px; position: relative; overflow: hidden;
}
.vert-hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%;
  background: radial-gradient(circle, rgba(21,101,192,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.vert-breadcrumb { font-size: 12px; color: var(--gray3); margin-bottom: 20px; position: relative; z-index: 1; }
.vert-breadcrumb a { color: var(--gray3); transition: color var(--transition); }
.vert-breadcrumb a:hover { color: var(--cyan); }
.vert-icon-badge {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(21,101,192,0.2); border: 1px solid rgba(21,101,192,0.4);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.vert-icon-badge svg { width: 30px; height: 30px; }
.vert-hero h1 { font-size: clamp(34px,4vw,50px); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; max-width: 720px; position: relative; z-index: 1; }
.vert-hero-tag { font-size: 17px; color: var(--gray3); max-width: 600px; line-height: 1.6; margin-bottom: 32px; position: relative; z-index: 1; }
.vert-hero-btns { display: flex; gap: 12px; position: relative; z-index: 1; }

.vert-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.vert-hero-media-stack { display: flex; flex-direction: column; gap: 12px; height: 360px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); border-radius: var(--radius-lg); overflow: hidden; }
.vert-hero-media-main { flex: 1.4; position: relative; }
.vert-hero-media-sub { flex: 1; position: relative; }
.vert-hero-media-main .media-slot, .vert-hero-media-sub .media-slot { border-radius: 0; }


.vert-intro { padding: 64px 5%; max-width: 980px; margin: 0 auto; }
.vert-intro p { font-size: 18px; color: var(--gray5); line-height: 1.8; }
.vert-intro p strong { color: var(--navy); }

.deliver-section { background: var(--off); padding: 72px 5%; }
.deliver-list { display: flex; flex-direction: column; gap: 0; max-width: 980px; margin: 0 auto; }
.deliver-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--gray2);
}
.deliver-item:last-child { border-bottom: none; }
.deliver-icon {
  width: 56px; height: 56px; border-radius: 12px; background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.deliver-icon svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.deliver-title { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.deliver-desc { font-size: 14.5px; color: var(--gray4); line-height: 1.75; }

.why-vert { background: var(--navy); padding: 72px 5%; }
.why-vert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1200px; margin: 40px auto 0; }
.why-vert-card { background: var(--navy2); border-radius: var(--radius-lg); padding: 28px 22px; transition: all var(--transition); }
.why-vert-card:hover { background: #122645; transform: translateY(-3px); }
.why-vert-num { width: 36px; height: 36px; border-radius: 9px; background: rgba(0,180,216,0.15); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: var(--cyan); margin-bottom: 16px; }
.why-vert-text { font-size: 13.5px; color: var(--gray3); line-height: 1.65; }
.why-vert-footnote { text-align: center; font-size: 12px; color: var(--gray3); opacity: 0.7; margin-top: 24px; font-style: italic; }

.field-section { padding: 72px 5%; max-width: 1200px; margin: 0 auto; }
.field-intro { font-size: 16px; color: var(--gray4); line-height: 1.75; max-width: 700px; margin-bottom: 48px; }
.case-list { display: flex; flex-direction: column; gap: 20px; }
.case-row {
  display: grid; grid-template-columns: 360px 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--gray2); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
}
.case-row:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.case-media { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--gray2); }
.case-media .media-slot { min-height: 180px; }
.case-body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.case-client { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.case-desc { font-size: 14.5px; color: var(--gray5); line-height: 1.7; }
.case-desc strong { color: var(--navy); }

.cert-strip { background: var(--off); padding: 56px 5%; text-align: center; }
.cert-strip-title { font-size: 13px; font-weight: 700; color: var(--gray4); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; }
.cert-logos { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.cert-logo-tile { height: 56px; display: flex; align-items: center; justify-content: center; }
.cert-logo-tile img { max-height: 100%; max-width: 130px; object-fit: contain; }

.cross-links { background: var(--white); padding: 64px 5%; }
.cross-links-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 980px; margin: 32px auto 0; }
.cross-link-card {
  border: 1px solid var(--gray2); border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition); display: flex; align-items: center; gap: 18px;
}
.cross-link-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.cross-link-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--gray1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cross-link-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.cross-link-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cross-link-desc { font-size: 12.5px; color: var(--gray4); }
.cross-link-arrow { margin-left: auto; color: var(--blue); }

/* ── MEDIA SLOT (image / video / placeholder) ── */
.media-slot {
  position: relative; width: 100%; height: 100%;
  background: var(--navy2); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.media-slot img, .media-slot video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.media-slot .img-placeholder {
  color: rgba(255,255,255,0.55); font-size: 11px; text-align: center; padding: 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.media-slot .placeholder-icon { opacity: 0.9; }
.media-slot.has-video::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(11,31,58,0.15); pointer-events: none;
}
.media-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: all var(--transition); cursor: pointer; z-index: 2;
}
.media-play-btn:hover { transform: translate(-50%,-50%) scale(1.08); background: var(--white); }
.media-play-btn svg { width: 20px; height: 20px; fill: var(--navy); margin-left: 3px; }
.media-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(11,31,58,0.85); backdrop-filter: blur(4px);
  color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 9px; border-radius: 5px; display: flex; align-items: center; gap: 5px; z-index: 2;
}
.media-badge svg { width: 10px; height: 10px; }
.media-slot-sm { min-height: 140px; }
.media-slot-md { min-height: 200px; }
.media-slot-lg { min-height: 280px; }


/* ── RESPONSIVE ─────────────────────────────── */
.nav-toggle {
  display: none; width: 38px; height: 38px; border-radius: 8px;
  align-items: center; justify-content: center; background: var(--gray1);
  flex-shrink: 0; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--navy); position: relative; transition: all var(--transition);
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
nav.nav-open .nav-toggle span { background: transparent; }
nav.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
nav.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .why-grid, .why-vert-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .partners-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .process-steps { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 968px) {
  nav { flex-wrap: wrap; height: auto; min-height: 96px; padding-top: 14px; padding-bottom: 14px; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start; gap: 0;
    width: 100%; order: 3; padding-top: 16px; margin-top: 16px;
    border-top: 1px solid var(--gray2);
  }
  .nav-links a { width: 100%; padding: 12px 4px; border-bottom: 1px solid var(--gray1); }
  nav.nav-open .nav-links { display: flex; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 8px; }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
  .lang-toggle { transform: scale(0.92); }

  .hero, .vert-hero-grid, .cta-grid, .cta-section > div,
  section.cta > div, .case-study, .case-study-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-img-grid { order: -1; margin-bottom: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .services-grid, .why-grid, .why-vert-grid, .projects-grid,
  .sectors-grid, .cross-links-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .partners-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .process-steps { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
  .process-steps::before { display: none; }
  .case-media { grid-template-columns: 1fr !important; }

  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  .footer-brand { grid-column: 1 / -1; }

  .trust-logos { gap: 18px; }
}

@media (max-width: 640px) {
  .hero-left h1 { font-size: 34px !important; line-height: 1.15 !important; }
  .section-title { font-size: 26px !important; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 16px; }

  .services-grid, .why-grid, .why-vert-grid, .projects-grid,
  .sectors-grid, .partners-grid, .cross-links-grid {
    grid-template-columns: 1fr !important;
  }
  .process-steps { grid-template-columns: 1fr !important; }
  .footer-top { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .nav-logo img { height: 56px !important; }
  .nav-cta { display: none; }
  .whatsapp-fab { bottom: 16px; right: 16px; }
  .whatsapp-tooltip { display: none; }
}


/* ── Card background textures ─────────────────────────────────────────── */
/* Service / discipline cards */
.service-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8bGluZSB4MT0iMCIgeTE9IjI0MCIgeDI9IjI0MCIgeTI9IjAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyOCIvPgogIDxsaW5lIHgxPSIxMDAiIHkxPSIyNDAiIHgyPSIzNDAiIHkyPSIwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNCkiIHN0cm9rZS13aWR0aD0iMjAiLz4KICA8bGluZSB4MT0iMjAwIiB5MT0iMjQwIiB4Mj0iNDQwIiB5Mj0iMCIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDMpIiBzdHJva2Utd2lkdGg9IjE0Ii8+CiAgPGNpcmNsZSBjeD0iMzYwIiBjeT0iMzAiIHI9IjYwIiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.90); transition: background var(--transition);
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover::before { background: rgba(255,255,255,0.95); }

/* Why / reason cards (dark bg — use a lighter overlay) */
.why-vert-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8Y2lyY2xlIGN4PSI0MCIgY3k9IjQwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDgpIi8+CiAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iNDAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxNjAiIGN5PSI0MCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA4KSIvPgogIDxjaXJjbGUgY3g9IjIyMCIgY3k9IjQwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDgpIi8+CiAgPGNpcmNsZSBjeD0iMjgwIiBjeT0iNDAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIzNDAiIGN5PSI0MCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA4KSIvPgogIDxjaXJjbGUgY3g9IjQwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMTYwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMjIwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMjgwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMzQwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iNDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxMDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxNjAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIyMjAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIyODAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIzNDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSI0MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjEwMCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjE2MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjIyMCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjI4MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjM0MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjM4MCIgY3k9IjE4MCIgcj0iNDAiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDQpIi8+Cjwvc3ZnPg==');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.why-vert-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,33,69,0.82);
}
.why-vert-card > * { position: relative; z-index: 1; }

/* Cross-link / pillar cards */
.cross-link-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMDAiIHI9IjEyMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDUpIiBzdHJva2Utd2lkdGg9IjIiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMDAiIHI9Ijg1IiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNCkiIHN0cm9rZS13aWR0aD0iMiIvPgogIDxjaXJjbGUgY3g9IjM4MCIgY3k9IjIwMCIgcj0iNTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyIi8+CiAgPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iNjAiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDQpIi8+CiAgPGxpbmUgeDE9IjAiIHkxPSIyMjAiIHgyPSIxODAiIHkyPSI0MCIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDQpIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.cross-link-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.92); transition: background var(--transition);
}
.cross-link-card > * { position: relative; z-index: 1; }
.cross-link-card:hover::before { background: rgba(255,255,255,0.96); }

/* Case / project rows */
.case-row {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8cGF0aCBkPSJNMCw2MCBRMTAwLDMwIDIwMCw2MCBUNDAwLDYwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNSkiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIvPgogIDxwYXRoIGQ9Ik0wLDEwMCBRMTAwLDcwIDIwMCwxMDAgVDQwMCwxMDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPHBhdGggZD0iTTAsMTQwIFExMDAsMTEwIDIwMCwxNDAgVDQwMCwxNDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPHBhdGggZD0iTTAsMTgwIFExMDAsMTUwIDIwMCwxODAgVDQwMCwxODAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPGNpcmNsZSBjeD0iMzUwIiBjeT0iNDAiIHI9IjUwIiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}

/* Project cards */
.project-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8bGluZSB4MT0iMCIgeTE9IjAiIHgyPSI0MDAiIHkyPSIyNDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KICA8bGluZSB4MT0iMCIgeTE9IjgwIiB4Mj0iMzIwIiB5Mj0iMjQwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wMykiIHN0cm9rZS13aWR0aD0iMSIvPgogIDxsaW5lIHgxPSI4MCIgeTE9IjAiIHgyPSI0MDAiIHkyPSIxNjAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgPGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iNDUiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDUpIi8+CiAgPGNpcmNsZSBjeD0iMzcwIiBjeT0iMjEwIiByPSI0MCIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}

/* Partner tiles */
.partner-tile {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmYWZiZmMiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMCIgcj0iNTUiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDUpIi8+CiAgPGNpcmNsZSBjeD0iMzgwIiBjeT0iMjAiIHI9IjM1IiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgogIDxjaXJjbGUgY3g9IjIwIiBjeT0iMjAwIiByPSI0MCIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}



/* ===== additional styles from banking-finance.html ===== */


/* ── TOKENS ─────────────────────────────────── */
:root {
  --navy:    #0B1F3A;
  --navy2:   #0D2B54;
  --blue:    #1565C0;
  --blue-lt: #E8F0FE;
  --cyan:    #E07B39;
  --cyan-lt: #FEF3EC;
  --white:   #FFFFFF;
  --off:     #F7F9FC;
  --gray1:   #F1F4F8;
  --gray2:   #E0E6EF;
  --gray3:   #90A4AE;
  --gray4:   #546E7A;
  --gray5:   #37474F;
  --text:    #1A2B3C;
  --radius:  10px;
  --radius-lg: 16px;
  --shadow:  0 2px 16px rgba(11,31,58,0.08);
  --shadow-md: 0 4px 24px rgba(11,31,58,0.12);
  --ff: 'Inter', system-ui, sans-serif;
  --ff-ar: 'Tajawal', sans-serif;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}
/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── NAVBAR ─────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray2);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 76px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: 2px; line-height: 1; }
.nav-logo-tag { font-size: 11px; color: var(--gray3); letter-spacing: 1px; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--gray4); transition: color var(--transition); }
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; align-items: center; gap: 1px;
  border: 1px solid var(--gray2); border-radius: 6px; overflow: hidden;
}
.lang-toggle button {
  padding: 5px 10px; font-size: 11px; font-weight: 600;
  color: var(--gray4); transition: all var(--transition);
}
.lang-toggle button.active { background: var(--navy); color: var(--white); }
.nav-cta {
  background: var(--blue); color: var(--white);
  padding: 9px 20px; border-radius: 7px;
  font-size: 13px; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }

/* ── HERO ───────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh; align-items: center;
  padding: 0 5%;
  background: var(--off);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,101,192,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left { padding: 80px 0; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-lt); color: var(--blue);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%; flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.05;
  color: var(--navy); margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero h1 span { color: var(--blue); }
.hero-sub {
  font-size: 16px; color: var(--gray4); line-height: 1.7;
  max-width: 440px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,0.3); }
.btn-secondary {
  background: var(--white); color: var(--navy);
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600; border: 1.5px solid var(--gray2);
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { }
.hero-stat-val { font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1; }
.hero-stat-val sup { font-size: 16px; font-weight: 700; color: var(--blue); }
.hero-stat-lbl { font-size: 12px; color: var(--gray3); font-weight: 500; margin-top: 4px; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; background: var(--gray2); align-self: stretch; margin: 4px 0; }

.hero-right { padding: 60px 0 60px 48px; z-index: 1; }
.hero-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.hero-img-main {
  grid-column: 1 / 3;
  height: 220px; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-img-sm {
  height: 140px; border-radius: var(--radius); overflow: hidden;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(11,31,58,0.85); backdrop-filter: blur(4px);
  color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 10px; border-radius: 5px;
}
.img-placeholder { color: var(--gray3); font-size: 11px; text-align: center; padding: 8px; }

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 16px 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.trust-bar-label { font-size: 11px; color: var(--gray3); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-logo { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 1px; transition: color var(--transition); }
.trust-logo:hover { color: rgba(255,255,255,0.85); }

/* ── SECTIONS SHARED ─────────────────────────── */
section { padding: 80px 5%; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::after { content: ''; flex: 1; max-width: 40px; height: 2px; background: var(--cyan); border-radius: 2px; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--gray4); max-width: 540px; line-height: 1.7; margin-bottom: 48px; }

/* ── SERVICES ───────────────────────────────── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray2);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gray2); transition: background var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { background: var(--blue); }
.service-card.featured { border-color: transparent; box-shadow: var(--shadow-md); }
.service-card.featured::before { background: var(--cyan); }
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-icon-wrap svg { width: 26px; height: 26px; }
.svc-number { font-size: 11px; font-weight: 700; color: var(--gray3); letter-spacing: 1px; margin-bottom: 8px; }
.svc-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--gray4); line-height: 1.65; margin-bottom: 20px; }
.svc-items { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.svc-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray5); }
.svc-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-card:hover .svc-link { gap: 10px; }

/* ── WHY SECTROM ────────────────────────────── */
.why { background: var(--navy); padding: 80px 5%; }
.why .section-eyebrow { color: var(--cyan); }
.why .section-eyebrow::after { background: var(--cyan); }
.why .section-title { color: var(--white); }
.why .section-sub { color: var(--gray3); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; }
.why-item {
  background: var(--navy2); padding: 28px 24px;
  transition: background var(--transition);
}
.why-item:hover { background: #122645; }
.why-num { font-size: 32px; font-weight: 900; color: rgba(0,180,216,0.25); line-height: 1; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.why-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-desc { font-size: 13px; color: var(--gray3); line-height: 1.55; }

/* ── FEATURED PROJECTS ──────────────────────── */
.projects { background: var(--off); }
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.project-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-card.large { grid-column: 1 / 3; flex-direction: row; }
.project-img {
  background: var(--navy); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.project-card:not(.large) .project-img { height: 200px; }
.project-card.large .project-img { width: 50%; flex-shrink: 0; min-height: 280px; }
.project-sector {
  position: absolute; top: 14px; left: 14px;
  background: rgba(11,31,58,0.8); backdrop-filter: blur(4px);
  color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 5px;
}
.project-featured {
  position: absolute; top: 14px; right: 14px;
  background: var(--cyan); color: var(--navy);
  font-size: 10px; font-weight: 800; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 5px;
}
.project-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.project-client { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.project-title { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 10px; }
.project-desc { font-size: 13px; color: var(--gray4); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.project-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.project-tag { background: var(--gray1); color: var(--gray5); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 5px; }
.project-link { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); margin-top: auto; }
.project-card:hover .project-link { gap: 10px; }

/* ── SECTORS ────────────────────────────────── */
.sectors { background: var(--white); }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector-card {
  border: 1px solid var(--gray2); border-radius: var(--radius-lg);
  padding: 24px 20px; transition: all var(--transition);
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.sector-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.88); transition: background var(--transition);
}
.sector-card > * { position: relative; z-index: 1; }
.sector-card:hover::before { background: rgba(13,33,69,0.84); }
.sector-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.sector-card:hover .sector-title { color: #fff; }
.sector-card:hover .sector-services { color: rgba(255,255,255,0.8); }
.sector-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gray1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: background var(--transition); }
.sector-card:hover .sector-icon { background: rgba(255,255,255,0.15); }
.sector-card:hover .sector-icon svg { stroke: var(--white); }
.sector-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--transition); }
.sector-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sector-services { font-size: 12px; color: var(--gray4); line-height: 1.6; }

/* ── PROCESS ────────────────────────────────── */
.process { background: var(--off); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: var(--gray2); z-index: 0;
}
.process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: all var(--transition);
  font-size: 18px; font-weight: 800; color: var(--gray3);
}
.process-step:hover .step-circle { border-color: var(--blue); background: var(--blue); color: var(--white); }
.step-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--gray4); line-height: 1.5; }

/* ── PARTNERS ───────────────────────────────── */
.partners { background: var(--white); }
.partners-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.partners-cat-btn { padding: 7px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; border: 1px solid var(--gray2); color: var(--gray4); transition: all var(--transition); }
.partners-cat-btn.active, .partners-cat-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.partner-tile {
  background: var(--white); border-radius: var(--radius); padding: 16px 14px;
  display: flex; align-items: center; justify-content: center;
  height: 76px; transition: all var(--transition);
  border: 1px solid var(--gray2);
}
.partner-tile:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.partner-tile.hidden { display: none; }
.partner-logo-img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
}
.partner-name { font-size: 12px; font-weight: 700; color: var(--gray4); letter-spacing: 0.5px; }

/* ── TESTIMONIALS PLACEHOLDER ───────────────── */
.testimonials { background: var(--off); text-align: center; }
.testimonials-placeholder {
  border: 2px dashed var(--gray2); border-radius: var(--radius-lg);
  padding: 48px; color: var(--gray3); font-size: 14px; line-height: 1.7;
}

/* ── CONTACT CTA ────────────────────────────── */
.cta-section {
  background: var(--navy); padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.cta-left .section-eyebrow { color: var(--cyan); }
.cta-left .section-eyebrow::after { background: var(--cyan); }
.cta-left .section-title { color: var(--white); margin-bottom: 12px; }
.cta-left p { font-size: 15px; color: var(--gray3); line-height: 1.7; }
.cta-right { display: flex; flex-direction: column; gap: 14px; }
.cta-info { display: flex; align-items: flex-start; gap: 14px; }
.cta-info-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-info-icon svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cta-info-title { font-size: 11px; color: var(--gray3); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 2px; }
.cta-info-val { font-size: 14px; color: var(--white); font-weight: 600; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.btn-white { background: var(--white); color: var(--navy); padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: all var(--transition); }
.btn-white:hover { background: var(--cyan); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: all var(--transition); }
.btn-outline-white:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: #06131F; padding: 48px 5% 28px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .nav-logo img { background: var(--white); padding: 8px 12px; border-radius: 8px; }
.footer-brand .nav-logo-name { color: var(--white); }
.footer-tagline { font-size: 13px; color: var(--gray3); line-height: 1.65; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: var(--gray3); transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--gray3); }
.footer-socials { display: flex; gap: 8px; }
.social-link { width: 32px; height: 32px; border-radius: 6px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.social-link:hover { background: var(--blue); }
.social-link svg { width: 15px; height: 15px; stroke: var(--gray3); fill: none; stroke-width: 1.8; transition: stroke var(--transition); }
.social-link:hover svg { stroke: var(--white); }
.footer-social-placeholder { font-size: 12px; color: rgba(255,255,255,0.25); font-style: italic; }

/* ── WHATSAPP BUTTON ────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}
.whatsapp-tooltip {
  position: fixed; bottom: 36px; right: 94px; z-index: 999;
  background: var(--navy); color: var(--white); font-size: 12px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-fab:hover + .whatsapp-tooltip { opacity: 1; }

/* ── SCROLL ANIMATIONS ──────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RTL ARABIC TOGGLE ──────────────────────── */
body.ar { font-family: var(--ff-ar); direction: rtl; }
body.ar .section-eyebrow::after { margin-right: 0; margin-left: auto; }
body.ar .hero-eyebrow::before { order: 1; }
body.ar .process-steps::before { left: 10%; right: 10%; }


/* ── VERTICAL PAGE SPECIFIC STYLES ──────────── */
.vert-hero {
  background: var(--navy); padding: 64px 5% 56px; position: relative; overflow: hidden;
}
.vert-hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%;
  background: radial-gradient(circle, rgba(21,101,192,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.vert-breadcrumb { font-size: 12px; color: var(--gray3); margin-bottom: 20px; position: relative; z-index: 1; }
.vert-breadcrumb a { color: var(--gray3); transition: color var(--transition); }
.vert-breadcrumb a:hover { color: var(--cyan); }
.vert-icon-badge {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(21,101,192,0.2); border: 1px solid rgba(21,101,192,0.4);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.vert-icon-badge svg { width: 30px; height: 30px; }
.vert-hero h1 { font-size: clamp(34px,4vw,50px); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; max-width: 720px; position: relative; z-index: 1; }
.vert-hero-tag { font-size: 17px; color: var(--gray3); max-width: 600px; line-height: 1.6; margin-bottom: 32px; position: relative; z-index: 1; }
.vert-hero-btns { display: flex; gap: 12px; position: relative; z-index: 1; }

.vert-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.vert-hero-media-stack { display: flex; flex-direction: column; gap: 12px; height: 360px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); border-radius: var(--radius-lg); overflow: hidden; }
.vert-hero-media-main { flex: 1.4; position: relative; }
.vert-hero-media-sub { flex: 1; position: relative; }
.vert-hero-media-main .media-slot, .vert-hero-media-sub .media-slot { border-radius: 0; }


.vert-intro { padding: 64px 5%; max-width: 980px; margin: 0 auto; }
.vert-intro p { font-size: 18px; color: var(--gray5); line-height: 1.8; }
.vert-intro p strong { color: var(--navy); }

.deliver-section { background: var(--off); padding: 72px 5%; }
.deliver-list { display: flex; flex-direction: column; gap: 0; max-width: 980px; margin: 0 auto; }
.deliver-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--gray2);
}
.deliver-item:last-child { border-bottom: none; }
.deliver-icon {
  width: 56px; height: 56px; border-radius: 12px; background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.deliver-icon svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.deliver-title { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.deliver-desc { font-size: 14.5px; color: var(--gray4); line-height: 1.75; }

.why-vert { background: var(--navy); padding: 72px 5%; }
.why-vert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1200px; margin: 40px auto 0; }
.why-vert-card { background: var(--navy2); border-radius: var(--radius-lg); padding: 28px 22px; transition: all var(--transition); }
.why-vert-card:hover { background: #122645; transform: translateY(-3px); }
.why-vert-num { width: 36px; height: 36px; border-radius: 9px; background: rgba(0,180,216,0.15); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: var(--cyan); margin-bottom: 16px; }
.why-vert-text { font-size: 13.5px; color: var(--gray3); line-height: 1.65; }
.why-vert-footnote { text-align: center; font-size: 12px; color: var(--gray3); opacity: 0.7; margin-top: 24px; font-style: italic; }

.field-section { padding: 72px 5%; max-width: 1200px; margin: 0 auto; }
.field-intro { font-size: 16px; color: var(--gray4); line-height: 1.75; max-width: 700px; margin-bottom: 48px; }
.case-list { display: flex; flex-direction: column; gap: 20px; }
.case-row {
  display: grid; grid-template-columns: 360px 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--gray2); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
}
.case-row:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.case-media { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--gray2); }
.case-media .media-slot { min-height: 180px; }
.case-body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.case-client { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.case-desc { font-size: 14.5px; color: var(--gray5); line-height: 1.7; }
.case-desc strong { color: var(--navy); }

.cert-strip { background: var(--off); padding: 56px 5%; text-align: center; }
.cert-strip-title { font-size: 13px; font-weight: 700; color: var(--gray4); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; }
.cert-logos { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.cert-logo-tile { height: 56px; display: flex; align-items: center; justify-content: center; }
.cert-logo-tile img { max-height: 100%; max-width: 130px; object-fit: contain; }

.cross-links { background: var(--white); padding: 64px 5%; }
.cross-links-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 980px; margin: 32px auto 0; }
.cross-link-card {
  border: 1px solid var(--gray2); border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition); display: flex; align-items: center; gap: 18px;
}
.cross-link-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.cross-link-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--gray1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cross-link-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.cross-link-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cross-link-desc { font-size: 12.5px; color: var(--gray4); }
.cross-link-arrow { margin-left: auto; color: var(--blue); }

/* ── MEDIA SLOT (image / video / placeholder) ── */
.media-slot {
  position: relative; width: 100%; height: 100%;
  background: var(--navy2); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.media-slot img, .media-slot video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.media-slot .img-placeholder {
  color: rgba(255,255,255,0.55); font-size: 11px; text-align: center; padding: 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.media-slot .placeholder-icon { opacity: 0.9; }
.media-slot.has-video::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(11,31,58,0.15); pointer-events: none;
}
.media-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: all var(--transition); cursor: pointer; z-index: 2;
}
.media-play-btn:hover { transform: translate(-50%,-50%) scale(1.08); background: var(--white); }
.media-play-btn svg { width: 20px; height: 20px; fill: var(--navy); margin-left: 3px; }
.media-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(11,31,58,0.85); backdrop-filter: blur(4px);
  color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 9px; border-radius: 5px; display: flex; align-items: center; gap: 5px; z-index: 2;
}
.media-badge svg { width: 10px; height: 10px; }
.media-slot-sm { min-height: 140px; }
.media-slot-md { min-height: 200px; }
.media-slot-lg { min-height: 280px; }


/* ── RESPONSIVE ─────────────────────────────── */
.nav-toggle {
  display: none; width: 38px; height: 38px; border-radius: 8px;
  align-items: center; justify-content: center; background: var(--gray1);
  flex-shrink: 0; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--navy); position: relative; transition: all var(--transition);
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
nav.nav-open .nav-toggle span { background: transparent; }
nav.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
nav.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .why-grid, .why-vert-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .partners-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .process-steps { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 968px) {
  nav { flex-wrap: wrap; height: auto; min-height: 96px; padding-top: 14px; padding-bottom: 14px; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start; gap: 0;
    width: 100%; order: 3; padding-top: 16px; margin-top: 16px;
    border-top: 1px solid var(--gray2);
  }
  .nav-links a { width: 100%; padding: 12px 4px; border-bottom: 1px solid var(--gray1); }
  nav.nav-open .nav-links { display: flex; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 8px; }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
  .lang-toggle { transform: scale(0.92); }

  .hero, .vert-hero-grid, .cta-grid, .cta-section > div,
  section.cta > div, .case-study, .case-study-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-img-grid { order: -1; margin-bottom: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .services-grid, .why-grid, .why-vert-grid, .projects-grid,
  .sectors-grid, .cross-links-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .partners-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .process-steps { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
  .process-steps::before { display: none; }
  .case-media { grid-template-columns: 1fr !important; }

  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  .footer-brand { grid-column: 1 / -1; }

  .trust-logos { gap: 18px; }
}

@media (max-width: 640px) {
  .hero-left h1 { font-size: 34px !important; line-height: 1.15 !important; }
  .section-title { font-size: 26px !important; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 16px; }

  .services-grid, .why-grid, .why-vert-grid, .projects-grid,
  .sectors-grid, .partners-grid, .cross-links-grid {
    grid-template-columns: 1fr !important;
  }
  .process-steps { grid-template-columns: 1fr !important; }
  .footer-top { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .nav-logo img { height: 56px !important; }
  .nav-cta { display: none; }
  .whatsapp-fab { bottom: 16px; right: 16px; }
  .whatsapp-tooltip { display: none; }
}


/* ── Card background textures ─────────────────────────────────────────── */
/* Service / discipline cards */
.service-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8bGluZSB4MT0iMCIgeTE9IjI0MCIgeDI9IjI0MCIgeTI9IjAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyOCIvPgogIDxsaW5lIHgxPSIxMDAiIHkxPSIyNDAiIHgyPSIzNDAiIHkyPSIwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNCkiIHN0cm9rZS13aWR0aD0iMjAiLz4KICA8bGluZSB4MT0iMjAwIiB5MT0iMjQwIiB4Mj0iNDQwIiB5Mj0iMCIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDMpIiBzdHJva2Utd2lkdGg9IjE0Ii8+CiAgPGNpcmNsZSBjeD0iMzYwIiBjeT0iMzAiIHI9IjYwIiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.90); transition: background var(--transition);
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover::before { background: rgba(255,255,255,0.95); }

/* Why / reason cards (dark bg — use a lighter overlay) */
.why-vert-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8Y2lyY2xlIGN4PSI0MCIgY3k9IjQwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDgpIi8+CiAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iNDAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxNjAiIGN5PSI0MCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA4KSIvPgogIDxjaXJjbGUgY3g9IjIyMCIgY3k9IjQwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDgpIi8+CiAgPGNpcmNsZSBjeD0iMjgwIiBjeT0iNDAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIzNDAiIGN5PSI0MCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA4KSIvPgogIDxjaXJjbGUgY3g9IjQwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMTYwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMjIwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMjgwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iMzQwIiBjeT0iMTAwIiByPSIzIiBmaWxsPSJyZ2JhKDEzLDMzLDY5LDAuMDYpIi8+CiAgPGNpcmNsZSBjeD0iNDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxMDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIxNjAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIyMjAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIyODAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSIzNDAiIGN5PSIxNjAiIHI9IjMiIGZpbGw9InJnYmEoMTMsMzMsNjksMC4wOCkiLz4KICA8Y2lyY2xlIGN4PSI0MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjEwMCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjE2MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjIyMCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjI4MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjM0MCIgY3k9IjIxMCIgcj0iMyIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA2KSIvPgogIDxjaXJjbGUgY3g9IjM4MCIgY3k9IjE4MCIgcj0iNDAiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDQpIi8+Cjwvc3ZnPg==');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.why-vert-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,33,69,0.82);
}
.why-vert-card > * { position: relative; z-index: 1; }

/* Cross-link / pillar cards */
.cross-link-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMDAiIHI9IjEyMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDUpIiBzdHJva2Utd2lkdGg9IjIiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMDAiIHI9Ijg1IiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNCkiIHN0cm9rZS13aWR0aD0iMiIvPgogIDxjaXJjbGUgY3g9IjM4MCIgY3k9IjIwMCIgcj0iNTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyIi8+CiAgPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iNjAiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDQpIi8+CiAgPGxpbmUgeDE9IjAiIHkxPSIyMjAiIHgyPSIxODAiIHkyPSI0MCIgc3Ryb2tlPSJyZ2JhKDEzLDMzLDY5LDAuMDQpIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.cross-link-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.92); transition: background var(--transition);
}
.cross-link-card > * { position: relative; z-index: 1; }
.cross-link-card:hover::before { background: rgba(255,255,255,0.96); }

/* Case / project rows */
.case-row {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8cGF0aCBkPSJNMCw2MCBRMTAwLDMwIDIwMCw2MCBUNDAwLDYwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wNSkiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIvPgogIDxwYXRoIGQ9Ik0wLDEwMCBRMTAwLDcwIDIwMCwxMDAgVDQwMCwxMDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPHBhdGggZD0iTTAsMTQwIFExMDAsMTEwIDIwMCwxNDAgVDQwMCwxNDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPHBhdGggZD0iTTAsMTgwIFExMDAsMTUwIDIwMCwxODAgVDQwMCwxODAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+CiAgPGNpcmNsZSBjeD0iMzUwIiBjeT0iNDAiIHI9IjUwIiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}

/* Project cards */
.project-card {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmOGZhZmMiLz4KICA8bGluZSB4MT0iMCIgeTE9IjAiIHgyPSI0MDAiIHkyPSIyNDAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjA0KSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KICA8bGluZSB4MT0iMCIgeTE9IjgwIiB4Mj0iMzIwIiB5Mj0iMjQwIiBzdHJva2U9InJnYmEoMTMsMzMsNjksMC4wMykiIHN0cm9rZS13aWR0aD0iMSIvPgogIDxsaW5lIHgxPSI4MCIgeTE9IjAiIHgyPSI0MDAiIHkyPSIxNjAiIHN0cm9rZT0icmdiYSgxMywzMyw2OSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgPGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iNDUiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDUpIi8+CiAgPGNpcmNsZSBjeD0iMzcwIiBjeT0iMjEwIiByPSI0MCIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}

/* Partner tiles */
.partner-tile {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iMjQwIiB2aWV3Qm94PSIwIDAgNDAwIDI0MCI+PHJlY3Qgd2lkdGg9IjQwMCIgaGVpZ2h0PSIyNDAiIGZpbGw9IiNmYWZiZmMiLz4KICA8Y2lyY2xlIGN4PSIzODAiIGN5PSIyMCIgcj0iNTUiIGZpbGw9InJnYmEoMCwxMjAsMjEyLDAuMDUpIi8+CiAgPGNpcmNsZSBjeD0iMzgwIiBjeT0iMjAiIHI9IjM1IiBmaWxsPSJyZ2JhKDAsMTIwLDIxMiwwLjA0KSIvPgogIDxjaXJjbGUgY3g9IjIwIiBjeT0iMjAwIiByPSI0MCIgZmlsbD0icmdiYSgxMywzMyw2OSwwLjA0KSIvPgo8L3N2Zz4=');
  background-size: cover; background-position: center;
}


.schematic-section { background: var(--white); padding: 72px 5%; }
.schematic-intro { max-width: 700px; margin: 0 auto 8px; text-align: center; }
.schematic-wrap {
  position: relative; width: 100%; max-width: 980px; margin: 48px auto 0;
  aspect-ratio: 900 / 560; display: none;
}
.schematic-svg-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.schematic-svg-lines line { stroke: var(--gray2); stroke-width: 2; }
.schematic-hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 148px; height: 148px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 2;
}
.schematic-hub svg { width: 56px; height: 56px; }
.schematic-node {
  position: absolute; transform: translate(-50%, -50%);
  width: 240px; background: var(--white); border: 1px solid var(--gray2);
  border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); z-index: 2;
}
.schematic-node-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.schematic-node-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.schematic-node-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.schematic-node-title { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.schematic-node-desc { font-size: 12.5px; color: var(--gray4); line-height: 1.5; }
.schematic-fallback { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; margin: 40px auto 0; }
.schematic-fallback-item { display: flex; gap: 12px; background: var(--off); border-radius: var(--radius); padding: 16px 18px; }
.schematic-fallback-icon {
  width: 36px; height: 36px; border-radius: 8px; background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.schematic-fallback-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.schematic-fallback-title { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.schematic-fallback-desc { font-size: 12.5px; color: var(--gray4); line-height: 1.5; }
@media (min-width: 1024px) {
  .schematic-wrap { display: block; }
  .schematic-fallback { display: none; }
}
@media (max-width: 600px) {
  .schematic-fallback { grid-template-columns: 1fr; }
}

