/* ============================================================
   SYNTARAH TECHNOLOGIES — GLOBAL STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* --- VARIABLES --- */
:root {
  --navy: #080d1a;
  --navy-2: #0d1628;
  --navy-3: #111f38;
  --blue-mid: #1a3a6e;
  --purple: #6c3de8;
  --purple-light: #8b5cf6;
  --violet: #a855f7;
  --cyan: #22d3ee;
  --cyan-dim: rgba(34,211,238,0.15);
  --white: #ffffff;
  --off-white: #f4f6fb;
  --grey-light: #e8ecf4;
  --grey-mid: #9aa3b8;
  --grey-text: #c8d0e0;
  --grad-purple: linear-gradient(135deg, #6c3de8 0%, #a855f7 100%);
  --grad-blue: linear-gradient(135deg, #1a3a6e 0%, #0d1628 100%);
  --grad-glow: linear-gradient(135deg, rgba(108,61,232,0.3) 0%, rgba(168,85,247,0.1) 100%);
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 40px rgba(108,61,232,0.25);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 72px;
}

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

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,13,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108,61,232,0.15);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(8,13,26,0.98);
  border-bottom-color: rgba(108,61,232,0.3);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  color: var(--white); letter-spacing: -0.02em;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--grad-purple);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-logo span { color: var(--purple-light); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  color: var(--grey-text); font-size: 0.875rem; font-weight: 500;
  padding: 0.5rem 0.85rem; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(108,61,232,0.2);
}
.nav-cta {
  background: var(--grad-purple);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 0 20px rgba(108,61,232,0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(108,61,232,0.5) !important; }
.nav-mobile-btn {
  display: none; color: var(--white); font-size: 1.5rem;
  padding: 0.5rem; border-radius: 8px;
  background: rgba(255,255,255,0.05);
}
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,13,26,0.98); border-bottom: 1px solid rgba(108,61,232,0.2);
  padding: 1.5rem 2rem; flex-direction: column; gap: 0.5rem; z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--grey-text); font-size: 0.95rem; font-weight: 500;
  padding: 0.75rem 1rem; border-radius: 8px; transition: var(--transition);
}
.nav-mobile a:hover { color: var(--white); background: rgba(108,61,232,0.15); }

