/* ════════════════════════════════════════
   Smart Step — Main Stylesheet
   ════════════════════════════════════════ */

:root {
  --teal:        #399E9E;
  --teal-light:  #4BBDBD;
  --teal-dark:   #2A7A7A;
  --teal-glass:  rgba(57,158,158,.12);
  --navy:        #2D3F50;
  --navy-deep:   #1A2836;
  --navy-glass:  rgba(45,63,80,.08);
  --green:       #90BF45;
  --green-dark:  #6A9A2A;
  --green-glass: rgba(144,191,69,.12);
  --white:       #FFFFFF;
  --off-white:   #F8FAFB;
  --gray-50:     #F5F7F9;
  --gray-100:    #EEF1F5;
  --gray-200:    #DDE3EB;
  --gray-300:    #C4CDD8;
  --gray-400:    #9AAAB8;
  --gray-500:    #728292;
  --gray-600:    #5B7183;
  --r-xs:        4px;
  --r-sm:        8px;
  --r-md:        14px;
  --r-lg:        22px;
  --r-xl:        32px;
  --shadow-xs:   0 1px 4px rgba(26,40,54,.06);
  --shadow-sm:   0 2px 10px rgba(26,40,54,.08);
  --shadow-md:   0 8px 32px rgba(26,40,54,.12);
  --shadow-lg:   0 20px 60px rgba(26,40,54,.18);
  --shadow-xl:   0 32px 80px rgba(26,40,54,.24);
  --font:        'Tajawal', 'IBM Plex Sans Arabic', sans-serif;
  --ease:        cubic-bezier(0.16,1,0.3,1);
  --fast:        160ms;
  --normal:      300ms;
  --slow:        500ms;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--navy-deep);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto;
}
.section { padding-block: clamp(5rem, 8vw, 8rem); }
.section--sm { padding-block: clamp(3rem, 5vw, 5rem); }

/* ── SHARED ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-glass);
  border: 1px solid rgba(57,158,158,.2);
  padding: .35rem .9rem;
  border-radius: 99px;
  margin-bottom: 1.1rem;
}
.tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.tag--green {
  color: var(--green-dark);
  background: var(--green-glass);
  border-color: rgba(144,191,69,.25);
}
.tag--green::before { background: var(--green); }

h2.h-section {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .9rem;
}
h2.h-section--white { color: var(--white); }
.lead {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 560px;
}
.lead--white { color: rgba(255,255,255,.65); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.8rem;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--normal) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(57,158,158,.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57,158,158,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}
.btn svg { transition: transform var(--fast); }
.btn:hover svg { transform: translateX(-4px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.navbar {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 999;
  padding: 1rem 0;
  transition: all var(--normal) var(--ease);
}
.navbar.scrolled {
  background: rgba(26,40,54,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: .7rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--fast);
}
.nav-logo:hover img { opacity: .85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: var(--r-xs);
  transition: all var(--fast);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--teal); }
.nav-end { display: flex; align-items: center; gap: 1rem; }

/* Mobile nav toggle + panel */
.nav-toggle{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: background var(--fast), border-color var(--fast), transform var(--fast);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); }
.nav-toggle:active { transform: scale(.98); }
.nav-toggle span{
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.85);
  transition: transform var(--normal) var(--ease), opacity var(--normal) var(--ease);
}

.mobile-nav{
  position: absolute;
  top: 100%;
  inset-inline: 0;
  background: rgba(26,40,54,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.07);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--normal) var(--ease), transform var(--normal) var(--ease);
}
.navbar.nav-open .mobile-nav{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav-inner{
  padding: 1rem 0 1.25rem;
  display: grid;
  gap: .55rem;
}
.mobile-nav-link{
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  font-weight: 600;
  padding: .7rem .9rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0);
  transition: background var(--fast), border-color var(--fast), color var(--fast);
}
.mobile-nav-link:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}
.mobile-cta{
  width: 100%;
  justify-content: center;
  margin-top: .25rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100svh;
  background: var(--navy-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,158,158,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,158,158,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow-a {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,158,158,.14) 0%, transparent 65%);
  top: -300px; right: -200px;
  pointer-events: none;
}
.hero-glow-b {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144,191,69,.09) 0%, transparent 65%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
  padding-block: 9rem 6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(57,158,158,.12);
  border: 1px solid rgba(57,158,158,.28);
  padding: .45rem 1rem .45rem .6rem;
  border-radius: 99px;
  font-size: .8rem;
  color: var(--teal-light);
  font-weight: 600;
  margin-bottom: 1.75rem;
  width: fit-content;
}
.hero-badge-pulse {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(144,191,69,.5);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(144,191,69,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(144,191,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(144,191,69,0); }
}
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.hero h1 .accent { color: var(--teal); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 2.5rem;
}
.hero-stats { display: flex; gap: 3rem; }
.hstat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: .25rem;
}
.hstat span { font-size: .8rem; color: rgba(255,255,255,.45); font-weight: 500; }

