/* ============================================================
   Global Inspire — Design tokens
   ============================================================ */
:root{
  --ink:#12151A;
  --ink-soft:#4B5259;
  --canvas-dark:#0A0E13;
  --canvas-dark-2:#10151C;
  --canvas-light:#F6F8F2;
  --white:#FFFFFF;
  --lime:#A6CE39;
  --lime-deep:#7FA82C;
  --lime-soft:#DCEDB6;
  --line:rgba(18,21,26,0.10);
  --line-dark:rgba(255,255,255,0.14);

  --glass-light-bg:rgba(255,255,255,0.55);
  --glass-light-border:rgba(255,255,255,0.9);
  --glass-dark-bg:rgba(255,255,255,0.06);
  --glass-dark-border:rgba(255,255,255,0.16);

  --radius-xl:28px;
  --radius-lg:20px;
  --radius-md:14px;
  --radius-pill:999px;

  --shadow-soft:0 20px 60px -20px rgba(10,14,19,0.35);
  --shadow-tight:0 8px 24px -10px rgba(10,14,19,0.25);

  --ease:cubic-bezier(.22,.9,.32,1);
  --font-display:'Space Grotesk', 'Tajawal', sans-serif;
  --font-body:'Manrope', 'Tajawal', sans-serif;
}

html[dir="rtl"]{ --font-display:'Tajawal','Space Grotesk',sans-serif; --font-body:'Tajawal','Manrope',sans-serif; }

*{box-sizing:border-box;}
html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
  overflow-x:hidden;
}
body{
  margin:0;
  width:100%;
  min-height:100%;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--canvas-dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
section{position:relative;}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 28px;
}
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.08;
  margin:0;
  letter-spacing:-0.01em;
}
p{margin:0;line-height:1.65;color:var(--ink-soft);}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;scroll-behavior:auto !important;}
}

:focus-visible{outline:2.5px solid var(--lime-deep);outline-offset:3px;border-radius:6px;}

/* ============================================================
   Buttons — liquid glass
   ============================================================ */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 30px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:15px;
  border-radius:var(--radius-pill);
  cursor:pointer;
  border:none;
  isolation:isolate;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.btn:active{transform:scale(.97);}

.btn-glass{
  color:var(--white);
  background:linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06));
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,0.35);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.6),
    inset 0 -6px 14px rgba(255,255,255,0.05),
    0 10px 30px -10px rgba(0,0,0,0.5);
}
.btn-glass:hover{
  transform:translateY(-2px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.7),
    inset 0 -6px 14px rgba(255,255,255,0.08),
    0 16px 36px -12px rgba(0,0,0,0.55);
}

.btn-solid{
  color:var(--ink);
  background:linear-gradient(180deg,#BFE05B,var(--lime));
  box-shadow:0 14px 30px -12px rgba(127,168,44,0.65), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-solid:hover{transform:translateY(-2px);box-shadow:0 18px 36px -12px rgba(127,168,44,0.75), inset 0 1px 0 rgba(255,255,255,0.6);}

.btn-ghost{
  color:var(--white);
  background:rgba(255,255,255,0.07);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:var(--shadow-tight);
}
.btn-ghost:hover{transform:translateY(-2px);background:rgba(255,255,255,0.12);}

/* ============================================================
   Top Live Telemetry & Digital Precision Clock Dashboard
   ============================================================ */
.top-live-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  z-index: 120;
  background: rgba(7, 10, 14, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11.5px;
  color: #c5cbd3;
  user-select: none;
}

html[lang="ar"] .top-live-bar,
html[dir="rtl"] .top-live-bar {
  font-family: 'Tajawal', 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

.top-bar-inner {
  width: 100%;
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.live-beacon {
  position: relative;
  width: 8px;
  height: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.beacon-core {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e, 0 0 2px #4ade80;
}

.beacon-ping {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.4);
  animation: beaconPulse 2.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes beaconPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  60% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.top-bar-status {
  letter-spacing: 0.03em;
  font-size: 11px;
  color: #94a3b8;
}

.top-bar-status .status-label {
  color: #4ade80;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 2px;
}

.top-bar-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 11px;
}

.top-bar-icon {
  width: 13px;
  height: 13px;
  stroke: #718096;
  flex-shrink: 0;
}

.top-bar-date-display {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-date-display .cal-icon {
  stroke: var(--lime, #a6ce39);
}

.date-full {
  font-weight: 600;
  color: #f1f5f9;
}

.date-hijri {
  font-weight: 700;
  color: #e2f952;
}

.hijri-greg-sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.date-greg-ar {
  color: #cbd5e1;
  font-weight: 500;
}

.digital-clock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(166, 206, 57, 0.35);
  box-shadow: 0 0 16px -4px rgba(166, 206, 57, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 3px 12px 3px 10px;
  font-family: 'Space Grotesk', monospace;
  font-feature-settings: 'tnum' on, 'lnum' on;
  color: #ffffff;
}

.digital-clock-badge .clock-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--lime, #a6ce39);
  display: block;
}

.clock-digits {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.clock-sec-sep {
  color: var(--lime, #a6ce39);
  font-weight: 700;
  opacity: 0.8;
}

.clock-second-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
}

.clock-seconds {
  font-size: 12px;
  font-weight: 700;
  color: var(--lime, #a6ce39);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.second-pulse-ring {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--lime, #a6ce39);
  opacity: 0;
  pointer-events: none;
}

.second-pulse-ring.pulsing {
  animation: secondPulse 0.85s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes secondPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.clock-period {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(166, 206, 57, 0.15);
  color: var(--lime, #a6ce39);
  border: 1px solid rgba(166, 206, 57, 0.3);
}

/* Responsive top bar */
@media (max-width: 991px) {
  .top-bar-location { display: none; }
  .top-bar-divider { display: none; }
}

@media (max-width: 768px) {
  .top-live-bar {
    height: 34px;
    padding: 0 12px;
    font-size: 10.5px;
  }
  .top-bar-status { display: none; }
  .top-bar-inner { justify-content: space-between; }
  .top-bar-date-display { padding: 2px 8px; font-size: 10.5px; }
  .digital-clock-badge { padding: 2px 8px; }
  .clock-digits { font-size: 11.5px; }
  .clock-seconds { font-size: 11px; }
}

@media (max-width: 480px) {
  .cal-icon { display: none; }
  .hijri-greg-sep, .date-greg-ar { display: none; }
  .top-bar-date-display { border: none; background: transparent; padding: 0; }
}

/* ============================================================
   Nav — floating glass pill
   ============================================================ */
.nav-wrap{
  position:fixed;
  top:48px;left:0;right:0;
  z-index:100;
  display:flex;
  justify-content:center;
  padding:0 16px;
  box-sizing:border-box;
  transition:top 0.3s ease;
}
.nav{
  width:100%;
  max-width:1320px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:8px 10px 8px 18px;
  border-radius:var(--radius-pill);
  background:rgba(10,14,19,0.72);
  backdrop-filter:blur(24px) saturate(160%);
  -webkit-backdrop-filter:blur(24px) saturate(160%);
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 12px 34px -14px rgba(0,0,0,0.65);
  transition:background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
  position:relative;
  box-sizing:border-box;
}
html[dir="rtl"] .nav{padding:8px 18px 8px 10px;}
.nav.solid{background:rgba(9,12,16,0.92);padding-top:7px;padding-bottom:7px;box-shadow:0 14px 38px -14px rgba(0,0,0,0.75);}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2px;
  flex:0 1 auto;
  min-width:0;
  margin:0 auto;
}
.nav-links a{
  color:rgba(255,255,255,0.84);
  font-size:13px;
  font-weight:600;
  padding:7px 11px;
  white-space:nowrap;
  border-radius:var(--radius-pill);
  transition:background .25s, color .25s;
  position:relative;
  line-height:1.2;
}
.nav-links a:hover{background:rgba(255,255,255,0.11);color:var(--white);}
.nav-links a::after{content:'';position:absolute;left:50%;right:50%;bottom:3px;height:1.5px;background:var(--lime);opacity:0;transition:left .3s var(--ease),right .3s var(--ease),opacity .3s;}
.nav-links a:hover::after,.nav-links a.active::after{left:12px;right:12px;opacity:.95;}
.nav-links a.active{color:#fff;background:rgba(255,255,255,.09);}

.nav-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0 !important;
  margin-inline-start:auto;
}

.lang-switch{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  color:var(--white);
  font-size:12.5px;
  font-weight:700;
  height:36px;
  padding:0 13px;
  box-sizing:border-box;
  border-radius:var(--radius-pill);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  transition:background .2s, border-color .2s, transform .2s;
  flex-shrink:0 !important;
  text-decoration:none;
  white-space:nowrap;
}
.lang-switch:hover{background:rgba(255,255,255,0.16);border-color:rgba(255,255,255,0.3);color:#fff;}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:36px;
  padding:0 18px;
  font-size:13px;
  font-weight:700;
  border-radius:var(--radius-pill);
  background:var(--lime, #A6CE39);
  color:#0A0E13 !important;
  text-decoration:none;
  white-space:nowrap;
  flex-shrink:0 !important;
  box-shadow:0 4px 14px -3px rgba(166, 206, 57, 0.45);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
  line-height:1;
  box-sizing:border-box;
}
.nav-cta:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 20px -3px rgba(166, 206, 57, 0.65);
  filter:brightness(1.05);
}

.sound-control{position:relative;display:flex;align-items:center;flex-shrink:0 !important;}
.sound-toggle{
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  color:var(--white);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:transform .25s var(--ease), background .25s, box-shadow .25s, border-color .25s;
  flex-shrink:0 !important;
  box-sizing:border-box;
}
.sound-toggle:hover{background:rgba(255,255,255,0.16);border-color:rgba(255,255,255,0.3);transform:scale(1.05);}
.sound-toggle svg{width:15px;height:15px;}
.sound-toggle .icon-off{display:none;}
.sound-toggle.muted .icon-on{display:none;}
.sound-toggle.muted .icon-off{display:block;}
.sound-toggle:not(.muted){box-shadow:0 0 0 3px rgba(166,206,57,.06),0 0 20px -8px rgba(166,206,57,.55),inset 0 1px 0 rgba(255,255,255,.18);}

.volume-popover{position:absolute;top:calc(100% + 10px);inset-inline-end:0;width:178px;padding:12px 14px;border-radius:14px;background:rgba(10,14,19,.92);border:1px solid rgba(255,255,255,.16);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);box-shadow:0 16px 36px -16px rgba(0,0,0,.7);opacity:0;transform:translateY(-5px);pointer-events:none;transition:opacity .2s,transform .2s;}
.sound-control:hover .volume-popover,.sound-control:focus-within .volume-popover{opacity:1;transform:translateY(0);pointer-events:auto;}
.volume-popover::before{content:'AMBIENT + UI';display:block;font-size:8px;letter-spacing:.16em;color:rgba(166,206,57,.78);font-weight:800;margin-bottom:5px;}
.volume-popover span{display:block;color:rgba(255,255,255,.6);font-size:10px;font-weight:700;margin-bottom:5px;}
.volume-range{width:100%;height:22px;accent-color:var(--lime);cursor:pointer;}

.nav-toggle{
  display:none;
  width:36px;height:36px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  color:var(--white);
  align-items:center;justify-content:center;
  cursor:pointer;
  flex-shrink:0 !important;
  box-sizing:border-box;
}

.mobile-panel{
  position:fixed;inset:0;
  z-index:300;
  background:rgba(7,10,14,0.96);
  backdrop-filter:blur(28px);
  -webkit-backdrop-filter:blur(28px);
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  padding:calc(64px + env(safe-area-inset-top, 20px)) 24px calc(48px + env(safe-area-inset-bottom, 20px));
  gap:18px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  opacity:0;
  transition:opacity .3s var(--ease);
}
.mobile-panel.open{display:flex;opacity:1;}
.mobile-panel a{color:var(--white);font-family:var(--font-display);font-size:21px;font-weight:600;padding:6px 14px;border-radius:10px;transition:color .2s, background .2s;}
.mobile-panel a:hover, .mobile-panel a:active{color:var(--lime);background:rgba(166,206,57,0.08);}
.mobile-panel .lang-switch{margin-top:10px;font-size:15px;padding:8px 20px;border-radius:var(--radius-pill);border:1px solid rgba(255,255,255,0.22);display:inline-flex;align-items:center;gap:8px;}
.mobile-close{
  position:fixed;
  top:calc(18px + env(safe-area-inset-top, 12px));
  inset-inline-end:calc(18px + env(safe-area-inset-right, 12px));
  width:44px;height:44px;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.22);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  z-index:301;
}

@media (max-width:1180px){
  .nav-links{display:none;}
  .nav-toggle{display:flex;}
  .volume-popover{position:static;opacity:1;transform:none;pointer-events:auto;width:min(230px,70vw);margin-top:10px;background:rgba(255,255,255,.06);box-shadow:none;}
  .mobile-panel .sound-control{flex-direction:column;}
  .mobile-panel .sound-toggle{margin-top:4px;}
}

@media (max-width:640px){
  .nav-actions .lang-switch{display:none;}
  .nav-actions .nav-cta{display:none;}
}

/* ============================================================
   BRAND IDENTITY: ONE DEFINITIVE SOURCE OF TRUTH
   Reference: global_inspire_logo_resized.png & G Cropped.png
   - G Logo: Exact vector/mark matching G Cropped.png (Height matches text stack)
   - Company Name: GLOBAL INSPIRE (Dominant, Bold, Metallic Silver/White, 21px desktop)
   - Slogan: BEYOND EXCELLENCE (Exact 2.2:1 scale ~9.5px, spanning full width from 'G' to 'E')
   - Header & Footer Parity: Identical lockup and spacing
   - Living G: Smooth 2.9s ease-in-out breathing cycle
   ============================================================ */
:root {
  --brand-mark-size: 36px;
  --brand-mark-gap: 13px;
  --brand-name-size: 20px;
  --brand-name-tracking: 0.03em;
  --brand-slogan-size: 7.8px;
  --tagline-char-gap: 1.8px;
  --tagline-word-gap: 5px;
}

@media (max-width: 768px) {
  :root {
    --brand-mark-size: 32px;
    --brand-mark-gap: 11px;
    --brand-name-size: 17px;
    --brand-name-tracking: 0.025em;
    --brand-slogan-size: 6.8px;
    --tagline-char-gap: 1.4px;
    --tagline-word-gap: 4px;
  }
}

@media (max-width: 480px) {
  :root {
    --brand-mark-size: 28px;
    --brand-mark-gap: 9px;
    --brand-name-size: 15px;
    --brand-name-tracking: 0.02em;
    --brand-slogan-size: 6px;
    --tagline-char-gap: 1.1px;
    --tagline-word-gap: 3.5px;
  }
}

/* Header and Footer Brand Link: Clickable to Home */
.brand,
.foot-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--brand-mark-gap);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0 !important;
  min-width: max-content !important;
  transition: opacity 0.25s ease;
}

.brand:hover,
.foot-brand:hover {
  opacity: 0.98;
}

/* G Emblem: Exact shape from brand reference with living radiant breathing glow */
.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--brand-mark-size);
  width: var(--brand-mark-size);
  height: var(--brand-mark-size);
  line-height: 0;
  flex-shrink: 0 !important;
}

/* Ambient Radial Lime Aura behind the G Emblem */
.brand-mark::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(194, 236, 58, 0.65) 0%, rgba(166, 206, 57, 0.28) 45%, transparent 72%);
  filter: blur(7px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  animation: logoAuraPulse 2.9s ease-in-out infinite;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 0 3px rgba(166, 206, 57, 0.85)) drop-shadow(0 0 8px rgba(166, 206, 57, 0.5));
  animation: logoBreatheGlow 2.9s ease-in-out infinite;
  transition: filter 0.3s ease, transform 0.3s ease;
  will-change: filter, transform;
}

