/* TecHands 2026 — Modern, customer-centric, AI-first
   Built on the TecHands Design System tokens.
   ----------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  --brand-blue:     #1E6BFF;
  --brand-blue-600: #1557DB;
  --brand-blue-700: #0F44B0;
  --brand-blue-50:  #EEF4FF;
  --brand-glow:     #4D8DFF;

  --navy-900: #0A0F1E;
  --navy-800: #0F172A;
  --navy-700: #1E293B;

  --amber:    #F5B301;
  --amber-50: #FFF8E1;

  --white:    #FFFFFF;
  --gray-50:  #F5F7FA;
  --gray-100: #EDF0F5;
  --gray-200: #E5E9EF;
  --gray-300: #D3D9E2;
  --gray-400: #9AA3B2;
  --gray-500: #6B7380;
  --gray-600: #4A525E;
  --gray-700: #2F3743;
  --gray-800: #1C2230;
  --gray-900: #0D121C;

  --fg-1: #0A0F1E;
  --fg-2: #4A525E;
  --fg-3: #6B7380;

  --container: 1240px;
  --gutter: 24px;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(17,24,39,.06);
  --shadow-md: 0 1px 2px rgba(17,24,39,.04), 0 4px 16px rgba(17,24,39,.06);
  --shadow-lg: 0 2px 4px rgba(17,24,39,.04), 0 12px 32px rgba(17,24,39,.10);
  --shadow-glow: 0 10px 40px rgba(30,107,255,0.35);

  --ease: cubic-bezier(.2,.8,.2,1);
}

@media (min-width: 1024px) { :root { --gutter: 48px; } }

/* ───── Reset ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--fg-1);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Manrope', sans-serif; color: var(--fg-1); text-wrap: balance; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--brand-blue);
  opacity: .6;
}
.eyebrow.on-dark { color: var(--brand-glow); }
.eyebrow.on-dark::before { background: var(--brand-glow); }

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 600;
  border-radius: var(--r-md);
  transition: all .18s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--brand-blue); color: #fff;
  box-shadow: 0 4px 14px rgba(30,107,255,.35);
}
.btn-primary:hover { background: var(--brand-blue-600); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(30,107,255,.45); }
.btn-primary:active { transform: translateY(0); background: var(--brand-blue-700); }
.btn-secondary {
  background: #fff; color: var(--navy-900); border-color: var(--gray-300);
}
.btn-secondary:hover { background: var(--gray-50); border-color: var(--navy-900); }
.btn-secondary.on-dark {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.25);
}
.btn-secondary.on-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.btn-ghost { padding: 8px 0; color: var(--brand-blue); }
.btn-ghost:hover { gap: 14px; }
.btn .fa-arrow-right { transition: transform .18s var(--ease); }
.btn:hover .fa-arrow-right { transform: translateX(3px); }

/* ───── Navbar ───── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,14,26,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s var(--ease);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 42px; height: 42px; object-fit: contain; }
.nav-logo .logo-wm { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-wm .lt {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 22px; letter-spacing: -0.01em;
  color: #fff;
}
.nav-logo .logo-wm .lt .tec { color: #fff; }
.nav-logo .logo-wm .lt .hands { color: var(--brand-glow); }
.nav-logo .logo-wm .ls {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
}
.nav-menu {
  display: flex; gap: 4px; align-items: center;
}
.nav-menu a {
  position: relative;
  padding: 10px 14px;
  font-size: 14px; font-weight: 600;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0;
  color: rgba(255,255,255,.7);
  border-radius: var(--r-sm);
  transition: all .15s var(--ease);
  display: inline-flex; align-items: center;
  line-height: 1;
}
.nav-menu a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-menu a.active { color: #fff; }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--brand-glow);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--brand-glow);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .linkedin {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .15s var(--ease);
  font-size: 16px;
}
.nav-cta .linkedin:hover { color: #fff; background: #0A66C2; border-color: #0A66C2; }
.nav-cta .btn { padding: 10px 18px; font-size: 13px; }

.hamburger { display: none; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); color: #fff; }

@media (max-width: 980px) {
  .nav-menu, .nav-cta .btn { display: none; }
  .hamburger { display: inline-flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-900);
    padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    gap: 4px;
  }
  .nav-menu.open a { width: 100%; padding: 12px 14px; }
}

/* ───── HERO ───── */
.hero {
  position: relative;
  min-height: 720px;
  padding: 140px 0 90px;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 980px) { .hero { min-height: 0; padding-bottom: 110px; } }
/* video background */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: saturate(1.05) contrast(1.05);
}
/* dark + blue tint overlay */
.hero-video-overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 1200px 700px at 70% 30%, rgba(30,107,255,.30), transparent 60%),
    radial-gradient(ellipse 800px 500px at 20% 80%, rgba(77,141,255,.18), transparent 65%),
    linear-gradient(180deg, rgba(10,14,26,.65) 0%, rgba(10,14,26,.88) 100%);
}
/* faint grid texture */
.hero-grid-fx {
  position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: .8;
  pointer-events: none;
}