/* Hero Visual */
.hero-visual { display: flex; flex-direction: column; gap: 1rem; }
.hv-main {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 1.75rem;
  transition: border-color var(--normal);
}
.hv-main:hover { border-color: rgba(57,158,158,.35); }
.hv-main-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: rgba(57,158,158,.18);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.hv-main-num { font-size: 2.8rem; font-weight: 800; color: var(--teal); line-height: 1; }
.hv-main-label { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; }
.hv-main-sub { font-size: .82rem; color: rgba(255,255,255,.45); }
.hv-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hv-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: all var(--normal) var(--ease);
}
.hv-card:hover { border-color: rgba(57,158,158,.3); transform: translateY(-3px); }
.hv-card-icon { font-size: 1.5rem; margin-bottom: .9rem; }
.hv-card h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.hv-card p { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CLIENTS STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.clients {
  background: var(--gray-50);
  border-block: 1px solid var(--gray-200);
  padding: 2.25rem 0;
}
.clients-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.client-chip {
  height: 38px;
  padding-inline: 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 9px;
  display: flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  transition: all var(--normal);
  background: var(--white);
}
.client-chip:hover { color: var(--navy); border-color: var(--teal); background: var(--teal-glass); }

.logo-marquee{
  --logo-gap: 56px;
  --logo-height: 85px;

  overflow: hidden;
  width: 100%;
  padding: 16px 0;
  position: relative;

  /* Fade على الأطراف */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.logo-scroller{
  display: flex;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.logo-scroller::-webkit-scrollbar{ display: none; }

.logo-track{
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  width: max-content;
  margin-inline: auto;
  padding-block: 2px;
}

.logo-track img{
  height: var(--logo-height);
  width: auto;
  opacity: 1;
  flex-shrink: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: reduce){
  .logo-scroller{ scroll-behavior: auto; }
}

/* Logo custom scrollbar */
.logo-scrollbar {
  width: 100%;
  max-width: 320px;
  height: 6px;
  background: var(--gray-200);
  border-radius: 99px;
  margin: 1.25rem auto 0;
  position: relative;
  cursor: pointer;
  direction: ltr;
  overflow: hidden;
}
.logo-scrollbar-thumb {
  height: 100%;
  border-radius: 99px;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  cursor: grab;
  will-change: left;
}
.logo-scrollbar-thumb:hover,
.logo-scrollbar-thumb.dragging {
  box-shadow: 0 0 8px rgba(57,158,158,.45);
  cursor: grabbing;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-card-main {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2.75rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(57,158,158,.12);
  top: -80px; left: -80px;
}
.about-card-main::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(144,191,69,.08);
  bottom: -50px; right: -50px;
}
.about-card-content { position: relative; z-index: 1; }
.about-qmark { font-size: 4rem; line-height: .5; color: var(--teal); font-family: Georgia, serif; margin-bottom: 1rem; display: block; }
.about-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.8);
  font-weight: 400;
  margin-bottom: 2.25rem;
}
.about-ceo-row { display: flex; align-items: center; gap: 1rem; }
.ceo-av {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.ceo-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ceo-name { font-size: .95rem; font-weight: 700; color: var(--white); }
.ceo-title { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .15rem; }

.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: .9rem;
  z-index: 2;
}
.float-badge.tl { top: -1.25rem; left: -1.75rem; }
.float-badge.br { bottom: -2.5rem; right: 6rem; }
.fb-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.fb-icon-teal { background: var(--teal-glass); }
.fb-icon-green { background: var(--green-glass); }
.fb-val { font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.fb-lbl { font-size: .72rem; color: var(--gray-500); font-weight: 500; margin-top: .15rem; }

.values-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 2.25rem;
}
.value-pill {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  padding: .7rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--normal);
  cursor: default;
}
.value-pill:hover {
  background: var(--teal-glass);
  border-color: rgba(57,158,158,.35);
  color: var(--teal-dark);
}
.vp-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.about-actions { display: flex; gap: 1rem; margin-top: 2.5rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services { background: var(--gray-50); }
.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all var(--normal) var(--ease);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 3px;
  background: var(--teal);
  transition: width var(--normal) var(--ease);
}
.svc-card:hover::after { width: 100%; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(57,158,158,.18); }