.brand:hover .brand-mark img,
.foot-brand:hover .brand-mark img {
  filter: drop-shadow(0 0 6px #C2EC3A) drop-shadow(0 0 16px rgba(166, 206, 57, 0.95)) drop-shadow(0 0 28px rgba(166, 206, 57, 0.6)) !important;
  transform: scale(1.08);
}

.brand:hover .brand-mark::before,
.foot-brand:hover .brand-mark::before {
  opacity: 1 !important;
  transform: scale(1.3) !important;
  background: radial-gradient(circle at center, rgba(225, 255, 107, 0.85) 0%, rgba(166, 206, 57, 0.45) 50%, transparent 75%) !important;
}

/* Living G: Smooth 2.9s ease-in-out breathing cycle */
@keyframes logoBreatheGlow {
  0%, 100% {
    filter: drop-shadow(0 0 3px rgba(166, 206, 57, 0.75)) drop-shadow(0 0 8px rgba(166, 206, 57, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(194, 236, 58, 0.98)) drop-shadow(0 0 14px rgba(166, 206, 57, 0.85)) drop-shadow(0 0 24px rgba(166, 206, 57, 0.5));
    transform: scale(1.04);
  }
}

@keyframes logoAuraPulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.22);
  }
}

/* Brand Copy Layout: Stacked Company Name + Slogan
   Width is strictly dictated by GLOBAL INSPIRE (width: max-content) */
.brand-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: max-content !important;
  min-width: max-content !important;
  flex-shrink: 0 !important;
  line-height: 1;
  gap: 3px;
  white-space: nowrap !important;
}

/* Company Name: Dominant, Bold, Clean Uppercase with Subtle Metallic Sheen */
.brand-copy strong,
.brand-name {
  display: inline-block;
  width: max-content;
  color: var(--white, #ffffff);
  background: linear-gradient(180deg, #FFFFFF 15%, #E6EDF5 65%, #C8D6E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: var(--brand-name-size);
  font-weight: 800;
  letter-spacing: var(--brand-name-tracking);
  line-height: 1.0;
  text-transform: uppercase;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  margin: 0;
  padding: 0;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}

/* Slogan: BEYOND EXCELLENCE
   - Proportioned scale matching brand reference
   - Locked strictly to the exact width of the company name
   - Never exceeds the right edge of 'INSPIRE'
   - Balanced letter spacing and sequential wave illumination */
.brand-copy small.live-tagline {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: var(--tagline-word-gap, 5.5px);
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #A6CE39;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: var(--brand-slogan-size);
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  white-space: nowrap !important;
  overflow: hidden;
  box-sizing: border-box;
}

.live-tagline .tagline-word {
  display: inline-flex;
  align-items: center;
  gap: var(--tagline-char-gap, 2px);
  flex-shrink: 0;
}

.live-tagline .tagline-char {
  display: inline-block;
  color: #A6CE39;
  line-height: 1;
  opacity: 0.92;
  transform: translateY(0);
  animation: taglineLetterFlow 5.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: calc(var(--char-index, 0) * 0.12s);
  will-change: opacity, color, text-shadow, transform;
}

/* Slogan Sequential Letter Illumination - Smooth, elegant slower wave */
@keyframes taglineLetterFlow {
  0%, 100% {
    opacity: 0.92;
    color: #A6CE39;
    text-shadow: 0 0 4px rgba(166, 206, 57, 0.35);
    transform: translateY(0);
  }
  4% {
    opacity: 1;
    color: #FFFFFF;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.95), 0 0 12px #C2EC3A, 0 0 20px rgba(166, 206, 57, 0.6);
    transform: translateY(-0.8px);
  }
  9% {
    opacity: 0.92;
    color: #A6CE39;
    text-shadow: 0 0 4px rgba(166, 206, 57, 0.35);
    transform: translateY(0);
  }
}

/* Arabic RTL presentation parity */
html[dir="rtl"] .brand-copy {
  align-items: stretch;
}

html[dir="rtl"] .brand-name,
html[dir="rtl"] .brand-copy strong {
  font-family: 'Helvetica Arabic', 'Neue Helvetica Arabic', 'Helvetica Neue LT Arabic', 'IBM Plex Sans Arabic', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 800 !important;
  font-size: calc(var(--brand-name-size) * 1.08);
  line-height: 1.08;
}

html[dir="rtl"] .brand-copy small.live-tagline,
html[dir="rtl"] .brand-copy small.live-tagline-ar {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 5px !important;
  direction: rtl;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-align: center;
  justify-content: center;
  font-family: 'Helvetica Arabic', 'Neue Helvetica Arabic', 'Helvetica Neue LT Arabic', 'IBM Plex Sans Arabic', 'Tajawal', sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #A6CE39 !important;
  text-shadow: 0 0 12px rgba(166, 206, 57, 0.4);
}

@media (max-width: 768px) {
  html[dir="rtl"] .brand-copy small.live-tagline,
  html[dir="rtl"] .brand-copy small.live-tagline-ar {
    font-size: 11.5px !important;
  }
}

@media (max-width: 480px) {
  html[dir="rtl"] .brand-copy small.live-tagline,
  html[dir="rtl"] .brand-copy small.live-tagline-ar {
    font-size: 10.5px !important;
  }
}

.live-tagline-ar {
  position: relative;
  display: block !important;
  overflow: visible;
  color: #A6CE39 !important;
  font-family: 'Helvetica Arabic', 'Neue Helvetica Arabic', 'Helvetica Neue LT Arabic', 'IBM Plex Sans Arabic', 'Tajawal', sans-serif !important;
  font-weight: 800 !important;
  font-size: 13px !important;
}

.live-tagline-ar::after {
  content: "";
  position: absolute;
  inset: -10% -5%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.9) 50%, rgba(166, 206, 57, 0.4) 60%, transparent 75%);
  background-size: 200% 100%;
  animation: arabicSweep 5.5s ease-in-out infinite;
  mix-blend-mode: screen;
}