/* floating particles */
.hero-particles {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand-glow);
  box-shadow: 0 0 12px var(--brand-glow);
  opacity: 0;
  animation: float-up 14s linear infinite;
}
.hero-particles span:nth-child(1)  { left:  8%; animation-delay: 0s;  animation-duration: 16s; }
.hero-particles span:nth-child(2)  { left: 18%; animation-delay: 2s;  animation-duration: 13s; width:3px; height:3px; }
.hero-particles span:nth-child(3)  { left: 28%; animation-delay: 5s;  animation-duration: 18s; }
.hero-particles span:nth-child(4)  { left: 38%; animation-delay: 7s;  animation-duration: 14s; width:5px; height:5px; }
.hero-particles span:nth-child(5)  { left: 48%; animation-delay: 1s;  animation-duration: 17s; }
.hero-particles span:nth-child(6)  { left: 58%; animation-delay: 4s;  animation-duration: 15s; width:3px; height:3px; }
.hero-particles span:nth-child(7)  { left: 68%; animation-delay: 8s;  animation-duration: 19s; }
.hero-particles span:nth-child(8)  { left: 78%; animation-delay: 3s;  animation-duration: 13s; width:2px; height:2px; }
.hero-particles span:nth-child(9)  { left: 88%; animation-delay: 6s;  animation-duration: 16s; }
.hero-particles span:nth-child(10) { left: 95%; animation-delay: 9s;  animation-duration: 14s; }
@keyframes float-up {
  0%   { transform: translateY(110vh) scale(.8); opacity: 0; }
  10%  { opacity: .9; }
  90%  { opacity: .9; }
  100% { transform: translateY(-10vh) scale(1.1); opacity: 0; }
}

