@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Palette adapted from the Lovable redesign: monochromatic violet/indigo
   (OKLCH, hue ~274–277), DM Sans body + Space Grotesk headings. */
:root {
  --bg:        oklch(12% 0.04 274);
  --bg2:       oklch(15% 0.05 274);
  --bg3:       oklch(17% 0.055 274);
  --surface:   oklch(19% 0.06 274);
  --surface2:  oklch(24% 0.06 274);
  --border:    oklch(100% 0 0 / 0.08);
  --border2:   oklch(100% 0 0 / 0.15);
  --text:      oklch(98% 0.005 270);
  --text-muted:oklch(72% 0.03 270);
  --text-dim:  oklch(56% 0.03 270);
  --indigo:    oklch(55% 0.22 277);
  --cyan:      oklch(66% 0.19 283);   /* violet-leaning so gradients stay monochromatic */
  --violet:    oklch(63% 0.20 277);
  --accent-glow: oklch(63% 0.20 277);
  --emerald:   oklch(64% 0.19 280);
  --radius:    14px;
  --radius-sm: 10px;
  --shadow:    0 4px 32px oklch(0% 0 0 / 0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #f1f5f9;
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 24px rgba(124,92,246,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(124,92,246,0.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover {
  background: var(--surface2);
  border-color: rgba(255,255,255,0.25);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }

/* ============================================================
   NAV
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s, border-bottom 0.4s, backdrop-filter 0.4s;
}
#navbar.scrolled {
  background: rgba(2,8,23,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1f5f9;
}
.logo-icon { display: flex; align-items: center; }
.logo-accent { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta {
  background: linear-gradient(135deg, var(--indigo), var(--cyan)) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  box-shadow: 0 0 18px rgba(124,92,246,0.3);
}
.nav-cta:hover { box-shadow: 0 0 28px rgba(124,92,246,0.5); background: var(--surface) !important; }

/* ── Dropdown mega-menu ── */
.nav-dd { position: relative; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-trigger:hover,
.nav-dd:hover .nav-trigger { color: var(--text); background: var(--surface); }
.chev { transition: transform 0.25s; opacity: 0.6; }
.nav-dd:hover .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
  padding-top: 12px;
}
.nav-dd:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dd-panel {
  background: rgba(13, 20, 38, 0.98);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border2);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  padding: 12px;
}
.dd-single { width: 330px; display: flex; flex-direction: column; gap: 2px; }
.dd-double { width: 470px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown-wide .dd-panel { width: 580px; }
.dd-text { min-width: 0; flex: 1; }

.dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  transition: background 0.18s, transform 0.18s;
}
.dd-item:hover { background: var(--surface2); transform: translateX(3px); }
.dd-ic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-size: 1.15rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--c) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 32%, transparent);
}
.dd-text { display: flex; flex-direction: column; gap: 1px; }
.dd-text strong { font-size: 0.88rem; font-weight: 600; color: #f1f5f9; }
.dd-text small { font-size: 0.76rem; color: var(--text-dim); line-height: 1.35; }

.dd-grouped { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.dd-group-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan);
  padding: 8px 12px 6px;
}
.dd-item-sm { padding: 8px 12px; gap: 10px; }
.dd-ic-sm { font-size: 1.05rem; width: 24px; text-align: center; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  background: rgba(2,8,23,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 12px 16px 24px;
  z-index: 99;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.2s;
}
.mobile-link:hover { color: var(--text); background: var(--surface); }
.mobile-link-cta {
  margin-top: 10px;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: #fff !important;
  text-align: center;
  border-radius: 50px;
}

/* Mobile accordion */
.m-acc { border-bottom: 1px solid var(--border); }
.m-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
}
.m-acc-head svg { transition: transform 0.25s; opacity: 0.6; }
.m-acc.open .m-acc-head svg { transform: rotate(180deg); }
.m-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
}
.m-acc.open .m-acc-body { max-height: 320px; }
.m-sub {
  padding: 10px 16px 10px 28px;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.m-sub:hover { color: var(--text); }
.m-sub:last-child { padding-bottom: 14px; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 80px 80px;
  position: relative;
  overflow: hidden;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(124,92,246,0.18) 0%, transparent 70%); top: -100px; left: -100px; }
.glow-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%); bottom: -100px; right: 100px; }
.glow-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%); top: 40%; left: 50%; }