@keyframes arabicSweep {
  0%, 100% {
    background-position: 200% 0;
    opacity: 0.08;
  }
  50% {
    background-position: -20% 0;
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark img,
  .brand-mark::before,
  .live-tagline span,
  .live-tagline-ar::after {
    animation: none !important;
    opacity: 0.9 !important;
    filter: none !important;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero{
  position:relative;
  min-height:100vh;
  background:radial-gradient(120% 100% at 20% 0%, #161C24 0%, var(--canvas-dark) 45%, #060809 100%);
  overflow:hidden;
  display:flex;
  align-items:center;
  padding-top:142px;
  padding-bottom:80px;
}
html[dir="rtl"] .hero{
  padding-bottom:clamp(110px, 13vh, 150px);
}
.orb{position:absolute;border-radius:50%;filter:blur(80px);opacity:.55;pointer-events:none;}
.orb-1{width:560px;height:560px;background:radial-gradient(circle at 35% 35%, var(--lime), transparent 70%);top:-160px;inset-inline-end:-140px;animation:drift1 22s ease-in-out infinite;}
.orb-2{width:420px;height:420px;background:radial-gradient(circle at 40% 40%, #3E64FF, transparent 70%);bottom:-140px;inset-inline-start:-100px;opacity:.35;animation:drift2 26s ease-in-out infinite;}
.orb-3{width:260px;height:260px;background:radial-gradient(circle, var(--lime-deep), transparent 70%);top:38%;inset-inline-start:44%;opacity:.28;animation:drift3 18s ease-in-out infinite;}
@keyframes drift1{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(-30px,25px) scale(1.08);}}
@keyframes drift2{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(25px,-20px) scale(1.05);}}
@keyframes drift3{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(-20px,-15px) scale(1.12);}}

.hero-inner{
  position:relative;z-index:2;
  max-width:1180px;
  margin:0 auto;
  padding:0 28px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:50px;
  align-items:center;
}
.eyebrow-pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 16px;
  border-radius:var(--radius-pill);
  background:var(--glass-dark-bg);
  border:1px solid var(--glass-dark-border);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  color:var(--lime-soft);
  font-size:13px;font-weight:700;
  margin-bottom:18px;
}
.eyebrow-pill .dot{width:7px;height:7px;border-radius:50%;background:var(--lime);box-shadow:0 0 10px var(--lime);}

.hero-slogan{display:inline-flex;align-items:center;gap:10px;margin:0 0 14px;font-family:var(--font-display);font-size:clamp(15px,1.35vw,19px);font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:var(--lime);text-shadow:0 0 26px rgba(166,206,57,.20);}
.hero-slogan::before{content:'';width:34px;height:1px;background:linear-gradient(90deg,transparent,var(--lime));box-shadow:0 0 12px rgba(166,206,57,.55);}
.hero-slogan::after{content:'';width:7px;height:7px;border-radius:50%;background:var(--lime);box-shadow:0 0 14px rgba(166,206,57,.85);animation:pulse 2.4s ease-in-out infinite;}
html[dir="rtl"] .hero-slogan{
  font-family: 'Helvetica Arabic', 'Neue Helvetica Arabic', 'Helvetica Neue LT Arabic', 'IBM Plex Sans Arabic', 'Tajawal', sans-serif !important;
  font-size: clamp(18px, 1.8vw, 24px) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.hero h1{
  color:var(--white);
  font-size:clamp(36px,5.2vw,62px);
  text-shadow:0 14px 42px rgba(0,0,0,.28);
}
.hero h1 em{color:var(--lime);font-style:normal;}
.hero-sub{
  margin-top:22px;
  max-width:520px;
  color:rgba(255,255,255,0.68);
  font-size:17.5px;
}
.hero-cta{
  display:flex;gap:14px;flex-wrap:wrap;
  margin-top:38px;
}
.hero-stats{
  display:flex;gap:30px;
  margin-top:52px;
}
.hero-stats div{display:flex;flex-direction:column;gap:2px;}
.hero-stats strong{font-family:var(--font-display);color:var(--white);font-size:26px;font-weight:600;}
.hero-stats span{color:rgba(255,255,255,0.55);font-size:12.5px;}

/* Arabic Hero Stats: Keep natural flush alignment matching heading and CTA button right border */
html[dir="rtl"] .hero-stats{
  margin-top:32px;
}
@media (max-width:768px){
  html[dir="rtl"] .hero-stats{
    gap:18px;
    flex-wrap:wrap;
  }
}

/* Hero showcase panel */
.hero-panel{
  position:relative;
  border-radius:var(--radius-xl);
  padding:24px;
  background:var(--glass-dark-bg);
  border:1px solid var(--glass-dark-border);
  backdrop-filter:blur(26px) saturate(160%);
  -webkit-backdrop-filter:blur(26px) saturate(160%);
  box-shadow:0 28px 80px -34px rgba(0,0,0,.8),inset 0 1px 0 rgba(255,255,255,.17);
}
.hero-panel-kicker{display:flex;align-items:center;gap:8px;color:rgba(255,255,255,.42);font-size:10.5px;font-weight:800;text-transform:uppercase;letter-spacing:.12em;margin:0 4px 13px;}
.panel-signal{width:6px;height:6px;border-radius:50%;background:var(--lime);box-shadow:0 0 12px rgba(166,206,57,.8);animation:pulse 2.2s infinite;}
.hero-panel-row{
  display:flex;align-items:center;gap:14px;
  padding:13px 15px;
  border-radius:var(--radius-md);
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  transition:transform .4s var(--ease),background .4s var(--ease),border-color .4s;
}
.hero-panel-row + .hero-panel-row{margin-top:10px;}
.hero-panel-row:hover{transform:translateX(4px);background:rgba(166,206,57,.075);border-color:rgba(166,206,57,.16);}
.hero-panel-row .ic{
  width:38px;height:38px;flex:none;border-radius:11px;
  background:linear-gradient(160deg, var(--lime), var(--lime-deep));
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 18px -9px rgba(127,168,44,.65),inset 0 1px 0 rgba(255,255,255,.35);
}
.hero-panel-row .ic svg{width:19px;height:19px;stroke:#11150F;}
.hero-panel-row strong{display:block;color:var(--white);font-size:14.5px;font-weight:700;}
.hero-panel-row span{display:block;color:rgba(255,255,255,0.5);font-size:12.5px;margin-top:1px;}
.hero-panel-foot{
  display:flex;justify-content:space-between;align-items:center;
  margin-top:16px;padding-top:16px;border-top:1px solid rgba(255,255,255,0.1);
}
.hero-panel-foot span{color:rgba(255,255,255,0.5);font-size:12px;}
.pulse{width:9px;height:9px;border-radius:50%;background:var(--lime);box-shadow:0 0 0 0 rgba(166,206,57,.6);animation:pulse 2.2s infinite;}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(166,206,57,.55);}70%{box-shadow:0 0 0 12px rgba(166,206,57,0);}100%{box-shadow:0 0 0 0 rgba(166,206,57,0);}}

@media (max-width:940px){
  .hero-inner{grid-template-columns:1fr;}
  .hero-panel{order:0;}
}

/* ============================================================
   Section dark system & canvases
   ============================================================ */
.section-dark{
  background:var(--canvas-dark);
  color:rgba(255,255,255,.82);
  isolation:isolate;
  overflow:hidden;
  position:relative;
}
.section-dark > .container{position:relative;z-index:3;}
.section-dark .section-head h2{color:var(--white);font-size:clamp(28px,3.6vw,42px);}
.section-dark .section-head p{margin-top:16px;color:rgba(255,255,255,.60);font-size:16.5px;}
.section-dark .eyebrow{color:var(--lime-soft);display:inline-flex;align-items:center;gap:8px;font-weight:700;font-size:13px;margin-bottom:14px;}
.section-dark .eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--lime);box-shadow:0 0 10px rgba(166,206,57,.5);}
.section-head{max-width:640px;margin-bottom:52px;}
.section-pad{padding:110px 0;}
@media (max-width:720px){.section-pad{padding:76px 0;}}

.section-dark .section-canvas{
  position:absolute;inset:0;width:100%;height:100%;
  z-index:1;pointer-events:none;opacity:.38;
  mix-blend-mode:screen;
  will-change:transform;transform:translateZ(0);
}
.section-about .section-canvas{opacity:.42;}
.section-services .section-canvas{opacity:.38;}
.section-why .section-canvas{opacity:.40;}
.section-enquiry .section-canvas{opacity:.34;}
.section-contact .section-canvas{opacity:.42;}
.team-section .section-canvas,.community-section .section-canvas{opacity:.40;}

/* ============================================================
   About
   ============================================================ */