/* top scrolling ticker */
.hero-ticker {
  position: absolute;
  top: 78px; left: 0; right: 0;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(77,141,255,.18);
  border-bottom: 1px solid rgba(77,141,255,.18);
  background: rgba(10,14,26,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.hero-ticker-track {
  display: flex;
  gap: 48px;
  padding: 10px 0;
  width: max-content;
  animation: ticker 38s linear infinite;
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero-ticker-track span { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.hero-ticker-track i { color: var(--brand-glow); }
@keyframes ticker {
  to { transform: translateX(calc(-50% - 24px)); }
}

.hero .container { position: relative; z-index: 3; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 160px; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px;
  background: rgba(30,107,255,.18);
  border: 1px solid rgba(77,141,255,.45);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600;
  color: #e0ecff;
  margin-bottom: 28px;
  font-family: 'Manrope', sans-serif;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 24px rgba(30,107,255,.2);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-glow);
  box-shadow: 0 0 12px var(--brand-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.25); }
}

.hero h1 {
  font-size: clamp(42px, 5.8vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.hero h1 .accent {
  background: linear-gradient(135deg, #82B1FF 0%, var(--brand-glow) 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(77,141,255,.5));
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin-bottom: 36px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* extra glow on primary button in hero */
.btn-glow {
  position: relative;
  box-shadow: 0 4px 14px rgba(30,107,255,.45), 0 0 0 0 rgba(30,107,255,.7);
  animation: btn-pulse 2.6s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(30,107,255,.45), 0 0 0 0 rgba(30,107,255,.6); }
  50%      { box-shadow: 0 8px 22px rgba(30,107,255,.55), 0 0 0 10px rgba(30,107,255,0); }
}

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  font-size: 13px; color: rgba(255,255,255,.65);
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { color: var(--brand-glow); }

/* ─── Hero visual panel (right side) ─── */
.hero-visual {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
  aspect-ratio: 5/5;
  perspective: 1200px;
}
.hero-visual-ring {
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, var(--brand-glow) 90deg, transparent 180deg, var(--brand-glow) 270deg, transparent 360deg);
  filter: blur(40px);
  opacity: .35;
  animation: rotate-ring 12s linear infinite;
}
@keyframes rotate-ring { to { transform: rotate(360deg); } }

.hero-visual-panel {
  position: absolute;
  inset: 36px 36px 36px 36px;
  padding: 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(15,23,42,.92), rgba(5,9,19,.95));
  border: 1px solid rgba(77,141,255,.25);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow), 0 30px 80px rgba(0,0,0,.5),
              inset 0 1px 0 rgba(255,255,255,.06);
  display: flex; flex-direction: column;
  gap: 14px;
  transform: rotate3d(0,1,0,-4deg);
  animation: float-panel 6s ease-in-out infinite;
}
@keyframes float-panel {
  0%, 100% { transform: rotate3d(0,1,0,-4deg) translateY(0); }
  50%      { transform: rotate3d(0,1,0,-4deg) translateY(-8px); }
}

.hvp-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 6px;
}
.hvp-dots { display: inline-flex; gap: 6px; }
.hvp-dots i {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.hvp-dots i:nth-child(1) { background: #FF5F57; }
.hvp-dots i:nth-child(2) { background: #FEBC2E; }
.hvp-dots i:nth-child(3) { background: #28C840; }
.hvp-title {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.02em;
}

.hvp-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.hvp-row .hvp-label {
  color: rgba(255,255,255,.6);
  font-family: 'Inter', sans-serif;
}
.hvp-row .hvp-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hvp-row-small .hvp-value { font-size: 12px; letter-spacing: .12em; }
.hvp-row .hvp-ok {
  color: #28C840;
  background: rgba(40,200,64,.12);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(40,200,64,.3);
  font-size: 11px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #28C840; box-shadow: 0 0 10px #28C840;
  animation: pulse 1.6s infinite;
}

.hvp-bar {
  height: 6px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
}
.hvp-bar-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-glow));
  border-radius: var(--r-pill);
  position: relative;
  animation: bar-grow 3.2s ease-in-out infinite alternate;
  box-shadow: 0 0 12px var(--brand-glow);
}
@keyframes bar-grow {
  from { width: 62%; }
  to   { width: 92%; }
}

.hvp-tag {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(30,107,255,.15);
  border: 1px solid rgba(77,141,255,.35);
  border-radius: var(--r-md);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: #cfe0ff;
  align-self: flex-start;
}
.hvp-tag i { color: var(--brand-glow); }

/* floating stat cards */
.hero-floating-stat {
  position: absolute;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(10,14,26,.88);
  border: 1px solid rgba(77,141,255,.35);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
  z-index: 4;
}
.hero-floating-stat .hfs-n {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  line-height: 1;
}
.hero-floating-stat .hfs-n span { color: var(--brand-glow); }
.hero-floating-stat .hfs-l {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}
.hfs-1 { top: 4%; left: -14px; animation: float-panel 7s ease-in-out infinite; }
.hfs-2 { bottom: 6%; right: -10px; animation: float-panel 8s ease-in-out infinite reverse; }

@media (max-width: 980px) {
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hfs-1 { left: 0; }
  .hfs-2 { right: 0; }
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; z-index: 4;
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  pointer-events: none;
}
.hero-scroll span {
  display: block;
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 14px;
  position: relative;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px;
  background: var(--brand-glow);
  animation: scroll-down 1.8s ease-in-out infinite;
}
@keyframes scroll-down {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}
.hero-scroll em { font-style: normal; }

/* ───── Trust Strip ───── */
.trust-strip {
  background: var(--navy-800);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #fff;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .n {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: #fff;
  line-height: 1;
}
.trust-item .l {
  font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}

/* ───── Sections ───── */
section { padding: 100px 0; }
@media (max-width: 720px) { section { padding: 72px 0; } }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}
.section-head h2 .accent { color: var(--brand-blue); }
.section-head .lead { font-size: 18px; color: var(--fg-2); line-height: 1.6; }

/* ───── AI Spotlight ───── */
.ai-spotlight {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ai-spotlight::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 80% 50%, rgba(30,107,255,.18), transparent 60%);
}
.ai-spotlight .container { position: relative; }
.ai-spotlight .grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center;
}
@media (max-width: 980px) { .ai-spotlight .grid { grid-template-columns: 1fr; gap: 40px; } }
.ai-spotlight.reverse .grid > div:first-child { order: 2; }
.ai-spotlight.reverse .grid > div:last-child  { order: 1; }
@media (max-width: 980px) {
  .ai-spotlight.reverse .grid > div:first-child,
  .ai-spotlight.reverse .grid > div:last-child { order: initial; }
}
/* practice accent variants — change the radial glow + chip / icon tint */
.ai-spotlight.spotlight-security::before {
  background: radial-gradient(ellipse 800px 400px at 20% 50%, rgba(245,179,1,.16), transparent 60%);
}
.ai-spotlight.spotlight-security .eyebrow.on-dark,
.ai-spotlight.spotlight-security .ai-quote em,
.ai-spotlight.spotlight-security .ai-chip i,
.ai-spotlight.spotlight-security .ai-card .ico { color: #FFD24D; }
.ai-spotlight.spotlight-security .ai-quote { border-left-color: #F5B301; }
.ai-spotlight.spotlight-security .ai-chip {
  background: rgba(245,179,1,.08);
  border-color: rgba(245,179,1,.3);
  color: #ffe7a3;
}
.ai-spotlight.spotlight-security .ai-card .ico {
  background: linear-gradient(135deg, rgba(245,179,1,.22), rgba(245,179,1,.04));
  border-color: rgba(245,179,1,.3);
}
.ai-spotlight.spotlight-security .ai-card.feature {
  background: linear-gradient(135deg, rgba(245,179,1,.18), rgba(245,179,1,.04));
  border-color: rgba(245,179,1,.35);
}
.ai-spotlight.spotlight-security .ai-card:hover { border-color: rgba(245,179,1,.4); }

.ai-spotlight.spotlight-it::before {
  background: radial-gradient(ellipse 800px 400px at 80% 50%, rgba(45,212,191,.16), transparent 60%);
}
.ai-spotlight.spotlight-it .eyebrow.on-dark,
.ai-spotlight.spotlight-it .ai-quote em,
.ai-spotlight.spotlight-it .ai-chip i,
.ai-spotlight.spotlight-it .ai-card .ico { color: #5EEAD4; }
.ai-spotlight.spotlight-it .ai-quote { border-left-color: #2DD4BF; }
.ai-spotlight.spotlight-it .ai-chip {
  background: rgba(45,212,191,.08);
  border-color: rgba(94,234,212,.3);
  color: #ccfbf1;
}
.ai-spotlight.spotlight-it .ai-card .ico {
  background: linear-gradient(135deg, rgba(45,212,191,.22), rgba(45,212,191,.04));
  border-color: rgba(94,234,212,.3);
}
.ai-spotlight.spotlight-it .ai-card.feature {
  background: linear-gradient(135deg, rgba(45,212,191,.18), rgba(45,212,191,.04));
  border-color: rgba(94,234,212,.35);
}
.ai-spotlight.spotlight-it .ai-card:hover { border-color: rgba(94,234,212,.4); }
.ai-spotlight.spotlight-it .btn-primary {
  background: #14B8A6;
  box-shadow: 0 4px 14px rgba(20,184,166,.35);
}
.ai-spotlight.spotlight-it .btn-primary:hover { background: #0D9488; box-shadow: 0 8px 22px rgba(20,184,166,.45); }
.ai-spotlight.spotlight-security .btn-primary {
  background: #F5B301; color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(245,179,1,.35);
}
.ai-spotlight.spotlight-security .btn-primary:hover { background: #E0A101; box-shadow: 0 8px 22px rgba(245,179,1,.45); }
.ai-spotlight h2 { color: #fff; }
.ai-spotlight .lead { color: rgba(255,255,255,.75); }

.ai-quote {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
  margin: 28px 0 32px;
  padding-left: 22px;
  border-left: 3px solid var(--brand-glow);
}
.ai-quote em { color: var(--brand-glow); font-style: normal; }

.ai-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.ai-chip {
  padding: 8px 14px;
  background: rgba(30,107,255,.1);
  border: 1px solid rgba(77,141,255,.3);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500;
  color: #cfe0ff;
  font-family: 'Manrope', sans-serif;
}
.ai-chip i { color: var(--brand-glow); margin-right: 6px; }

.ai-card-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ai-card {
  padding: 22px;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.ai-card:hover { transform: translateY(-4px); border-color: rgba(77,141,255,.35); }
.ai-card .ico {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(30,107,255,.25), rgba(30,107,255,.05));
  border: 1px solid rgba(77,141,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-glow);
  font-size: 18px;
  margin-bottom: 14px;
}
.ai-card h4 { color: #fff; font-size: 16px; margin-bottom: 6px; }
.ai-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.55; }
.ai-card.feature {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(30,107,255,.22), rgba(15,68,176,.08));
  border-color: rgba(77,141,255,.4);
}

/* ───── Services ───── */
.services { background: var(--gray-50); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-blue); }
.service-card.featured { border-color: var(--brand-blue); box-shadow: 0 0 0 1px var(--brand-blue), 0 12px 32px rgba(30,107,255,.18); }
.service-card .head {
  position: relative;
  padding: 32px 28px 24px;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.service-card .head::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35;
  z-index: -1;
}
.service-card.dc .head::before { background-image: url('../images/datacenter-hero.jpg'); }
.service-card.sec .head::before { background-image: url('../images/cctv-hero.jpg'); }
.service-card.net .head::before { background-image: url('../images/cabling-hero.jpg'); }
.service-card .head::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,.6) 0%, rgba(10,14,26,.95) 100%);
  z-index: -1;
}
.service-card .head .featured-tag {
  position: absolute; top: 20px; right: 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px;
  background: var(--amber);
  color: var(--navy-900);
  border-radius: var(--r-pill);
}
.service-card .head .ico {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-glow);
  font-size: 22px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.service-card .head h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.service-card .head p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.55; }
.service-card .body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card .body ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.service-card .body ul li {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0;
  font-size: 14px;
  color: var(--fg-2);
  border-bottom: 1px solid var(--gray-200);
  transition: color .15s var(--ease), padding-left .15s var(--ease);
}
.service-card .body ul li:last-child { border-bottom: none; }
.service-card .body ul li i:first-child {
  width: 18px; color: var(--brand-blue); font-size: 13px;
}
.service-card .body ul li .arr {
  margin-left: auto; color: var(--gray-400); font-size: 11px;
  transition: transform .15s var(--ease), color .15s var(--ease);
}
.service-card .body ul li:hover { color: var(--navy-900); padding-left: 6px; }
.service-card .body ul li:hover .arr { color: var(--brand-blue); transform: translateX(3px); }
.service-card .body .cta { margin-top: auto; }

/* ───── Process / Customer journey ───── */
.process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding: 28px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  transition: all .25s var(--ease);
}
.process-step:hover { background: #fff; border-color: var(--brand-blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.process-step .n {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-blue);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.process-step .n::before {
  content: ''; width: 24px; height: 1px; background: var(--brand-blue);
}
.process-step h4 { font-size: 18px; margin-bottom: 10px; color: var(--navy-900); }
.process-step p { font-size: 14px; color: var(--fg-2); line-height: 1.6; }
.process-step .ico {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}