.svc-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  grid-column: 1;
  grid-row: span 2;
}
.svc-card.featured::after { background: var(--teal); }
.svc-card.featured .svc-num,
.svc-card.featured .svc-title { color: var(--white); }
.svc-card.featured .svc-desc { color: rgba(255,255,255,.6); }
.svc-card.featured .svc-icon { background: rgba(57,158,158,.2); }
.svc-card.featured .svc-link { color: var(--teal-light); }

.svc-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--teal-glass);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  transition: transform var(--normal) var(--ease);
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-6deg); }
.svc-num { font-size: .7rem; font-weight: 700; letter-spacing: .1em; color: var(--gray-400); margin-bottom: .6rem; }
.svc-title { font-size: .95rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: .6rem; }
.svc-desc {
  font-size: .84rem;
  color: var(--gray-600);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-desc.expanded {
  -webkit-line-clamp: unset;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: 1.1rem;
  transition: gap var(--fast);
}
.svc-link:hover { gap: .7rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   METRICS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.metrics {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.metrics-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.035) 1px, transparent 0);
  background-size: 30px 30px;
}
.metrics-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.met-item {
  padding: 3rem 2rem;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.07);
}
.met-item:last-child { border-right: 1px solid rgba(255,255,255,.07); }
.met-num {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: block;
  margin-bottom: .4rem;
}
.met-suffix { color: var(--green); font-size: .65em; }
.met-label { font-size: .88rem; color: rgba(255,255,255,.5); font-weight: 500; line-height: 1.5; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.prod-card {
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.prod-card.navy-card { background: var(--navy); }
.prod-card.teal-card { background: var(--teal-glass); border: 2px solid rgba(57,158,158,.22); }
.prod-card.green-card { background: var(--green-glass); border: 2px solid rgba(144,191,69,.22); }
.prod-card.white-card { background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }

.prod-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .32rem .8rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.navy-card .prod-badge { background: rgba(57,158,158,.25); color: var(--teal-light); }
.teal-card .prod-badge { background: rgba(57,158,158,.18); color: var(--teal-dark); }
.green-card .prod-badge { background: rgba(144,191,69,.22); color: var(--green-dark); }
.white-card .prod-badge { background: rgba(57,158,158,.15); color: var(--teal); }

.prod-name {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.navy-card .prod-name { color: var(--white); }
.teal-card .prod-name, .green-card .prod-name, .white-card .prod-name { color: var(--navy); }

.prod-desc { font-size: .88rem; line-height: 1.8; margin-bottom: 2rem; }
.navy-card .prod-desc { color: rgba(255,255,255,.6); }
.teal-card .prod-desc, .green-card .prod-desc, .white-card .prod-desc { color: var(--gray-600); }

.prod-feats { display: flex; flex-direction: column; gap: .55rem; }
.feat-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .83rem;
  font-weight: 500;
}
.navy-card .feat-item { color: rgba(255,255,255,.72); }
.teal-card .feat-item, .green-card .feat-item, .white-card .feat-item { color: var(--gray-600); }
.feat-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .65rem;
  font-weight: 800;
}
.navy-card .feat-check { background: rgba(57,158,158,.25); color: var(--teal-light); }
.teal-card .feat-check { background: rgba(57,158,158,.18); color: var(--teal); }
.green-card .feat-check { background: rgba(144,191,69,.22); color: var(--green-dark); }
.white-card .feat-check { background: rgba(57,158,158,.15); color: var(--teal); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VALUE PROP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.valprop { background: var(--gray-50); }
.valprop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.pillars { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2.25rem; }
.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  transition: all var(--normal) var(--ease);
  cursor: default;
}
.pillar:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateX(-4px);
}
.pillar-n {
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(57,158,158,.18);
  line-height: 1;
  min-width: 1.8rem;
  font-variant-numeric: tabular-nums;
}
.pillar h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.pillar p { font-size: .85rem; color: var(--gray-600); line-height: 1.7; }

.valprop-visual {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
}
.valprop-visual::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(57,158,158,.1);
}
.vv-content { position: relative; z-index: 1; }
.vv-title { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: .85rem; }
.vv-sub { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 2rem; }
.steps { display: flex; flex-direction: column; gap: .85rem; }
.step-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: .9rem 1.15rem;
  transition: border-color var(--normal);
}
.step-row:hover { border-color: rgba(57,158,158,.3); }
.step-ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(57,158,158,.2);
  display: grid;
  place-items: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.step-txt { font-size: .86rem; font-weight: 500; color: rgba(255,255,255,.78); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CASE STUDIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.case-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--normal) var(--ease);
  cursor: pointer;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(57,158,158,.2); }