.hero-content { flex: 1; max-width: 600px; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(124,92,246,0.12);
  border: 1px solid rgba(124,92,246,0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #a5b4fc;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

#hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust span { font-size: 0.82rem; color: var(--text-dim); }
.trust-badges { display: flex; gap: 8px; }
.trust-badge {
  padding: 4px 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Hero visual */
.hero-visual {
  flex: 0 0 380px;
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin-slow linear infinite;
}
.ring-1 {
  width: 340px; height: 340px;
  border-color: rgba(124,92,246,0.2);
  animation-duration: 20s;
}
.ring-2 {
  width: 260px; height: 260px;
  border-color: rgba(139,92,246,0.2);
  animation-duration: 14s;
  animation-direction: reverse;
}
.ring-3 {
  width: 180px; height: 180px;
  border-color: rgba(139,92,246,0.2);
  animation-duration: 10s;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.visual-core {
  width: 100px; height: 100px;
  background: rgba(124,92,246,0.1);
  border: 1px solid rgba(124,92,246,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(124,92,246,0.2);
  animation: float-core 4s ease-in-out infinite;
}
@keyframes float-core {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(10,15,30,0.8);
  border: 1px solid var(--border2);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: float-card 4s ease-in-out infinite;
  white-space: nowrap;
}
.fc-1 { top: 30px; right: -20px; animation-delay: 0s; }
.fc-2 { bottom: 60px; right: -30px; animation-delay: 1.3s; }
.fc-3 { bottom: 30px; left: -10px; animation-delay: 0.7s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon { font-size: 1.3rem; }
.fc-label { font-size: 0.7rem; color: var(--text-muted); }
.fc-value { font-size: 1rem; font-weight: 700; color: #f1f5f9; font-family: 'Space Grotesk', sans-serif; }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 100px 0;
  position: relative;
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.service-card {
  position: relative;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover .card-glow { opacity: 1; }

.service-card--featured {
  background: linear-gradient(160deg, rgba(124,92,246,0.12) 0%, rgba(139,92,246,0.06) 100%);
  border-color: rgba(124,92,246,0.3);
  box-shadow: 0 0 40px rgba(124,92,246,0.1);
}
.service-card--featured:hover {
  border-color: rgba(124,92,246,0.6);
  box-shadow: 0 20px 60px rgba(124,92,246,0.2);
}

.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50px;
}

.service-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.service-icon-wrap {
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.75rem;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.service-features svg { color: var(--emerald); flex-shrink: 0; margin-top: 2px; }

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--indigo);
  transition: gap 0.2s, color 0.2s;
}
.service-cta:hover { gap: 10px; color: var(--cyan); }
.service-cta--featured { color: var(--cyan); }

.card-glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(124,92,246,0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card-glow--featured { background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%); opacity: 0.5; }

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
}
#process::before, #process::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
#process::before { top: 0; }
#process::after { bottom: 0; }

.process-track { position: relative; padding-top: 2rem; }
.process-line {
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--indigo) 0%, var(--cyan) 50%, transparent 100%);
  opacity: 0.3;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }

.step-node {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(124,92,246,0.3);
  position: relative;
  z-index: 1;
}
.step-node span { font-size: 0.72rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; }

.step-content { flex: 1; }
.step-content h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.4rem;
}
.step-content p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; max-width: 700px; }

/* ============================================================
   WHY US
   ============================================================ */
#why-us { padding: 100px 0; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.why-card:hover {
  border-color: var(--border2);
  background: var(--surface2);
  transform: translateX(4px);
}
.why-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(124,92,246,0.15), rgba(139,92,246,0.1));
  border: 1px solid rgba(124,92,246,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
}
.why-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 4px;
}
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   STATS
   ============================================================ */
#stats {
  padding: 80px 0;
  background: var(--bg3);
  position: relative;
}
#stats::before, #stats::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
#stats::before { top: 0; }
#stats::after { bottom: 0; }

.stats-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  display: inline;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix {
  display: inline;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border2);
  flex-shrink: 0;
}

/* ============================================================
   TECH MARQUEE
   ============================================================ */
#tech { padding: 60px 0; overflow: hidden; }