/* ───── Industries ───── */
.industries { background: var(--gray-50); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .industry-grid { grid-template-columns: 1fr; } }

.industry-card {
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: all .2s var(--ease);
}
.industry-card:hover { border-color: var(--brand-blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.industry-card .ico {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-bottom: 14px;
}
.industry-card h4 { font-size: 15px; margin-bottom: 4px; color: var(--navy-900); }
.industry-card p { font-size: 13px; color: var(--fg-3); line-height: 1.5; }

/* ───── Why Us ───── */
.why { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.why::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 500px at 20% 50%, rgba(30,107,255,.12), transparent 60%);
}
.why .container { position: relative; }
.why .section-head h2 { color: #fff; }
.why .section-head .lead { color: rgba(255,255,255,.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  transition: all .25s var(--ease);
}
.why-card:hover { border-color: rgba(77,141,255,.4); transform: translateY(-3px); background: linear-gradient(145deg, rgba(30,107,255,.08), rgba(255,255,255,.02)); }
.why-card .ico {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: rgba(30,107,255,.18);
  border: 1px solid rgba(77,141,255,.3);
  color: var(--brand-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}
.why-card h4 { font-size: 18px; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ───── Client wall ───── */
.clients { background: #fff; padding: 80px 0 100px; }
.clients-headline {
  text-align: center; max-width: 720px; margin: 0 auto 48px;
}
.clients-headline h3 {
  font-size: clamp(22px, 2vw, 28px); color: var(--navy-900); margin: 8px 0 12px;
  font-weight: 700;
}
.clients-headline p { color: var(--fg-2); font-size: 16px; }

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll 45s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll {
  to { transform: translateX(calc(-50% - 8px)); }
}
.logo-chip {
  flex: 0 0 auto;
  height: 64px;
  min-width: 160px;
  padding: 0 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--gray-600);
  letter-spacing: -0.01em;
  transition: all .2s var(--ease);
}
.logo-chip:hover { color: var(--navy-900); background: #fff; border-color: var(--brand-blue); }

/* ───── Testimonials marquee ───── */
.testimonial {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.testimonial::before, .testimonial::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2;
  pointer-events: none;
}
.testimonial::before { left: 0; background: linear-gradient(90deg, var(--gray-50), transparent); }
.testimonial::after  { right: 0; background: linear-gradient(270deg, var(--gray-50), transparent); }

.testimonial .section-head { margin-bottom: 40px; }

.testimonial-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  padding: 12px 0;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: t-scroll 55s linear infinite;
}
.testimonial-marquee:hover .testimonial-track { animation-play-state: paused; }
@keyframes t-scroll {
  to { transform: translateX(calc(-50% - 12px)); }
}

.testimonial-card {
  flex: 0 0 auto;
  width: 420px;
  padding: 32px 30px 28px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue);
}
@media (max-width: 560px) { .testimonial-card { width: 320px; padding: 28px 24px 24px; } }

.testimonial-card .accent-bar {
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-glow));
  border-radius: 0 0 3px 3px;
}
.testimonial-card .stars {
  display: flex; gap: 3px;
  color: var(--amber);
  font-size: 13px;
  margin-bottom: 14px;
}
.testimonial-card blockquote {
  font-family: 'Manrope', sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 24px;
  flex: 1;
}
.testimonial-card blockquote::before {
  content: '“';
  font-size: 56px;
  line-height: 0;
  color: var(--brand-blue);
  opacity: .25;
  vertical-align: -22px;
  margin-right: 4px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}
.testimonial-card .author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.testimonial-card .author .av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--brand-blue));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial-card .author .who { line-height: 1.3; flex: 1; min-width: 0; }
.testimonial-card .author .name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700; color: var(--navy-900); font-size: 14px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.testimonial-card .author .role {
  color: var(--fg-3); font-size: 12.5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.testimonial-card .author .li {
  color: #0A66C2; font-size: 16px;
  flex-shrink: 0;
}

/* ───── Final CTA ───── */
.cta-final {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 900px 500px at 50% 100%, rgba(30,107,255,.25), transparent 60%);
}
.cta-final .container { position: relative; }
.cta-final-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.cta-final h2 {
  font-size: clamp(34px, 4vw, 56px);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 18px 0 20px;
}
.cta-final h2 .accent { color: var(--brand-glow); }
.cta-final p { font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 36px; }
.cta-final .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-final .meta {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.cta-final .meta a { color: rgba(255,255,255,.85); }
.cta-final .meta a:hover { color: var(--brand-glow); }
.cta-final .meta i { color: var(--brand-glow); margin-right: 8px; }

/* ───── Footer ───── */
.footer { background: #050913; color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 18px;
}
.footer p { font-size: 14px; line-height: 1.6; max-width: 320px; margin-bottom: 20px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: color .15s var(--ease);
}
.footer ul a:hover { color: var(--brand-glow); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { width: 44px; height: 44px; }
.footer-logo .lt {
  font-family: 'Manrope', sans-serif; font-weight: 800; color: #fff; font-size: 19px;
  letter-spacing: -0.01em;
}
.footer-logo .lt .hands { color: var(--brand-glow); }
.footer-logo .ls {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: block; line-height: 1;
}

.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  transition: all .15s var(--ease);
}
.socials a:hover { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; transform: translateY(-2px); }
.socials a.linkedin:hover { background: #0A66C2; border-color: #0A66C2; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-bottom .donation {
  color: var(--amber);
  font-weight: 500;
}
.footer-bottom .donation i { margin-right: 6px; }

/* ───── Reveal anim ───── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }


/* ─────────────────────────────────────────────────
   Top community ribbon
   ───────────────────────────────────────────────── */
.top-ribbon {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: linear-gradient(90deg, #F5B301 0%, #FFC829 50%, #F5B301 100%);
  color: var(--navy-900);
  padding: 8px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.top-ribbon .container {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.top-ribbon i { color: #B91C1C; }
.top-ribbon strong { font-weight: 700; }
.top-ribbon a {
  color: var(--navy-900);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  margin-left: 6px;
}
.top-ribbon a:hover { text-decoration: none; }
@media (max-width: 560px) {
  .top-ribbon { font-size: 12px; padding: 7px 12px; }
  .top-ribbon a { margin-left: 0; display: block; width: 100%; }
}

/* shift nav below the ribbon */
.nav { top: 38px; }
@media (max-width: 560px) { .nav { top: 60px; } }

/* hero ticker clears the ribbon + nav stack */
.hero-ticker { top: 114px; }
@media (max-width: 560px) { .hero-ticker { top: 134px; } }
.hero { padding-top: 170px; }
@media (max-width: 980px) { .hero { padding-top: 190px; } }

/* slightly smaller hero h1 since we shortened the copy */
.hero h1 {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
@media (min-width: 720px) {
  .hero h1 { white-space: nowrap; }
}

/* ─────────────────────────────────────────────────
   Lead-capabilities 3-up (compact, expandable)
   ───────────────────────────────────────────────── */
.lead-caps {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lead-caps::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 15% 30%, rgba(30,107,255,.16), transparent 60%),
    radial-gradient(ellipse 700px 400px at 50% 70%, rgba(45,212,191,.12), transparent 60%),
    radial-gradient(ellipse 700px 400px at 85% 30%, rgba(245,179,1,.12), transparent 60%);
  pointer-events: none;
}
.lead-caps .container { position: relative; }
.lead-caps .section-head h2 { color: #fff; }
.lead-caps .section-head .lead { color: rgba(255,255,255,.7); }
.lead-caps .section-head h2 .accent {
  background: linear-gradient(90deg, var(--brand-glow), #5EEAD4 50%, #FFD24D 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lead-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 980px) { .lead-caps-grid { grid-template-columns: 1fr; gap: 20px; } }

.lead-cap {
  position: relative;
  padding: 28px 26px 22px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  --accent: var(--brand-glow);
  --accent-soft: rgba(77,141,255,.15);
  --accent-border: rgba(77,141,255,.35);
  overflow: hidden;
}
.lead-cap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: .85;
}
.lead-cap:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.lead-cap.blue   { --accent: #4D8DFF; --accent-soft: rgba(77,141,255,.15);  --accent-border: rgba(77,141,255,.4); }
.lead-cap.teal   { --accent: #5EEAD4; --accent-soft: rgba(94,234,212,.15);  --accent-border: rgba(94,234,212,.4); }
.lead-cap.amber  { --accent: #FFD24D; --accent-soft: rgba(255,210,77,.15);  --accent-border: rgba(255,210,77,.4); }

.lc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.lc-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.lc-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}

.lead-cap h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.lc-quote {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255,255,255,.72);
  padding-left: 12px;
  border-left: 2px solid var(--accent);
  margin-bottom: 20px;
}
.lc-quote em { color: var(--accent); font-style: normal; font-weight: 600; }

.lc-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 6px; }
.lc-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.lc-list li i {
  color: var(--accent);
  font-size: 11px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Expandable details — collapsed by default */
.lc-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s var(--ease), opacity .25s ease, margin .3s var(--ease);
  margin-top: 0;
}
.lead-cap.open .lc-details {
  max-height: 800px;
  opacity: 1;
  margin-top: 18px;
}

.lc-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,.1);
  margin-bottom: 18px;
}
.lc-mini {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-sm);
}
.lc-mini i {
  width: 28px; height: 28px;
  border-radius: var(--r-xs);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.lc-mini span { display: flex; flex-direction: column; gap: 2px; font-size: 12px; line-height: 1.35; color: rgba(255,255,255,.6); }
.lc-mini strong { font-family: 'Manrope', sans-serif; font-weight: 700; color: #fff; font-size: 13px; }
@media (max-width: 420px) { .lc-mini-grid { grid-template-columns: 1fr; } }

.lc-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: var(--r-md);
  background: var(--accent);
  color: var(--navy-900);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  transition: all .15s var(--ease);
  align-self: flex-start;
}
.lead-cap.blue  .lc-cta { color: #fff; background: #1E6BFF; }
.lead-cap.teal  .lc-cta { color: #fff; background: #0D9488; }
.lc-cta:hover { transform: translateY(-1px); filter: brightness(1.08); box-shadow: 0 6px 18px rgba(0,0,0,.35); }
.lc-cta i { transition: transform .15s var(--ease); }
.lc-cta:hover i { transform: translateX(3px); }

/* Toggle button — sits at the bottom of every card */
.lc-toggle {
  margin-top: 18px;
  padding: 12px 0 4px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: color .15s var(--ease);
  width: 100%;
}
.lc-toggle:hover { color: #fff; }
.lc-toggle i { transition: transform .25s var(--ease); color: var(--accent); }
.lead-cap.open .lc-toggle i { transform: rotate(180deg); }
.lc-toggle-less { display: none; }
.lead-cap.open .lc-toggle-more { display: none; }
.lead-cap.open .lc-toggle-less { display: inline; }


/* ─────────────────────────────────────────────────
   Inner-page hero (about / services / contact / etc)
   ───────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 180px 0 90px;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  --page-hero-bg: none;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  opacity: .25;
  filter: saturate(1.05);
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 900px 500px at 50% 30%, rgba(30,107,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(10,14,26,.6) 0%, rgba(10,14,26,.92) 100%);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.page-hero h1 .accent {
  background: linear-gradient(135deg, #fff 0%, var(--brand-glow) 60%, #82B1FF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero .lead {
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}
.breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.breadcrumb a {
  color: var(--brand-glow);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.6); }

/* ─────────────────────────────────────────────────
   Sections (white / alt-gray / dark)
   ───────────────────────────────────────────────── */
.section { padding: 90px 0; background: var(--white); }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy-900); color: #fff; }
.section-dark h2, .section-dark .lead { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,.72); }
@media (max-width: 720px) { .section { padding: 72px 0; } }

/* ─── Two-col layout (about / ngo intro) ─── */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col .eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.two-col h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin: 14px 0 18px; }
.two-col h2 .accent { color: var(--brand-blue); }
.two-col p { color: var(--fg-2); line-height: 1.7; margin-bottom: 14px; }
.two-col p.lead { font-size: 18px; line-height: 1.6; }

.two-col-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-tile {
  padding: 28px 22px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  transition: all .2s var(--ease);
}
.stat-tile:hover { border-color: var(--brand-blue); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-tile .n {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-tile .l {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--fg-3);
  margin-top: 6px;
}

/* ─── Values grid ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all .2s var(--ease);
}
.value-card:hover { border-color: var(--brand-blue); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-card .ico {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: var(--r-md);
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.value-card h4 { font-size: 20px; color: var(--navy-900); margin-bottom: 10px; }
.value-card p { color: var(--fg-2); font-size: 15px; line-height: 1.6; }

/* ─── Community card (about) ─── */
.community-card {
  max-width: 820px; margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(245,179,1,.15), rgba(245,179,1,.04));
  border: 1px solid rgba(245,179,1,.3);
  border-radius: var(--r-xl);
}
.community-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--amber);
  color: #B91C1C;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 40px rgba(245,179,1,.4);
}
.community-card h2 { color: #fff; font-size: clamp(28px, 3vw, 40px); font-weight: 700; line-height: 1.15; margin: 8px 0 18px; }
.community-card h2 .accent { color: var(--amber); }
.community-card .lead { color: rgba(255,255,255,.78); }

/* ─── Partner badges ─── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
.partner-badge {
  padding: 22px 14px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  text-align: center;
  transition: all .2s var(--ease);
}
.partner-badge:hover { border-color: var(--brand-blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.partner-badge .t {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.partner-badge .s {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-top: 4px;
  font-weight: 600;
}
.partner-badge .d {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 4px;
}

/* ─── Services index ─── */
.services-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .services-index { grid-template-columns: 1fr; } }
.services-col {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
}
.services-col h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px;
  color: var(--navy-900);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.services-col h4 i {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.services-col ul { display: flex; flex-direction: column; gap: 2px; }
.services-col ul a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 6px;
  font-size: 14px;
  color: var(--fg-2);
  border-bottom: 1px solid var(--gray-100);
  transition: all .15s var(--ease);
}
.services-col ul a:last-child { border-bottom: none; }
.services-col ul a:hover {
  color: var(--brand-blue);
  padding-left: 12px;
}
.services-col ul a i {
  margin-left: auto;
  font-size: 11px;
  color: var(--gray-400);
  transition: transform .15s var(--ease), color .15s var(--ease);
}
.services-col ul a:hover i { color: var(--brand-blue); transform: translateX(3px); }

/* ─── Features list (ngo) ─── */
.features-list { display: flex; flex-direction: column; gap: 14px; }
.features-list .feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
}
.features-list .feature-item i {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.features-list .feature-item span { font-size: 15px; color: var(--fg-1); line-height: 1.55; align-self: center; }

/* ─── Industries grid (homepage uses this too) ─── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .industries-grid { grid-template-columns: 1fr; } }
.industry-card {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: all .2s var(--ease);
}
.industry-card:hover { border-color: var(--brand-blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.industry-card .ico {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-bottom: 14px;
}
.industry-card h4 { font-size: 16px; margin-bottom: 6px; color: var(--navy-900); }
.industry-card p { font-size: 13.5px; color: var(--fg-2); line-height: 1.55; }

/* ─────────────────────────────────────────────────
   Contact page
   ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

.contact-form-wrap h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; margin-bottom: 8px; }
.contact-form-wrap h2 .accent { color: var(--brand-blue); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .contact-form .form-row { grid-template-columns: 1fr; } }
.contact-form .form-group { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--fg-1);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  color: var(--navy-900);
  font-size: 15px;
  font-family: inherit;
  transition: all .15s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(30,107,255,.15);
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  padding-right: 40px;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.recaptcha-wrapper { margin-top: 4px; }

.success-banner {
  display: none;
  padding: 36px 28px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: var(--r-lg);
  text-align: center;
  margin-bottom: 24px;
  color: #fff;
}
.success-banner.show { display: block; animation: slideIn .4s var(--ease); }
@keyframes slideIn { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }
.success-banner i { font-size: 40px; margin-bottom: 12px; display: block; }
.success-banner h2 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.success-banner p { color: rgba(255,255,255,.85); font-size: 14px; }

.contact-side-card {
  padding: 36px 32px;
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--r-lg);
  position: sticky;
  top: 120px;
}
.contact-side-card h3 { color: #fff; font-size: 22px; margin-bottom: 24px; }
.info-item {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(30,107,255,.18);
  color: var(--brand-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.info-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.info-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 600;
}
.info-text a, .info-text span {
  color: #fff; font-size: 14.5px; word-break: break-word;
  text-decoration: none;
}
.info-text a:hover { color: var(--brand-glow); }
.availability-box {
  margin-top: 18px;
  padding: 18px;
  background: rgba(245,179,1,.1);
  border: 1px solid rgba(245,179,1,.3);
  border-radius: var(--r-sm);
}
.availability-box h4 { color: var(--amber); font-size: 14px; margin-bottom: 6px; }
.availability-box p { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.5; }

/* ─────────────────────────────────────────────────
   Blog
   ───────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .25s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-blue); }
.blog-card-media {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.blog-card-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex; gap: 12px; align-items: center;
  font-size: 12px;
  color: var(--fg-3);
  margin-bottom: 14px;
}
.blog-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  border-radius: var(--r-pill);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .04em;
}
.blog-card h3 { font-size: 20px; line-height: 1.3; color: var(--navy-900); margin-bottom: 12px; }
.blog-card p { font-size: 14.5px; color: var(--fg-2); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.blog-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand-blue);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.blog-link i { transition: transform .15s var(--ease); }
.blog-link:hover i { transform: translateX(4px); }

.blog-soon {
  text-align: center;
  padding: 56px 24px;
  background: var(--gray-50);
  border-radius: var(--r-lg);
  border: 1px dashed var(--gray-300);
}
.blog-soon i {
  font-size: 28px;
  color: var(--brand-blue);
  margin-bottom: 14px;
}
.blog-soon h3 { font-size: 22px; color: var(--navy-900); margin-bottom: 8px; }
.blog-soon p { color: var(--fg-2); margin-bottom: 24px; }
.blog-soon .btn { background: #0A66C2; color: #fff; }
.blog-soon .btn:hover { background: #084c92; }

/* ─────────────────────────────────────────────────
   Service-page hero + content
   ───────────────────────────────────────────────── */
.service-content { padding: 90px 0; }
.service-grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .service-grid-2 { grid-template-columns: 1fr; gap: 36px; } }
.service-grid-2 h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.service-grid-2 h2 .accent { color: var(--brand-blue); }
.service-grid-2 p { color: var(--fg-2); line-height: 1.7; margin-bottom: 14px; }
.service-grid-2 .lead { font-size: 18px; line-height: 1.55; color: var(--fg-1); margin-bottom: 24px; }

.service-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 32px; }
.service-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--fg-1);
  line-height: 1.55;
}
.service-list li i {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  border-radius: 50%;
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}

