/* ============================================
   AIVORA — Shared Design System
   Dark AI Agency | HTEC-inspired structure
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0a0a0a;
  --bg2:      #111111;
  --bg3:      #1a1a1a;
  --bg4:      #222222;
  --green:    #ff6b35;
  --green2:   rgba(255,107,53,0.12);
  --green3:   rgba(255,107,53,0.28);
  --blue:     #ff9a5c;
  --blue2:    rgba(255,154,92,0.12);
  --text:     #f0f0f0;
  --muted:    #666666;
  --muted2:   #999999;
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(255,255,255,0.15);
  --radius:   4px;
  --radius-sm: 3px;
  --radius-xs: 2px;
  --shadow:   0 24px 60px rgba(0,0,0,0.6);
  --font-h:   'Syne', sans-serif;
  --font-b:   'DM Sans', sans-serif;
  --trans:    all 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.12; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-b); border: none; background: none; }

/* ---- UTILITIES ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 18px;
}
.tag::before { content:''; width:20px; height:1px; background: var(--green); }

.section-title {
  font-family: var(--font-h);
  font-size: clamp(20px, 4.2vw, 35px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.08;
  margin-bottom: 18px;
}
.section-title em { font-style: normal; color: var(--green); }
.section-lead {
  font-size: 17px; color: var(--muted2); max-width: 580px;
  line-height: 1.75; font-weight: 300;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-weight: 700; font-size: 14px;
  padding: 13px 28px; border-radius: var(--radius-xs);
  transition: var(--trans); letter-spacing: 0.2px;
}
.btn-green { background: var(--green); color: #000; }
.btn-green:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-outline {
  border: 1px solid var(--border2); color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(7,8,13,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 40px; height: 70px;
  max-width: 1280px; margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-h); font-size: 24px;
  font-weight: 800; letter-spacing: -0.5px;
}
.nav-logo span { color: var(--green); }
.nav-logo small {
  font-size: 10px; font-weight: 400; color: var(--muted);
  letter-spacing: 2px; display: block; margin-top: -4px;
  text-transform: uppercase;
}

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: var(--muted2); border-radius: var(--radius-xs);
  transition: var(--trans);
}
.nav-link svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg3); }
.nav-link.active { color: var(--green); }

/* Mega dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px;
  min-width: 240px; display: none;
  box-shadow: var(--shadow);
  z-index: 999;
}
.nav-item:hover .nav-dropdown { display: block; animation: fadeDown 0.18s ease; }
@keyframes fadeDown { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:none} }

.nav-dd-item {
  display: block; padding: 10px 14px; font-size: 13px;
  color: var(--muted2); border-radius: var(--radius-sm);
  transition: var(--trans);
}
.nav-dd-item:hover { background: var(--bg4); color: var(--green); }

.nav-cta { margin-left: 20px; }

/* ============ MEGA MENU ============ */
.mega-parent { position: static; }
.mega-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 999;
  animation: fadeDown 0.18s ease;
}
.mega-parent:hover .mega-menu { display: flex; }
.mega-left {
  width: 260px; flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 24px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.mega-all {
  font-size: 13px; color: var(--muted2);
  padding: 8px 12px; display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.mega-all:hover { color: var(--text); }
.mega-cat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; font-size: 14px; color: var(--muted2);
  border-radius: var(--radius-xs); transition: var(--trans);
  cursor: pointer;
}
.mega-cat span { color: var(--muted); font-size: 16px; }
.mega-cat:hover, .mega-cat.active { background: var(--bg4); color: var(--green); }
.mega-cat.active span { color: var(--green); }
.mega-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }
.mega-all-btn {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 16px; padding: 9px 20px;
  border: 1px solid var(--border2); border-radius: 100px;
  font-size: 13px; color: var(--text); transition: var(--trans);
}
.mega-all-btn:hover { border-color: var(--green); color: var(--green); }
.mega-right {
  flex: 1; padding: 28px 32px;
}
.mega-panel { display: none; }
.mega-panel.active { display: block; animation: fadeDown 0.2s ease; }
.mega-panel-title {
  font-family: var(--font-h); font-size: 18px;
  font-weight: 700; color: var(--green); margin-bottom: 12px;
}
.mega-panel-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.mega-items {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mega-item {
  display: block; padding: 4px 0;
  transition: var(--trans);
}
.mega-item h5 {
  font-family: var(--font-h); font-size: 14px;
  font-weight: 700; color: var(--text);
  margin-bottom: 8px; transition: color 0.2s;
}
.mega-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.mega-item:hover h5 { color: var(--green); }

/* Industries grid mega menu */
.ind-mega-menu { display: none; padding: 28px 40px; }
.mega-parent:hover .ind-mega-menu,
.ind-mega-menu[style*="flex"] { display: block !important; }
.ind-mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1280px; margin: 0 auto;
}
.ind-mega-card {
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
  background: var(--bg4);
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: 2px solid var(--ind-color, var(--green));
  border-radius: var(--radius-sm);
  min-height: 130px;
  transition: var(--trans);
  cursor: pointer;
}
.ind-mega-card:hover {
  background: var(--bg3);
  border-color: var(--ind-color, var(--green));
  transform: translateY(-3px);
}
.ind-mega-icon {
  width: 40px; height: 40px; margin-bottom: 20px;
  opacity: 0.6; transition: opacity 0.2s;
}
.ind-mega-icon svg { width: 100%; height: 100%; stroke: var(--ind-color, var(--green)); }
.ind-mega-card:hover .ind-mega-icon { opacity: 1; }
.ind-mega-name {
  font-family: var(--font-h); font-size: 15px;
  font-weight: 700; color: var(--text);
  line-height: 1.3; letter-spacing: -0.2px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; display: block; transition: var(--trans); }