.tech-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.marquee-outer {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-outer:hover .marquee-track { animation-play-state: paused; }

.tech-pill {
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.2s;
  cursor: default;
}
.tech-pill:hover {
  background: rgba(124,92,246,0.1);
  border-color: rgba(124,92,246,0.3);
  color: #a5b4fc;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { padding: 100px 0; }

.contact-card {
  position: relative;
  background: linear-gradient(160deg, rgba(124,92,246,0.08) 0%, rgba(139,92,246,0.04) 100%);
  border: 1px solid rgba(124,92,246,0.2);
  border-radius: 24px;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,92,246,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 56px 56px;
  position: relative;
}

.contact-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #f1f5f9;
  margin-bottom: 1rem;
}
.contact-left > p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.contact-info-item svg { color: var(--cyan); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select { cursor: pointer; appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(124,92,246,0.5);
  box-shadow: 0 0 0 3px rgba(124,92,246,0.12);
}
.form-group option { background: #0a0f1e; }
.form-group textarea { resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand { max-width: 300px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; margin-top: 14px; }

.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { font-size: 0.88rem; color: var(--text-dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-tagline { font-style: italic; color: var(--text-dim); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
#industries {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
}
#industries::before, #industries::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
#industries::before { top: 0; }
#industries::after { bottom: 0; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.industry-card {
  padding: 32px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.industry-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}
.industry-emoji {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(124,92,246,0.14), rgba(139,92,246,0.08));
  border: 1px solid rgba(124,92,246,0.2);
  border-radius: 14px;
  flex-shrink: 0;
}
.industry-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f1f5f9;
}
.industry-card > p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.industry-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.industry-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.industry-list li::before {
  content: '';
  position: absolute;
  left: 4px; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
}

/* ============================================================
   AI STACK
   ============================================================ */
#stack { padding: 100px 0; }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stack-card {
  padding: 30px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.stack-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,92,246,0.3);
  background: var(--surface2);
}
.stack-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  background: rgba(124,92,246,0.1);
  border: 1px solid rgba(124,92,246,0.22);
  border-radius: 14px;
  margin-bottom: 1.1rem;
}
.stack-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.6rem;
}
.stack-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
#case-studies {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
}
#case-studies::before, #case-studies::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
#case-studies::before { top: 0; }
#case-studies::after { bottom: 0; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--border2);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4);
}
.case-banner {
  height: 130px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.case-banner-1 { background: linear-gradient(135deg, #1e3a8a 0%, #8b5cf6 100%); }
.case-banner-2 { background: linear-gradient(135deg, #4c1d95 0%, #6366f1 100%); }
.case-banner-3 { background: linear-gradient(135deg, #065f46 0%, #8b5cf6 100%); }
.case-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,0.18), transparent 60%);
}
.case-tag {
  position: relative;
  z-index: 1;
  padding: 5px 12px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}
.case-body { padding: 24px 24px 28px; }
.case-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}
.case-body > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.case-metrics {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.case-metric { display: flex; flex-direction: column; gap: 2px; }
.cm-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cm-label { font-size: 0.7rem; color: var(--text-dim); }

/* ============================================================
   CLOUD & PLATFORMS
   ============================================================ */
#cloud { padding: 100px 0; }

.cloud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cloud-card {
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.cloud-card:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.cloud-logo {
  width: 60px; height: 60px;
  margin: 0 auto 1.1rem;
  display: grid; place-items: center;
  font-size: 1.8rem;
  border-radius: 16px;
  border: 1px solid var(--border2);
}
.cloud-claude { background: linear-gradient(135deg, rgba(217,119,87,0.18), rgba(217,119,87,0.06)); color: #e8a07e; }
.cloud-azure  { background: linear-gradient(135deg, rgba(0,120,212,0.18), rgba(0,120,212,0.06)); }
.cloud-aws    { background: linear-gradient(135deg, rgba(255,153,0,0.18), rgba(255,153,0,0.06)); }
.cloud-mcp    { background: linear-gradient(135deg, rgba(124,92,246,0.18), rgba(139,92,246,0.06)); }
.cloud-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.6rem;
}
.cloud-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.1rem; }
.cloud-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ============================================================
   NEWS & INSIGHTS
   ============================================================ */
#insights {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
}
#insights::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.insight-card:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
}

/* Featured card spans 2 cols + 2 rows on desktop */
.insight-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.insight-img {
  height: 150px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px;
}
.insight-feature .insight-img { height: 240px; }
.insight-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 55%);
}
.insight-img-1 { background: linear-gradient(135deg, #312e81 0%, #0e7490 100%); }
.insight-img-2 { background: linear-gradient(135deg, #1e3a8a 0%, #6366f1 100%); }
.insight-img-3 { background: linear-gradient(135deg, #4c1d95 0%, #8b5cf6 100%); }
.insight-img-4 { background: linear-gradient(135deg, #064e3b 0%, #10b981 100%); }
.insight-img-5 { background: linear-gradient(135deg, #155e75 0%, #8b5cf6 100%); }
.insight-cat {
  position: relative;
  z-index: 1;
  padding: 5px 12px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}
.insight-content {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.insight-meta {
  font-size: 0.74rem;
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}
.insight-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.32;
  margin-bottom: 0.6rem;
}
.insight-feature .insight-content h3 { font-size: 1.5rem; }
.insight-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.1rem;
  flex: 1;
}
.insight-feature .insight-content p { font-size: 0.96rem; }
.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--indigo);
  transition: gap 0.2s, color 0.2s;
}
.insight-link:hover { gap: 10px; color: var(--cyan); }

/* ============================================================
   SUB-PAGE SHELL  (services / solutions / about / contact)
   ============================================================ */
.nav-plain { /* inherits .nav-links a */ }
.nav-links a.active,
.nav-trigger.active { color: var(--text); }
.nav-links a.active { background: var(--surface); }

.page-hero {
  padding: 132px 0 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.page-hero .ph-glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(circle, rgba(124,92,246,0.16) 0%, transparent 70%);
  top: -160px; right: -80px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.1rem;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { opacity: 0.5; }
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f8fafc;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.06rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}
.page-section { padding: 72px 0; position: relative; }
.page-section.alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow { /* alias of section-label */ }

/* ============================================================
   TABS  (segmented pill control) — Services page
   ============================================================ */
.tabs { width: 100%; }
.tab-list {
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  max-width: 100%;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: none;
  border-radius: 50px;
  background: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, background 0.25s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: #fff;
  box-shadow: 0 4px 18px rgba(124,92,246,0.3);
}
.tab-btn .tab-num { font-size: 0.72rem; opacity: 0.7; }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabFade 0.45s ease; }
@keyframes tabFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Service detail layout inside a tab */
.svc-detail { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
.svc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 1.1rem; }
.svc-head-ic {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(124,92,246,0.16), rgba(139,92,246,0.08));
  border: 1px solid rgba(124,92,246,0.22);
  flex-shrink: 0;
}
.svc-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.15;
}
.svc-tagline { font-size: 0.82rem; color: var(--cyan); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.svc-detail > .svc-left > p { font-size: 0.98rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.svc-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 1.75rem; }
.svc-points li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--text-muted); align-items: flex-start; }
.svc-points svg { color: var(--emerald); flex-shrink: 0; margin-top: 3px; }

.svc-side { display: flex; flex-direction: column; gap: 16px; }
.svc-box {
  padding: 22px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.svc-box h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
}
.svc-deliver { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.svc-deliver span {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 9px 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.svc-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.svc-pills span {
  font-size: 0.78rem;
  color: #a5b4fc;
  padding: 5px 12px;
  background: rgba(124,92,246,0.1);
  border: 1px solid rgba(124,92,246,0.22);
  border-radius: 50px;
}
.svc-outcomes { display: flex; gap: 20px; }
.svc-outcome { display: flex; flex-direction: column; gap: 2px; }
.svc-outcome .so-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.svc-outcome .so-label { font-size: 0.72rem; color: var(--text-dim); }

/* ============================================================
   VERTICAL TABS — Solutions / Industries page
   ============================================================ */
.vtabs { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.vtab-list { display: flex; flex-direction: column; gap: 8px; position: sticky; top: 90px; }
.vtab-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  width: 100%;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
}
.vtab-btn .vtab-emoji { font-size: 1.3rem; }
.vtab-btn:hover { border-color: var(--border2); color: var(--text); }
.vtab-btn.active {
  border-color: rgba(124,92,246,0.45);
  background: linear-gradient(135deg, rgba(124,92,246,0.14), rgba(139,92,246,0.06));
  color: #f1f5f9;
}
.vtab-btn.active::before { content: ''; }

.vtab-panel { display: none; }
.vtab-panel.active { display: block; animation: tabFade 0.45s ease; }

.sol-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.sol-banner::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.14), transparent 55%); }
.sb-health { background: linear-gradient(135deg, #065f46 0%, #8b5cf6 100%); }
.sb-fin    { background: linear-gradient(135deg, #1e3a8a 0%, #8b5cf6 100%); }
.sb-legal  { background: linear-gradient(135deg, #4c1d95 0%, #6366f1 100%); }
.sb-mfg    { background: linear-gradient(135deg, #7c2d12 0%, #f59e0b 100%); }
.sb-retail { background: linear-gradient(135deg, #831843 0%, #8b5cf6 100%); }
.sol-banner .sb-emoji { font-size: 2.2rem; position: relative; z-index: 1; }
.sol-banner h2 { font-family:'Space Grotesk',sans-serif; font-size:1.6rem; font-weight:700; color:#fff; position:relative; z-index:1; }
.sol-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.85); position: relative; z-index: 1; margin-top: 2px; }

.sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.sol-block {
  padding: 24px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.sol-block h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700; color: #f1f5f9; margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.sol-block ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sol-block li { position: relative; padding-left: 20px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.sol-block li::before { content:''; position:absolute; left:3px; top:8px; width:6px; height:6px; border-radius:50%; background:linear-gradient(135deg,var(--indigo),var(--cyan)); }

.sol-case {
  padding: 26px 28px;
  background: linear-gradient(160deg, rgba(124,92,246,0.1) 0%, rgba(139,92,246,0.04) 100%);
  border: 1px solid rgba(124,92,246,0.22);
  border-radius: var(--radius);
}
.sol-case .sc-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 0.7rem;
}
.sol-case h3 { font-family:'Space Grotesk',sans-serif; font-size:1.25rem; font-weight:700; color:#f1f5f9; margin-bottom:0.6rem; }
.sol-case > p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
.sol-metrics { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--border); }
.sol-metric .sm-num { font-family:'Space Grotesk',sans-serif; font-size:1.6rem; font-weight:700; background:linear-gradient(135deg,var(--indigo),var(--cyan)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.sol-metric .sm-label { font-size: 0.74rem; color: var(--text-dim); }

/* ============================================================
   CAROUSEL — testimonials
   ============================================================ */
.carousel { position: relative; max-width: 100%; margin: 0; padding-bottom: 56px; }
.carousel-window { overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.carousel-slide { min-width: 100%; padding: 0; }
.quote-card {
  padding: 36px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}
.quote-mark { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; line-height: 0.5; color: var(--indigo); opacity: 0.5; }
.quote-card blockquote {
  font-size: 1.18rem;
  line-height: 1.6;
  color: #e2e8f0;
  font-weight: 400;
  margin: 1.2rem 0 1.6rem;
}
.quote-author { display: flex; align-items: center; justify-content: flex-start; gap: 12px; }
.qa-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
}
.qa-meta { text-align: left; }
.qa-name { font-size: 0.92rem; font-weight: 600; color: #f1f5f9; }
.qa-role { font-size: 0.8rem; color: var(--text-dim); }
.carousel-dots { display: flex; gap: 8px; justify-content: flex-start; align-items: center; position: absolute; bottom: 6px; left: 0; }
.c-dot { width: 8px; height: 8px; border-radius: 50px; background: var(--border2); border: none; cursor: pointer; transition: all 0.3s; padding: 0; }
.c-dot.active { width: 26px; background: linear-gradient(135deg, var(--indigo), var(--cyan)); }
.carousel-arrow {
  position: absolute; bottom: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface2); border: 1px solid var(--border2);
  color: var(--text); cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.2s; z-index: 2;
}
.carousel-arrow:hover { background: var(--surface); border-color: rgba(124,92,246,0.4); }
.carousel-arrow.prev { left: auto; right: 52px; }
.carousel-arrow.next { right: 0; }

/* ============================================================
   FAQ ACCORDION (content)
   ============================================================ */
.faq-list { max-width: 100%; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.25s; }
.faq-item.open { border-color: var(--border2); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: #f1f5f9;
  text-align: left;
}
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--indigo); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.open .faq-a { max-height: 260px; }
.faq-a p { padding: 0 22px 20px; font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   HOME — compact capability grid & quick links
   ============================================================ */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cap-card {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  display: block;
}
.cap-card:hover { transform: translateY(-5px); border-color: rgba(124,92,246,0.35); background: var(--surface2); }
.cap-ic {
  width: 48px; height: 48px; display: grid; place-items: center; font-size: 1.4rem;
  border-radius: 13px; margin-bottom: 1rem;
  background: rgba(124,92,246,0.1); border: 1px solid rgba(124,92,246,0.22);
}
.cap-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: #f1f5f9; margin-bottom: 0.5rem; }
.cap-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0.9rem; }
.cap-more { font-size: 0.82rem; font-weight: 600; color: var(--indigo); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.cap-card:hover .cap-more { gap: 9px; }

.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.quick-card {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.quick-card:hover { border-color: var(--border2); transform: translateX(4px); background: var(--surface2); }
.quick-card .qc-emoji { font-size: 1.5rem; }
.quick-card .qc-name { font-size: 0.95rem; font-weight: 600; color: #f1f5f9; }
.quick-card .qc-sub { font-size: 0.78rem; color: var(--text-dim); }
.quick-card .qc-arrow { margin-left: auto; color: var(--text-dim); transition: color 0.2s, transform 0.2s; }
.quick-card:hover .qc-arrow { color: var(--indigo); transform: translateX(3px); }

/* compact hero metric strip */
.hero-metrics {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 2rem; padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.hero-metric .hm-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.7rem; font-weight: 800;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-metric .hm-label { font-size: 0.76rem; color: var(--text-dim); }

.cta-band {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(160deg, rgba(124,92,246,0.12) 0%, rgba(139,92,246,0.05) 100%);
  border: 1px solid rgba(124,92,246,0.22);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: #f1f5f9; margin-bottom: 0.8rem; }
.cta-band p { font-size: 1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 1.8rem; }

/* values grid (about) */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 28px 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.value-card .v-num { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--cyan); margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.value-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: #f1f5f9; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   LOVABLE-STYLE HOME  (centered hero, bento, sectors, split-why, CTA)
   ============================================================ */
.eyebrow {
  display:inline-block; font-size:0.74rem; font-weight:600; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--violet); margin-bottom:1rem;
}

/* Centered hero */
.lv-hero {
  position:relative; min-height:100vh; display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center;
  padding:120px 24px 64px; overflow:hidden;
}
.lv-hero .hero-glow.glow-1 { top:-160px; left:50%; transform:translateX(-60%); }
.lv-hero .hero-glow.glow-2 { bottom:-120px; right:18%; }
.lv-badge {
  display:inline-flex; align-items:center; gap:8px; padding:7px 16px;
  background:oklch(55% 0.22 277 / 0.12); border:1px solid oklch(55% 0.22 277 / 0.35);
  border-radius:50px; font-size:0.74rem; font-weight:600; letter-spacing:0.14em;
  text-transform:uppercase; color:oklch(80% 0.09 277); margin-bottom:1.8rem; position:relative; z-index:2;
}
.lv-hero h1 {
  font-family:'Space Grotesk',sans-serif; font-size:clamp(2.6rem,6.4vw,4.8rem);
  font-weight:700; line-height:1.05; letter-spacing:-0.02em; color:#fff;
  max-width:980px; margin-bottom:1.6rem; position:relative; z-index:2;
}
.lv-hero .hero-sub {
  font-size:1.15rem; color:var(--text-muted); line-height:1.7; max-width:600px;
  margin:0 auto 2.2rem; position:relative; z-index:2;
}
.lv-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; z-index:2; margin-bottom:3.5rem; }

.lv-stats {
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  width:100%; max-width:1000px; position:relative; z-index:2;
}
.lv-stat {
  padding:24px 26px; background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius); text-align:left;
}
.lv-stat .ls-num {
  font-family:'Space Grotesk',sans-serif; font-size:2.1rem; font-weight:700; color:#fff; line-height:1;
}
.lv-stat .ls-label { font-size:0.7rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-dim); margin-top:8px; }

/* Uppercase tech marquee */
#tech .marquee-track.lv-track { gap:0; }
.lv-tech-item {
  padding:0 34px; font-size:0.82rem; font-weight:600; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--text-dim); white-space:nowrap;
}

/* Split section header (title left, description right) */
.head-split { display:grid; grid-template-columns:1.3fr 1fr; gap:40px; align-items:end; margin-bottom:48px; }
.head-split .hs-title { font-family:'Space Grotesk',sans-serif; font-size:clamp(2rem,3.6vw,3rem); font-weight:700; color:#f5f3ff; line-height:1.1; letter-spacing:-0.01em; }
.head-split .hs-desc { font-size:1rem; color:var(--text-muted); line-height:1.7; padding-bottom:6px; }

/* Bento grid */
.bento { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.bento-card {
  position:relative; padding:30px 30px; background:var(--surface);
  border:1px solid var(--border); border-radius:18px; overflow:hidden;
  transition:border-color 0.3s, transform 0.3s;
}
.bento-card:hover { border-color:oklch(55% 0.22 277 / 0.5); transform:translateY(-3px); }
.bento-a { grid-column:1; grid-row:1 / span 2; display:flex; flex-direction:column; }
.bento-b { grid-column:2; grid-row:1; }
.bento-c { grid-column:2; grid-row:2; }
.bento-d { grid-column:1 / span 2; display:flex; align-items:center; justify-content:space-between; gap:30px; }
.bento-ic {
  width:46px; height:46px; display:grid; place-items:center; font-size:1.25rem;
  border-radius:12px; background:oklch(55% 0.22 277 / 0.14); border:1px solid oklch(55% 0.22 277 / 0.3);
  color:#fff; margin-bottom:1.1rem;
}
.bento-card h3 { font-family:'Space Grotesk',sans-serif; font-size:1.2rem; font-weight:700; color:#f5f3ff; margin-bottom:0.6rem; }
.bento-card p { font-size:0.92rem; color:var(--text-muted); line-height:1.6; }
.bento-visual {
  margin-top:auto; height:190px; border-radius:14px; margin-top:24px;
  background:
    radial-gradient(circle at 50% 120%, oklch(63% 0.2 277 / 0.55), transparent 60%),
    repeating-linear-gradient(0deg, oklch(30% 0.06 277 / 0.5) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, oklch(30% 0.06 277 / 0.5) 0 1px, transparent 1px 22px),
    oklch(15% 0.05 274);
  border:1px solid var(--border);
  position:relative;
}
.bento-visual::after {
  content:''; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:74px; height:74px; border-radius:14px;
  background:linear-gradient(135deg, var(--indigo), var(--violet));
  box-shadow:0 0 50px 6px oklch(63% 0.2 277 / 0.6);
}
.bento-d-text { flex:1; }
.ring {
  flex-shrink:0; width:120px; height:120px; border-radius:50%; position:relative;
  background:conic-gradient(var(--violet) 0% 92%, var(--surface2) 92% 100%);
  display:grid; place-items:center;
}
.ring::before { content:''; position:absolute; inset:9px; border-radius:50%; background:var(--bg2); }
.ring span { position:relative; z-index:1; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:1.3rem; color:#fff; }

/* SECTOR cards */
.sector-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.sector-card {
  position:relative; padding:26px 24px; background:var(--surface);
  border:1px solid var(--border); border-radius:16px; transition:border-color 0.3s, transform 0.3s;
}
.sector-card:hover { border-color:oklch(55% 0.22 277 / 0.5); transform:translateY(-4px); }
.sector-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.4rem; }
.sector-ic { width:44px; height:44px; display:grid; place-items:center; font-size:1.2rem; border-radius:11px; background:oklch(55% 0.22 277 / 0.14); border:1px solid oklch(55% 0.22 277 / 0.3); }
.sector-tag { font-size:0.66rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--violet); }
.sector-card h3 { font-family:'Space Grotesk',sans-serif; font-size:1.2rem; font-weight:700; color:#f5f3ff; margin-bottom:0.5rem; }
.sector-card p { font-size:0.86rem; color:var(--text-muted); line-height:1.55; }

/* Split WHY */
.why2 { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.why-visual {
  position:relative; aspect-ratio:1 / 0.92; border-radius:18px; overflow:hidden;
  border:1px solid var(--border);
  background:
    radial-gradient(ellipse at 50% 0%, oklch(45% 0.16 270 / 0.5), transparent 60%),
    linear-gradient(180deg, oklch(20% 0.06 270), oklch(11% 0.04 274));
}
.why-visual .wv-line { position:absolute; left:18%; right:18%; height:2px; background:oklch(75% 0.13 240 / 0.7); box-shadow:0 0 14px oklch(75% 0.13 240 / 0.8); }
.why-visual .wv-line:nth-child(1){ top:34%; } .why-visual .wv-line:nth-child(2){ top:46%; left:26%; right:26%; } .why-visual .wv-line:nth-child(3){ top:58%; left:30%; right:30%; }
.why-float {
  position:absolute; right:18px; bottom:18px; padding:18px 22px; border-radius:14px;
  background:linear-gradient(135deg, var(--indigo), var(--violet));
  box-shadow:0 16px 40px oklch(55% 0.22 277 / 0.45);
}
.why-float .wf-num { font-family:'Space Grotesk',sans-serif; font-size:1.7rem; font-weight:700; color:#fff; line-height:1; }
.why-float .wf-label { font-size:0.66rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:oklch(92% 0.04 277); margin-top:4px; }
.why2 h2 { font-family:'Space Grotesk',sans-serif; font-size:clamp(2rem,3.4vw,2.8rem); font-weight:700; color:#f5f3ff; line-height:1.1; margin-bottom:1.8rem; letter-spacing:-0.01em; }
.why-feats { display:flex; flex-direction:column; gap:22px; }
.why-feat { display:flex; gap:16px; align-items:flex-start; }
.why-feat .wf-ic { flex-shrink:0; width:42px; height:42px; display:grid; place-items:center; border-radius:11px; background:oklch(55% 0.22 277 / 0.14); border:1px solid oklch(55% 0.22 277 / 0.3); color:var(--violet); }
.why-feat h4 { font-family:'Space Grotesk',sans-serif; font-size:1.05rem; font-weight:600; color:#f5f3ff; margin-bottom:4px; }
.why-feat p { font-size:0.9rem; color:var(--text-muted); line-height:1.6; }

/* Bright violet CTA panel */
.lv-cta {
  position:relative; overflow:hidden; text-align:center;
  padding:72px 40px; border-radius:28px;
  background:linear-gradient(135deg, oklch(55% 0.22 277), oklch(50% 0.2 290));
}
.lv-cta::before, .lv-cta::after {
  content:''; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  border-radius:50%; border:1px solid oklch(100% 0 0 / 0.12); pointer-events:none;
}
.lv-cta::before { width:480px; height:480px; }
.lv-cta::after { width:720px; height:720px; }
.lv-cta h2 { font-family:'Space Grotesk',sans-serif; font-size:clamp(2rem,4vw,3rem); font-weight:700; color:#fff; line-height:1.1; margin-bottom:1rem; position:relative; z-index:1; }
.lv-cta p { font-size:1.05rem; color:oklch(96% 0.03 277); max-width:560px; margin:0 auto 2rem; position:relative; z-index:1; }
.lv-cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }
.btn-white { display:inline-flex; align-items:center; gap:8px; padding:14px 28px; background:#fff; color:oklch(40% 0.18 277); font-weight:700; font-size:0.95rem; border-radius:50px; transition:transform 0.25s, box-shadow 0.25s; }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 12px 30px oklch(0% 0 0 / 0.3); }
.btn-outline-white { display:inline-flex; align-items:center; gap:8px; padding:14px 28px; background:oklch(100% 0 0 / 0.1); color:#fff; font-weight:600; font-size:0.95rem; border-radius:50px; border:1px solid oklch(100% 0 0 / 0.4); transition:background 0.25s; }
.btn-outline-white:hover { background:oklch(100% 0 0 / 0.2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  #hero { padding: 100px 40px 80px; gap: 40px; }
  .hero-visual { flex: 0 0 300px; height: 300px; }
  .ring-1 { width: 280px; height: 280px; }
  .ring-2 { width: 210px; height: 210px; }
  .ring-3 { width: 140px; height: 140px; }
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .cloud-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-feature { grid-column: span 2; grid-row: auto; }
  .insight-feature .insight-content h3 { font-size: 1.25rem; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-list { grid-template-columns: 1fr; max-width: 720px; }
  .svc-detail { grid-template-columns: 1fr; gap: 28px; }
  .bento { grid-template-columns: 1fr; }
  .bento-a, .bento-b, .bento-c, .bento-d { grid-column: auto; grid-row: auto; }
  .bento-d { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ring { align-self: flex-start; }
  .why2 { grid-template-columns: 1fr; gap: 32px; }
  .vtabs { grid-template-columns: 1fr; }
  .vtab-list { flex-direction: row; overflow-x: auto; position: static; padding-bottom: 6px; }
  .vtab-btn { white-space: nowrap; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-stats { grid-template-columns: repeat(2, 1fr); }
  .head-split { grid-template-columns: 1fr; gap: 16px; align-items: start; }
}

@media (max-width: 768px) {
  #hero { flex-direction: column; padding: 100px 24px 60px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-wrap { justify-content: center; }
  .stat-divider { display: none; }
  .contact-inner { grid-template-columns: 1fr; padding: 32px 24px; gap: 36px; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-links { gap: 32px; }
  .process-step { gap: 16px; }
  .section-sub { margin-bottom: 2.75rem; }
  .industries-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cloud-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .insights-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .insight-feature { grid-column: auto; }
  .insight-feature .insight-img { height: 150px; }
  .insight-feature .insight-content h3 { font-size: 1.08rem; }
  .insight-feature .insight-content p { font-size: 0.88rem; }
  /* sub-page patterns */
  .cap-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .quick-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .sol-grid { grid-template-columns: 1fr; }
  .svc-deliver { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .tab-list { display: flex; justify-content: flex-start; overflow-x: auto; border-radius: 16px; }
  .carousel-arrow.prev { left: 4px; }
  .carousel-arrow.next { right: 4px; }
  .quote-card { padding: 30px 24px; }
  .quote-card blockquote { font-size: 1.02rem; }
  .page-hero { padding: 116px 0 48px; }
  .cta-band { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .contact-inner { padding: 24px 20px; }
  .footer-links { flex-direction: column; }
  .svc-outcomes { gap: 16px; }
  .sol-metrics { gap: 20px; }
  .sector-grid { grid-template-columns: 1fr; }
  .lv-stats { grid-template-columns: 1fr; }
  .lv-cta { padding: 48px 24px; }
}