.service-side {
  padding: 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  position: sticky;
  top: 120px;
}
.service-side h4 { font-size: 16px; color: var(--navy-900); margin-bottom: 16px; }
.service-side .why-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.service-side .why-list .item { display: flex; gap: 12px; align-items: flex-start; }
.service-side .why-list i {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.service-side .why-list .item strong { display: block; color: var(--navy-900); font-size: 14px; margin-bottom: 2px; }
.service-side .why-list .item span { color: var(--fg-2); font-size: 13px; line-height: 1.45; }

/* Service-page process strip (4 steps) */
.service-process {
  background: var(--gray-50);
  padding: 80px 0;
}
.service-process .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .service-process .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .service-process .grid { grid-template-columns: 1fr; } }
.service-process .step {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  transition: all .2s var(--ease);
}
.service-process .step:hover { border-color: var(--brand-blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-process .step .n {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 10px;
}
.service-process .step h4 { color: var(--navy-900); font-size: 17px; margin-bottom: 6px; }
.service-process .step p { color: var(--fg-2); font-size: 14px; line-height: 1.55; }


/* Colored client logo tiles for Happy Customers */
.logo-chip.color {
  background: var(--brand);
  color: var(--fg);
  border-color: transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  filter: saturate(.95);
  transition: transform .2s var(--ease), filter .2s var(--ease), box-shadow .2s var(--ease);
}
.logo-chip.color:hover {
  transform: translateY(-3px);
  filter: saturate(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  color: var(--fg);
  background: var(--brand);
  border-color: transparent;
}