/* ============ FOOTER ============ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 70px 0 32px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 280px; line-height: 1.7; }

.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.social-icon {
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px; transition: var(--trans);
}
.social-icon:hover { border-color: var(--green); color: var(--green); }

.footer-col h5 {
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text); }

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 160px 0 100px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -20%; right: -5%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(0,230,118,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 30%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(77,143,255,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }

/* ============ CARDS ============ */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}
.card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Stat strip */
.stat-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  flex: 1; min-width: 160px; padding: 28px 32px;
  border-right: 1px solid var(--border);
  background: var(--bg2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-h); font-size: 40px;
  font-weight: 800; letter-spacing: -2px;
  color: var(--text); line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--green); }
.stat-lbl { font-size: 13px; color: var(--muted); }

/* ============ MARQUEE ============ */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2); padding: 16px 0;
  overflow: hidden;
  position: relative; z-index: 1;
}
.marquee-track { display: flex; gap: 0; width: max-content; animation: scroll 28s linear infinite; }
.marquee-item {
  white-space: nowrap; padding: 0 36px;
  font-family: var(--font-h); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 12px;
  border-right: 1px solid var(--border);
}
.marquee-item .dot { color: var(--green); font-size: 16px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, #b8c5e8 0%, #c5b8e8 25%, #e8c5b0 65%, #f0a875 100%);
  border-top: none;
  border-bottom: none;
  padding: 80px 0;
  position: relative; z-index: 1;
}
.cta-band .tag { color: #333; }
.cta-band .tag::before { background: #333; }
.cta-inner h2 { color: #111; }
.cta-inner h2 em { color: #e05a1a; }
.cta-inner input {
  background: rgba(255,255,255,0.5) !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  color: #111 !important;
  border-radius: 4px;
}
.cta-inner input::placeholder { color: #666 !important; }
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -1.5px; max-width: 560px;
}
.cta-inner h2 em { font-style: normal; color: var(--green); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open { display: flex; flex-direction: column; align-items: flex-start; position: fixed; top: 70px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}


/* ===== HOME-SPECIFIC ===== */

/* Hero */
.hero {
  position: sticky;
  top: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0.9;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(255,255,255,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 15% 70%, rgba(255,255,255,0.09) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,107,53,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 30% 30%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green2); border: 1px solid var(--green3);
  color: var(--green); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 26px;
}
.pulse { width:7px; height:7px; background:var(--green); border-radius:50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }

.hero h1 {
  font-size: clamp(20px, 5.5vw, 35px);
  font-weight: 800; letter-spacing: -2.5px; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero-lead {
  font-size: 18px; color: var(--muted2);
  max-width: 540px; line-height: 1.75;
  font-weight: 300; margin-bottom: 42px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero card (right side) */
.hero-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; position: relative;
}
.hero-card::before {
  content:''; position:absolute; inset:0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,230,118,0.04), transparent 60%);
  pointer-events:none;
}
.hc-label { font-size: 11px; color: var(--muted); text-transform:uppercase; letter-spacing:2px; margin-bottom:6px; }
.hc-title { font-family:var(--font-h); font-size:20px; font-weight:700; margin-bottom:20px; }
.hc-metric {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px;
}
.hc-big { font-family:var(--font-h); font-size:48px; font-weight:800; letter-spacing:-2px; color:var(--green); }
.hc-sub { font-size:14px; color:var(--muted); }
.hc-bar-wrap { height:4px; background:var(--border); border-radius:4px; margin: 20px 0; }
.hc-bar { height:100%; width:78%; background: var(--green); border-radius:4px; }
.hc-items { display:flex; flex-direction:column; gap:12px; margin-top:20px; }
.hc-item {
  display:flex; align-items:center; gap:10px;
  font-size:13px; color:var(--muted2);
}
.hc-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.hc-dot.g { background:var(--green); }
.hc-dot.b { background:var(--blue); }
.hc-dot.y { background:#f5c518; }
.hc-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.hc-footer { display:flex; justify-content:space-between; align-items:center; }
.hc-tag {
  background:var(--green2); border:1px solid var(--green3);
  color:var(--green); font-size:11px; font-weight:700;
  padding:4px 10px; border-radius:100px; text-transform:uppercase; letter-spacing:1px;
}

/* Hero stats */
.hero-stats { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); display: flex; gap: 48px; flex-wrap: wrap; }
.hs { }
.hs .num { font-family:var(--font-h); font-size:34px; font-weight:800; letter-spacing:-1.5px; }
.hs .num span { color: var(--green); }
.hs .lbl { font-size:13px; color:var(--muted); margin-top:2px; }

/* Clients logos strip */
.clients { padding: 60px 0; position: relative; z-index: 1; background: var(--bg); }
.clients-label { font-size:12px; color:var(--muted); text-align:center; text-transform:uppercase; letter-spacing:2px; margin-bottom:28px; }
.clients-logos { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:20px; }
.client-logo {
  font-family:var(--font-h); font-size:18px; font-weight:800;
  color: var(--muted); letter-spacing:-0.5px; opacity:0.5;
  transition: opacity 0.2s;
}
.client-logo:hover { opacity:0.85; }

/* Services overview */
.services { padding: 100px 0; position: relative; z-index: 1; background: var(--bg); }
.services-header { display:flex; justify-content:space-between; align-items:flex-end; gap:40px; flex-wrap:wrap; margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  position: relative; overflow: hidden;
  transition: var(--trans);
}
.svc-card::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:2px; background:var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover { border-color: var(--border2); transform: translateY(-5px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width:50px; height:50px; background:var(--green2);
  border:1px solid var(--green3); border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:22px;
}
.svc-card h3 { font-size:20px; font-weight:700; margin-bottom:12px; letter-spacing:-0.3px; }
.svc-card p { font-size:14px; color:var(--muted2); line-height:1.65; margin-bottom:24px; }
.svc-link {
  display:flex; align-items:center; gap:6px;
  font-size:13px; font-weight:700; color:var(--green);
  font-family: var(--font-h);
}
.svc-link svg { width:14px; height:14px; transition: transform 0.2s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* Industries row */
.industries { padding: 100px 0; background: var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); position: relative; z-index: 1; }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px; margin-top: 52px;
}
.ind-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 26px 18px;
  text-align:center; transition: var(--trans); cursor: pointer;
}
.ind-card:hover { border-color: var(--green3); transform:translateY(-3px); }
.ind-icon { font-size:28px; margin-bottom:12px; }
.ind-card h4 { font-size:13px; font-weight:700; letter-spacing:-0.2px; margin-bottom:6px; }
.ind-card p { font-size:11px; color:var(--muted); line-height:1.5; }

/* Why Us */
.why { padding: 100px 0; position: relative; z-index: 1; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-points { display: flex; flex-direction:column; gap: 28px; }
.why-point { display:flex; gap:18px; align-items:flex-start; }
.wp-num {
  font-family:var(--font-h); font-size:13px; font-weight:700;
  color:var(--green); width:32px; flex-shrink:0; padding-top:2px;
}
.wp-body h4 { font-size:17px; font-weight:700; margin-bottom:6px; letter-spacing:-0.2px; }
.wp-body p { font-size:14px; color:var(--muted2); line-height:1.65; }

.why-visual {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.wv-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.wv-label { font-size:13px; color:var(--muted2); }
.wv-val { font-family:var(--font-h); font-size:22px; font-weight:700; letter-spacing:-0.5px; }
.wv-val.green { color: var(--green); }
.wv-bar-track { flex: 1; height: 4px; background: var(--border); border-radius:4px; margin: 0 20px; }
.wv-bar-fill { height:100%; border-radius:4px; background: var(--green); }

/* Insights / News */
.insights { padding: 100px 0; position: relative; z-index: 1; background: var(--bg); }
.ins-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top:52px; }
.ins-card {
  background: var(--bg2); border:1px solid var(--border);
  border-radius: var(--radius); overflow:hidden; transition: var(--trans);
}
.ins-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.ins-thumb {
  width:100%; height:170px; background:var(--bg3);
  display:flex; align-items:center; justify-content:center;
  font-size:44px; border-bottom:1px solid var(--border);
  position: relative; overflow: hidden;
}
.ins-thumb::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, var(--green2), transparent 60%);
}
.ins-body { padding:26px; }
.ins-cat { font-size:11px; color:var(--green); font-weight:700; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:10px; }
.ins-card h4 { font-size:18px; font-weight:700; margin-bottom:10px; letter-spacing:-0.3px; line-height:1.25; }
.ins-card p { font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:18px; }
.ins-meta { display:flex; align-items:center; justify-content:space-between; }
.ins-date { font-size:12px; color:var(--muted); }
.ins-arrow { color:var(--green); font-size:18px; transition: transform 0.2s; }
.ins-card:hover .ins-arrow { transform: translate(3px,-3px); }

/* Testimonials */
.testi { padding:100px 0; background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); position: relative; z-index: 1; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.testi-card {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:var(--radius); padding:32px; transition: var(--trans);
}
.testi-card:hover { border-color: var(--border2); }
.stars { color:var(--green); font-size:13px; letter-spacing:3px; margin-bottom:16px; }
.testi-card blockquote { font-size:15px; color:var(--muted2); line-height:1.75; font-weight:300; margin-bottom:26px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.avatar {
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-h); font-size:13px; font-weight:700; flex-shrink:0;
}
.av-g { background:var(--green2); color:var(--green); border:1px solid var(--green3); }
.av-b { background:var(--blue2); color:var(--blue); border:1px solid rgba(77,143,255,0.3); }
.av-p { background:rgba(180,100,255,0.12); color:#c07cff; border:1px solid rgba(180,100,255,0.3); }
.ta-name { font-size:14px; font-weight:600; }
.ta-role { font-size:12px; color:var(--muted); }

/* ============ HERO SLIDER ============ */
.hero-slider-wrap { padding: 0; }
.hero-slide {
  display: none;
  min-height: 100vh;
  padding: 140px 0 100px;
  position: relative; z-index: 2;
  animation: heroFade 0.5s ease;
}
.hero-slide.active { display: flex; align-items: center; }
@keyframes heroFade { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }

.hero-slider-controls {
  position: absolute; bottom: 10%; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px;
  z-index: 10;
}
.hero-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border2); background: var(--bg3);
  color: var(--text); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans);
}
.hero-arrow:hover { border-color: var(--green); color: var(--green); }
.hero-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border2); border: none;
  cursor: pointer; transition: var(--trans); padding: 0;
}
.hero-dot.active { background: var(--green); width: 22px; border-radius: 4px; }