.about-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:64px;
  align-items:center;
}
.about-visual{
  position:relative;
  border-radius:var(--radius-xl);
  padding:36px;
  background:linear-gradient(155deg, #12161C, #060809);
  min-height:380px;
  display:flex;flex-direction:column;justify-content:center;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 70px -34px rgba(0,0,0,.85),inset 0 1px 0 rgba(255,255,255,.08);
}
.about-visual::before{
  content:'';position:absolute;width:300px;height:300px;border-radius:50%;
  background:radial-gradient(circle, var(--lime), transparent 70%);
  filter:blur(60px);opacity:.4;top:-80px;inset-inline-end:-80px;
}
.about-visual img{
  position:relative;
  width:78px;
  opacity:.98;
  filter: drop-shadow(0 0 8px rgba(166,206,57,.65)) drop-shadow(0 0 20px rgba(166,206,57,.3));
  animation: logoBreatheGlow 3.5s ease-in-out infinite;
}
.about-visual .yr{position:relative;margin-top:22px;font-family:var(--font-display);color:var(--white);font-size:52px;font-weight:600;}
.about-visual .yr-label{position:relative;color:rgba(255,255,255,.55);font-size:14px;margin-top:6px;}

.about-copy p{font-size:16.5px;color:rgba(255,255,255,.62);}
.about-copy p + p{margin-top:16px;}
.about-points{margin-top:30px;display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.about-points li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:14.5px;font-weight:600;color:rgba(255,255,255,.85);
  padding:14px;border-radius:var(--radius-md);
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}
.about-points li svg{flex:none;width:18px;height:18px;stroke:var(--lime);margin-top:1px;}

@media (max-width:860px){
  .about-grid{grid-template-columns:1fr;}
  .about-points{grid-template-columns:1fr;}
}

/* ============================================================
   Services — bento/puzzle grid & cards
   ============================================================ */
.bento{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}
.bento .card{
  grid-column:span 4;
  min-width:0;
  min-height:218px;
  padding:25px 24px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  position:relative;
  border-radius:var(--radius-lg);
  background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 44px -28px rgba(0,0,0,.75),inset 0 1px 0 rgba(255,255,255,.055);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  overflow:hidden;
  cursor:pointer;
  touch-action:manipulation;
}
.bento .card:hover{
  transform:translateY(-4px);
  border-color:rgba(166,206,57,.22);
  box-shadow:0 28px 60px -28px rgba(0,0,0,.85),0 0 0 1px rgba(166,206,57,.12),inset 0 1px 0 rgba(255,255,255,.09);
}
.bento .card::before{
  content:'↗';
  position:absolute;
  right:18px;top:16px;
  font:700 14px var(--font-display);
  color:rgba(190,225,94,.48);
  opacity:0;
  transform:translate(-4px,4px);
  transition:opacity .25s ease,transform .25s ease;
}
html[dir="rtl"] .bento .card::before{right:auto;left:18px;transform:translate(4px,4px);}
.bento .card:hover::before,.bento .card:focus-visible::before{opacity:1;transform:none;}
.bento .card:focus-visible{outline:1px solid rgba(166,206,57,.65);outline-offset:2px;}

.bento .card .ic{
  width:46px;height:46px;border-radius:13px;
  background:linear-gradient(160deg, var(--lime), var(--lime-deep));
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
  box-shadow:0 10px 20px -8px rgba(127,168,44,.55);
  flex:none;
}
.bento .card .ic svg{width:23px;height:23px;stroke:#11150F;fill:none;}
.bento .card h3{font-size:17px;line-height:1.2;color:var(--white);margin-bottom:8px;}
.bento .card p{font-size:13px;line-height:1.55;color:rgba(255,255,255,.58);}

/* Bento puzzle spans — Option C: Asymmetric Interlocking Tetris Puzzle */
.bento .card:nth-child(1),
.bento .card:nth-child(2),
.bento .card:nth-child(3){
  grid-column:span 4!important;
}

/* Rows 2 & 3: Tall Anchor Card 4 (App & Software Development) */
.bento .card:nth-child(4){
  grid-column:span 5!important;
  grid-row:span 2!important;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  min-height:100%;
}
.bento .card:nth-child(4) h3{
  font-size:19px;
}
.bento .card:nth-child(5){
  grid-column:span 4!important;
}
.bento .card:nth-child(6){
  grid-column:span 3!important;
}

/* Row 3 (Right beside tall Card 4): Cards 7 & 8 */
.bento .card:nth-child(7){
  grid-column:span 4!important;
}
.bento .card:nth-child(8){
  grid-column:span 3!important;
}

/* Row 4: Wide Enterprise Infrastructure Pair (7 + 5 = 12) */
.bento .card:nth-child(9){
  grid-column:span 7!important;
}
.bento .card:nth-child(10){
  grid-column:span 5!important;
}

/* Row 5: Operational Hardware & Support Trio (4 + 4 + 4 = 12) */
.bento .card:nth-child(11),
.bento .card:nth-child(12),
.bento .card:nth-child(13){
  grid-column:span 4!important;
}

/* Row 6: Security & Digital Growth Pair (6 + 6 = 12) */
.bento .card:nth-child(14){
  grid-column:span 6!important;
}
.bento .card:nth-child(15){
  grid-column:span 6!important;
}

/* Row 7: Enterprise Solutions & Next-Gen AI Flagship (5 + 7 = 12, ZERO BLANK GAPS) */
.bento .card:nth-child(16){
  grid-column:span 5!important;
}
.bento .card:nth-child(17){
  grid-column:span 7!important;
}

/* Row 8: Universal Solution Banner (Full width 12) */
.bento .card:nth-child(18){
  grid-column:1/-1!important;
  min-height:auto;
  padding:26px 32px;
}
.bento .card.c-full{display:flex;flex-direction:row;align-items:center;gap:26px;}
.bento .card.c-full .ic{margin-bottom:0;}
.bento .card.c-full .txt h3{margin-bottom:4px;}

/* Card internal micro-components */
.card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  margin-bottom:16px;
}
.card-top .ic{
  margin-bottom:0;
}
.card-badge{
  font-size:10px;
  font-weight:800;
  letter-spacing:0.12em;
  text-transform:uppercase;
  padding:5px 10px;
  border-radius:var(--radius-pill);
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  color:rgba(255,255,255,0.75);
  white-space:nowrap;
  line-height:1;
}
.card-badge.ai-badge{
  background:rgba(166,206,57,0.12);
  border-color:rgba(166,206,57,0.35);
  color:var(--lime);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.pulse-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 8px var(--lime);
  animation:bentoPulse 2s infinite ease-in-out;
}
@keyframes bentoPulse{
  0%, 100%{opacity:1;transform:scale(1);}
  50%{opacity:0.35;transform:scale(0.75);}
}

/* Bento interactive tags */
.bento-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:auto;
  padding-top:16px;
}
.bento-tag{
  font-size:11px;
  font-weight:600;
  padding:4px 10px;
  border-radius:6px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.72);
  transition:border-color .2s, background .2s, color .2s;
  white-space:nowrap;
}
.bento .card:hover .bento-tag{
  background:rgba(255,255,255,0.09);
  border-color:rgba(166,206,57,0.25);
  color:#fff;
}

/* Flagship AI Card */
.ai-card{
  background:linear-gradient(145deg, rgba(166,206,57,0.09), rgba(255,255,255,0.03))!important;
  border-color:rgba(166,206,57,0.28)!important;
  box-shadow:0 18px 44px -24px rgba(0,0,0,0.8), 0 0 24px -10px rgba(166,206,57,0.2)!important;
}
.ai-card:hover{
  border-color:rgba(166,206,57,0.48)!important;
  box-shadow:0 24px 52px -20px rgba(0,0,0,0.9), 0 0 32px -6px rgba(166,206,57,0.38)!important;
}
.ai-card .bento-tag{
  background:rgba(166,206,57,0.08);
  border-color:rgba(166,206,57,0.22);
  color:rgba(235,255,185,0.92);
}

/* Tall Software & App Dev Card */
.tall-card{
  background:linear-gradient(160deg, rgba(255,255,255,0.08), rgba(166,206,57,0.045), rgba(255,255,255,0.02))!important;
  border-color:rgba(166,206,57,0.2)!important;
}

/* Wide Enterprise Feature Card */
.wide-feature-card{
  background:linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025))!important;
}

.app-card{background:linear-gradient(135deg,rgba(166,206,57,.085),rgba(255,255,255,.028))!important;border-color:rgba(166,206,57,.16)!important;}

@media (max-width:1040px){
  .bento{grid-template-columns:repeat(2,minmax(0,1fr));}
  .bento .card,
  .bento .card:nth-child(n){
    grid-column:span 1!important;
    grid-row:auto!important;
    min-height:220px;
  }
  .bento .card:nth-child(4),
  .bento .card:nth-child(9),
  .bento .card:nth-child(17),
  .bento .card:nth-child(18),
  .bento .card.c-full{
    grid-column:span 2!important;
  }
}
@media (max-width:640px){
  .bento{grid-template-columns:1fr;gap:12px;}
  .bento .card,
  .bento .card:nth-child(n),
  .bento .card.c-full{
    grid-column:span 1!important;
    grid-row:auto!important;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:20px 18px;
    min-height:auto;
  }
  .card-top{margin-bottom:8px;}
}

/* ============================================================
   Services Liquid Glass Modal Popup (Stable, no scrollbar, click-outside)
   ============================================================ */
body.modal-open{overflow:hidden!important;}
.service-modal{
  position:fixed;inset:0;z-index:122;
  display:grid;place-items:center;
  padding:24px;
  opacity:0;visibility:hidden;pointer-events:none;
  overflow:hidden;overscroll-behavior:none;
  transition:opacity .28s ease,visibility .28s ease;
}
.service-modal.open{opacity:1;visibility:visible;pointer-events:auto;}
.service-backdrop{
  position:absolute;inset:0;
  background:rgba(3,6,9,.68);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.service-dialog{
  position:relative;
  width:min(700px,calc(100vw - 48px));
  max-width:700px;
  max-height:calc(100vh - 72px);
  height:auto;
  overflow:hidden!important;
  overscroll-behavior:none;
  scrollbar-width:none;-ms-overflow-style:none;
  border:1px solid rgba(255,255,255,.16);
  border-radius:30px;
  background:linear-gradient(145deg,rgba(26,33,42,.92),rgba(8,12,16,.88));
  box-shadow:0 40px 100px -30px rgba(0,0,0,.88),inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter:blur(30px) saturate(135%);
  -webkit-backdrop-filter:blur(30px) saturate(135%);
  contain:layout paint style;
  isolation:isolate;
}
.service-dialog::-webkit-scrollbar{display:none!important;width:0;height:0;}
.service-dialog::before{
  content:'';position:absolute;inset:-1px;pointer-events:none;
  background:radial-gradient(70% 90% at 0% 0%,rgba(166,206,57,.12),transparent 48%);
}
.service-body{position:relative;padding:40px 42px 38px;overflow:hidden!important;}
.service-kicker{
  font:800 10px var(--font-display);
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--lime-soft);
  display:flex;align-items:center;gap:8px;
}
.service-kicker::before{content:'';width:7px;height:7px;border-radius:50%;background:var(--lime);box-shadow:0 0 12px rgba(166,206,57,.65);}
.service-body h2{font-size:clamp(28px,4.2vw,48px);line-height:1.05;margin:14px 0 13px;color:#fff;letter-spacing:-.03em;}
.service-body p{max-width:640px;color:rgba(255,255,255,.68);font-size:15.5px;line-height:1.7;}
.service-note{
  margin-top:22px;padding:14px 16px;border-radius:15px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.035);
  color:rgba(255,255,255,.60);
  font-size:13px;line-height:1.55;
}
.service-close,.service-actions{display:none!important;}

/* ============================================================
   Beyond Excellence (Customer Relationship Section)
   ============================================================ */