.case-thumb {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.ct-teal { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.ct-navy { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); }
.ct-green { background: linear-gradient(135deg, #4a7a10, var(--green)); }
.case-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  padding: .28rem .75rem;
  border-radius: 99px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
}
.case-body { padding: 1.75rem; }
.case-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: .9rem; }
.case-sector { font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: var(--teal); text-transform: uppercase; }
.case-yr { font-size: .72rem; color: var(--gray-400); }
.case-title { font-size: .95rem; font-weight: 700; color: var(--navy); line-height: 1.45; margin-bottom: .7rem; }
.case-desc { font-size: .83rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; }
.case-kpi {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--gray-50);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  border: 1px solid var(--gray-200);
}
.kpi-num { font-size: 1.4rem; font-weight: 800; color: var(--teal); }
.kpi-lbl { font-size: .78rem; color: var(--gray-600); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TEAM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.team { background: var(--gray-50); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.tm-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--normal) var(--ease);
}
.tm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tm-card.ceo-card { border-top: 3px solid var(--teal); }
.tm-av {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--teal);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 1.1rem;
  letter-spacing: .03em;
  overflow: hidden;
}
.tm-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tm-card.ceo-card .tm-av {
  background: var(--navy);
}
.tm-name { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.tm-role { font-size: .8rem; font-weight: 600; color: var(--teal); }

.team-ext {
  margin-top: 2rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.75rem 2rem;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ext-avs { display: flex; align-items: center; }
.ext-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 3px solid var(--white);
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  margin-right: -10px;
}
.ext-av:nth-child(1) { background: var(--teal); }
.ext-av:nth-child(2) { background: var(--navy); }
.ext-av:nth-child(3) { background: var(--green-dark); }
.ext-av:nth-child(4) { background: #5B7183; }
.ext-av.more { background: var(--gray-100); color: var(--navy); border-color: var(--gray-200); font-size: .72rem; }
.ext-text strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.ext-text span { font-size: .85rem; color: var(--gray-600); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INSIGHTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.insights-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.ins-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--normal) var(--ease);
  cursor: pointer;
}
.ins-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ins-thumb {
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.ins-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins-card:first-child .ins-thumb { height: 255px; }
.it-navy { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); }
.it-teal { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.it-green { background: linear-gradient(135deg, #3d6810, var(--green)); }
.ins-type {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  padding: .28rem .75rem;
  border-radius: 99px;
  font-size: .68rem;
  font-weight: 700;
  color: var(--white);
}
.ins-body { padding: 1.4rem 1.5rem; }
.ins-cat { font-size: .7rem; font-weight: 700; letter-spacing: .08em; color: var(--teal); text-transform: uppercase; margin-bottom: .5rem; }
.ins-title { font-size: .9rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: .5rem; }
.ins-card:first-child .ins-title { font-size: 1.1rem; }
.ins-date { font-size: .75rem; color: var(--gray-400); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA BAND
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-band {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0);
  background-size: 26px 26px;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: .65rem;
}
.cta-band p { font-size: .95rem; color: rgba(255,255,255,.72); max-width: 480px; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.55);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .f-logo img { height: 96px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .86rem; line-height: 1.8; max-width: 270px; margin-bottom: 1.5rem; }
.f-contacts { display: flex; flex-direction: column; gap: .55rem; }
.f-contacts a {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  transition: color var(--fast);
}
.f-contacts a:hover { color: var(--teal); }
.socials { display: flex; gap: .65rem; margin-top: 1.25rem; }
.soc-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  display: grid;
  place-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: all var(--normal);
}
.soc-link:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer-col h5 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: 1.1rem;
}
.f-links { display: flex; flex-direction: column; gap: .6rem; }
.f-links a { font-size: .83rem; color: rgba(255,255,255,.45); transition: color var(--fast); }
.f-links a:hover { color: var(--teal); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  font-size: .8rem;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.3);
}
.fb-links { display: flex; gap: 1.5rem; }
.fb-links a { color: rgba(255,255,255,.28); font-size: .78rem; transition: color var(--fast); }
.fb-links a:hover { color: var(--teal); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card.featured { grid-column: span 2; grid-row: auto; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .met-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.07); }
  .met-item { border-top: 1px solid rgba(255,255,255,.07); }
  .met-item:first-child, .met-item:nth-child(2) { border-top: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .float-badge.tl, .float-badge.br { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .valprop-inner { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-logo img { height: 72px; }
}
@media (max-width: 600px) {
  .cases-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .met-item { border-left: none; border-right: none; }
  .met-item:last-child { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .sec-header { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.5rem; }
  .cta-band-inner { flex-direction: column; }
  .nav-logo img { height: 64px; }
  .footer-brand .f-logo img { height: 80px; }
  .logo-marquee{ --logo-gap: 32px; --logo-height: 64px; --logo-step: 260px; }
  .logo-scroller{ padding-inline: 52px; }
}