@media(max-width:1024px){
  .hero-grid { grid-template-columns:1fr; }
  .hero-slider { display:block; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .ind-grid { grid-template-columns:repeat(3,1fr); }
  .why-grid { grid-template-columns:1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .ins-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .services-grid { grid-template-columns:1fr; }
  .ind-grid { grid-template-columns:repeat(2,1fr); }
  .ins-grid { grid-template-columns:1fr; }
  .hero-stats { gap: 28px; }
}





/* ============ CONTACT PAGE ============ */
.contact-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #b8c5e8 0%, #c5b8e8 25%, #e8c5b0 65%, #f0a875 100%);
  display: flex; align-items: center;
  padding: 120px 0 80px;
}
.contact-page-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start; width: 100%;
}
.cp-left h1 {
  font-family: var(--font-h); font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; letter-spacing: -2px;
  color: #111; line-height: 1.05; margin-bottom: 20px;
}
.cp-left .tag { color: #555; }
.cp-left .tag::before { background: #555; }
.cp-left > p { font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 36px; }
.cp-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.cp-detail-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #333; }
.cp-detail-item svg { width: 18px; height: 18px; stroke: #e05a1a; flex-shrink: 0; }
.cp-careers { font-size: 14px; color: #444; line-height: 1.7; }
.cp-careers a { color: #e05a1a; text-decoration: underline; }
.cp-right { background: rgba(255,255,255,0.45); backdrop-filter: blur(12px); border-radius: 8px; padding: 40px; }
.cp-form { display: flex; flex-direction: column; gap: 16px; }
.cp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cp-field { display: flex; flex-direction: column; gap: 6px; }
.cp-field label { font-size: 13px; color: #333; font-weight: 500; }
.cp-field input, .cp-field select, .cp-field textarea {
  background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px; padding: 11px 14px; font-size: 14px; color: #111;
  font-family: var(--font-b); outline: none; transition: border-color 0.2s; width: 100%;
}
.cp-field input:focus, .cp-field select:focus, .cp-field textarea:focus { border-color: #e05a1a; }
.cp-field textarea { resize: vertical; }
.cp-submit { margin-top: 8px; align-self: flex-start; background: #e05a1a !important; color: #fff !important; }
@media(max-width:900px){
  .contact-page-inner { grid-template-columns: 1fr; gap: 40px; }
  .cp-row { grid-template-columns: 1fr; }
}

/* ===== ABOUT-SPECIFIC ===== */
.about-hero { padding: 160px 0 90px; position:relative; overflow:hidden; }
.about-hero::before {
  content:''; position:absolute; top:-10%; left:-10%;
  width:60vw; height:60vw;
  background: radial-gradient(circle, rgba(0,230,118,0.055) 0%, transparent 60%);
  pointer-events:none;
}
.ah-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative; z-index:2; }
.ah-left h1 { font-size: clamp(20px, 5vw, 35px); font-weight:800; letter-spacing:-2px; margin-bottom:22px; }
.ah-left h1 em { font-style:normal; color:var(--green); }
.ah-left p { font-size:18px; color:var(--muted2); line-height:1.75; font-weight:300; max-width:480px; margin-bottom:36px; }

.ah-stats { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.ah-stat {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:var(--radius-sm); padding:24px;
}
.ah-stat .n { font-family:var(--font-h); font-size:36px; font-weight:800; letter-spacing:-1.5px; color:var(--green); margin-bottom:4px; }
.ah-stat .l { font-size:13px; color:var(--muted); }

/* Story / overview */
.story { padding:100px 0; }
.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.story-visual {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:var(--radius); padding:40px;
  position:relative; overflow:hidden;
}
.story-visual::before {
  content:''; position:absolute; top:0; right:0; bottom:0; left:0;
  background: linear-gradient(135deg, rgba(0,230,118,0.04), transparent 50%);
}
.timeline { display:flex; flex-direction:column; gap:0; position:relative; z-index:2; }
.tl-item {
  display:flex; gap:20px; padding-bottom:28px;
  border-left:1px solid var(--border); margin-left:12px;
  padding-left:24px; position:relative;
}
.tl-item:last-child { border-left:none; padding-bottom:0; }
.tl-dot {
  width:10px; height:10px; background:var(--green);
  border-radius:50%; position:absolute; left:-5px; top:4px; flex-shrink:0;
}
.tl-year { font-family:var(--font-h); font-size:12px; font-weight:700; color:var(--green); text-transform:uppercase; letter-spacing:1px; margin-bottom:6px; }
.tl-text { font-size:14px; color:var(--muted2); line-height:1.6; }

.story-content .tag { margin-top:0; }
.story-content h2 { margin-bottom:20px; }
.story-content p { font-size:15px; color:var(--muted2); line-height:1.8; margin-bottom:20px; }
.story-content p:last-child { margin-bottom:0; }

/* Values */
.values { padding:100px 0; background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.val-card {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:var(--radius); padding:36px;
  transition:var(--trans);
}
.val-card:hover { border-color:var(--border2); transform:translateY(-4px); }
.val-num { font-family:var(--font-h); font-size:48px; font-weight:800; color:var(--green2); -webkit-text-stroke:1px var(--green3); margin-bottom:16px; letter-spacing:-2px; }
.val-card h3 { font-size:20px; font-weight:700; margin-bottom:12px; }
.val-card p { font-size:14px; color:var(--muted2); line-height:1.65; }

/* Leadership */
.leadership { padding:100px 0; }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:52px; }
.team-card {
  background:var(--bg2); border:1px solid var(--border);
  border-radius:var(--radius); padding:28px;
  text-align:center; transition:var(--trans);
}
.team-card:hover { border-color:var(--green3); transform:translateY(-4px); }
.team-avatar {
  width:72px; height:72px; border-radius:50%;
  margin:0 auto 16px; display:flex; align-items:center;
  justify-content:center; font-family:var(--font-h);
  font-size:22px; font-weight:800; border:2px solid var(--border);
}
.team-card h4 { font-size:16px; font-weight:700; margin-bottom:4px; }
.team-card .role { font-size:12px; color:var(--green); text-transform:uppercase; letter-spacing:1px; font-weight:600; margin-bottom:12px; }
.team-card p { font-size:13px; color:var(--muted); line-height:1.55; }

/* Locations */
.locations { padding:100px 0; background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.loc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.loc-card {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:var(--radius); padding:30px;
  transition:var(--trans);
}
.loc-card:hover { border-color:var(--green3); transform:translateY(-3px); }
.loc-flag { font-size:28px; margin-bottom:14px; }
.loc-card h4 { font-size:17px; font-weight:700; margin-bottom:6px; }
.loc-card .type { font-size:11px; color:var(--green); text-transform:uppercase; letter-spacing:1.5px; font-weight:700; margin-bottom:10px; }
.loc-card p { font-size:13px; color:var(--muted); line-height:1.55; }

/* Awards */
.awards { padding:80px 0; }
.awards-row { display:flex; gap:20px; flex-wrap:wrap; margin-top:48px; }
.award-card {
  background:var(--bg2); border:1px solid var(--border);
  border-radius:var(--radius-sm); padding:24px 30px;
  display:flex; align-items:center; gap:16px;
  flex:1; min-width:240px; transition:var(--trans);
}
.award-card:hover { border-color:var(--green3); }
.award-icon { font-size:28px; flex-shrink:0; }
.award-body .aw-title { font-size:14px; font-weight:700; margin-bottom:4px; }
.award-body .aw-sub { font-size:12px; color:var(--muted); }

/* Contact */
.contact-section { padding:100px 0; background:var(--bg2); border-top:1px solid var(--border); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.contact-info h2 { font-size:clamp(28px,3.5vw,44px); font-weight:800; letter-spacing:-1.5px; margin-bottom:16px; }
.contact-info h2 em { font-style:normal; color:var(--green); }
.contact-info p { font-size:15px; color:var(--muted2); line-height:1.75; margin-bottom:36px; }
.contact-details { display:flex; flex-direction:column; gap:16px; }
.cd-item { display:flex; gap:14px; align-items:flex-start; }
.cd-icon { width:36px; height:36px; background:var(--green2); border:1px solid var(--green3); border-radius:var(--radius-xs); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.cd-text .label { font-size:11px; color:var(--green); text-transform:uppercase; letter-spacing:1.5px; font-weight:700; margin-bottom:2px; }
.cd-text .val { font-size:14px; color:var(--muted2); }

.contact-form { background:var(--bg3); border:1px solid var(--border); border-radius:var(--radius); padding:40px; }
.cf-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.cf-input {
  width:100%; background:var(--bg); border:1px solid var(--border);
  border-radius:var(--radius-xs); padding:13px 16px;
  color:var(--text); font-family:var(--font-b); font-size:14px;
  margin-bottom:14px; outline:none; transition:border-color 0.2s;
  display:block;
}
.cf-input:focus { border-color:var(--green); }
.cf-input::placeholder { color:var(--muted); }
textarea.cf-input { resize:vertical; min-height:120px; }

@media(max-width:960px){
  .ah-grid, .story-grid, .contact-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .loc-grid { grid-template-columns:1fr 1fr; }
  .values-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:600px){
  .team-grid { grid-template-columns:1fr; }
  .loc-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .ah-stats { grid-template-columns:1fr; }
  .cf-row { grid-template-columns:1fr; }
}




/* ===== INDUSTRIES-SPECIFIC ===== */
.ind-hero { padding:160px 0 90px; position:relative; overflow:hidden; }
.ind-hero::before {
  content:''; position:absolute; top:0; right:0;
  width:60vw; height:100%;
  background: radial-gradient(ellipse 70% 80% at 85% 50%, rgba(0,230,118,0.055) 0%, transparent 60%);
  pointer-events:none;
}
.ih-inner { max-width:680px; position:relative; z-index:2; }
.ih-inner h1 { font-size:clamp(20px,5vw,35px); font-weight:800; letter-spacing:-2px; margin-bottom:20px; }
.ih-inner h1 em { font-style:normal; color:var(--green); }
.ih-inner p { font-size:18px; color:var(--muted2); line-height:1.75; font-weight:300; }

/* Industries overview grid */
.ind-overview { padding:80px 0; background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.iov-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.iov-card {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:var(--radius); padding:28px;
  display:flex; align-items:center; gap:16px;
  transition:var(--trans); cursor:pointer;
}
.iov-card:hover { border-color:var(--green3); transform:translateY(-3px); }
.iov-icon { font-size:28px; flex-shrink:0; }
.iov-info h4 { font-size:15px; font-weight:700; margin-bottom:3px; }
.iov-info p { font-size:12px; color:var(--muted); }
.iov-arrow { margin-left:auto; color:var(--green); font-size:16px; opacity:0; transition:opacity 0.2s, transform 0.2s; flex-shrink:0; }
.iov-card:hover .iov-arrow { opacity:1; transform:translate(3px,-3px); }

/* Industry detail blocks */
.ind-block { padding:100px 0; scroll-margin-top:80px; }
.ind-block:nth-child(even) { background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

.ib-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }

.ib-header { margin-bottom:32px; }
.ib-icon-wrap {
  display:inline-flex; align-items:center; justify-content:center;
  width:60px; height:60px; font-size:28px;
  background:var(--green2); border:1px solid var(--green3);
  border-radius:var(--radius-sm); margin-bottom:20px;
}
.ib-header h2 { font-size:clamp(20px,3.5vw,30px); font-weight:800; letter-spacing:-1.5px; margin-bottom:12px; }
.ib-header h2 em { font-style:normal; color:var(--green); }
.ib-header p { font-size:15px; color:var(--muted2); line-height:1.8; }

.ib-capabilities { margin-top:32px; }
.ib-capabilities h4 { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--muted); margin-bottom:16px; }
.cap-list { display:flex; flex-direction:column; gap:0; }
.cap-item {
  display:flex; align-items:center; gap:12px;
  padding:14px 0; border-bottom:1px solid var(--border);
  font-size:14px; color:var(--muted2); transition:color 0.2s;
}
.cap-item:last-child { border-bottom:none; }
.cap-item:hover { color:var(--text); }
.cap-dot { width:6px; height:6px; background:var(--green); border-radius:50%; flex-shrink:0; }

/* Case study card */
.case-card {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:var(--radius); overflow:hidden;
  position:sticky; top:110px;
}
.cc-thumb {
  width:100%; height:180px; background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  font-size:56px; border-bottom:1px solid var(--border);
  position:relative; overflow:hidden;
}
.cc-thumb::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, var(--green2), transparent 60%);
}
.cc-body { padding:28px; }
.cc-tag { font-size:11px; color:var(--green); font-weight:700; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:10px; }
.cc-body h4 { font-size:18px; font-weight:700; margin-bottom:10px; letter-spacing:-0.3px; }
.cc-body p { font-size:14px; color:var(--muted2); line-height:1.65; margin-bottom:24px; }
.cc-metrics { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:24px; }
.cc-metric {
  background:var(--bg2); border:1px solid var(--border);
  border-radius:var(--radius-xs); padding:10px 16px; text-align:center; flex:1; min-width:80px;
}
.cc-metric .mn { font-family:var(--font-h); font-size:22px; font-weight:800; color:var(--green); letter-spacing:-0.5px; }
.cc-metric .ml { font-size:11px; color:var(--muted); }

/* Challenges pills */
.challenges { margin-top:28px; }
.challenges h4 { font-size:12px; text-transform:uppercase; letter-spacing:1.5px; color:var(--muted); margin-bottom:14px; font-weight:700; }
.pill-row { display:flex; flex-wrap:wrap; gap:8px; }
.pill {
  background:var(--bg2); border:1px solid var(--border);
  border-radius:100px; padding:6px 14px;
  font-size:12px; color:var(--muted2); transition:var(--trans);
}
.pill:hover { border-color:var(--green3); color:var(--green); }

@media(max-width:960px){
  .ib-grid { grid-template-columns:1fr; }
  .case-card { position:static; }
  .iov-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:600px){
  .iov-grid { grid-template-columns:1fr; }
}


/* ===== SERVICES-SPECIFIC ===== */
.svc-hero { padding: 160px 0 90px; position:relative; overflow:hidden; }
.svc-hero::before {
  content:''; position:absolute; top:0; right:0;
  width:55vw; height:100%;
  background: radial-gradient(ellipse 80% 70% at 90% 40%, rgba(0,230,118,0.06) 0%, transparent 60%);
  pointer-events:none;
}
.sh-inner { max-width:740px; position:relative; z-index:2; }
.sh-inner h1 { font-size:clamp(20px,5vw,35px); font-weight:800; letter-spacing:-2px; margin-bottom:20px; }
.sh-inner h1 em { font-style:normal; color:var(--green); }
.sh-inner p { font-size:18px; color:var(--muted2); line-height:1.75; font-weight:300; max-width:560px; }

/* Nav tabs */
.svc-nav { position:sticky; top:70px; z-index:90; background:var(--bg); border-bottom:1px solid var(--border); }
.svc-nav-inner {
  display:flex; gap:0; overflow-x:auto;
  max-width:1220px; margin:0 auto; padding:0 40px;
  scrollbar-width:none;
}
.svc-nav-inner::-webkit-scrollbar { display:none; }
.svc-nav-btn {
  white-space:nowrap; padding:16px 20px;
  font-size:14px; font-weight:500; color:var(--muted);
  border-bottom:2px solid transparent;
  transition:var(--trans); cursor:pointer;
  background:none; border-top:none; border-left:none; border-right:none;
}
.svc-nav-btn:hover { color:var(--text); }
.svc-nav-btn.active { color:var(--green); border-bottom-color:var(--green); }

/* Service blocks */
.svc-block { padding:100px 0; scroll-margin-top:120px; }
.svc-block:nth-child(even) { background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.sb-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.sb-grid.flip { }
.sb-visual {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:var(--radius); padding:40px;
  min-height:360px; display:flex; flex-direction:column;
  justify-content:space-between; position:relative; overflow:hidden;
}
.sb-visual::before {
  content:''; position:absolute; top:0; left:0; right:0; bottom:0;
  background: linear-gradient(135deg, rgba(0,230,118,0.04), transparent 55%);
}
.sv-top { position:relative; z-index:2; }
.sv-icon { font-size:44px; margin-bottom:16px; }
.sv-title { font-family:var(--font-h); font-size:22px; font-weight:700; margin-bottom:8px; }
.sv-sub { font-size:13px; color:var(--muted); }
.sv-metrics { display:flex; gap:12px; flex-wrap:wrap; position:relative; z-index:2; }
.sv-metric {
  background:var(--bg2); border:1px solid var(--border);
  border-radius:var(--radius-xs); padding:12px 18px;
  flex:1; min-width:100px; text-align:center;
}
.sv-metric .mn { font-family:var(--font-h); font-size:24px; font-weight:800; color:var(--green); letter-spacing:-0.5px; }
.sv-metric .ml { font-size:11px; color:var(--muted); margin-top:2px; }

.sb-content .tag { margin-top:0; }
.sb-content h2 { font-size:clamp(20px,3.5vw,30px); font-weight:800; letter-spacing:-1.5px; margin-bottom:16px; }
.sb-content h2 em { font-style:normal; color:var(--green); }
.sb-content > p { font-size:15px; color:var(--muted2); line-height:1.8; margin-bottom:32px; }

.sub-services { display:flex; flex-direction:column; gap:0; }
.sub-item {
  border-top:1px solid var(--border); padding:18px 0;
  cursor:pointer;
}
.sub-item:last-child { border-bottom:1px solid var(--border); }
.sub-header {
  display:flex; align-items:center;
  justify-content:space-between; gap:12px;
}
.sub-header h4 { font-size:16px; font-weight:700; transition:color 0.2s; }
.sub-item:hover .sub-header h4 { color:var(--green); }
.sub-arrow { color:var(--muted); font-size:16px; transition:transform 0.2s; flex-shrink:0; }
.sub-item.open .sub-arrow { transform: rotate(90deg); color:var(--green); }
.sub-body { font-size:14px; color:var(--muted2); line-height:1.65; max-height:0; overflow:hidden; transition:max-height 0.3s ease, padding 0.3s; }
.sub-item.open .sub-body { max-height:200px; padding-top:12px; }

.sb-cta { margin-top:32px; display:flex; gap:12px; flex-wrap:wrap; }

/* Process */
.process { padding:100px 0; }
.process-steps {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:0; margin-top:52px;
  border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;
}
.ps-item {
  padding:32px; border-right:1px solid var(--border);
  background:var(--bg2); transition:var(--trans);
}
.ps-item:last-child { border-right:none; }
.ps-item:hover { background:var(--bg3); }
.ps-num { font-family:var(--font-h); font-size:36px; font-weight:800; color:var(--green2); -webkit-text-stroke:1px var(--green3); margin-bottom:16px; }
.ps-item h4 { font-size:16px; font-weight:700; margin-bottom:10px; }
.ps-item p { font-size:13px; color:var(--muted); line-height:1.6; }

/* Tech stack */
.techstack { padding:80px 0; background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.tech-grid { display:flex; flex-wrap:wrap; gap:12px; margin-top:48px; }
.tech-badge {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:var(--radius-xs); padding:10px 18px;
  font-size:13px; font-weight:600; color:var(--muted2);
  transition:var(--trans);
}
.tech-badge:hover { border-color:var(--green3); color:var(--green); }

@media(max-width:960px){
  .sb-grid { grid-template-columns:1fr; gap:40px; }
  .sb-grid.flip .sb-visual { order:-1; }
  .process-steps { grid-template-columns:1fr 1fr; }
  .ps-item { border-bottom:1px solid var(--border); }
  .ps-item:nth-child(2n) { border-right:none; }
  .ps-item:nth-last-child(-n+2) { border-bottom:none; }
  .svc-nav-inner { padding: 0 24px; }
}
@media(max-width:600px){
  .process-steps { grid-template-columns:1fr; }
  .ps-item { border-right:none; }
  .ps-item:last-child { border-bottom:none; }
}