.promise-section{background:radial-gradient(85% 100% at 92% 50%,rgba(166,206,57,.13),transparent 52%),linear-gradient(180deg,#0B1015,#06090C);}
.promise-layout{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:center;}
.promise-copy h2{font-size:clamp(34px,5vw,62px);line-height:1.03;letter-spacing:-.04em;color:var(--white);max-width:760px;}
.promise-copy h2 em{font-style:normal;color:var(--lime);}
.promise-copy p{color:rgba(255,255,255,.62);font-size:16px;max-width:640px;}
.promise-copy .promise-lead{font-size:19px;color:rgba(255,255,255,.78);margin-top:20px;}
.promise-copy p + p{margin-top:16px;}
.promise-copy .btn{margin-top:28px;}
.promise-cards{display:grid;gap:12px;}
.promise-card{
  display:flex;gap:18px;align-items:flex-start;
  padding:22px;border-radius:22px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.045);
  transition:transform .4s var(--ease),border-color .4s var(--ease),background .4s var(--ease);
}
.promise-card:hover{transform:translateX(-5px);border-color:rgba(166,206,57,.25);background:rgba(166,206,57,.055);}
.promise-card.featured{
  background:linear-gradient(135deg,rgba(166,206,57,.13),rgba(255,255,255,.035));
  border-color:rgba(166,206,57,.25);
  box-shadow:0 22px 55px -30px rgba(166,206,57,.18),inset 0 1px 0 rgba(255,255,255,.07);
}
.promise-card>span{font-family:var(--font-display);font-weight:800;font-size:13px;color:var(--lime);padding-top:2px;}
.promise-card h3{color:var(--white);font-size:17px;margin-bottom:5px;}
.promise-card p{color:rgba(255,255,255,.56);font-size:13.5px;line-height:1.6;}

@media (max-width:940px){
  .promise-layout{grid-template-columns:1fr;gap:38px;}
}

/* ============================================================
   Our Team Section
   ============================================================ */
.team-section{background:radial-gradient(75% 90% at 15% 10%,rgba(166,206,57,.07),transparent 55%),#080C11;}
.team-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;max-width:1180px;}
.team-card{
  position:relative;overflow:hidden;min-height:300px;padding:32px;
  border:1px solid rgba(255,255,255,.12);border-radius:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  box-shadow:0 24px 70px -38px rgba(0,0,0,.85),inset 0 1px 0 rgba(255,255,255,.055);
  backdrop-filter:blur(22px) saturate(150%);-webkit-backdrop-filter:blur(22px) saturate(150%);
  transition:transform .45s var(--ease),border-color .45s var(--ease),box-shadow .45s var(--ease);
  display:flex;flex-direction:column;
  cursor:pointer;
  user-select:none;
}
.team-card::before{
  content:'';position:absolute;width:180px;height:180px;border-radius:50%;
  right:-80px;top:-90px;
  background:radial-gradient(circle,rgba(166,206,57,.20),transparent 68%);
  filter:blur(10px);pointer-events:none;
}
.team-card:hover{
  transform:translateY(-5px);
  border-color:rgba(166,206,57,.30);
  box-shadow:0 30px 80px -35px rgba(0,0,0,.92),0 0 25px -10px rgba(166,206,57,.22),inset 0 1px 0 rgba(255,255,255,.08);
}
.team-card:focus-visible{
  outline:2px solid var(--lime);
  outline-offset:3px;
}
.team-role{margin-top:0;color:var(--lime-soft);font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.team-name{
  display:block;margin:6px 0 0;padding:0;border:0;background:none;
  color:var(--white);font:600 26px/1.12 var(--font-display);
  letter-spacing:-.025em;text-align:left;position:relative;
  transition:color .3s ease,transform .3s ease;
}
html[dir="rtl"] .team-name{text-align:right;}
.team-name::after{content:'';display:block;width:0;height:1px;margin-top:5px;background:var(--lime);transition:width .35s ease;}
.team-card:hover .team-name{color:var(--lime-soft);transform:translateX(2px);}
.team-card:hover .team-name::after{width:70px;}
.team-exp-badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  width:fit-content;
  padding:4px 10px;
  margin-bottom:12px;
  border-radius:100px;
  background:rgba(166,206,57,.12);
  border:1px solid rgba(166,206,57,.28);
  color:var(--lime-soft);
  font-size:11px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.team-exp-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 8px var(--lime);
}
.team-summary{
  margin:10px 0 0;
  color:rgba(255,255,255,.68);
  font-size:13px;
  line-height:1.6;
  flex:1;
}
.team-card-cta{
  margin-left:auto;
  color:var(--lime-soft);
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
  padding:6px 12px;
  border-radius:8px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  transition:all .25s ease;
  white-space:nowrap;
}
html[dir="rtl"] .team-card-cta{
  margin-left:0;
  margin-right:auto;
}
.team-card:hover .team-card-cta{
  background:rgba(166,206,57,.15);
  border-color:rgba(166,206,57,.35);
  color:var(--white);
  transform:translateX(3px);
}
html[dir="rtl"] .team-card:hover .team-card-cta{
  transform:translateX(-3px);
}
.team-meet-hint{display:none!important;}
.team-phone{margin:8px 0 0;color:rgba(255,255,255,.50);font-size:13px;font-weight:650;letter-spacing:.03em;}
.team-actions{display:flex;flex-direction:row;align-items:center;gap:12px;margin-top:20px;position:relative;z-index:5;}

/* ---------- Glossy HD Squircle Contact Buttons ---------- */
.team-icon-btn{
  position:relative;
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px!important;
  border:none!important;
  background:transparent!important;
  color:rgba(255,255,255,.94);
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
  text-decoration:none;
  cursor:pointer;
  padding:0;
  transition:transform .25s cubic-bezier(.16,1,.3,1),filter .25s ease;
  user-select:none;
  isolation:isolate;
}
.team-icon-btn img{
  display:block;
  width:44px!important;
  height:44px!important;
  border-radius:12px;
  object-fit:contain;
  pointer-events:none;
  transition:transform .25s cubic-bezier(.16,1,.3,1),filter .25s ease;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.45));
}
.team-icon-btn:hover{
  transform:translateY(-3px) scale(1.06);
}
.team-icon-btn:hover img{
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.70)) drop-shadow(0 0 10px rgba(166,206,57,.25));
}
.team-icon-btn:active{
  transform:translateY(-1px) scale(.97);
}
.team-icon-btn svg{
  width:22px;
  height:22px;
}

/* ============================================================
   Executive Hologram Modal
   ============================================================ */
.executive-modal{
  position:fixed;inset:0;z-index:120;
  display:grid;place-items:center;padding:22px;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .35s ease,visibility .35s ease;
}
.executive-modal.open{opacity:1;visibility:visible;pointer-events:auto;}
.executive-backdrop{
  position:absolute;inset:0;background:rgba(1,5,8,.78);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
}
.executive-dialog{
  position:relative;width:min(900px,100%);
  display:grid;grid-template-columns:310px 1fr;overflow:hidden;
  border:1px solid rgba(255,255,255,.17);border-radius:28px;
  background:linear-gradient(145deg,rgba(25,32,39,.95),rgba(7,12,17,.98));
  box-shadow:0 40px 110px -35px rgba(0,0,0,.95),inset 0 1px 0 rgba(255,255,255,.10);
  transform:translateY(22px) scale(.97);
  transition:transform .45s cubic-bezier(.16,1,.3,1);
  max-height:90vh;
  overflow-y:auto;
}
.executive-modal.open .executive-dialog{transform:translateY(0) scale(1);}
.executive-close{
  position:absolute;right:18px;top:16px;z-index:10;
  width:38px;height:38px;border:1px solid rgba(255,255,255,.16);
  border-radius:50%;background:rgba(255,255,255,.08);
  color:var(--white);font-size:25px;line-height:1;cursor:pointer;
  backdrop-filter:blur(15px);display:flex;align-items:center;justify-content:center;
  transition:all .2s ease;
}
.executive-close:hover{
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.3);
  transform:scale(1.06);
}
html[dir="rtl"] .executive-close{right:auto;left:18px;}

/* Executive Visual / Verified Badge */
.executive-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:36px 24px;
  background:radial-gradient(circle at 50% 30%,rgba(166,206,57,.18),transparent 65%),linear-gradient(180deg,rgba(166,206,57,.08),transparent 80%);
  border-right:1px solid rgba(255,255,255,.08);
}
html[dir="rtl"] .executive-visual{
  border-right:none;
  border-left:1px solid rgba(255,255,255,.08);
}
.exec-badge-card{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  position:relative;
  z-index:2;
}
.exec-verified-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 12px;
  border-radius:100px;
  background:rgba(166,206,57,.14);
  border:1px solid rgba(166,206,57,.32);
  color:var(--lime-soft);
  font-size:11px;
  font-weight:750;
  letter-spacing:.05em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.exec-avatar-ring{
  width:96px;
  height:96px;
  border-radius:50%;
  padding:4px;
  background:linear-gradient(135deg,rgba(166,206,57,.8),rgba(255,255,255,.2));
  box-shadow:0 0 30px rgba(166,206,57,.35);
  margin-bottom:16px;
}
.exec-avatar-inner{
  width:100%;
  height:100%;
  border-radius:50%;
  background:#111923;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
  font-size:26px;
  font-weight:800;
  font-family:var(--font-display);
  letter-spacing:.02em;
  border:2px solid rgba(255,255,255,.1);
}
.exec-badge-name{
  color:var(--white);
  font:700 21px/1.2 var(--font-display);
  margin:0 0 4px;
}
.exec-badge-role{
  color:var(--lime-soft);
  font-size:12px;
  font-weight:650;
  line-height:1.4;
  margin-bottom:16px;
  max-width:240px;
}
.exec-exp-stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:10px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.09);
  width:100%;
  max-width:220px;
}
.exec-exp-num{
  color:var(--lime-soft);
  font-size:18px;
  font-weight:800;
  font-family:var(--font-display);
}
.exec-exp-lbl{
  color:rgba(255,255,255,.65);
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-top:2px;
}

/* Executive Modal Right Copy */
.executive-copy{
  padding:44px 40px 36px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.executive-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--lime-soft);
  font-size:12px;
  font-weight:750;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}
.executive-eyebrow .dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 8px var(--lime);
}
.executive-name{
  font-size:clamp(26px,3.2vw,36px);
  line-height:1.15;
  color:var(--white);
  margin:0 0 6px;
  font-weight:700;
}
.executive-designation{
  color:var(--lime-soft);
  font-size:14px;
  font-weight:700;
  letter-spacing:.02em;
  margin-bottom:10px;
}
.executive-exp-badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:5px 12px;
  border-radius:100px;
  background:rgba(166,206,57,.12);
  border:1px solid rgba(166,206,57,.28);
  color:var(--lime-soft);
  font-size:12px;
  font-weight:750;
  margin-bottom:14px;
  width:fit-content;
}
.executive-desc{
  color:rgba(255,255,255,.78);
  font-size:14.5px;
  line-height:1.7;
  margin-bottom:20px;
}