/* ============================================================
   GLOBAL UTILITIES
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-navy2 { background: var(--navy-2); color: var(--white); }
.section-grey { background: var(--off-white); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple-light); background: rgba(108,61,232,0.12);
  border: 1px solid rgba(108,61,232,0.25); border-radius: 50px;
  padding: 0.35rem 0.85rem;
}
.tag::before { content: ''; width: 6px; height: 6px; background: var(--purple-light); border-radius: 50%; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  margin: 0.75rem 0 1rem;
}
.section-header p { font-size: 1.05rem; color: var(--grey-mid); line-height: 1.7; }
.dark .section-header p, .section-dark .section-header p { color: var(--grey-text); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.01em; padding: 0.85rem 2rem; border-radius: 10px;
  transition: var(--transition); cursor: pointer;
}
.btn-primary {
  background: var(--grad-purple); color: var(--white);
  box-shadow: 0 0 24px rgba(108,61,232,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(108,61,232,0.55); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.2); color: var(--white);
  background: rgba(255,255,255,0.04);
}
.btn-outline:hover { border-color: var(--purple-light); background: rgba(108,61,232,0.1); }
.btn-dark {
  border: 1.5px solid rgba(108,61,232,0.4); color: var(--navy);
  background: transparent;
}
.btn-dark:hover { background: rgba(108,61,232,0.08); }
.btn svg { width: 16px; height: 16px; }

/* reveal animation */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* grid bg */
.grid-bg {
  background-image:
    linear-gradient(rgba(108,61,232,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,61,232,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 30%, rgba(108,61,232,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(34,211,238,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(108,61,232,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,61,232,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 4rem 0;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,61,232,0.15); border: 1px solid rgba(108,61,232,0.35);
  border-radius: 50px; padding: 0.4rem 1rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 1.5rem;
}
.hero-tag-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.08;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero h1 .accent {
  background: var(--grad-purple);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: var(--grey-text); line-height: 1.75;
  max-width: 520px; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--grey-text); font-weight: 500;
}
.hero-trust-item .check { color: var(--cyan); font-size: 0.9rem; }

/* Hero Visual */
.hero-visual { position: relative; height: 480px; }
.hero-visual-main {
  position: absolute; inset: 0;
  background: var(--navy-3);
  border: 1px solid rgba(108,61,232,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(108,61,232,0.2), var(--shadow);
}
.hero-visual-header {
  background: rgba(108,61,232,0.12); border-bottom: 1px solid rgba(108,61,232,0.2);
  padding: 0.75rem 1.25rem;
  display: flex; align-items: center; gap: 8px;
}
.hv-dot { width: 10px; height: 10px; border-radius: 50%; }
.hv-dot:nth-child(1){ background: #ff5f57; }
.hv-dot:nth-child(2){ background: #febc2e; }
.hv-dot:nth-child(3){ background: #28c840; }
.hv-title { flex: 1; text-align: center; font-size: 0.75rem; color: var(--grey-mid); font-family: var(--font-display); font-weight: 600; }
.hero-visual-body { padding: 1.25rem; }
.hv-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 1rem; }
.hv-metric {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(108,61,232,0.15);
  border-radius: 10px; padding: 0.85rem;
}
.hv-metric-val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.hv-metric-lbl { font-size: 0.7rem; color: var(--grey-mid); margin-top: 2px; }
.hv-metric.up .hv-metric-val { color: #4ade80; }
.hv-metric.purple .hv-metric-val { color: var(--purple-light); }
.hv-metric.cyan .hv-metric-val { color: var(--cyan); }
.hv-chart { background: rgba(255,255,255,0.02); border: 1px solid rgba(108,61,232,0.12); border-radius: 10px; padding: 1rem; margin-bottom: 0.75rem; }
.hv-chart-label { font-size: 0.7rem; color: var(--grey-mid); margin-bottom: 0.5rem; }
.hv-bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.hv-bar { flex: 1; border-radius: 3px 3px 0 0; animation: barGrow 1.5s ease-out; }
@keyframes barGrow { from{transform:scaleY(0);transform-origin:bottom} to{transform:scaleY(1)} }
.hv-nodes { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.5rem; }
.hv-node {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(108,61,232,0.15);
  border-radius: 8px; padding: 0.5rem; text-align: center; font-size: 0.65rem; color: var(--grey-mid);
}
.hv-node-icon { font-size: 1.1rem; margin-bottom: 2px; }
.hero-float-card {
  position: absolute; background: rgba(8,13,26,0.9);
  border: 1px solid rgba(108,61,232,0.3); border-radius: 12px;
  padding: 0.75rem 1rem; backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hf1 { top: -20px; right: -20px; animation-delay: 0s; }
.hf2 { bottom: 60px; left: -30px; animation-delay: 1.5s; }
.hf-label { font-size: 0.65rem; color: var(--grey-mid); margin-bottom: 2px; }
.hf-val { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); }
.hf-val span { color: #4ade80; font-size: 0.75rem; }

/* ============================================================
   ABOUT SNAPSHOT
   ============================================================ */
.about-snap { background: var(--off-white); }
.about-snap-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-snap-visual {
  position: relative; height: 400px;
}
.asv-card {
  position: absolute;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}
.asv-main { inset: 0; display: flex; flex-direction: column; justify-content: center; }
.asv-stat { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.asv-stat-val { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; background: var(--grad-purple); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.asv-stat-lbl { font-size: 0.78rem; color: var(--grey-mid); font-weight: 500; }
.asv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.asv-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--navy); font-weight: 500; }
.asv-icon { width: 28px; height: 28px; background: rgba(108,61,232,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.about-snap-content h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.2;
  color: var(--navy); margin: 0.75rem 0 1.25rem;
}
.about-snap-content p { font-size: 1rem; color: #4a5568; line-height: 1.75; margin-bottom: 1rem; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--navy-2);
  border: 1px solid rgba(108,61,232,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-glow); opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(108,61,232,0.4); box-shadow: var(--shadow-glow); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(108,61,232,0.15); border: 1px solid rgba(108,61,232,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(108,61,232,0.3); transform: scale(1.1); }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.6rem; letter-spacing: -0.01em;
}
.service-card p { font-size: 0.85rem; color: var(--grey-text); line-height: 1.65; margin-bottom: 1.25rem; }
.service-link {
  font-size: 0.8rem; font-weight: 600; color: var(--purple-light);
  display: flex; align-items: center; gap: 4px;
  transition: var(--transition);
}
.service-card:hover .service-link { gap: 8px; }
.service-link::after { content: '→'; }

/* ============================================================
   CAPABILITIES SPLIT
   ============================================================ */
.capabilities { background: var(--navy-2); }
.capabilities-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.capabilities-list { display: flex; flex-direction: column; gap: 1.25rem; }
.cap-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; border-radius: var(--radius);
  border: 1px solid rgba(108,61,232,0.1);
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
}
.cap-item:hover { border-color: rgba(108,61,232,0.35); background: rgba(108,61,232,0.06); }
.cap-num { font-family: var(--font-display); font-size: 0.75rem; font-weight: 800; color: var(--purple-light); letter-spacing: 0.1em; margin-top: 2px; }
.cap-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.cap-item p { font-size: 0.83rem; color: var(--grey-text); line-height: 1.6; }
.capabilities-visual {
  background: var(--navy-3); border: 1px solid rgba(108,61,232,0.2);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: 0 0 50px rgba(108,61,232,0.15);
}
.cv-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.cv-bar-wrap { flex: 1; background: rgba(255,255,255,0.05); border-radius: 50px; height: 8px; overflow: hidden; }
.cv-bar { height: 100%; background: var(--grad-purple); border-radius: 50px; animation: barWidth 1.5s ease-out; }
@keyframes barWidth { from{width:0!important} }
.cv-label { font-size: 0.75rem; color: var(--grey-text); width: 140px; font-weight: 500; }
.cv-pct { font-size: 0.75rem; color: var(--purple-light); font-weight: 700; width: 36px; text-align: right; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.industry-card {
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition); cursor: pointer;
}
.industry-card:hover { transform: translateY(-4px); border-color: rgba(108,61,232,0.3); box-shadow: 0 12px 40px rgba(108,61,232,0.12); }
.industry-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.industry-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.industry-card p { font-size: 0.83rem; color: #4a5568; line-height: 1.65; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--navy); }
.process-steps {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 32px; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, rgba(108,61,232,0.1) 0%, rgba(108,61,232,0.6) 50%, rgba(108,61,232,0.1) 100%);
}
.process-step { text-align: center; padding: 0 1rem; position: relative; }
.ps-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy-3); border: 2px solid rgba(108,61,232,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  color: var(--white); margin: 0 auto 1.25rem;
  position: relative; z-index: 1;
  transition: var(--transition);
}
.process-step:hover .ps-num { background: var(--grad-purple); border-color: transparent; box-shadow: var(--shadow-glow); }
.ps-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.process-step h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.75rem; color: var(--grey-mid); line-height: 1.6; }

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--navy-2); border: 1px solid rgba(108,61,232,0.15);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(108,61,232,0.35); box-shadow: var(--shadow-glow); }
.product-preview {
  height: 180px; background: var(--navy-3);
  border-bottom: 1px solid rgba(108,61,232,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-preview-inner {
  width: 90%; height: 85%;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(108,61,232,0.2);
  border-radius: 8px; display: flex; flex-direction: column;
}
.pp-bar { height: 24px; background: rgba(108,61,232,0.15); border-bottom: 1px solid rgba(108,61,232,0.15); display: flex; align-items: center; padding: 0 8px; gap: 4px; }
.pp-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.pp-body { flex: 1; padding: 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.pp-cell { background: rgba(108,61,232,0.08); border-radius: 4px; }
.pp-cell.tall { grid-row: span 2; background: rgba(108,61,232,0.12); }
.product-info { padding: 1.5rem; }
.product-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 0.5rem;
}
.product-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.product-card p { font-size: 0.82rem; color: var(--grey-text); line-height: 1.65; margin-bottom: 1rem; }
.product-features { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pf-tag {
  font-size: 0.68rem; font-weight: 500; color: var(--grey-text);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 0.2rem 0.5rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--off-white); }
.testimonials-track { display: flex; gap: 1.5rem; overflow: hidden; }
.testimonial-card {
  flex: 0 0 380px; background: var(--white);
  border: 1px solid var(--grey-light); border-radius: var(--radius-lg);
  padding: 2rem; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(108,61,232,0.1); }
.tc-quote { font-size: 2rem; color: var(--purple-light); line-height: 1; margin-bottom: 1rem; }
.tc-text { font-size: 0.9rem; color: #374151; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 0.75rem; }
.tc-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-purple); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 1rem; }
.tc-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.tc-role { font-size: 0.78rem; color: var(--grey-mid); }
.testimonials-nav { display: flex; gap: 0.75rem; margin-top: 2rem; justify-content: center; }
.tn-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(108,61,232,0.3); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: var(--transition);
  background: var(--white);
}
.tn-btn:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }

/* ============================================================
   METRICS
   ============================================================ */
.metrics { background: var(--navy); }
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.metric-item { text-align: center; }
.metric-num {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  background: var(--grad-purple);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.5rem;
}
.metric-lbl { font-size: 0.9rem; color: var(--grey-text); font-weight: 500; }

/* ============================================================
   LEAD CAPTURE
   ============================================================ */
.lead-capture {
  background: var(--navy-2);
  position: relative; overflow: hidden;
}
.lead-capture::before {
  content: ''; position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(108,61,232,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.lead-inner {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto; text-align: center;
}
.lead-inner h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--white);
  margin: 0.75rem 0 1rem; line-height: 1.15;
}
.lead-inner p { color: var(--grey-text); margin-bottom: 2.5rem; font-size: 1.05rem; }
.contact-form {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(108,61,232,0.2);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; text-align: left; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--grey-text); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(108,61,232,0.2);
  border-radius: 8px; padding: 0.75rem 1rem; color: var(--white);
  font-size: 0.9rem; transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(155,163,184,0.5); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(108,61,232,0.15);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy-2); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); border-top: 1px solid rgba(108,61,232,0.15); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand-logo-icon {
  width: 32px; height: 32px; background: var(--grad-purple);
  border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.footer-desc { font-size: 0.85rem; color: var(--grey-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-text); font-size: 0.9rem; transition: var(--transition);
}
.footer-social:hover { background: rgba(108,61,232,0.2); border-color: var(--purple); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block; font-size: 0.83rem; color: var(--grey-mid); margin-bottom: 0.6rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-newsletter { margin-top: 0; }
.footer-newsletter p { font-size: 0.83rem; color: var(--grey-mid); margin-bottom: 0.75rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(108,61,232,0.2);
  border-radius: 8px; padding: 0.6rem 0.9rem; color: var(--white); font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(155,163,184,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--purple); }
.newsletter-form button {
  background: var(--grad-purple); color: var(--white); border-radius: 8px;
  padding: 0.6rem 1.1rem; font-size: 0.8rem; font-weight: 600; white-space: nowrap;
  transition: var(--transition);
}
.newsletter-form button:hover { transform: scale(1.03); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; font-size: 0.8rem; color: var(--grey-mid);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--grey-mid); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 60% 50%, rgba(108,61,232,0.12) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.04em; color: var(--white);
  margin: 0.75rem 0 1rem; line-height: 1.1;
}
.page-hero p { font-size: 1.05rem; color: var(--grey-text); line-height: 1.75; max-width: 600px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  padding: 4rem 0; border-bottom: 1px solid var(--grey-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; align-items: start;
}
.sd-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 800;
  background: var(--grad-purple); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 0.5rem;
}
.sd-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.sd-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  color: var(--navy); margin-bottom: 0.25rem;
}
.sd-sub { font-size: 0.8rem; color: var(--grey-mid); }
.sd-desc { font-size: 0.95rem; color: #4a5568; line-height: 1.8; margin-bottom: 1.5rem; }
.sd-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.sd-feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; color: var(--navy);
}
.sd-feature::before { content: '✓'; color: var(--purple); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Engagement cards */
.engagement-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.engagement-card {
  background: var(--navy-2); border: 1px solid rgba(108,61,232,0.15);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  transition: var(--transition);
}
.engagement-card:hover { transform: translateY(-4px); border-color: rgba(108,61,232,0.35); }
.ec-icon { font-size: 2rem; margin-bottom: 1rem; }
.engagement-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.engagement-card p { font-size: 0.82rem; color: var(--grey-text); line-height: 1.65; margin-bottom: 1rem; }
.ec-price { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--purple-light); }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.case-card {
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.case-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(108,61,232,0.12); }
.case-header {
  height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.case-body { padding: 2rem; }
.case-industry { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.5rem; }
.case-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.case-section { margin-bottom: 1rem; }
.case-section-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 0.4rem; }
.case-section p { font-size: 0.85rem; color: #4a5568; line-height: 1.7; }
.case-stack { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.stack-tag { font-size: 0.7rem; background: rgba(108,61,232,0.08); color: var(--purple); border-radius: 4px; padding: 0.2rem 0.6rem; font-weight: 600; }
.case-results { display: flex; gap: 1rem; }
.case-result { text-align: center; flex: 1; }
.case-result-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; background: var(--grad-purple); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.case-result-lbl { font-size: 0.68rem; color: var(--grey-mid); font-weight: 500; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.value-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--navy-2); border: 1px solid rgba(108,61,232,0.15);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(108,61,232,0.35); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--white); }
.timeline { position: relative; padding-left: 3rem; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: rgba(108,61,232,0.3); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.25rem; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--grad-purple); }
.timeline-year { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--purple-light); margin-bottom: 0.25rem; }
.timeline-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.timeline-item p { font-size: 0.85rem; color: var(--grey-text); line-height: 1.65; }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: var(--radius); padding: 1.75rem;
}
.benefit-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.benefit-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.benefit-card p { font-size: 0.83rem; color: #4a5568; line-height: 1.65; }
.jobs-list { display: flex; flex-direction: column; gap: 1rem; }
.job-item {
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: var(--radius); padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition); cursor: pointer;
}
.job-item:hover { border-color: rgba(108,61,232,0.3); box-shadow: 0 8px 24px rgba(108,61,232,0.08); }
.job-info h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.job-meta { display: flex; gap: 1rem; }
.job-tag { font-size: 0.75rem; color: var(--grey-mid); background: var(--grey-light); border-radius: 4px; padding: 0.2rem 0.6rem; font-weight: 500; }
.job-tag.dept { color: var(--purple); background: rgba(108,61,232,0.08); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; }
.contact-info p { font-size: 0.9rem; color: #4a5568; line-height: 1.75; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.cd-icon { width: 40px; height: 40px; background: rgba(108,61,232,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cd-label { font-size: 0.75rem; color: var(--grey-mid); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.cd-val { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.map-placeholder {
  height: 200px; background: var(--off-white); border: 1px solid var(--grey-light);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-top: 2rem; font-size: 0.85rem; color: var(--grey-mid);
}
.contact-form-light .form-group label { color: #4a5568; }
.contact-form-light .form-group input, .contact-form-light .form-group select, .contact-form-light .form-group textarea {
  background: var(--white); border: 1px solid var(--grey-light); color: var(--navy);
}
.contact-form-light .form-group input:focus, .contact-form-light .form-group select:focus, .contact-form-light .form-group textarea:focus {
  border-color: var(--purple);
}
.contact-form-light .form-group select option { background: var(--white); color: var(--navy); }

/* ============================================================
   AI SECTION
   ============================================================ */
.ai-section { background: var(--navy); position: relative; overflow: hidden; }
.ai-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(108,61,232,0.12) 0%, transparent 65%);
}
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.ai-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ai-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(108,61,232,0.2);
  border-radius: var(--radius); padding: 1.5rem; transition: var(--transition);
}
.ai-card:hover { border-color: rgba(108,61,232,0.4); background: rgba(108,61,232,0.05); }
.ai-card.tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.ai-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.ai-card h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.ai-card p { font-size: 0.78rem; color: var(--grey-text); line-height: 1.65; }
.ai-content h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--white);
  margin: 0.75rem 0 1.25rem; line-height: 1.2;
}
.ai-content p { font-size: 0.95rem; color: var(--grey-text); line-height: 1.8; margin-bottom: 1.5rem; }
.ai-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.ai-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; color: var(--white); }
.ai-feature-icon { width: 28px; height: 28px; border-radius: 6px; background: rgba(108,61,232,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */
.industry-section { padding: 4rem 0; border-bottom: 1px solid var(--grey-light); }
.industry-section:last-child { border-bottom: none; }
.industry-section-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.industry-section-inner.reverse { grid-template-columns: 2fr 1fr; direction: rtl; }
.industry-section-inner.reverse > * { direction: ltr; }
.is-icon { font-size: 4rem; margin-bottom: 1rem; }
.is-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 0.25rem; }
.is-sub { font-size: 0.8rem; color: var(--grey-mid); }
.is-desc { font-size: 0.95rem; color: #4a5568; line-height: 1.8; margin-bottom: 1.5rem; }
.is-solutions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.is-sol { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: var(--navy); }
.is-sol::before { content: '→'; color: var(--purple); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-snap-inner { grid-template-columns: 1fr; }
  .about-snap-visual { display: none; }
  .capabilities-inner { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(3,1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .engagement-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(3,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .industry-section-inner, .industry-section-inner.reverse { grid-template-columns: 1fr; direction: ltr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .sd-features { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 4rem 0; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .case-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FONT RENDERING — prevent skewing
   ============================================================ */
*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 {
  font-optical-sizing: none;
  font-synthesis: none;
}

/* ============================================================
   SVG ICON SYSTEM
   ============================================================ */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* icon wrappers */
.icon-box {
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; flex-shrink: 0;
  background: rgba(108,61,232,0.12);
  border: 1px solid rgba(108,61,232,0.22);
  transition: var(--transition);
}
.icon-box svg { stroke: var(--purple-light); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-box.sm  { width: 36px; height: 36px; padding: 7px; border-radius: 9px; }
.icon-box.md  { width: 52px; height: 52px; padding: 13px; border-radius: 12px; }
.icon-box.lg  { width: 64px; height: 64px; padding: 15px; border-radius: 16px; }
.icon-box.xl  { width: 80px; height: 80px; padding: 18px; border-radius: 18px; }
/* colour variants */
.icon-box.cyan  svg { stroke: var(--cyan); }
.icon-box.green svg { stroke: #4ade80; }
.icon-box.white svg { stroke: #fff; }
.icon-box.glow  { box-shadow: 0 0 18px rgba(108,61,232,0.3); }
/* hover lift on cards */
.service-card:hover .icon-box { background: rgba(108,61,232,0.25); transform: scale(1.08); }

/* hv-node icons (hero widget) */
.hv-node .icon-box { width: 28px; height: 28px; padding: 5px; border-radius: 7px; margin: 0 auto 4px; background: rgba(108,61,232,0.18); border-color: rgba(108,61,232,0.25); }
.hv-node .icon-box svg { stroke: var(--cyan); stroke-width: 2; }

/* ai-card icon */
.ai-card .icon-box { width: 40px; height: 40px; padding: 9px; margin-bottom: 0.9rem; }

/* process step icons */
.ps-icon-box { width: 36px; height: 36px; padding: 8px; border-radius: 9px; margin: 0 auto 0.6rem; background: rgba(108,61,232,0.15); border: 1px solid rgba(108,61,232,0.25); display: flex; align-items: center; justify-content: center; }
.ps-icon-box svg { width: 100%; height: 100%; stroke: var(--purple-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* benefit card icons */
.benefit-icon-box { width: 48px; height: 48px; padding: 11px; border-radius: 12px; background: rgba(108,61,232,0.08); border: 1px solid rgba(108,61,232,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.benefit-icon-box svg { width: 100%; height: 100%; stroke: var(--purple); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* value card icons */
.value-icon-box { width: 56px; height: 56px; padding: 13px; border-radius: 14px; background: rgba(108,61,232,0.12); border: 1px solid rgba(108,61,232,0.22); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.value-icon-box svg { width: 100%; height: 100%; stroke: var(--purple-light); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* industry card icons */
.industry-icon-box { width: 56px; height: 56px; padding: 13px; border-radius: 14px; background: rgba(108,61,232,0.07); border: 1px solid rgba(108,61,232,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: var(--transition); }
.industry-icon-box svg { width: 100%; height: 100%; stroke: var(--purple); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.industry-card:hover .industry-icon-box { background: rgba(108,61,232,0.14); border-color: rgba(108,61,232,0.35); }
.industry-card:hover .industry-icon-box svg { stroke: var(--purple-light); }

/* footer social */
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