/* Contact Rows */
.executive-contact-grid{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:20px;
}
.exec-contact-row,
.exec-contact-row-mail{
  display:flex;
  align-items:center;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.09);
  transition:all .25s ease;
  overflow:hidden;
}
.exec-contact-row{
  padding:10px 14px;
  text-decoration:none;
  color:var(--white);
  gap:12px;
}
.exec-contact-row:hover{
  background:rgba(166,206,57,.08);
  border-color:rgba(166,206,57,.30);
  transform:translateX(3px);
}
html[dir="rtl"] .exec-contact-row:hover{
  transform:translateX(-3px);
}
.exec-contact-row-mail{
  padding:0;
}
.exec-contact-row-mail:hover{
  background:rgba(166,206,57,.08);
  border-color:rgba(166,206,57,.30);
}
.exec-contact-row-main{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 14px;
  flex:1;
  text-decoration:none;
  color:var(--white);
  min-width:0;
}
.exec-copy-btn{
  background:rgba(255,255,255,.08);
  border:none;
  border-left:1px solid rgba(255,255,255,.10);
  color:var(--white);
  padding:0 14px;
  height:100%;
  min-height:50px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .2s ease;
}
html[dir="rtl"] .exec-copy-btn{
  border-left:none;
  border-right:1px solid rgba(255,255,255,.10);
}
.exec-copy-btn:hover{
  background:rgba(166,206,57,.25);
  color:var(--lime-soft);
}
.exec-contact-icon{
  width:36px;
  height:36px;
  border-radius:10px;
  background:rgba(166,206,57,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.exec-contact-meta{
  display:flex;
  flex-direction:column;
  min-width:0;
  flex:1;
}
.exec-contact-lbl{
  font-size:11px;
  color:rgba(255,255,255,.50);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.exec-contact-val{
  font-size:13.5px;
  font-weight:700;
  color:var(--white);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.exec-contact-btn-tag{
  padding:4px 10px;
  border-radius:6px;
  background:rgba(166,206,57,.15);
  border:1px solid rgba(166,206,57,.30);
  color:var(--lime-soft);
  font-size:11px;
  font-weight:700;
  white-space:nowrap;
  flex-shrink:0;
}
.executive-actions{display:flex;gap:12px;margin-top:4px;}

@media (max-width:940px){
  .team-grid{grid-template-columns:1fr;max-width:none;}
  .executive-dialog{grid-template-columns:1fr;max-height:92vh;}
  .executive-visual{min-height:auto;padding:26px 20px;}
  .executive-copy{padding:26px 20px 24px;}
  .exec-contact-row, .exec-contact-row-mail{flex-wrap:wrap;}
}

/* ============================================================
   Community Section
   ============================================================ */
.community-section{background:radial-gradient(70% 100% at 85% 20%,rgba(166,206,57,.075),transparent 55%),radial-gradient(50% 80% at 5% 85%,rgba(80,130,180,.08),transparent 58%),#070B10;}
.community-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:20px;align-items:start;position:relative;z-index:2;}
.community-panel{
  position:relative;overflow:hidden;padding:30px;
  border:1px solid rgba(255,255,255,.12);border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.022));
  box-shadow:0 30px 80px -44px rgba(0,0,0,.9),inset 0 1px 0 rgba(255,255,255,.065);
  backdrop-filter:blur(24px) saturate(145%);-webkit-backdrop-filter:blur(24px) saturate(145%);
}
.community-panel::before{
  content:'';position:absolute;right:-80px;top:-110px;width:240px;height:240px;border-radius:50%;
  background:radial-gradient(circle,rgba(166,206,57,.12),transparent 68%);filter:blur(8px);pointer-events:none;
}
.community-panel>*{position:relative;z-index:1;}
.community-icon{
  width:52px;height:52px;border-radius:18px;display:flex;align-items:center;justify-content:center;
  color:var(--lime);background:rgba(166,206,57,.075);border:1px solid rgba(166,206,57,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);margin-bottom:18px;
}
.community-icon svg{width:24px;height:24px;}
.community-kicker{color:var(--lime-soft);font-size:10px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;}
.community-panel h3{margin-top:8px;color:var(--white);font-size:27px;line-height:1.08;letter-spacing:-.025em;}
.community-panel>p{margin-top:12px;color:rgba(255,255,255,.58);font-size:14px;line-height:1.7;max-width:680px;}
.community-form{margin-top:24px;}
.compact-grid{gap:12px;}
.community-form .field label{font-size:11px;}
.community-form .field input,.community-form .field textarea{font-size:13.5px;}
.community-submit{margin-top:14px;}
.thought-panel{background:linear-gradient(145deg,rgba(166,206,57,.055),rgba(255,255,255,.025));}

@media (max-width:940px){
  .community-grid{grid-template-columns:1fr;}
  .community-panel{padding:25px;}
}

/* ============================================================
   Enquiry Form & Inputs
   ============================================================ */
.enquiry-form{
  max-width:920px;margin:0 auto;
  background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(24px) saturate(150%);
  -webkit-backdrop-filter:blur(24px) saturate(150%);
  border-radius:var(--radius-xl);
  padding:42px;
  box-shadow:0 24px 70px -36px rgba(0,0,0,.82),inset 0 1px 0 rgba(255,255,255,.055);
}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.field{display:flex;flex-direction:column;gap:8px;}
.field-full{grid-column:span 2;}
.field label{font-size:13px;font-weight:700;color:rgba(255,255,255,.82);}
.field input, .field select, .field textarea{
  padding:13px 16px;border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(4,7,10,.52);
  font-family:var(--font-body);font-size:14.5px;color:var(--white);
  transition:border-color .3s, box-shadow .3s;
  width:100%;
}
.field input::placeholder,.field textarea::placeholder{color:rgba(255,255,255,.36);}
.field select option{background:#0B1015;color:#fff;}
.field textarea{resize:vertical;min-height:90px;}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;border-color:var(--lime);box-shadow:0 0 0 4px rgba(166,206,57,.12),0 8px 30px -18px rgba(166,206,57,.35);
}
.file-drop{
  position:relative;border:1.5px dashed rgba(255,255,255,.18);border-radius:12px;
  padding:24px;text-align:center;cursor:pointer;background:rgba(255,255,255,.035);
  transition:border-color .3s, background .3s;
}
.file-drop.drag{border-color:var(--lime);background:rgba(166,206,57,.10);}
.file-drop input{position:absolute;inset:0;opacity:0;cursor:pointer;}
.file-drop-text{display:block;color:rgba(255,255,255,.52);font-size:14px;}
.file-drop-name{display:block;margin-top:8px;color:var(--lime);font-weight:700;font-size:13.5px;}
.enquiry-form > .btn{margin-top:28px;width:100%;justify-content:center;font-size:15.5px;padding:16px;}
.form-status{margin-top:16px;padding:14px 18px;border-radius:12px;font-size:14px;font-weight:600;display:none;}
.form-status.success{display:block;background:rgba(166,206,57,.13);color:var(--lime-soft);border:1px solid rgba(166,206,57,.18);}
.form-status.error{display:block;background:rgba(220,70,70,.12);color:#ffb2b2;border:1px solid rgba(255,120,120,.16);}

.hp-field,.hp{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important;}
.cf-turnstile{margin-top:18px;min-height:65px;}

@media (max-width:680px){
  .form-grid{grid-template-columns:1fr;}
  .field-full{grid-column:span 1;}
  .enquiry-form{padding:26px;}
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.contact-card{
  border-radius:var(--radius-lg);
  padding:30px;
  background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 70px -36px rgba(0,0,0,.82),inset 0 1px 0 rgba(255,255,255,.055);
  backdrop-filter:blur(24px) saturate(150%);
  -webkit-backdrop-filter:blur(24px) saturate(150%);
  display:flex;flex-direction:column;gap:18px;
}
.contact-card-title{color:var(--lime);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;margin-bottom:8px;}
.contact-row{display:flex;align-items:flex-start;gap:14px;}
.contact-row .ic{
  width:42px;height:42px;border-radius:12px;flex:none;
  background:rgba(166,206,57,.13);border:1px solid rgba(166,206,57,.18);
  display:flex;align-items:center;justify-content:center;
}
.contact-row .ic svg{width:20px;height:20px;stroke:var(--lime);fill:none;}
.contact-row strong{display:block;font-size:14px;color:var(--white);}
.contact-row span, .contact-row a{display:block;font-size:14.5px;color:rgba(255,255,255,.58);margin-top:2px;}
.contact-row a:hover{color:var(--lime);}

.contact-cta{
  position:relative;
  border-radius:var(--radius-lg);
  padding:36px;
  background:linear-gradient(155deg,#171D25,#080A0D);
  border:1px solid rgba(255,255,255,.12);
  display:flex;flex-direction:column;justify-content:center;gap:14px;
  overflow:hidden;
}
.contact-cta::before{
  content:'';position:absolute;width:260px;height:260px;border-radius:50%;
  background:radial-gradient(circle, var(--lime), transparent 70%);
  filter:blur(60px);opacity:.4;bottom:-100px;inset-inline-end:-60px;
}
.cta-kicker{position:relative;color:var(--lime);font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;margin-bottom:8px;}
.contact-cta h3{position:relative;color:var(--white);font-size:24px;}
.contact-cta p{position:relative;color:rgba(255,255,255,0.62);font-size:14.5px;}
.cta-actions{position:relative;display:flex;gap:10px;flex-wrap:wrap;margin-top:8px;}

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

/* ============================================================
   Footer
   ============================================================ */
footer{
  background:var(--canvas-dark-2);
  padding:56px 0 clamp(44px, 8vh, 80px);
  border-top:1px solid rgba(255,255,255,0.08);
}
.foot-top{
  display:flex;justify-content:space-between;align-items:flex-start;gap:40px;
  padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,0.08);
  flex-wrap:wrap;
}
.foot-tag{color:rgba(255,255,255,0.5);font-size:14px;margin-top:14px;max-width:280px;}
.foot-links{display:flex;gap:64px;flex-wrap:wrap;}
.foot-col h4{color:var(--white);font-size:13px;margin-bottom:14px;}
.foot-col a{display:block;color:rgba(255,255,255,0.55);font-size:14px;padding:5px 0;}
.foot-col a:hover{color:var(--lime);}
.foot-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:22px;flex-wrap:wrap;gap:10px;
}
.foot-bottom span{color:rgba(255,255,255,0.4);font-size:13px;}

/* ============================================================
   WhatsApp FAB & Chooser with Animated Character Avatars
   ============================================================ */
.whatsapp-launcher{
  position:fixed;
  bottom:24px;
  left:24px;
  right:auto;
  z-index:150;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
}
html[dir="rtl"] .whatsapp-launcher{
  left: auto !important;
  right: calc(28px + env(safe-area-inset-right, 0px)) !important;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
  align-items: flex-start !important;
}
html[dir="rtl"] .whatsapp-launcher .whatsapp-fab{
  align-self: flex-start !important;
}
html[dir="rtl"] .whatsapp-launcher .whatsapp-menu{
  align-self: flex-start !important;
  transform-origin: bottom right !important;
}
.whatsapp-menu{
  width:min(340px,calc(100vw - 32px));padding:14px;
  border:1px solid rgba(255,255,255,.14);border-radius:22px;
  background:rgba(9,13,18,.92);backdrop-filter:blur(24px) saturate(160%);-webkit-backdrop-filter:blur(24px) saturate(160%);
  box-shadow:0 28px 70px -25px rgba(0,0,0,.92),0 0 30px rgba(166,206,57,.08);
  opacity:0;transform:translateY(12px) scale(.96);pointer-events:none;
  transition:opacity .28s cubic-bezier(.16,1,.3,1),transform .28s cubic-bezier(.16,1,.3,1);
}
.whatsapp-menu.open{opacity:1;transform:translateY(0) scale(1);pointer-events:auto;}
.whatsapp-menu-title{
  display:flex;align-items:center;justify-content:space-between;
  padding:4px 6px 12px;color:rgba(255,255,255,.55);
  font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
  border-bottom:1px solid rgba(255,255,255,.08);margin-bottom:8px;
}
.whatsapp-menu-title::after{
  content:'';width:6px;height:6px;border-radius:50%;background:#25d366;
  box-shadow:0 0 8px #25d366;animation:waPulse 2s infinite;
}
@keyframes waPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.8)}}

.wa-contact-item{
  display:flex!important;align-items:center;gap:12px;
  padding:10px 10px;border-radius:14px;color:#fff!important;text-decoration:none!important;
  border:1px solid transparent;background:transparent;
  transition:background .22s ease,border-color .22s ease,transform .22s ease;
  margin-bottom:4px;
}
.wa-contact-item:last-child{margin-bottom:0;}
.wa-contact-item:hover{
  background:rgba(166,206,57,.09);border-color:rgba(166,206,57,.22);
  transform:translateX(-2px);
}
html[dir="rtl"] .wa-contact-item:hover{
  transform:translateX(2px);
}

/* Character Avatar with Animation */
.wa-avatar-wrap{position:relative;width:42px;height:42px;flex-shrink:0;}
.wa-char-avatar{
  width:42px;height:42px;border-radius:50%;
  background:linear-gradient(135deg,#1c232a,#0f141a);
  border:1.5px solid rgba(166,206,57,.35);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  transition:transform .28s cubic-bezier(.16,1,.3,1),box-shadow .28s ease,border-color .28s ease;
  box-shadow:0 4px 10px rgba(0,0,0,.45);
}
.wa-menu.open .wa-char-avatar{
  animation:waCharFloat 3.5s ease-in-out infinite alternate;
}
.wa-contact-item:nth-child(2) .wa-char-avatar{animation-delay:.3s;}
.wa-contact-item:nth-child(3) .wa-char-avatar{animation-delay:.6s;}
.wa-contact-item:hover .wa-char-avatar{
  transform:scale(1.1);border-color:var(--lime);
  box-shadow:0 0 16px rgba(166,206,57,.45);
}
@keyframes waCharFloat{
  0%{transform:translateY(0)}
  100%{transform:translateY(-3px)}
}
.wa-char-svg{width:36px;height:36px;display:block;}

.wa-status-badge{
  position:absolute;bottom:0;right:0;width:10px;height:10px;border-radius:50%;
  background:#25d366;border:2px solid #090d12;
  box-shadow:0 0 6px rgba(37,211,102,.6);
}
html[dir="rtl"] .wa-status-badge{right:auto;left:0;}

.wa-contact-info{flex:1;min-width:0;}
.wa-contact-info strong{display:block;font-size:13.5px;font-weight:700;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.wa-contact-info span{display:block;margin-top:2px;color:rgba(255,255,255,.50);font-size:11px;line-height:1.35;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.wa-contact-item:hover .wa-contact-info span{color:rgba(255,255,255,.75);}

.wa-action-icon{width:28px;height:28px;flex-shrink:0;opacity:.85;transition:opacity .2s,transform .2s;}
.wa-contact-item:hover .wa-action-icon{opacity:1;transform:scale(1.12);}
.wa-action-icon img{width:28px;height:28px;display:block;border-radius:8px;}

/* ============================================================
   Apple Liquid Glass WhatsApp FAB (Dark Luxury Theme)
   ============================================================ */
.whatsapp-fab{
  position:relative;
  width:60px;
  height:60px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(16, 24, 34, 0.68) 45%, rgba(8, 12, 18, 0.88) 100%);
  border:1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter:blur(24px) saturate(190%);
  -webkit-backdrop-filter:blur(24px) saturate(190%);
  box-shadow:
    0 16px 36px -6px rgba(0, 0, 0, 0.65),
    0 0 22px -2px rgba(37, 211, 102, 0.26),
    inset 0 1.5px 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1.5px 1.5px 0 rgba(0, 0, 0, 0.45);
  cursor:pointer;
  overflow:hidden;
  transition:transform .3s cubic-bezier(.16,1,.3,1), border-color .3s ease, box-shadow .3s ease;
  animation:waLiquidGlow 4s ease-in-out infinite;
  user-select:none;
}

@keyframes waLiquidGlow{
  0%,100%{
    box-shadow:
      0 16px 36px -6px rgba(0, 0, 0, 0.65),
      0 0 20px -2px rgba(37, 211, 102, 0.22),
      inset 0 1.5px 1px 0 rgba(255, 255, 255, 0.45),
      inset 0 -1.5px 1.5px 0 rgba(0, 0, 0, 0.45);
  }
  50%{
    box-shadow:
      0 20px 44px -6px rgba(0, 0, 0, 0.75),
      0 0 32px rgba(37, 211, 102, 0.40),
      inset 0 1.5px 1px 0 rgba(255, 255, 255, 0.60),
      inset 0 -1.5px 1.5px 0 rgba(0, 0, 0, 0.45);
  }
}

.whatsapp-fab:hover{
  transform:translateY(-3px) scale(1.05);
  border-color:rgba(37, 211, 102, 0.50);
  box-shadow:
    0 22px 48px -6px rgba(0, 0, 0, 0.80),
    0 0 34px rgba(37, 211, 102, 0.55),
    inset 0 1.5px 1.5px 0 rgba(255, 255, 255, 0.70),
    inset 0 -1.5px 1.5px 0 rgba(0, 0, 0, 0.45);
}

.whatsapp-fab:active{
  transform:translateY(0) scale(0.97);
}

/* Liquid specular optic reflection on upper curvature */
.wa-glass-reflection{
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:50%;
  border-radius:17px 17px 30px 30px / 17px 17px 12px 12px;
  background:linear-gradient(180deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.06) 75%, transparent 100%);
  pointer-events:none;
  z-index:2;
}

/* Ambient radial sheen */
.wa-glass-sheen{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32) 0%, transparent 55%);
  pointer-events:none;
  z-index:2;
}

/* Exact official WhatsApp icon inside */
.wa-liquid-icon{
  width:36px;
  height:36px;
  object-fit:contain;
  position:relative;
  z-index:3;
  pointer-events:none;
  transition:transform .3s cubic-bezier(.16,1,.3,1), filter .3s ease;
  filter:drop-shadow(0 4px 10px rgba(18, 140, 126, 0.45));
}

.whatsapp-fab:hover .wa-liquid-icon{
  transform:scale(1.08);
  filter:drop-shadow(0 6px 14px rgba(37, 211, 102, 0.70));
}

/* Status indicator beacon */
.wa-status-beacon{
  position:absolute;
  top:7px;
  right:7px;
  width:10px;
  height:10px;
  z-index:4;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

html[dir="rtl"] .wa-status-beacon{
  right:auto;
  left:7px;
}

.wa-beacon-core{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#25d366;
  box-shadow:0 0 8px #25d366, 0 0 16px rgba(37, 211, 102, 0.9);
  animation:waSlowBlink 2.4s ease-in-out infinite;
}

.wa-beacon-ping{
  position:absolute;
  inset:-3px;
  border-radius:50%;
  background:rgba(37, 211, 102, 0.45);
  animation:waSlowPulse 2.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes waSlowBlink{
  0%, 100%{
    opacity:1;
    transform:scale(1);
    box-shadow:0 0 8px #25d366, 0 0 16px rgba(37, 211, 102, 0.9);
  }
  50%{
    opacity:0.25;
    transform:scale(0.85);
    box-shadow:0 0 2px #25d366, 0 0 4px rgba(37, 211, 102, 0.3);
  }
}

@keyframes waSlowPulse{
  0%{
    transform:scale(0.7);
    opacity:0.85;
  }
  60%{
    transform:scale(2.3);
    opacity:0;
  }
  100%{
    transform:scale(2.3);
    opacity:0;
  }
}

/* ============================================================
   Scroll to Top
   ============================================================ */
.scroll-top{
  position:fixed;
  bottom:24px;
  right:24px;
  left:auto;
  z-index:140;
  width:46px;height:46px;border-radius:50%;
  background:var(--glass-dark-bg);
  border:1px solid var(--glass-dark-border);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  display:flex;align-items:center;justify-content:center;
  color:var(--white);cursor:pointer;
  opacity:0;pointer-events:none;
  transition:opacity .3s, transform .25s ease;
}
html[dir="rtl"] .scroll-top{
  right:auto!important;
  left:24px!important;
}
.scroll-top.show{opacity:1;pointer-events:auto;}
.scroll-top svg{width:18px;height:18px;}

/* ============================================================
   Generative Tech Canvas & Living Atmosphere
   ============================================================ */
.tech-canvas{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none;opacity:.42;mix-blend-mode:screen;}
.hero-glow{
  position:absolute;inset:0;pointer-events:none;z-index:1;
  background:radial-gradient(420px circle at var(--mx,50%) var(--my,30%), rgba(166,206,57,0.16), transparent 60%);
  transition:background .15s ease-out;
}
.living-field{
  position:fixed;inset:0;z-index:0;pointer-events:none;opacity:.45;
  background-image:
    linear-gradient(rgba(166,206,57,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(166,206,57,.022) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.8),transparent 88%);
  animation:gridBreath 12s ease-in-out infinite alternate;
}
@keyframes gridBreath{from{opacity:.25;transform:scale(1);}to{opacity:.5;transform:scale(1.015);}}

.cursor-dot{
  position:fixed;top:0;left:0;width:9px;height:9px;border-radius:50%;
  background:var(--lime);z-index:999;pointer-events:none;
  transform:translate(-50%,-50%);
  transition:transform .12s ease-out, opacity .3s;
  mix-blend-mode:difference;
}
.cursor-ring{
  position:fixed;top:0;left:0;width:34px;height:34px;border-radius:50%;
  border:1.5px solid rgba(166,206,57,0.7);z-index:999;pointer-events:none;
  transform:translate(-50%,-50%);
  transition:transform .35s cubic-bezier(.22,.9,.32,1), width .25s, height .25s, opacity .3s;
}
.cursor-ring.big{width:56px;height:56px;border-color:rgba(255,255,255,0.6);}
@media (hover:none), (max-width:900px){
  .cursor-dot,.cursor-ring{display:none;}
}

.reveal{
  opacity:0;transform:translateY(26px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view{opacity:1;transform:translateY(0);}

@media (max-width:768px){
  /* iOS Safari Auto-Zoom Fix: Prevent zoom on input focus by ensuring 16px minimum */
  .field input, .field select, .field textarea,
  .community-form .field input, .community-form .field textarea {
    font-size: 16px !important;
  }
  .whatsapp-launcher{
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    left: calc(18px + env(safe-area-inset-left, 0px));
    right: auto;
  }
  html[dir="rtl"] .whatsapp-launcher{
    right: calc(18px + env(safe-area-inset-right, 0px))!important;
    left: auto!important;
    align-items: flex-start !important;
  }
  .scroll-top{
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    right: calc(18px + env(safe-area-inset-right, 0px));
    left: auto;
  }
  html[dir="rtl"] .scroll-top{
    right: auto!important;
    left: calc(18px + env(safe-area-inset-left, 0px))!important;
  }
  .nav-toggle{
    width: 42px;
    height: 42px;
  }
}

@media (max-width:560px){
  .nav-wrap{top:38px;padding:0 8px;}
  .hero{padding-top:112px;}
  .nav{padding:8px 10px 8px 12px;}
  .team-icon-btn{width:44px;height:44px;}
  .community-panel{padding:20px 16px;border-radius:20px;}
  .community-panel h3{font-size:22px;}
  .whatsapp-launcher{
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    left: calc(14px + env(safe-area-inset-left, 0px));
    right: auto;
  }
  html[dir="rtl"] .whatsapp-launcher{
    right: calc(14px + env(safe-area-inset-right, 0px))!important;
    left: auto!important;
    align-items: flex-start !important;
  }
  .whatsapp-fab{width:54px;height:54px;border-radius:16px;}
  .whatsapp-fab .wa-liquid-icon{width:32px;height:32px;}
  .scroll-top{
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    right: calc(14px + env(safe-area-inset-right, 0px));
    left: auto;
  }
  html[dir="rtl"] .scroll-top{
    right: auto!important;
    left: calc(14px + env(safe-area-inset-left, 0px))!important;
  }
  .service-dialog{width:calc(100vw - 16px);max-width:calc(100vw - 16px);border-radius:22px;}
  .service-body{padding:26px 18px 22px;}
  .service-body h2{font-size:clamp(24px, 6.5vw, 30px);}
  .estimator-builder, .estimator-summary{padding:20px 16px;border-radius:20px;}
}

@media (max-width:420px){
  .container{padding:0 16px;}
  .hero h1{font-size:clamp(26px, 8.2vw, 34px);line-height:1.15;}
  .section-head h2{font-size:clamp(24px, 7.5vw, 30px);}
  .bento .card{padding:18px 15px;}
  .choice-pill{padding:8px 12px;font-size:12.5px;}
}

/* ============================================================
   BENTO & ENTERPRISE CARDS DYNAMIC SPOTLIGHT GLOW
   ============================================================ */
.bento .card::after,
.hero-panel::after,
.estimator-builder::after,
.estimator-summary::after,
.topology-board::after,
.promise-card::after,
.contact-card::after,
.community-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--card-mx, -999px) var(--card-my, -999px), rgba(166, 206, 57, 0.14), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.bento .card:hover::after,
.hero-panel:hover::after,
.estimator-builder:hover::after,
.estimator-summary:hover::after,
.topology-board:hover::after,
.promise-card:hover::after,
.contact-card:hover::after,
.community-panel:hover::after {
  opacity: 1;
}
.bento .card > *,
.hero-panel > *,
.promise-card > *,
.contact-card > *,
.community-panel > * {
  position: relative;
  z-index: 2;
}

/* ============================================================
   INTERACTIVE IT INFRASTRUCTURE TOPOLOGY EXPLORER
   ============================================================ */
.section-topology {
  background: radial-gradient(90% 70% at 50% 10%, #131922 0%, var(--canvas-dark) 80%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topology-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.topology-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.topology-tab:hover {
  background: rgba(166, 206, 57, 0.08);
  color: var(--white);
  border-color: rgba(166, 206, 57, 0.3);
}
.topology-tab.active {
  background: linear-gradient(135deg, rgba(166, 206, 57, 0.22), rgba(127, 168, 44, 0.15));
  border-color: var(--lime);
  color: #efffcf;
  box-shadow: 0 0 24px -6px rgba(166, 206, 57, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.topology-tab .tab-badge {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.topology-tab.active .tab-badge {
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.topology-board {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  background: rgba(16, 22, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 32px 80px -30px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.topology-board::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 206, 57, 0.12), transparent 70%);
  pointer-events: none;
}
.topology-canvas-wrap {
  position: relative;
  background: rgba(8, 12, 17, 0.7);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}
.topology-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(166, 206, 57, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 206, 57, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.topology-svg {
  width: 100%;
  height: 100%;
  min-height: 380px;
  position: relative;
  z-index: 2;
}
.topology-node {
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.topology-node:hover,
.topology-node.active-node {
  filter: drop-shadow(0 0 16px rgba(166, 206, 57, 0.65));
}
.topology-node circle.node-bg {
  fill: #121820;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 2;
  transition: all 0.3s var(--ease);
}
.topology-node:hover circle.node-bg,
.topology-node.active-node circle.node-bg {
  stroke: var(--lime);
  fill: #182315;
  stroke-width: 2.5;
}
.topology-node text.node-label {
  fill: #efffcf;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-anchor: middle;
}
.topology-node text.node-sub {
  fill: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 9px;
  text-anchor: middle;
}

/* Pulsing packet animation */
@keyframes packetFlow {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}
.flow-line {
  stroke: rgba(166, 206, 57, 0.35);
  stroke-width: 2;
  stroke-dasharray: 6 6;
  animation: packetFlow 12s linear infinite;
}
.flow-line.fast {
  stroke: var(--lime);
  animation-duration: 6s;
  filter: drop-shadow(0 0 6px rgba(166, 206, 57, 0.7));
}

/* Topology Detail Inspector */
.topology-inspector {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.035);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.inspector-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.inspector-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(166, 206, 57, 0.12);
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.inspector-latency {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-family: monospace;
}
.inspector-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 12px 24px -8px rgba(127, 168, 44, 0.6);
}
.inspector-icon svg {
  width: 26px;
  height: 26px;
  stroke: #11150F;
}
.inspector-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.inspector-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.inspector-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.spec-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
}
.spec-box strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.spec-box span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  margin-top: 2px;
}
.inspector-role {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  margin-top: auto;
}
.inspector-role small {
  color: var(--lime);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}
.inspector-role p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 980px) {
  .topology-board {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SMART SOLUTION ESTIMATOR / SCOPE BUILDER
   ============================================================ */
.section-estimator {
  background: linear-gradient(180deg, var(--canvas-dark) 0%, #0d1218 50%, var(--canvas-dark) 100%);
  position: relative;
}
.estimator-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-top: 36px;
}
.estimator-builder {
  background: rgba(16, 22, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 28px 70px -30px rgba(0, 0, 0, 0.85);
}
.step-group {
  margin-bottom: 28px;
}
.step-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}
.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  color: #11150F;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choice-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  user-select: none;
}
.choice-pill:hover {
  background: rgba(166, 206, 57, 0.08);
  border-color: rgba(166, 206, 57, 0.3);
  color: var(--white);
}
.choice-pill.active {
  background: linear-gradient(135deg, rgba(166, 206, 57, 0.22), rgba(127, 168, 44, 0.16));
  border-color: var(--lime);
  color: #efffcf;
  box-shadow: 0 0 18px -4px rgba(166, 206, 57, 0.45);
}
.choice-pill .check-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.choice-pill.active .check-icon {
  background: var(--lime);
  border-color: var(--lime);
  color: #11150F;
}

/* Estimator Output Card */
.estimator-summary {
  background: linear-gradient(155deg, rgba(22, 30, 42, 0.9), rgba(11, 16, 22, 0.95));
  border: 1px solid rgba(166, 206, 57, 0.25);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 32px 80px -28px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(166, 206, 57, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.estimator-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
}
.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.summary-badge {
  color: var(--lime);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.summary-status {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}
.summary-scope-title {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.summary-items {
  list-style: none;
  margin: 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}
.summary-items li svg {
  width: 16px;
  height: 16px;
  stroke: var(--lime);
  flex: none;
}
.summary-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.metric-box strong {
  display: block;
  font-size: 18px;
  font-family: var(--font-display);
  color: #efffcf;
}
.metric-box span {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary-actions .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 980px) {
  .estimator-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BEYOND EXCELLENCE INTERACTIVE TIMELINE HIGHLIGHT
   ============================================================ */
.promise-card {
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.promise-card.active-phase {
  border-color: var(--lime) !important;
  background: linear-gradient(145deg, rgba(166, 206, 57, 0.16), rgba(255, 255, 255, 0.04)) !important;
  box-shadow: 0 0 28px -6px rgba(166, 206, 57, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-4px);
}

/* ============================================================
   Action Feedback Notification Toast (Mail / Call fallback)
   ============================================================ */
.gi-action-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  max-width: min(92vw, 560px);
  background: rgba(14, 20, 28, 0.94);
  border: 1px solid rgba(166, 206, 57, 0.4);
  border-radius: 16px;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.9), 0 0 25px -8px rgba(166, 206, 57, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #fff;
}
.gi-action-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.gi-action-toast-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(166, 206, 57, 0.15);
  border: 1px solid rgba(166, 206, 57, 0.3);
}
.gi-action-toast-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.gi-action-toast-title {
  font-weight: 700;
  color: #fff;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gi-action-toast-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
}
.gi-action-toast-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
html[dir="rtl"] .gi-action-toast-buttons {
  margin-left: 0;
  margin-right: auto;
}
.gi-toast-link {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.gi-toast-link:hover {
  background: var(--lime);
  color: #0c1218;
  border-color: var(--lime);
}
.gi-toast-close {
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  cursor: pointer;
  transition: color 0.2s;
}
.gi-toast-close:hover {
  color: #fff;
}
@media (max-width: 540px) {
  .gi-action-toast {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
    bottom: 20px;
  }
  .gi-action-toast-buttons {
    width: 100%;
    margin: 0;
    justify-content: flex-start;
  }
}
.promise-card.active-phase span {
  color: var(--lime) !important;
  text-shadow: 0 0 14px rgba(166, 206, 57, 0.6);
}
