﻿/*
Theme Name: Digitalparc Theme
Theme URI: https://wordpress.org/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Theme Description
Version: 1.0
Text Domain: dp_theme

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/* Evolva Solutions ? Brand Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --black: #0a1628;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --blue-dark: #1a3fad;
  --blue: #2f5be8;
  --blue-bright: #4a74f5;
  --blue-soft: #e8eeff;
  --gradient: linear-gradient(135deg, #1a3fad 0%, #2f5be8 50%, #5b8cff 100%);
  --gradient-soft: linear-gradient(160deg, rgba(47, 91, 232, 0.1) 0%, rgba(91, 140, 255, 0.05) 100%);
  --bg: #f6f7fb;
  --bg-white: #ffffff;
  --bg-soft: #eef2ff;
  --surface: #ffffff;
  --text: #101828;
  --text-muted: #667085;
  --border: rgba(16, 24, 40, 0.08);
  --shadow: 0 4px 24px rgba(16, 24, 40, 0.06);
  --shadow-hover: 0 12px 40px rgba(47, 91, 232, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.15;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}

.header.scrolled { padding: 0.6rem 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 56px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.1rem 1.1rem;
}

.nav > a,
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0.5rem 0;
  line-height: 1.2;
}

.nav > a:hover,
.nav > a.active,
.nav-link:hover,
.nav-item.open > .nav-link,
.nav-item.is-open > .nav-link,
.nav-item:hover > .nav-link {
  color: var(--blue);
}

.nav > a.active::after,
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0.2rem; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.nav-chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-item.open .nav-chevron,
.nav-item.is-open .nav-chevron,
.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item.has-mega {
  position: static;
}

.nav-item.has-dropdown {
  position: relative;
}

/* Simple dropdown (Services) */
.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 260px;
  padding: 0.55rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 100;
}

.nav-item.has-dropdown > .nav-dropdown {
  left: 0;
  transform: translateY(4px);
  min-width: 272px;
  padding: 0.65rem 0.5rem;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -20px;
  right: -20px;
  height: 20px;
}

.nav-item:hover > .nav-dropdown,
.nav-item.open > .nav-dropdown,
.nav-item.is-open > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item.has-dropdown:hover > .nav-dropdown,
.nav-item.has-dropdown.open > .nav-dropdown,
.nav-item.has-dropdown.is-open > .nav-dropdown,
.nav-item.has-dropdown:focus-within > .nav-dropdown {
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-item.has-dropdown > .nav-dropdown a:not(.nav-dropdown-foot) {
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-dropdown a span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.35;
}

.nav-dropdown a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.nav-dropdown a:hover span { color: var(--blue); opacity: 0.8; }

.nav-dropdown-foot {
  display: block;
  margin-top: 0.25rem;
  padding: 0.7rem 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
}

/* Mega menu (Hire) */
.mega-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: min(980px, calc(100vw - 2.5rem));
  display: grid;
  grid-template-columns: 168px 1fr 220px;
  gap: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 120;
  overflow: hidden;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 22px;
}

.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega.open .mega-menu,
.nav-item.has-mega.is-open .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-cats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0.75rem;
  background: var(--bg);
  border-right: 1px solid var(--border);
}

.mega-cat {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.85rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.mega-cat:hover { color: var(--blue); background: rgba(47, 91, 232, 0.06); }

.mega-cat.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(47, 91, 232, 0.28);
}

.mega-panels {
  padding: 1.25rem 1.35rem;
  min-height: 280px;
}

.mega-panel {
  display: none;
}

.mega-panel.active { display: block; }

.mega-panel-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.mega-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.25rem;
}

.mega-links a {
  display: block;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s ease, color 0.15s ease;
}

.mega-links a span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.35;
}

.mega-links a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.mega-links a:hover span { color: var(--blue); opacity: 0.8; }

.mega-aside {
  padding: 1.25rem 1.15rem;
  background: linear-gradient(165deg, #f3f6ff 0%, #e8eeff 100%);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.mega-aside-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}

.mega-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 0.55rem;
}

.mega-badge strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
}

.mega-badge span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.mega-badge-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.mega-aside-cta {
  margin-top: auto;
  padding-top: 0.85rem;
}

.mega-aside-cta a {
  display: block;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 50px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.mega-aside-cta a:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.5rem;
}

.nav-cta-ghost {
  padding: 0.5rem 1.1rem !important;
  border: 1.5px solid var(--text);
  border-radius: 50px;
  color: var(--text) !important;
  font-weight: 600 !important;
  font-size: 0.86rem !important;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.nav-cta-ghost:hover {
  border-color: var(--blue);
  color: var(--blue) !important;
  background: var(--blue-soft);
}

.nav-cta-ghost::after { display: none !important; }

.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.86rem !important;
}

.nav-cta:hover { opacity: 0.9; }

.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

body.nav-open {
  overflow: hidden;
}

.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(43,88,204,0.35); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--bg-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--bg-white);
}


/* Homepage banner (Mindinventory layout, Evolva blue) */
.hero-banner {
  padding: 6.5rem 0 2.25rem;
  background: #f4f6fb;
  position: relative;
}

.hero-banner-wrap {
  position: relative;
  z-index: 1;
}

.hero-banner-panel {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #fbfcff 0%, #eef3ff 48%, #f7f9ff 100%);
  border: 1px solid rgba(47, 91, 232, 0.08);
  box-shadow: 0 24px 64px rgba(16, 24, 40, 0.07);
  min-height: min(520px, 68vh);
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-banner-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(47, 91, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 232, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 85% 75% at 65% 45%, #000 15%, transparent 78%);
}

.hero-banner-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.hero-banner-glow-1 {
  width: 380px;
  height: 380px;
  top: -140px;
  right: 8%;
  background: rgba(74, 125, 255, 0.28);
}

.hero-banner-glow-2 {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: 8%;
  background: rgba(47, 91, 232, 0.14);
}

.hero-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 4.5vw, 4rem);
  min-height: inherit;
}

.hero-banner-copy {
  max-width: 520px;
}

.hero-banner-eyebrow {
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.hero-banner-copy h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  color: var(--text);
  font-weight: 700;
}

.hero-banner-copy h1 span {
  color: var(--blue);
}

.hero-banner-cta {
  min-height: 52px;
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
}

.hero-banner-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.hero-banner-rings {
  position: absolute;
  width: min(460px, 95%);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-banner-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(47, 91, 232, 0.16);
  animation: bannerRingPulse 5s ease-in-out infinite;
}

.hero-banner-rings span:nth-child(2) {
  inset: 11%;
  border-color: rgba(47, 91, 232, 0.24);
  animation-delay: 0.35s;
}

.hero-banner-rings span:nth-child(3) {
  inset: 23%;
  border-color: rgba(47, 91, 232, 0.34);
  animation-delay: 0.7s;
}

.hero-banner-rings span:nth-child(4) {
  inset: 36%;
  border-color: rgba(47, 91, 232, 0.45);
  box-shadow: 0 0 40px rgba(47, 91, 232, 0.12);
  animation-delay: 1s;
}

@keyframes bannerRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.025); opacity: 1; }
}

.hero-banner-media {
  position: relative;
  z-index: 2;
  width: min(400px, 88%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(16, 24, 40, 0.18);
  border: 5px solid rgba(255, 255, 255, 0.95);
}

.hero-banner-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.hero-banner-core {
  position: absolute;
  z-index: 3;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 30%, #7aa2ff 0%, #2f5be8 45%, #1a3fad 100%);
  box-shadow:
    0 0 0 10px rgba(47, 91, 232, 0.18),
    0 0 0 22px rgba(47, 91, 232, 0.08),
    0 12px 36px rgba(47, 91, 232, 0.4);
  animation: bannerCorePulse 3.5s ease-in-out infinite;
}

@keyframes bannerCorePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.06); }
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.35rem;
  padding: 0.35rem 0.15rem;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.45;
}

.trust-bar-label strong {
  color: var(--text);
  font-weight: 600;
}

.trust-bar-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: flex-end;
}

.trust-bar-items span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
  padding: 0.45rem 0.95rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  letter-spacing: 0.01em;
}

/* Home only: header matches spectrum banner (#03070f); scrolled = same white bar as other pages */
body.home .header:not(.scrolled),
body.front-page .header:not(.scrolled) {
  background: #03070f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home .header.scrolled,
body.front-page .header.scrolled,
body.home.nav-open .header,
body.front-page.nav-open .header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(15, 23, 42, 0.04);
}

body.home .header:not(.scrolled) .logo,
body.front-page .header:not(.scrolled) .logo {
  filter: brightness(0) invert(1);
}

body.home .header.scrolled .logo,
body.front-page .header.scrolled .logo,
body.home.nav-open .header .logo,
body.front-page.nav-open .header .logo {
  filter: none;
}

body.home .header:not(.scrolled) .menu-toggle span,
body.front-page .header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

body.home .header.scrolled .menu-toggle span,
body.front-page .header.scrolled .menu-toggle span,
body.home.nav-open .header .menu-toggle span,
body.front-page.nav-open .header .menu-toggle span {
  background: var(--text);
}

/* Desktop light-on-dark nav (mobile drawer stays on light panel) */
@media (min-width: 1101px) {
  body.home .header:not(.scrolled) .nav > a,
  body.home .header:not(.scrolled) .nav-link,
  body.front-page .header:not(.scrolled) .nav > a,
  body.front-page .header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.88);
  }

  body.home .header:not(.scrolled) .nav > a:hover,
  body.home .header:not(.scrolled) .nav > a.active,
  body.home .header:not(.scrolled) .nav-link:hover,
  body.home .header:not(.scrolled) .nav-item.open > .nav-link,
  body.home .header:not(.scrolled) .nav-item.is-open > .nav-link,
  body.home .header:not(.scrolled) .nav-item:hover > .nav-link,
  body.front-page .header:not(.scrolled) .nav > a:hover,
  body.front-page .header:not(.scrolled) .nav > a.active,
  body.front-page .header:not(.scrolled) .nav-link:hover,
  body.front-page .header:not(.scrolled) .nav-item.open > .nav-link,
  body.front-page .header:not(.scrolled) .nav-item.is-open > .nav-link,
  body.front-page .header:not(.scrolled) .nav-item:hover > .nav-link {
    color: #fff;
  }

  body.home .header:not(.scrolled) .nav > a.active::after,
  body.home .header:not(.scrolled) .nav-link.active::after,
  body.front-page .header:not(.scrolled) .nav > a.active::after,
  body.front-page .header:not(.scrolled) .nav-link.active::after {
    background: linear-gradient(90deg, #22d3ee, #4a74f5);
  }

  body.home .header:not(.scrolled) .nav-cta-ghost,
  body.front-page .header:not(.scrolled) .nav-cta-ghost {
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: #fff !important;
    background: transparent;
  }

  body.home .header:not(.scrolled) .nav-cta-ghost:hover,
  body.front-page .header:not(.scrolled) .nav-cta-ghost:hover {
    border-color: #fff !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Option 3 — Neon tech dark (Evolva blue) */
.hero.hero-neon {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050b16;
  color: #fff;
  padding: 7.5rem 0 3.5rem;
}

.hero-neon-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 78% 45%, rgba(47, 91, 232, 0.28), transparent 65%),
    radial-gradient(ellipse 40% 35% at 15% 80%, rgba(26, 63, 173, 0.22), transparent 60%),
    linear-gradient(160deg, #070f1c 0%, #050b16 55%, #0a1628 100%);
}

.hero-neon-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.hero-neon-glow-a {
  width: 420px;
  height: 420px;
  right: 12%;
  top: 28%;
  background: rgba(74, 116, 245, 0.28);
  animation: neonPulse 6s ease-in-out infinite alternate;
}

.hero-neon-glow-b {
  width: 280px;
  height: 280px;
  left: 8%;
  bottom: 10%;
  background: rgba(47, 91, 232, 0.18);
  animation: neonPulse 7.5s ease-in-out infinite alternate-reverse;
}

.hero-neon-glow-c {
  display: none;
}

@keyframes neonPulse {
  from { opacity: 0.55; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1.08); }
}

.hero-neon-gridfloor {
  position: absolute;
  left: 45%;
  right: -5%;
  bottom: -8%;
  height: 55%;
  background-image:
    linear-gradient(rgba(74, 116, 245, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 116, 245, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(500px) rotateX(58deg);
  transform-origin: center top;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 85%);
  opacity: 0.65;
}

.hero-neon-shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-neon-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem 2.5rem;
  align-items: center;
}

.hero-neon-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 1.15rem;
  color: #fff;
  max-width: 14ch;
}

.hero-neon-copy .hero-highlight {
  background: linear-gradient(135deg, #9bbcff 0%, #4a74f5 45%, #2f5be8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-neon-copy .hero-highlight::after {
  background: linear-gradient(90deg, #2f5be8, #7aa2ff);
  opacity: 0.5;
}

.hero-neon-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero-neon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-neon-actions .btn-primary span {
  margin-left: 0.35rem;
}

.hero-neon-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.hero-neon-actions .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-neon-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  max-width: 540px;
}

.hero-neon-feature {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.hero-neon-ico {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8eb0ff;
  background: rgba(47, 91, 232, 0.14);
  border: 1px solid rgba(122, 162, 255, 0.22);
  border-radius: 10px;
}

.hero-neon-ico svg {
  width: 18px;
  height: 18px;
}

.hero-neon-stage {
  position: relative;
  min-height: 420px;
  perspective: 900px;
}

.neon-panel {
  position: absolute;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(22, 36, 64, 0.95), rgba(10, 18, 36, 0.92));
  border: 1px solid rgba(122, 162, 255, 0.22);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(47, 91, 232, 0.12);
  backdrop-filter: blur(8px);
}

.neon-panel-dash {
  width: min(340px, 78%);
  right: 8%;
  top: 12%;
  padding: 1rem 1.1rem 1.15rem;
  transform: rotateY(-8deg) rotateX(4deg);
  animation: neonFloat 7s ease-in-out infinite;
}

.neon-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.neon-pill {
  font-size: 0.68rem;
  font-weight: 700;
  color: #9bbcff;
  background: rgba(47, 91, 232, 0.22);
  border: 1px solid rgba(122, 162, 255, 0.35);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.neon-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 120px;
  padding: 0.35rem 0.15rem 0;
}

.neon-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #7aa2ff 0%, #2f5be8 100%);
  box-shadow: 0 0 16px rgba(74, 116, 245, 0.35);
  animation: neonBar 3.2s ease-in-out infinite alternate;
}

.neon-bars span:nth-child(2) { animation-delay: 0.15s; }
.neon-bars span:nth-child(3) { animation-delay: 0.3s; }
.neon-bars span:nth-child(4) { animation-delay: 0.45s; }
.neon-bars span:nth-child(5) { animation-delay: 0.6s; }
.neon-bars span:nth-child(6) { animation-delay: 0.75s; }

@keyframes neonBar {
  from { filter: brightness(0.9); transform: scaleY(0.96); }
  to { filter: brightness(1.15); transform: scaleY(1); }
}

.neon-panel-phone {
  width: 118px;
  height: 220px;
  left: 12%;
  bottom: 10%;
  padding: 0.7rem 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  transform: rotate(-8deg);
  animation: neonFloat 6s ease-in-out infinite reverse;
}

.neon-phone-notch {
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.neon-phone-check {
  width: 48px;
  height: 48px;
  margin-top: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, #4a74f5, #1a3fad);
  box-shadow: 0 0 24px rgba(74, 116, 245, 0.45);
}

.neon-phone-btn {
  width: 70%;
  height: 28px;
  margin-top: auto;
  border-radius: 8px;
  background: rgba(122, 162, 255, 0.2);
  border: 1px solid rgba(122, 162, 255, 0.3);
}

.neon-code {
  position: absolute;
  right: 4%;
  bottom: 22%;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #9bbcff;
  background: linear-gradient(160deg, rgba(30, 50, 90, 0.95), rgba(12, 22, 42, 0.95));
  border: 1px solid rgba(122, 162, 255, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 24px rgba(47, 91, 232, 0.25);
  animation: neonFloat 5s ease-in-out infinite;
}

.neon-cube {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(122, 162, 255, 0.55), rgba(47, 91, 232, 0.25));
  border: 1px solid rgba(155, 188, 255, 0.4);
  box-shadow: 0 0 18px rgba(74, 116, 245, 0.35);
  transform: rotate(20deg);
}

.neon-cube-1 { top: 18%; left: 22%; animation: neonFloat 4.5s ease-in-out infinite; }
.neon-cube-2 { top: 48%; right: 2%; width: 16px; height: 16px; animation: neonFloat 5.5s ease-in-out infinite reverse; }
.neon-cube-3 { bottom: 28%; left: 4%; width: 14px; height: 14px; animation: neonFloat 6.2s ease-in-out infinite; }

.neon-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7aa2ff;
  box-shadow: 0 0 12px rgba(122, 162, 255, 0.8);
}

.neon-node-1 { top: 30%; right: 28%; }
.neon-node-2 { top: 58%; left: 38%; }
.neon-node-3 { bottom: 18%; right: 36%; }

@keyframes neonFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.neon-panel-dash { animation-name: neonFloatTilt; }

@keyframes neonFloatTilt {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-10px); }
}

.neon-panel-phone { animation-name: neonFloatPhone; }

@keyframes neonFloatPhone {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-8px); }
}

@media (max-width: 900px) {
  .hero.hero-neon {
    min-height: auto;
    padding: 6.5rem 0 3rem;
  }

  .hero-neon-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-neon-copy h1 { max-width: none; }

  .hero-neon-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .hero-neon-stage {
    min-height: 340px;
    margin: 0 auto;
    width: min(100%, 420px);
  }

  .hero-neon-gridfloor {
    left: 0;
    right: 0;
    opacity: 0.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-neon-glow,
  .neon-panel-dash,
  .neon-panel-phone,
  .neon-code,
  .neon-cube,
  .neon-bars span {
    animation: none !important;
  }
}

/* Option 4 — Spectrum dark (black/blue + cyan, teal, amber) */
.hero.hero-neon-spectrum {
  --spec-cyan: #22d3ee;
  --spec-teal: #2dd4bf;
  --spec-amber: #fbbf24;
  --spec-blue: #4a74f5;
  --spec-blue-deep: #1a3fad;
  background: #03070f;
}

.hero-neon-spectrum .hero-neon-bg {
  background:
    radial-gradient(ellipse 50% 45% at 82% 38%, rgba(34, 211, 238, 0.18), transparent 62%),
    radial-gradient(ellipse 45% 40% at 70% 55%, rgba(47, 91, 232, 0.32), transparent 65%),
    radial-gradient(ellipse 40% 35% at 12% 78%, rgba(45, 212, 191, 0.14), transparent 58%),
    radial-gradient(ellipse 30% 28% at 40% 20%, rgba(251, 191, 36, 0.08), transparent 55%),
    linear-gradient(155deg, #050b16 0%, #03070f 50%, #0a1628 100%);
}

.hero-neon-spectrum .hero-neon-glow-a {
  background: rgba(34, 211, 238, 0.22);
  right: 8%;
  top: 22%;
}

.hero-neon-spectrum .hero-neon-glow-b {
  background: rgba(47, 91, 232, 0.28);
  left: 6%;
  bottom: 12%;
}

.hero-neon-spectrum .hero-neon-glow-c {
  display: block;
  width: 220px;
  height: 220px;
  right: 28%;
  bottom: 18%;
  background: rgba(251, 191, 36, 0.12);
  animation: neonPulse 8s ease-in-out infinite alternate;
}

.hero-neon-spectrum .hero-neon-gridfloor {
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 116, 245, 0.2) 1px, transparent 1px);
}

.hero-neon-spectrum .hero-highlight {
  background: linear-gradient(135deg, #67e8f9 0%, #4a74f5 40%, #2dd4bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-neon-spectrum .hero-highlight::after {
  background: linear-gradient(90deg, #22d3ee, #4a74f5, #2dd4bf);
  opacity: 0.65;
}

.hero-neon-spectrum .hero-neon-actions .btn-primary {
  background: linear-gradient(135deg, #1a3fad 0%, #2f5be8 45%, #0891b2 100%);
  box-shadow: 0 8px 28px rgba(8, 145, 178, 0.28);
}

.hero-neon-spectrum .hero-neon-actions .btn-primary:hover {
  box-shadow: 0 10px 32px rgba(34, 211, 238, 0.3);
}

.hero-neon-spectrum .hero-neon-ico-a {
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.35);
}

.hero-neon-spectrum .hero-neon-ico-b {
  color: #93c5fd;
  background: rgba(74, 116, 245, 0.16);
  border-color: rgba(122, 162, 255, 0.35);
}

.hero-neon-spectrum .hero-neon-ico-c {
  color: #5eead4;
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.35);
}

.hero-neon-spectrum .hero-neon-ico-d {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.35);
}

.hero-neon-spectrum .neon-panel {
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(47, 91, 232, 0.14),
    0 0 48px rgba(34, 211, 238, 0.08);
}

.hero-neon-spectrum .neon-pill {
  color: #5eead4;
  background: rgba(45, 212, 191, 0.14);
  border-color: rgba(45, 212, 191, 0.4);
}

.hero-neon-spectrum .neon-bars span:nth-child(1) {
  background: linear-gradient(180deg, #67e8f9, #0891b2);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.4);
}

.hero-neon-spectrum .neon-bars span:nth-child(2) {
  background: linear-gradient(180deg, #7aa2ff, #2f5be8);
  box-shadow: 0 0 14px rgba(74, 116, 245, 0.4);
}

.hero-neon-spectrum .neon-bars span:nth-child(3) {
  background: linear-gradient(180deg, #5eead4, #0d9488);
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.35);
}

.hero-neon-spectrum .neon-bars span:nth-child(4) {
  background: linear-gradient(180deg, #fcd34d, #d97706);
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.35);
}

.hero-neon-spectrum .neon-bars span:nth-child(5) {
  background: linear-gradient(180deg, #93c5fd, #1a3fad);
  box-shadow: 0 0 14px rgba(74, 116, 245, 0.35);
}

.hero-neon-spectrum .neon-bars span:nth-child(6) {
  background: linear-gradient(180deg, #67e8f9, #2f5be8);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.3);
}

.hero-neon-spectrum .neon-phone-check {
  background: linear-gradient(135deg, #22d3ee, #2f5be8);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.45);
}

.hero-neon-spectrum .neon-phone-btn {
  background: rgba(45, 212, 191, 0.18);
  border-color: rgba(45, 212, 191, 0.4);
}

.hero-neon-spectrum .neon-code {
  color: #fcd34d;
  border-color: rgba(251, 191, 36, 0.4);
  background: linear-gradient(160deg, rgba(40, 32, 12, 0.95), rgba(12, 22, 42, 0.95));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 28px rgba(251, 191, 36, 0.22);
}

.hero-neon-spectrum .neon-cube-1 {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.65), rgba(47, 91, 232, 0.3));
  border-color: rgba(103, 232, 249, 0.5);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
}

.hero-neon-spectrum .neon-cube-2 {
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.6), rgba(26, 63, 173, 0.3));
  border-color: rgba(94, 234, 212, 0.5);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.4);
}

.hero-neon-spectrum .neon-cube-3 {
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.65), rgba(47, 91, 232, 0.25));
  border-color: rgba(252, 211, 77, 0.5);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.4);
}

.hero-neon-spectrum .neon-node-1 {
  background: #22d3ee;
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.9);
}

.hero-neon-spectrum .neon-node-2 {
  background: #2dd4bf;
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.9);
}

.hero-neon-spectrum .neon-node-3 {
  background: #fbbf24;
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.85);
}

/* Option 5 — Refined aurora spectrum */
.hero.hero-aurora {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #02060d;
  color: #fff;
  padding: 7.25rem 0 3.75rem;
}

.hero-aurora-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 78% 42%, rgba(47, 91, 232, 0.34), transparent 64%),
    radial-gradient(ellipse 40% 38% at 18% 70%, rgba(34, 211, 238, 0.12), transparent 58%),
    radial-gradient(ellipse 35% 30% at 55% 18%, rgba(45, 212, 191, 0.1), transparent 55%),
    linear-gradient(165deg, #07101f 0%, #02060d 48%, #0a1424 100%);
}

.hero-aurora-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 13, 0.72) 0%, rgba(2, 6, 13, 0.35) 42%, transparent 68%),
    linear-gradient(180deg, rgba(2, 6, 13, 0.35) 0%, transparent 28%, transparent 75%, rgba(2, 6, 13, 0.45) 100%);
}

.hero-aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-aurora-orb-a {
  width: 460px;
  height: 460px;
  right: 6%;
  top: 18%;
  background: rgba(74, 116, 245, 0.3);
  animation: auroraPulse 7s ease-in-out infinite alternate;
}

.hero-aurora-orb-b {
  width: 280px;
  height: 280px;
  right: 28%;
  bottom: 12%;
  background: rgba(34, 211, 238, 0.16);
  animation: auroraPulse 8.5s ease-in-out infinite alternate-reverse;
}

.hero-aurora-orb-c {
  width: 180px;
  height: 180px;
  left: 12%;
  bottom: 18%;
  background: rgba(251, 191, 36, 0.08);
  animation: auroraPulse 9s ease-in-out infinite alternate;
}

@keyframes auroraPulse {
  from { opacity: 0.5; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1.06); }
}

.hero-aurora-beam {
  position: absolute;
  top: 22%;
  left: 35%;
  width: 55%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.45), rgba(74, 116, 245, 0.55), rgba(45, 212, 191, 0.35), transparent);
  filter: blur(0.5px);
  animation: auroraBeam 6s ease-in-out infinite;
  transform-origin: left center;
}

@keyframes auroraBeam {
  0%, 100% { opacity: 0.25; transform: scaleX(0.75) translateY(0); }
  50% { opacity: 0.9; transform: scaleX(1) translateY(18vh); }
}

.hero-aurora-grid {
  position: absolute;
  left: 42%;
  right: -8%;
  bottom: -12%;
  height: 58%;
  background-image:
    linear-gradient(rgba(74, 116, 245, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(560px) rotateX(58deg);
  transform-origin: center top;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 88%);
  opacity: 0.7;
}

.hero-aurora-shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-aurora-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem 2.75rem;
  align-items: center;
}

.hero-aurora-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 0.9rem;
  animation: auroraRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-aurora-copy h1 {
  font-size: clamp(2.45rem, 5.1vw, 3.95rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 1.15rem;
  color: #fff;
  max-width: 13ch;
  animation: auroraRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.hero-aurora-copy .hero-highlight {
  background: linear-gradient(120deg, #67e8f9 0%, #5b8cff 42%, #2dd4bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-aurora-copy .hero-highlight::after {
  background: linear-gradient(90deg, #22d3ee, #4a74f5, #2dd4bf);
  opacity: 0.55;
}

.hero-aurora-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.72);
  max-width: 36rem;
  margin-bottom: 1.7rem;
  animation: auroraRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero-aurora-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.85rem;
  animation: auroraRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hero-aurora-cta {
  background: linear-gradient(135deg, #1a3fad 0%, #2f5be8 50%, #0891b2 100%);
  box-shadow: 0 10px 32px rgba(8, 145, 178, 0.28);
}

.hero-aurora-cta:hover {
  box-shadow: 0 12px 36px rgba(34, 211, 238, 0.32);
}

.hero-aurora-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.03);
}

.hero-aurora-actions .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-aurora-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  animation: auroraRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.hero-aurora-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-aurora-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c, #4a74f5);
  box-shadow: 0 0 10px var(--c, #4a74f5);
}

@keyframes auroraRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-aurora-stage {
  position: relative;
  min-height: 440px;
}

.aurora-ring {
  position: absolute;
  width: min(340px, 78%);
  aspect-ratio: 1;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(74, 116, 245, 0.22);
  box-shadow:
    0 0 0 18px rgba(47, 91, 232, 0.06),
    0 0 60px rgba(34, 211, 238, 0.1);
  animation: auroraRing 8s ease-in-out infinite alternate;
}

@keyframes auroraRing {
  from { opacity: 0.55; transform: translateY(-50%) scale(0.96); }
  to { opacity: 1; transform: translateY(-50%) scale(1.04); }
}

.aurora-links {
  position: absolute;
  inset: 8% 4% 10% 2%;
  width: auto;
  height: auto;
  opacity: 0.7;
  animation: auroraDash 10s linear infinite;
}

@keyframes auroraDash {
  to { stroke-dashoffset: -80; }
}

.aurora-card {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(24, 38, 68, 0.92), rgba(10, 18, 34, 0.9));
  border: 1px solid rgba(122, 162, 255, 0.22);
  backdrop-filter: blur(12px);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(47, 91, 232, 0.12);
}

.aurora-card-dash {
  width: min(350px, 82%);
  right: 4%;
  top: 10%;
  padding: 1.05rem 1.15rem 1.2rem;
  animation: auroraFloat 7s ease-in-out infinite;
}

.aurora-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.aurora-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #5eead4;
  background: rgba(45, 212, 191, 0.14);
  border: 1px solid rgba(45, 212, 191, 0.4);
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
}

.aurora-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.aurora-metrics div {
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.aurora-metrics strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}

.aurora-metrics small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

.aurora-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.42rem;
  height: 108px;
}

.aurora-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 7px 7px 3px 3px;
  transform-origin: bottom;
  animation: auroraBar 3s ease-in-out infinite alternate;
}

.aurora-bars span:nth-child(1) { background: linear-gradient(180deg, #67e8f9, #0891b2); box-shadow: 0 0 14px rgba(34, 211, 238, 0.35); }
.aurora-bars span:nth-child(2) { background: linear-gradient(180deg, #7aa2ff, #2f5be8); box-shadow: 0 0 14px rgba(74, 116, 245, 0.35); animation-delay: 0.12s; }
.aurora-bars span:nth-child(3) { background: linear-gradient(180deg, #5eead4, #0f766e); box-shadow: 0 0 14px rgba(45, 212, 191, 0.3); animation-delay: 0.24s; }
.aurora-bars span:nth-child(4) { background: linear-gradient(180deg, #fcd34d, #d97706); box-shadow: 0 0 14px rgba(251, 191, 36, 0.28); animation-delay: 0.36s; }
.aurora-bars span:nth-child(5) { background: linear-gradient(180deg, #93c5fd, #1a3fad); box-shadow: 0 0 14px rgba(74, 116, 245, 0.3); animation-delay: 0.48s; }
.aurora-bars span:nth-child(6) { background: linear-gradient(180deg, #67e8f9, #2f5be8); box-shadow: 0 0 14px rgba(34, 211, 238, 0.28); animation-delay: 0.6s; }

@keyframes auroraBar {
  from { transform: scaleY(0.94); filter: brightness(0.92); }
  to { transform: scaleY(1); filter: brightness(1.12); }
}

.aurora-card-phone {
  width: 126px;
  height: 236px;
  left: 8%;
  bottom: 8%;
  padding: 0.75rem 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  border-color: rgba(34, 211, 238, 0.28);
  animation: auroraFloatPhone 6.5s ease-in-out infinite;
}

.aurora-phone-notch {
  width: 38px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.aurora-phone-mark {
  width: 52px;
  height: 52px;
  margin-top: 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, #22d3ee, #2f5be8);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.45);
}

.aurora-phone-lines {
  width: 78%;
  display: grid;
  gap: 0.35rem;
}

.aurora-phone-lines i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.aurora-phone-lines i:nth-child(2) { width: 70%; }
.aurora-phone-lines i:nth-child(3) { width: 55%; }

.aurora-phone-cta {
  width: 78%;
  height: 30px;
  margin-top: auto;
  border-radius: 9px;
  background: rgba(45, 212, 191, 0.18);
  border: 1px solid rgba(45, 212, 191, 0.4);
}

.aurora-float {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.aurora-float-code {
  right: 6%;
  bottom: 20%;
  width: 62px;
  height: 62px;
  font-size: 1.05rem;
  color: #fcd34d;
  background: linear-gradient(160deg, rgba(48, 36, 10, 0.95), rgba(12, 22, 42, 0.95));
  border: 1px solid rgba(251, 191, 36, 0.42);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4), 0 0 26px rgba(251, 191, 36, 0.2);
  animation: auroraFloat 5.5s ease-in-out infinite;
}

.aurora-float-ai {
  top: 18%;
  left: 18%;
  width: 52px;
  height: 52px;
  font-size: 0.85rem;
  color: #e0f2fe;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.25), rgba(47, 91, 232, 0.45));
  border: 1px solid rgba(125, 211, 252, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 22px rgba(34, 211, 238, 0.28);
  animation: auroraFloat 6s ease-in-out infinite reverse;
}

.aurora-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.aurora-spark-1 {
  top: 28%;
  right: 34%;
  background: #22d3ee;
  box-shadow: 0 0 14px #22d3ee;
}

.aurora-spark-2 {
  top: 56%;
  left: 36%;
  background: #2dd4bf;
  box-shadow: 0 0 14px #2dd4bf;
}

.aurora-spark-3 {
  bottom: 26%;
  right: 40%;
  background: #fbbf24;
  box-shadow: 0 0 14px #fbbf24;
}

@keyframes auroraFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes auroraFloatPhone {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-10px); }
}

@media (max-width: 900px) {
  .hero.hero-aurora {
    min-height: auto;
    padding: 6.5rem 0 3rem;
  }

  .hero-aurora-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-aurora-copy h1 { max-width: none; }

  .hero-aurora-stage {
    min-height: 360px;
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .aurora-ring {
    right: 50%;
    transform: translate(50%, -50%);
  }

  .hero-aurora-grid {
    left: 0;
    right: 0;
    opacity: 0.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora-orb,
  .hero-aurora-beam,
  .aurora-ring,
  .aurora-links,
  .aurora-card-dash,
  .aurora-card-phone,
  .aurora-float,
  .aurora-bars span,
  .hero-aurora-brand,
  .hero-aurora-copy h1,
  .hero-aurora-lead,
  .hero-aurora-actions,
  .hero-aurora-rail {
    animation: none !important;
  }
}

/* Hero (Evolve) — current / default */
.hero.hero-evolve {
  display: flex;
  align-items: center;
  position: relative;
  /* Header clearance + same gap as bottom */
  --hero-gap: 3rem;
  --header-offset: 6rem;
  padding: calc(var(--header-offset) + var(--hero-gap)) 0 var(--hero-gap);
  overflow: hidden;
  background: var(--bg);
  min-height: auto;
}

.hero-evolve .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 0%, rgba(43, 88, 204, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(74, 125, 255, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-white) 0%, var(--bg) 100%);
}

.hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(rgba(43, 88, 204, 0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.hero-flow {
  position: absolute;
  bottom: 15%;
  right: -5%;
  width: 55%;
  height: 50%;
  opacity: 0.6;
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  animation: heroPulse 2s ease infinite;
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.85rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.12em;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  opacity: 0.25;
  border-radius: 2px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 520px;
  line-height: 1.75;
}

.hero-evolve .hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
}

.hero-tags span:hover {
  color: var(--blue);
  border-color: rgba(43, 88, 204, 0.25);
}

/* Hero stage visual */
.hero-stage {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evolve-orbit {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(43, 88, 204, 0.2);
}

.orbit-ring-outer {
  inset: 0;
  animation: orbitSpin 40s linear infinite;
}

.orbit-ring-inner {
  inset: 18%;
  border-style: solid;
  border-color: rgba(43, 88, 204, 0.08);
  animation: orbitSpin 30s linear infinite reverse;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.orbit-node {
  position: absolute;
  padding: 0.35rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--blue);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.orbit-node-1 { top: -4%; left: 42%; animation-delay: 0s; }
.orbit-node-2 { top: 38%; right: -8%; animation-delay: 0.8s; }
.orbit-node-3 { bottom: 2%; left: 38%; animation-delay: 1.6s; }
.orbit-node-4 { top: 42%; left: -6%; animation-delay: 2.4s; }

.evolve-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 16px 48px rgba(43, 88, 204, 0.35);
}

.evolve-core-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.evolve-core-sub {
  font-size: 0.55rem;
  opacity: 0.85;
  margin-top: 0.15rem;
  letter-spacing: 0.04em;
}

.evolve-cards {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 340px;
  z-index: 1;
}

.evolve-card {
  position: absolute;
  border-radius: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  transition: transform 0.4s ease;
}

.evolve-card-back {
  width: 200px;
  top: 8%;
  left: 0;
  transform: rotate(-8deg);
  z-index: 1;
  animation: cardFloat 7s ease-in-out infinite;
}

.evolve-card-mid {
  width: 220px;
  top: 22%;
  right: 0;
  transform: rotate(6deg);
  z-index: 2;
  animation: cardFloat 7s ease-in-out infinite 1s;
}

.evolve-card-front {
  width: 140px;
  bottom: 5%;
  left: 28%;
  transform: rotate(-3deg);
  z-index: 3;
  padding: 0.75rem;
  animation: cardFloat 7s ease-in-out infinite 2s;
}

@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.evolve-card-head {
  display: flex;
  gap: 0.3rem;
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid var(--border);
}

.evolve-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e2e8f0;
}

.evolve-card-head-dark {
  justify-content: flex-end;
  border-bottom-color: rgba(255,255,255,0.1);
  background: #0f172a;
  border-radius: 16px 16px 0 0;
}

.evolve-card-pill {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  color: #86efac;
  background: rgba(134, 239, 172, 0.15);
  border-radius: 50px;
}

.evolve-card-body {
  padding: 0.75rem;
}

.evolve-card-body-dark {
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  border-radius: 0 0 16px 16px;
}

.evolve-metric-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.evolve-metric-bar {
  display: block;
  height: 6px;
  width: var(--w);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  opacity: 0.7;
}

.evolve-spark {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  height: 56px;
  margin-bottom: 0.5rem;
}

.evolve-spark span {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #4a7dff, #2b58cc);
}

.evolve-card-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
}

.evolve-card-label.light {
  color: rgba(255,255,255,0.7);
}

.evolve-phone {
  width: 100%;
  padding: 0.5rem;
  background: #0f172a;
  border-radius: 14px;
  margin-bottom: 0.5rem;
}

.evolve-phone-notch {
  width: 28%;
  height: 4px;
  margin: 0 auto 0.4rem;
  background: #334155;
  border-radius: 4px;
}

.evolve-phone-screen {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 0.5rem;
  min-height: 72px;
  position: relative;
}

.evolve-phone-line {
  height: 5px;
  width: 70%;
  margin-bottom: 0.35rem;
  border-radius: 3px;
  background: rgba(43, 88, 204, 0.2);
}

.evolve-phone-line.wide { width: 90%; }
.evolve-phone-line.short { width: 45%; }

.evolve-phone-chip {
  position: absolute;
  bottom: 0.4rem;
  right: 0.4rem;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  color: #fff;
  background: var(--gradient);
  border-radius: 4px;
}

.hero-float-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  animation: float 6s ease-in-out infinite;
}

.hero-float-aws {
  top: 0;
  right: 5%;
  background: linear-gradient(145deg, #232f3e, #131a22);
  border-color: #37475a;
  color: #fff;
}

.hero-float-aws-logo {
  width: 58px;
  height: 35px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.hero-float-aws strong {
  display: block;
  font-size: 0.7rem;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

.hero-float-aws small {
  font-size: 0.6rem;
  color: #ff9900;
  font-weight: 600;
}

.hero-float-stat {
  bottom: 8%;
  right: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  animation-delay: 1.5s;
}

.hero-float-stat strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  color: var(--blue);
  line-height: 1;
}

.hero-float-stat span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Option 2 — Dark theme (same layout as option 1) */
.hero.hero-evolve-dark {
  background: #070f1c;
  color: #fff;
}

.hero-evolve-dark .hero-mesh {
  background:
    radial-gradient(ellipse 80% 50% at 70% 0%, rgba(47, 91, 232, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(74, 125, 255, 0.16) 0%, transparent 55%),
    linear-gradient(180deg, #0a1628 0%, #070f1c 100%);
}

.hero-evolve-dark .hero-dots {
  opacity: 0.35;
  background-image: radial-gradient(rgba(122, 162, 255, 0.28) 1px, transparent 1px);
}

.hero-evolve-dark .hero-content h1 {
  color: #fff;
}

.hero-evolve-dark .hero-highlight {
  background: linear-gradient(135deg, #9bbcff 0%, #4a74f5 45%, #2f5be8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-evolve-dark .hero-highlight::after {
  background: linear-gradient(90deg, #2f5be8, #7aa2ff);
  opacity: 0.55;
}

.hero-evolve-dark .hero-lead {
  color: rgba(255, 255, 255, 0.7);
}

.hero-evolve-dark .hero-eyebrow {
  color: #8eb0ff;
}

.hero-evolve-dark .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.hero-evolve-dark .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-evolve-dark .hero-tags span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.hero-evolve-dark .hero-tags span:hover {
  color: #fff;
  border-color: rgba(122, 162, 255, 0.45);
}

.hero-evolve-dark .orbit-ring {
  border-color: rgba(122, 162, 255, 0.28);
}

.hero-evolve-dark .orbit-ring-inner {
  border-color: rgba(122, 162, 255, 0.14);
}

.hero-evolve-dark .orbit-node {
  color: #9bbcff;
  background: rgba(15, 31, 61, 0.92);
  border: 1px solid rgba(122, 162, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-evolve-dark .evolve-core {
  background: radial-gradient(circle at 35% 30%, #4a74f5 0%, #1a3fad 50%, #0f1f3d 100%);
  box-shadow:
    0 0 0 10px rgba(47, 91, 232, 0.22),
    0 0 0 22px rgba(47, 91, 232, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.45);
}

.hero-evolve-dark .evolve-core-label,
.hero-evolve-dark .evolve-core-sub {
  color: #fff;
}

.hero-evolve-dark .evolve-card {
  background: rgba(18, 28, 48, 0.92);
  border-color: rgba(122, 162, 255, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.hero-evolve-dark .evolve-card-head {
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.hero-evolve-dark .evolve-card-label {
  color: rgba(255, 255, 255, 0.78);
}

.hero-evolve-dark .evolve-card-label.light {
  color: rgba(255, 255, 255, 0.85);
}

.hero-evolve-dark .evolve-metric-bar {
  background: linear-gradient(90deg, rgba(74, 116, 245, 0.35), rgba(122, 162, 255, 0.85));
}

.hero-evolve-dark .evolve-phone-screen {
  background: #0f1a2e;
}

.hero-evolve-dark .evolve-phone-line {
  background: rgba(255, 255, 255, 0.12);
}

/* Hero proof strip */
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 1.5rem 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-proof-item {
  padding: 0.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.hero-proof-item:last-child {
  border-right: none;
}

.hero-proof-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}

.hero-proof-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-proof-aws {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hero-aws-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.3rem 0.55rem;
  background: #232f3e;
  border-radius: 4px;
}

.hero-aws-tag img {
  width: 44px;
  height: 26px;
  display: block;
  object-fit: contain;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Legacy hero classes (other pages) */
.hero {
  min-height: auto;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-white) 45%, var(--bg) 100%);
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.07;
  animation: bubbleFloat 8s ease-in-out infinite;
}

.bubble-1 { width: 400px; height: 400px; top: -10%; right: -5%; animation-delay: 0s; }
.bubble-2 { width: 200px; height: 200px; top: 40%; left: -5%; animation-delay: 2s; }
.bubble-3 { width: 120px; height: 120px; bottom: 20%; right: 20%; animation-delay: 4s; }
.bubble-4 { width: 60px; height: 60px; top: 25%; right: 35%; animation-delay: 1s; opacity: 0.1; }
.bubble-5 { width: 40px; height: 40px; bottom: 35%; left: 30%; animation-delay: 3s; opacity: 0.08; }

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.02); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(43, 88, 204, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(74, 125, 255, 0.06) 0%, transparent 50%);
}

.hero-badge {
  display: inline-block;
  padding: 0.45rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(43, 88, 204, 0.08);
  border: 1px solid rgba(43, 88, 204, 0.15);
  border-radius: 50px;
}

/* Section */
.section { padding: 6rem 0; position: relative; }

.section-alt { background: var(--bg-white); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(43, 88, 204, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; }

a.service-card {
  display: block;
  color: inherit;
}

.service-card .link-arrow {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: inline-block;
}

/* AI Section */
.ai-section {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(43, 88, 204, 0.12);
  box-shadow: var(--shadow-hover);
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43, 88, 204, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ai-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ai-pill {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.ai-pill:hover {
  border-color: rgba(43, 88, 204, 0.25);
  box-shadow: var(--shadow);
  background: var(--bg-white);
}

.ai-pill .icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.ai-pill span { font-size: 0.85rem; font-weight: 500; }

.pulse-ring {
  width: 120px; height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(43,88,204,0.3); }
  50% { box-shadow: 0 0 50px rgba(74,125,255,0.5); }
}

/* Tech showcase (home) */
.tech-showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.tech-showcase-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
}

.tech-showcase-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.tech-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(15, 23, 42, 0.15) 100%);
  pointer-events: none;
}

.tech-showcase-content .section-title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.tech-showcase-content .section-desc {
  text-align: left;
  margin: 0 0 1.75rem;
  max-width: none;
}

.tech-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tech-category {
  padding: 1.15rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.tech-category:hover {
  border-color: rgba(43, 88, 204, 0.25);
  box-shadow: var(--shadow);
}

.tech-category-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.tech-category-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.tech-category h3 {
  font-size: 0.92rem;
  font-weight: 600;
}

.tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tech-chip {
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-soft);
  border: 1px solid rgba(43, 88, 204, 0.12);
  border-radius: 50px;
}

.tech-showcase-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
}

.tech-showcase-link:hover { color: var(--blue-bright); }

/* Tech stack (inline tags) */
.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tech-tag {
  padding: 0.5rem 1.1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.tech-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--bg-soft); }

/* Partner trust (light ? keeps CTA as the only dark closer) */
.partner-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.partner-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.partner-panel::before { display: none; }

.partner-panel-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.partner-panel-head .section-label {
  color: var(--blue);
}

.partner-panel-head .section-title {
  color: var(--text);
  margin-bottom: 0.85rem;
}

.partner-panel-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.partner-panel-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(47, 91, 232, 0.08);
  border: 1px solid rgba(47, 91, 232, 0.16);
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.partner-tiles {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.partner-tile {
  padding: 1.45rem 1.4rem;
  background: var(--bg);
  border: 1px solid rgba(47, 91, 232, 0.1);
  border-radius: var(--radius);
  transition: var(--transition);
}

.partner-tile:hover {
  background: var(--bg-white);
  border-color: rgba(47, 91, 232, 0.22);
  box-shadow: 0 12px 28px rgba(26, 63, 173, 0.08);
  transform: translateY(-3px);
}

.partner-tile-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  background: rgba(47, 91, 232, 0.08);
  border-radius: 11px;
  border: 1px solid rgba(47, 91, 232, 0.12);
}

.partner-tile h3 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.partner-tile p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.work-nda-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials (legacy ? use partner-grid for B2B) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 88, 204, 0.2);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}

.testimonial-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--bg-soft);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

/* Work / Case study cards */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.work-card {
  display: block;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.work-thumb {
  height: 220px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-thumb img {
  transform: scale(1.05);
}

.work-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.work-card:hover { transform: translateY(-4px); border-color: rgba(43, 88, 204, 0.2); box-shadow: var(--shadow-hover); }

.work-info { padding: 1.5rem; }
.work-info .tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-bright);
  font-weight: 600;
}
.work-info h3 { margin: 0.5rem 0; font-size: 1.15rem; }
.work-info p { color: var(--text-muted); font-size: 0.9rem; }

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.industry-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.industry-item:hover { border-color: var(--blue); box-shadow: var(--shadow-hover); }
.industry-item .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.industry-item span { font-size: 0.85rem; font-weight: 500; }

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { color: var(--text-muted); font-size: 0.85rem; }

/* About page */
.about-hero {
  padding: 9rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 90% -10%, rgba(47, 91, 232, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(91, 140, 255, 0.1), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f3f6ff 50%, #eef2ff 100%);
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 91, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 232, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 85%);
  pointer-events: none;
}

.about-hero-inner {
  /* Same shell as homepage .container / .hero-shell ? no narrower cap */
  max-width: none;
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.about-hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 640px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-stat {
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid var(--border);
}

.about-stat:last-child { border-right: none; }

.about-stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}

.about-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about-stat-aws {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.about-stat-aws .hero-aws-tag { margin: 0; }

.about-stat-aws span:last-child {
  font-size: 0.72rem;
  line-height: 1.3;
}

/* About identity: vision / mission / values */
.about-identity {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  background: linear-gradient(165deg, #07111f 0%, #0c1a38 48%, #132a5c 100%);
  color: #fff;
}

.about-identity::before {
  content: '';
  position: absolute;
  top: -35%;
  right: -8%;
  width: min(480px, 65vw);
  height: min(480px, 65vw);
  background: radial-gradient(circle, rgba(74, 125, 255, 0.2) 0%, transparent 68%);
  pointer-events: none;
}

.about-identity .container {
  position: relative;
  z-index: 1;
}

.identity-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem 3rem;
  align-items: end;
  margin-bottom: 2.25rem;
}

.identity-head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  max-width: 14ch;
}

.identity-head p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 38ch;
  margin: 0;
  justify-self: end;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.15rem;
}

.identity-card {
  border-radius: 28px;
  padding: 1.75rem 1.65rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.identity-card--vision {
  background: #f4d6de;
  grid-column: 1;
  grid-row: 1;
}

.identity-card--mission {
  background: #d7e6ff;
  grid-column: 1;
  grid-row: 2;
}

.identity-card--values {
  background: #c6ef6e;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.identity-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.identity-check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230f172a' stroke-width='2.2'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.identity-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.identity-card > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(16, 24, 40, 0.78);
  margin: 0;
}

.identity-value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
  padding: 0;
  list-style: none;
}

.identity-value-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem 0.55rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.identity-value-pills li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #0f172a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.4'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.about-deliver {
  position: relative;
  overflow: hidden;
}

.about-deliver::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  background: radial-gradient(circle, rgba(43, 88, 204, 0.09) 0%, transparent 68%);
  pointer-events: none;
}

.deliver-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.deliver-intro .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.deliver-highlight {
  color: var(--blue);
}

.deliver-lead {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 420px;
}

.deliver-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.deliver-trust span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue);
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
}

.deliver-team-photo {
  margin-top: 2rem;
}

.deliver-team-photo img {
  min-height: 200px;
}

.deliver-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.deliver-item {
  padding: 1.3rem 1.35rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--blue);
}

.deliver-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(43, 88, 204, 0.22);
}

.deliver-item-wide {
  grid-column: 1 / -1;
}

.deliver-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(145deg, var(--bg-soft) 0%, #e8eeff 100%);
  border-radius: 11px;
  border: 1px solid var(--border);
}

.deliver-item h3 {
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.deliver-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.about-cap-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-cap-row {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.35rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: inherit;
}

.about-cap-row:hover {
  border-color: rgba(43, 88, 204, 0.25);
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}

.about-cap-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  background: linear-gradient(145deg, var(--bg-soft) 0%, #e8eeff 100%);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.about-cap-row-body h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.about-cap-row-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.6rem;
}

.about-cap-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.cta-contact-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.cta-contact-link:hover { color: #fff; }

/* About process (timeline) */
.about-process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.about-process-intro .section-title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.about-process-lead {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 400px;
}

.about-process-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
}

.about-process-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.about-process-stat {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-process-stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--blue);
  line-height: 1.1;
}

.about-process-stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.process-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-flow-track {
  position: absolute;
  left: 1.35rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), rgba(43, 88, 204, 0.15));
  border-radius: 2px;
}

.process-flow-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.35rem 1.35rem 1.35rem 3.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.process-flow-card::before {
  content: '';
  position: absolute;
  left: 1.05rem;
  top: 1.65rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--bg-soft);
  box-shadow: 0 0 0 2px var(--blue);
  z-index: 1;
}

.process-flow-card:hover {
  border-color: rgba(43, 88, 204, 0.25);
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}

.process-flow-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  padding-top: 0.15rem;
}

.process-flow-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-flow-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.process-flow-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.process-flow-body li {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--blue);
  background: var(--bg-soft);
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
  border: 1px solid rgba(43, 88, 204, 0.1);
}

/* Hire cards */
.hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hire-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  display: block;
  box-shadow: var(--shadow);
}

.hire-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.hire-card .tech-logo {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hire-card h3 { margin-bottom: 0.5rem; }
.hire-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

.hire-card .link-arrow {
  color: var(--blue-bright);
  font-weight: 600;
  font-size: 0.9rem;
}

.hire-card.has-photo {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  border: none;
  color: #fff;
  box-shadow: 0 18px 40px rgba(11, 26, 58, 0.22);
}

.hire-card.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 58, 0.2) 0%, rgba(11, 26, 58, 0.88) 70%);
}

.hire-card.has-photo > * { position: relative; z-index: 1; }
.hire-card.has-photo .tech-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  backdrop-filter: blur(6px);
}
.hire-card.has-photo h3,
.hire-card.has-photo .link-arrow { color: #fff; }
.hire-card.has-photo p { color: rgba(255,255,255,0.82); }
.hire-card.has-photo:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 50px rgba(26, 63, 173, 0.35);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 9.5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 90% -10%, rgba(47, 91, 232, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(91, 140, 255, 0.1), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f3f6ff 50%, #eef2ff 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 91, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 232, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 85%);
  pointer-events: none;
}

.page-hero > .container { position: relative; z-index: 1; }

.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; letter-spacing: -0.03em; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.page-hero-split {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.page-hero-split p {
  margin: 0;
  max-width: 520px;
}

@media (max-width: 900px) {
  .page-hero-split { grid-template-columns: 1fr; text-align: center; }
  .page-hero-split p { margin: 0 auto; }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* Founder */
.founder-block-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 3.5rem;
  align-items: center;
}

.founder-photo-side {
  text-align: center;
  justify-self: center;
  width: 100%;
  max-width: 360px;
}

.founder-photo-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 1rem;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #1a3a8f 0%, #2b58cc 100%);
  box-shadow: var(--shadow-hover);
}

.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.founder-photo-frame img.is-hidden {
  display: none;
}

.founder-caption {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.founder-caption span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

.founder-photo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.founder-photo-fallback.is-visible {
  display: flex;
}

.founder-text .section-title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.founder-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.founder-quote {
  margin: 1.25rem 0 0;
  padding: 0 0 0 1.15rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  border-left: 3px solid var(--blue);
}

.founder-quote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
}

.about-photo-note,
.work-photo-note {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.about-photo-note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.65));
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-card h4 { margin-bottom: 0.5rem; color: var(--blue-bright); }
.value-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding-top: 7.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 90% -10%, rgba(47, 91, 232, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(91, 140, 255, 0.08), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f3f6ff 50%, #eef2ff 100%);
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 91, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 232, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 85%);
  pointer-events: none;
}

.contact-section .hero-bg {
  z-index: 0;
}

.contact-section .contact-grid {
  position: relative;
  z-index: 1;
  align-items: start;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.85rem;
}

.contact-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item .icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.icon-box--phone::before,
.icon-box--email::before,
.icon-box--pin::before {
  content: '';
  width: 1.35rem;
  height: 1.35rem;
  background-color: var(--blue);
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.icon-box--phone::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.icon-box--email::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}

.icon-box--pin::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.contact-address {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 36ch;
  margin: 0;
}

.footer-address {
  display: block;
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 26ch;
}

.footer-col--contact .footer-address {
  padding-top: 0.35rem;
  border-top: 1px solid var(--border);
}

.contact-info-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-link {
  color: var(--blue);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-link:hover { color: var(--blue-bright); }

.contact-social {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-social-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.social-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  display: block;
}

.social-link--icon {
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  justify-content: center;
  border-radius: 50%;
  overflow: visible;
}

.social-link--icon .social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer contact link icons (CSS masks) */
.footer-col a[href^="tel:"],
.footer-col a[href^="mailto:"],
.footer-col a[href*="linkedin.com"],
.footer-col a[href*="wa.me"] {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.footer-col a[href^="mailto:"] {
  font-size: 0.82rem;
}

.footer-col a[href^="tel:"]::before,
.footer-col a[href^="mailto:"]::before,
.footer-col a[href*="linkedin.com"]::before,
.footer-col a[href*="wa.me"]::before {
  content: '';
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.footer-col a[href^="tel:"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.footer-col a[href^="mailto:"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}

.footer-col a[href*="linkedin.com"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 0H5C2.239 0 0 2.239 0 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5V5c0-2.761-2.238-5-5-5zM8 19H5V8h3v11zM6.5 6.732c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764S7.466 6.732 6.5 6.732zM20 19h-3v-5.604c0-3.368-4-3.113-4 0V19h-3V8h3v1.765c1.396-2.586 7-2.777 7 2.476V19z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 0H5C2.239 0 0 2.239 0 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5V5c0-2.761-2.238-5-5-5zM8 19H5V8h3v11zM6.5 6.732c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764S7.466 6.732 6.5 6.732zM20 19h-3v-5.604c0-3.368-4-3.113-4 0V19h-3V8h3v1.765c1.396-2.586 7-2.777 7 2.476V19z'/%3E%3C/svg%3E");
}

.footer-col a[href*="wa.me"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z'/%3E%3C/svg%3E");
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-hover);
}

.contact-form-title {
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.contact-form-lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-group { margin-bottom: 1.25rem; }

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.85rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(16, 24, 40, 0.18);
  border-radius: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.contact-form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23667085' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15rem center;
  color: var(--text-muted);
}

.contact-form .form-group select:valid,
.contact-form .form-group select:focus {
  color: var(--text);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--blue);
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 0.5rem;
}

.form-phone-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: end;
}

.form-phone-row select {
  color: var(--text);
}

.form-attach label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
}

.form-attach input[type="file"] {
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-attach-hint {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.contact-form-submit {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 999px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Hire detail page */
.hire-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.hire-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow);
}

.hire-sidebar h3 { margin-bottom: 1rem; }

.skill-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.skill-list li:last-child { border: none; }

.feature-list { margin: 1.5rem 0; }

.feature-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  font-weight: 700;
}

/* CTA banner */
.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
  padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1.75rem, 4vw, 3.25rem);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(120deg, #0a1628 0%, #102b7a 48%, #1a3a8f 100%);
  box-shadow: 0 20px 50px rgba(16, 43, 122, 0.28);
  text-align: left;
}

.cta-banner-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.cta-banner-glow-1 {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -40px;
  background: radial-gradient(circle, rgba(91, 140, 255, 0.55) 0%, rgba(47, 91, 232, 0.15) 45%, transparent 70%);
}

.cta-banner-glow-2 {
  width: 220px;
  height: 220px;
  bottom: -100px;
  right: 80px;
  background: radial-gradient(circle, rgba(74, 125, 255, 0.45) 0%, rgba(26, 58, 143, 0.2) 50%, transparent 72%);
}

.cta-banner-copy {
  position: relative;
  z-index: 1;
  flex: 1 1 280px;
  max-width: 640px;
}

.cta-banner h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: 0.65rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-banner p {
  margin: 0;
  max-width: 480px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.cta-banner-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  margin-left: auto;
}

.cta-banner .btn-cta-light {
  background: #fff;
  color: var(--blue-dark);
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.cta-banner .btn-cta-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  background: #f8faff;
}

.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.cta-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .cta-banner {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    border-radius: 22px;
    padding: 2rem 1.5rem;
  }

  .cta-banner-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  background: var(--bg-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.35fr) repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}


.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.svc-stack {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.25fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: stretch;
  margin-top: 0.75rem;
}

.svc-stack-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid rgba(47, 91, 232, 0.12);
}

.svc-stack-tab {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 0.85rem;
  border: none;
  border-bottom: 1px solid rgba(47, 91, 232, 0.12);
  border-radius: 0;
  background: transparent;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, padding 0.2s ease;
}

.svc-stack-tab:hover,
.svc-stack-tab:focus-visible {
  color: var(--blue);
  background: linear-gradient(90deg, rgba(47, 91, 232, 0.06), transparent 80%);
  outline: none;
}

.svc-stack-tab.is-active {
  color: var(--blue);
  background: linear-gradient(90deg, rgba(47, 91, 232, 0.08), transparent 85%);
  padding-left: 1.1rem;
  box-shadow: inset 3px 0 0 var(--blue);
}

.svc-stack-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #0a1628;
  box-shadow: 0 24px 50px rgba(26, 63, 173, 0.16);
}

.svc-stack-media {
  position: absolute;
  inset: 0;
}

.svc-stack-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.45;
  transform: scale(1.04);
  transition: opacity 0.35s ease, transform 0.6s ease;
}

.svc-stack-preview.is-switching .svc-stack-media img {
  opacity: 0.15;
}

.svc-stack-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8, 18, 40, 0.35) 0%, rgba(10, 22, 40, 0.55) 40%, rgba(10, 22, 40, 0.92) 100%);
  pointer-events: none;
}

.svc-stack-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
}

.svc-stack-copy h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.svc-stack-copy p {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.86);
}

.svc-stack-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.15rem;
  transition: gap 0.2s ease, border-color 0.2s ease;
}

.svc-stack-cta:hover {
  gap: 0.65rem;
  border-color: #fff;
}

@media (max-width: 900px) {
  .svc-stack {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .svc-stack-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: none;
    border: 1px solid rgba(47, 91, 232, 0.12);
    border-radius: 16px;
    overflow: hidden;
  }

  .svc-stack-tab {
    border-bottom: 1px solid rgba(47, 91, 232, 0.12);
    border-right: 1px solid rgba(47, 91, 232, 0.12);
    padding: 0.9rem 0.85rem;
    font-size: 0.92rem;
  }

  .svc-stack-tab:nth-child(2n) { border-right: none; }
  .svc-stack-tab:nth-last-child(-n+2) { border-bottom: none; }

  .svc-stack-tab.is-active {
    padding-left: 0.85rem;
    box-shadow: inset 0 -3px 0 var(--blue);
  }

  .svc-stack-preview { min-height: 340px; }
}

@media (max-width: 520px) {
  .svc-stack-list { grid-template-columns: 1fr; }
  .svc-stack-tab { border-right: none; }
  .svc-stack-tab:nth-last-child(-n+2) { border-bottom: 1px solid rgba(47, 91, 232, 0.12); }
  .svc-stack-tab:last-child { border-bottom: none; }
}

/* Services hub & detail pages */
.svc-hero {
  padding: 7.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 95% -10%, rgba(47, 91, 232, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 40% at -5% 90%, rgba(91, 140, 255, 0.12), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f3f6ff 48%, #eef2ff 100%);
}

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 91, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 232, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  pointer-events: none;
}

.svc-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.svc-hero-inner {
  /* Text column only ? banner shell stays full .container like home */
  max-width: none;
}

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.svc-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(47, 91, 232, 0.15);
  animation: svc-pulse 2.4s ease-in-out infinite;
}

@keyframes svc-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(47, 91, 232, 0.12); }
  50% { box-shadow: 0 0 0 8px rgba(47, 91, 232, 0.06); }
}

.svc-hero h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}

.svc-hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.svc-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(47, 91, 232, 0.12);
}

.svc-trust-row span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.svc-trust-row span::before {
  content: '?';
  margin-right: 0.4rem;
  color: var(--blue);
}

/* Hub hero visual ? composed delivery panel */
.svc-hero-visual {
  position: relative;
  min-height: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
  animation: none;
}

.svc-hero-visual::before,
.svc-hero-visual::after {
  display: none;
}

.svc-hero-compose {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #0a1628;
  box-shadow: 0 28px 60px rgba(26, 63, 173, 0.22);
}

.svc-hero-compose-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transform: scale(1.08);
  animation: viz-ken 20s ease-in-out infinite alternate;
}

.svc-hero-compose-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(8, 18, 40, 0.92) 0%, rgba(16, 43, 122, 0.72) 48%, rgba(47, 91, 232, 0.5) 100%);
}

.svc-hero-compose-ring {
  position: absolute;
  z-index: 1;
  width: min(78%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  animation: svc-compose-spin 28s linear infinite;
}

.svc-hero-compose-ring::before,
.svc-hero-compose-ring::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12), 0 0 20px rgba(91, 140, 255, 0.7);
}

.svc-hero-compose-ring::before { top: 12%; left: 50%; }
.svc-hero-compose-ring::after { bottom: 18%; left: 14%; }

.svc-hero-compose-ring.is-slow {
  width: min(92%, 400px);
  border-color: rgba(255, 255, 255, 0.08);
  animation-duration: 42s;
  animation-direction: reverse;
}

.svc-hero-compose-ring.is-slow::before { top: 40%; right: 8%; left: auto; }
.svc-hero-compose-ring.is-slow::after { top: 70%; left: 42%; bottom: auto; }

@keyframes svc-compose-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.svc-hero-compose-body {
  position: relative;
  z-index: 2;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  color: #fff;
}

.svc-hero-compose-kicker {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.72);
}

.svc-hero-compose-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  max-width: 280px;
}

.svc-hero-compose-steps li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  opacity: 0;
  animation: svc-compose-step 0.7s ease forwards;
}

.svc-hero-compose-steps li:nth-child(1) { animation-delay: 0.15s; }
.svc-hero-compose-steps li:nth-child(2) { animation-delay: 0.3s; }
.svc-hero-compose-steps li:nth-child(3) { animation-delay: 0.45s; }
.svc-hero-compose-steps li:nth-child(4) { animation-delay: 0.6s; }

.svc-hero-compose-steps span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  min-width: 1.6rem;
}

@keyframes svc-compose-step {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1024px) {
  .svc-hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-hero-visual { max-width: 520px; }
  .svc-hero-compose,
  .svc-hero-compose-body { min-height: 340px; }
}

@media (max-width: 560px) {
  .svc-hero-compose,
  .svc-hero-compose-body { min-height: 300px; }
  .svc-hero-compose-ring { right: -18%; }
}

.svc-narrative {
  padding: 5rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.svc-narrative-outer {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.25fr;
  gap: 3rem;
  align-items: start;
}

.svc-narrative-photo {
  position: sticky;
  top: 6rem;
}

.svc-narrative-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.svc-narrative-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.svc-narrative h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.svc-narrative-body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.svc-narrative-pull {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-soft);
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
}

.svc-block {
  padding: 5rem 0;
}

.svc-block-header {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.svc-block-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.svc-block-tag {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 0.28rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.svc-block-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.svc-block-header p {
  color: var(--text-muted);
  line-height: 1.7;
}

.svc-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svc-tier-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.svc-tier-card:hover {
  border-color: rgba(43, 88, 204, 0.25);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.svc-tier-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-soft);
  border-radius: 50px;
}

.svc-tier-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.svc-tier-card p {
  flex: 1;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.svc-tier-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.svc-tier-link:hover { gap: 0.55rem; }

.svc-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.svc-platform {
  flex: 1 1 140px;
  padding: 1rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.svc-platform strong {
  display: block;
  font-size: 0.9rem;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.2rem;
}

.svc-platform span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Hire ?Why Evolva? ? numbered editorial proof */
.hire-proof {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(47, 91, 232, 0.14);
}

.hire-proof-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem 1.75rem;
  align-items: start;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(47, 91, 232, 0.12);
  transition: background 0.2s ease, padding 0.2s ease;
}

.hire-proof-item:hover {
  background: linear-gradient(90deg, rgba(47, 91, 232, 0.04), transparent 65%);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin: 0 -0.75rem;
  border-radius: 12px;
}

.hire-proof-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--blue);
  opacity: 0.9;
}

.hire-proof-body h3 {
  margin: 0.15rem 0 0.55rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.hire-proof-body p {
  margin: 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .hire-proof-item {
    grid-template-columns: 3rem 1fr;
    gap: 0.85rem 1rem;
    padding: 1.35rem 0;
  }

  .hire-proof-num {
    font-size: 1.45rem;
  }
}

/* Legacy proof cards (unused on hire pages) */
.svc-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.svc-proof-card {
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.svc-proof-card:hover {
  border-color: rgba(43, 88, 204, 0.2);
  box-shadow: var(--shadow);
}

.svc-proof-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.svc-proof-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.svc-proof-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.hire-why-stats {
  display: none;
}

.svc-industry-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.svc-industry-card {
  padding: 1.35rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.svc-industry-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.svc-industry-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.svc-process-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 3%;
  right: 3%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(47, 91, 232, 0.2) 8%,
    rgba(47, 91, 232, 0.45) 50%,
    rgba(47, 91, 232, 0.2) 92%,
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.svc-step {
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 63, 173, 0.06);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.svc-step:hover {
  border-color: rgba(47, 91, 232, 0.22);
  box-shadow: 0 16px 36px rgba(26, 63, 173, 0.1);
  transform: translateY(-3px);
}

.svc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--bg-soft);
  border-radius: 8px;
}

.svc-step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.svc-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.svc-cta-panel {
  position: relative;
  padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1.75rem, 4vw, 3.25rem);
  text-align: left;
  background: linear-gradient(120deg, #0a1628 0%, #102b7a 48%, #1a3a8f 100%);
  border-radius: 28px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(16, 43, 122, 0.28);
}

.svc-cta-panel::before,
.svc-cta-panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.svc-cta-panel::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -40px;
  background: radial-gradient(circle, rgba(91, 140, 255, 0.5) 0%, transparent 70%);
}

.svc-cta-panel::after {
  width: 220px;
  height: 220px;
  bottom: -100px;
  right: 80px;
  background: radial-gradient(circle, rgba(74, 125, 255, 0.4) 0%, transparent 72%);
}

.svc-cta-panel h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  margin-bottom: 0.65rem;
  color: #fff;
  letter-spacing: -0.02em;
  max-width: 640px;
}

.svc-cta-panel > p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 0 1.5rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.78);
}

.svc-cta-panel .btn {
  position: relative;
  z-index: 1;
  margin: 0 0.5rem 0.5rem 0;
}

.svc-cta-panel .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.svc-cta-panel .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.svc-cta-contact {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.svc-cta-contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Service detail */
.svc-detail-hero {
  position: relative;
  padding: 7.25rem 0 3.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(47, 91, 232, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 35% at 0% 80%, rgba(91, 140, 255, 0.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  border-bottom: 1px solid rgba(47, 91, 232, 0.1);
}

.svc-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 91, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 232, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
  pointer-events: none;
}

.svc-detail-hero::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 91, 232, 0.12), transparent 70%);
  pointer-events: none;
  animation: svc-float-panel 8s ease-in-out infinite;
}

.svc-detail-hero > .container {
  position: relative;
  z-index: 1;
}

.svc-detail-hero .svc-breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.svc-detail-hero .svc-breadcrumb a:hover { color: var(--blue); }

.svc-detail-hero h1 {
  font-size: clamp(2rem, 4vw, 2.95rem);
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  max-width: 740px;
  line-height: 1.12;
}

.svc-detail-hero .svc-hero-lead {
  max-width: 620px;
  margin-bottom: 1.75rem;
}

.svc-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.svc-detail-meta span {
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(47, 91, 232, 0.16);
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.svc-split h2 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.svc-split p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.svc-check-list {
  margin-top: 1rem;
  padding: 0.5rem 1.15rem 0.75rem;
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  border: 1px solid rgba(47, 91, 232, 0.1);
  border-radius: 16px;
}

.svc-check-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(47, 91, 232, 0.08);
}

.svc-check-list li:last-child { border-bottom: none; }

.svc-check-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Compact fit grid (full-width under media split) */
.svc-fit-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.25rem;
  margin: 0;
  padding: 0;
}

.svc-fit-grid li {
  position: relative;
  padding: 1rem 1.1rem 1rem 2.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  box-shadow: var(--shadow);
}

.svc-fit-grid li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1.2rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 91, 232, 0.12);
}

@media (max-width: 768px) {
  .svc-fit-grid { grid-template-columns: 1fr; }
}

.svc-deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.svc-deliver-item {
  position: relative;
  padding: 1.45rem 1.35rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.svc-deliver-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient);
  opacity: 0.55;
}

.svc-deliver-item:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 91, 232, 0.22);
  box-shadow: 0 14px 32px rgba(26, 63, 173, 0.08);
}

.svc-deliver-item h4 {
  font-size: 0.98rem;
  margin-bottom: 0.45rem;
}

.svc-deliver-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.svc-offer-card {
  position: relative;
  overflow: hidden;
}

.svc-offer-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 91, 232, 0.08), transparent 70%);
  pointer-events: none;
}

.svc-step::after {
  content: '';
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 140px;
  height: 140px;
  background: url("../assets/images/evolva-e-mark.png") center / contain no-repeat;
  opacity: 0.08;
  filter: grayscale(1);
  pointer-events: none;
  z-index: 0;
}

.svc-step > * {
  position: relative;
  z-index: 1;
}

.svc-step-mark {
  display: none;
}

.svc-step:hover::after {
  opacity: 0.14;
  filter: none;
}

.svc-step-num {
  background: var(--gradient) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 8px 18px rgba(47, 91, 232, 0.25);
}

.svc-snap {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(10px);
  border-color: rgba(47, 91, 232, 0.12) !important;
  box-shadow: 0 16px 40px rgba(26, 63, 173, 0.08) !important;
}

.svc-stack-group {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-stack-group:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 63, 173, 0.07);
}

.svc-model {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-model:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 63, 173, 0.08);
}

.svc-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.svc-related-links a {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.svc-related-links a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
}

.svc-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.svc-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.svc-support-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  color: inherit;
}

.svc-support-card:hover {
  border-color: rgba(43, 88, 204, 0.25);
  box-shadow: var(--shadow);
}

.svc-support-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.svc-support-card h4 {
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.svc-support-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Service detail ? depth sections */
.svc-snap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.svc-snap-item {
  padding: 1.25rem 1.35rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.svc-snap-item:last-child { border-right: none; }

.svc-snap-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.svc-snap-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.svc-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svc-offer-card {
  position: relative;
  padding: 1.5rem 1.4rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.svc-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.svc-offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 91, 232, 0.25);
  box-shadow: 0 16px 36px rgba(26, 63, 173, 0.1);
}

.svc-offer-card:hover::before { opacity: 1; }

/* Evolva e watermark ? scoped trial (hire-react What they build) */
.svc-offer-grid--evo-mark .svc-offer-card::after {
  inset: auto -22% -42% auto;
  width: 220px;
  height: 220px;
  border-radius: 0;
  background: url("../assets/images/evolva-e-only.svg") center / contain no-repeat;
  opacity: 0.09;
  filter: grayscale(1);
  pointer-events: none;
  z-index: 0;
}

.svc-offer-grid--evo-mark .svc-offer-card > * {
  position: relative;
  z-index: 1;
}

.svc-offer-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.65rem;
}

.svc-offer-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}

.svc-offer-card > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.svc-offer-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-offer-card li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.svc-offer-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.svc-usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.svc-usecase {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.svc-usecase-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
  height: fit-content;
  white-space: nowrap;
}

.svc-usecase h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.svc-usecase p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.svc-stack-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.svc-stack-group {
  padding: 1.35rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.svc-stack-group h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}

.svc-stack-group .tech-row {
  justify-content: flex-start;
  gap: 0.45rem;
}

.svc-stack-group .tech-tag {
  font-size: 0.72rem;
  padding: 0.3rem 0.6rem;
}

.svc-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.svc-model {
  padding: 1.6rem 1.4rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--blue);
}

.svc-model h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.svc-model > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.svc-model-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.svc-model-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.svc-model-meta strong {
  color: var(--text);
  font-weight: 600;
}

.svc-include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.svc-include-col h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.svc-include-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.svc-include-col li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.svc-include-col li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.svc-include-yes li::before {
  content: '+';
  color: var(--blue);
}

.svc-include-no li::before {
  content: '?';
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-main, .ai-grid, .about-grid, .contact-grid, .hire-detail-grid,
  .tech-showcase-grid, .about-process-grid, .hero-main { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .about-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .about-stat:nth-last-child(-n+2) { border-bottom: none; }
  .about-cap-rows { grid-template-columns: 1fr; }
  .deliver-layout { grid-template-columns: 1fr; }
  .identity-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }
  .identity-head p { justify-self: start; }
  .identity-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .identity-card--vision,
  .identity-card--mission,
  .identity-card--values {
    grid-column: auto;
    grid-row: auto;
  }
  .partner-tiles { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .hire-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .hire-sidebar { position: static; top: auto; }
  .svc-tier-grid, .svc-proof-grid, .svc-industry-list { grid-template-columns: 1fr 1fr; }
  .svc-process-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-process-grid::before { display: none; }
  .svc-split, .svc-deliver-grid, .svc-offer-grid { grid-template-columns: 1fr 1fr; }
  .svc-stack-groups, .svc-model-grid, .svc-snap { grid-template-columns: 1fr 1fr; }
  .svc-snap-item:nth-child(2) { border-right: none; }
  .svc-snap-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .svc-include-grid, .svc-usecase-grid { grid-template-columns: 1fr; }
  .svc-narrative-outer { grid-template-columns: 1fr; }
  .svc-narrative-photo { position: static; }
  .svc-narrative-grid { grid-template-columns: 1fr; }
  .founder-block-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-photo-side { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .services-grid, .work-grid, .hire-grid, .values-grid,
  .industries-grid, .process-steps, .testimonials-grid { grid-template-columns: 1fr; }

  .ai-section { padding: 2rem; }
  .ai-visual { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero.hero-evolve {
    --hero-gap: 2.5rem;
    --header-offset: 5.5rem;
    padding: calc(var(--header-offset) + var(--hero-gap)) 0 var(--hero-gap);
  }
  .hero-stage { min-height: 340px; margin-top: 1rem; }
  .evolve-cards { max-width: 320px; margin: 0 auto; height: 300px; }
  .hero-float-aws { right: 0; top: -2%; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .hero-proof-item { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-proof-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .hero-proof-item:nth-last-child(-n+2) { border-bottom: none; }
  .svc-tier-grid, .svc-proof-grid, .svc-industry-list, .svc-process-grid,
  .svc-deliver-grid, .svc-support-grid, .svc-offer-grid, .svc-stack-groups,
  .svc-model-grid, .svc-snap { grid-template-columns: 1fr; }
  .svc-snap-item { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-snap-item:last-child { border-bottom: none; }
  .svc-snap-item:nth-child(2) { border-right: none; }
  .svc-snap-item:nth-child(n+3) { border-top: none; }
  .svc-usecase { grid-template-columns: 1fr; }
  .svc-cta-panel { padding: 2rem 1.5rem; }
  .tech-category-grid { grid-template-columns: 1fr; }
  .tech-showcase-visual { min-height: 280px; }
  .tech-showcase-visual img { min-height: 280px; }
  .about-cap-rows { grid-template-columns: 1fr; }
  .deliver-grid { grid-template-columns: 1fr; }
  .deliver-item-wide { grid-column: auto; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stat { border-right: none !important; border-bottom: 1px solid var(--border); }
  .about-stat:last-child { border-bottom: none; }
  .process-flow-track { display: none; }
}

/* Why Choose Evolva (dark trust panel) */
.why-dark {
  background: linear-gradient(165deg, #0a1628 0%, #0f1f4a 42%, #1a3a8f 100%);
  padding: 4.5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-dark::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  background: radial-gradient(circle, rgba(74, 125, 255, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

.why-dark-inner {
  position: relative;
  z-index: 1;
}

.why-dark-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.why-dark-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 640px;
  color: #fff;
  font-weight: 600;
}

.why-dark-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.why-partner-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.why-partner-badge strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.why-partner-badge small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

.why-partner-aws {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ff9900;
  background: #232f3e;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  line-height: 1;
}

.why-partner-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gradient);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.why-dark-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.why-dark-stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.why-dark-stat span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}

.why-dark-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
}

.why-trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.why-trust-icon {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1;
}

/* Light bridge between why-dark and ideal CTA */
.cta-bridge {
  background: var(--bg);
  padding: 2.75rem 0 0.5rem;
  text-align: center;
}

.cta-bridge-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-bridge-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.65rem;
}

.cta-bridge p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Ideal CTA: floating on light with real breathing room */
.section-cta {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
  background: var(--bg);
}

.section-cta .cta-banner {
  background: linear-gradient(120deg, #0a1628 0%, #102b7a 48%, #1a3a8f 100%);
  border: none;
  box-shadow: 0 22px 55px rgba(16, 43, 122, 0.3);
}

.section-cta + .footer {
  margin-top: 0;
}

/* Avoid double-dark slam: viz-band into why-dark */
.viz-band + .why-dark {
  padding-top: 3.25rem;
}

.viz-band + .why-dark::before {
  top: -20%;
  opacity: 0.85;
}

/* Legacy light why-section (inner pages) */
.why-section {
  position: relative;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}

.why-intro .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.why-lead {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 420px;
}

.why-points {
  display: grid;
  gap: 1rem;
}

.why-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-point:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(43, 88, 204, 0.2);
}

.why-point-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(43, 88, 204, 0.12), rgba(43, 88, 204, 0.04));
  color: var(--blue);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.why-point h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.why-point p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-aside {
  padding: 2rem;
  background: linear-gradient(165deg, #0f1f4a 0%, #1a3a8f 55%, #2b58cc 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-hover);
}

.why-aside h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.why-aside > p {
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.why-aside-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.why-aside-stat {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.why-aside-stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.why-aside-stat span {
  font-size: 0.78rem;
  opacity: 0.75;
}

.why-aside .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Process strip (homepage) */
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: process;
}

.process-strip-card {
  position: relative;
  padding: 1.5rem 1.35rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.process-strip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26, 63, 173, 0.1);
  border-color: rgba(47, 91, 232, 0.25);
}

.process-strip-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.process-strip-card:hover::after { opacity: 1; }

.process-strip-card::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.process-strip-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.process-strip-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.faq-intro .section-title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.faq-intro p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 360px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.open {
  border-color: rgba(43, 88, 204, 0.28);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(43, 88, 204, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

/* SEO narrative block */
.seo-block {
  padding: 4.5rem 0;
  border-top: 1px solid var(--border);
}

.seo-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.seo-block h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.seo-block p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.seo-block p:last-child { margin-bottom: 0; }

/* Laptop / small desktop: hamburger nav (content grids stay wider) */
@media (max-width: 1100px) {
  .menu-toggle { display: block; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem max(2rem, env(safe-area-inset-bottom, 0px));
    gap: 0.35rem;
    transition: right var(--transition);
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.08);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav.open { right: 0; }

  .nav > a.active::after,
  .nav-link.active::after { bottom: 0; }

  .nav-item,
  .nav-item.has-mega,
  .nav-item.has-dropdown {
    width: 100%;
    position: relative;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown,
  .mega-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    width: 100%;
    min-width: 0;
    display: none;
    background: transparent;
    grid-template-columns: 1fr;
  }

  .nav-item.open > .nav-dropdown,
  .nav-item.is-open > .nav-dropdown { display: block; }

  .nav-item.open > .mega-menu,
  .nav-item.is-open > .mega-menu { display: grid; }

  .nav-dropdown::before,
  .mega-menu::before { display: none; }

  .mega-cats {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    background: transparent;
    gap: 0.35rem;
  }

  .mega-cat {
    width: auto;
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
  }

  .mega-panels { padding: 0.75rem 0; min-height: 0; }
  .mega-links { grid-template-columns: 1fr; gap: 0.15rem; }
  .mega-links a span { display: none; }

  .mega-aside {
    border-left: none;
    border-top: 1px solid var(--border);
    background: var(--blue-soft);
    padding: 0.85rem 0 0;
  }

  .nav-dropdown a {
    padding: 0.55rem 0.5rem;
    font-size: 0.88rem;
  }

  .nav-dropdown a span { display: none; }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin: 0.75rem 0 0;
    gap: 0.5rem;
  }

  .nav-cta,
  .nav-cta-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .why-dark-stats { grid-template-columns: repeat(3, 1fr); }
  .why-dark-trust { grid-template-columns: repeat(2, 1fr); }
  .why-dark-head { flex-direction: column; gap: 1.5rem; }
  .why-layout,
  .faq-layout,
  .seo-block-grid { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr 1fr; }
  .why-lead { max-width: none; }
}

@media (max-width: 768px) {
  .why-dark { padding: 3.25rem 0; }
  .cta-bridge { padding: 2rem 0 0.25rem; }
  .section-cta { padding-top: 1.75rem; padding-bottom: 3.25rem; }
  .why-dark-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .why-dark-trust { grid-template-columns: 1fr; gap: 0.85rem; }
  .why-dark-stat:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .process-strip { grid-template-columns: 1fr; }
}

/* Signature visual system (images + motion) */
.svc-detail-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.svc-detail-hero-copy { min-width: 0; }

.svc-detail-hero-media {
  position: relative;
  min-height: 340px;
}

.svc-detail-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(26, 63, 173, 0.22);
  display: block;
}

.svc-detail-hero-media::before {
  content: '';
  position: absolute;
  inset: -12px -12px auto auto;
  width: 42%;
  height: 42%;
  border-radius: 20px;
  border: 1px solid rgba(47, 91, 232, 0.25);
  z-index: -1;
  animation: svc-float-panel 6s ease-in-out infinite;
}

.svc-detail-hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(47, 91, 232, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px);
  animation: svc-chip-in 0.8s ease 0.2s both;
}

.svc-detail-hero-badge strong {
  display: block;
  font-size: 0.82rem;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
}

.svc-detail-hero-badge span {
  font-size: 0.78rem;
  color: #4b5565;
  line-height: 1.35;
}

.svc-detail-hero-badge-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.svc-detail-hero-badge-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.viz-media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}

.viz-media-split.is-flip {
  grid-template-columns: 1fr 1fr;
}

.viz-media-split.is-flip .viz-media-frame { order: 2; }
.viz-media-split.is-flip .evo-sign { order: 2; }

.viz-media-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(26, 63, 173, 0.14);
  min-height: 100%;
  align-self: stretch;
}

.viz-media-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.viz-media-frame:hover img { transform: scale(1.03); }

.viz-media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 50, 0.28));
  pointer-events: none;
}

.viz-media-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 91, 232, 0.35), transparent 70%);
  filter: blur(8px);
  top: -30px;
  right: -20px;
  z-index: 1;
  animation: svc-pulse 3s ease-in-out infinite;
}

.viz-media-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
}

.viz-media-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.viz-media-copy > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 0.9rem;
  max-width: 38rem;
  font-size: 1.02rem;
}

.viz-media-copy > p:last-child {
  margin-bottom: 0;
}

.viz-media-split .evo-sign {
  min-height: 360px;
  height: 100%;
}

.viz-band {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  color: #fff;
  background: #0a1628;
}

.viz-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  transform: scale(1.05);
  animation: viz-ken 18s ease-in-out infinite alternate;
}

@keyframes viz-ken {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}

.viz-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10, 22, 40, 0.92) 0%, rgba(26, 63, 173, 0.72) 55%, rgba(47, 91, 232, 0.55) 100%);
}

.viz-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.viz-band-inner h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
  color: #fff;
}

.viz-band-inner p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 520px;
}

.viz-band-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.viz-band-stat {
  padding: 1.1rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.viz-band-stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.viz-band-stat span {
  font-size: 0.78rem;
  opacity: 0.8;
}

/* Evolva signature panel ? photo + blue overlay */
.evo-sign {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  background: #0a1628;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(26, 63, 173, 0.25);
}

.evo-sign-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1.06);
  animation: viz-ken 18s ease-in-out infinite alternate;
}

.evo-sign::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 63, 173, 0.72) 55%, rgba(47, 91, 232, 0.55) 100%);
  pointer-events: none;
}

/* Legacy constellation bits (kept inert if any remain) */
.evo-sign-grid,
.evo-node,
.evo-ring { display: none; }

.evo-sign-label {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  color: #fff;
}

.evo-sign-label strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.evo-sign-label span {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  opacity: 0.85;
  line-height: 1.4;
}

.svc-process-visual {
  position: relative;
}

.svc-process-visual::before {
  content: '';
  position: absolute;
  top: 2.1rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 91, 232, 0.35), transparent);
  z-index: 0;
}

.svc-process-visual .svc-process-grid,
.svc-process-visual .process-strip {
  position: relative;
  z-index: 1;
}

.page-visual-hero {
  position: relative;
  overflow: hidden;
}

.page-visual-aside {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 22px 48px rgba(26, 63, 173, 0.16);
}

.page-visual-aside img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .svc-detail-hero-layout,
  .viz-media-split,
  .viz-media-split.is-flip,
  .viz-band-inner {
    grid-template-columns: 1fr;
  }
  .viz-media-split.is-flip .viz-media-frame { order: 0; }
  .svc-detail-hero-img,
  .viz-media-frame img { min-height: 280px; height: 280px; }
  .svc-process-visual::before { display: none; }
}

/* Photo service cards (home) */
.service-card.has-photo {
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none;
  box-shadow: 0 18px 40px rgba(11, 26, 58, 0.22);
}

.service-card.has-photo::before {
  inset: 0;
  height: auto;
  background: linear-gradient(180deg, rgba(11, 26, 58, 0.15) 0%, rgba(11, 26, 58, 0.88) 72%);
  opacity: 1;
}

.service-card.has-photo .service-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(6px);
  margin-bottom: 0.85rem;
}

.service-card.has-photo h3,
.service-card.has-photo p,
.service-card.has-photo .link-arrow {
  color: #fff;
  position: relative;
  z-index: 1;
}

.service-card.has-photo p { color: rgba(255, 255, 255, 0.82); }
.service-card.has-photo .link-arrow { opacity: 0.9; }
.service-card.has-photo:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 50px rgba(26, 63, 173, 0.35);
}

/* Industry photo tiles */
.industry-item.has-photo {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  padding: 0;
  border: none;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 32px rgba(11, 26, 58, 0.18);
}

.industry-item.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(11, 26, 58, 0.85) 100%);
}

.industry-item.has-photo .icon { display: none; }
.industry-item.has-photo span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 1.1rem;
  width: 100%;
  text-align: left;
}

.industry-item.has-photo:hover {
  transform: translateY(-3px);
  border-color: transparent;
}

/* Homepage industry hover cards */
.industries-hover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.industry-hover-card {
  position: relative;
  min-height: 380px;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  box-sizing: border-box;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 18px 40px rgba(11, 26, 58, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-hover-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(8, 16, 32, 0.15) 0%, rgba(8, 16, 32, 0.35) 42%, rgba(8, 16, 32, 0.92) 100%);
  transition: background 0.35s ease;
}

.industry-hover-card > * { position: relative; z-index: 1; }

.industry-hover-icon {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.industry-hover-icon svg {
  width: 100%;
  height: 100%;
}

.industry-hover-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  transition: transform 0.35s ease;
}

.industry-hover-panel {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.35s ease, margin 0.35s ease;
  margin-top: 0;
}

.industry-hover-panel p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.industry-hover-panel ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.industry-hover-panel li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.industry-hover-panel li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.industry-hover-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.industry-hover-cta:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

.industry-hover-card:hover,
.industry-hover-card:focus-within,
.industry-hover-card.is-open {
  justify-content: flex-start;
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(11, 26, 58, 0.32);
}

.industry-hover-card:hover::before,
.industry-hover-card:focus-within::before,
.industry-hover-card.is-open::before {
  background: linear-gradient(180deg, rgba(6, 12, 24, 0.72) 0%, rgba(6, 12, 24, 0.88) 45%, rgba(6, 12, 24, 0.96) 100%);
}

.industry-hover-card:hover .industry-hover-icon,
.industry-hover-card:focus-within .industry-hover-icon,
.industry-hover-card.is-open .industry-hover-icon {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.industry-hover-card:hover .industry-hover-panel,
.industry-hover-card:focus-within .industry-hover-panel,
.industry-hover-card.is-open .industry-hover-panel {
  flex: 1;
  max-height: none;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0.65rem;
  overflow: visible;
}

.industry-hover-card:hover .industry-hover-cta,
.industry-hover-card:focus-within .industry-hover-cta,
.industry-hover-card.is-open .industry-hover-cta {
  margin-top: auto;
}

@media (max-width: 1024px) {
  .industries-hover-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-hover-card { min-height: 360px; }
}

@media (max-width: 640px) {
  .industries-hover-grid { grid-template-columns: 1fr; }
  .industry-hover-card { min-height: 340px; }
}

/* AI section with real media */
.ai-section.has-media {
  padding: 0;
  overflow: hidden;
}

.ai-section.has-media .ai-grid {
  align-items: stretch;
  min-height: 360px;
  gap: 0;
}

.ai-section.has-media .ai-copy {
  padding: 2.75rem 2.5rem;
}

.ai-media-panel {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.ai-media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.ai-media-panel .evo-sign {
  position: absolute;
  inset: auto 1.25rem 1.25rem auto;
  width: min(220px, 55%);
  min-height: 140px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.ai-media-panel .evo-sign-label {
  left: 0.85rem;
  bottom: 0.85rem;
}

.ai-media-panel .evo-sign-label strong { font-size: 0.9rem; }
.ai-media-panel .evo-ring-a { width: 90px; height: 90px; }
.ai-media-panel .evo-ring-b { width: 130px; height: 130px; }

/* About hero split (match homepage hero-main proportions) */
.about-hero-inner.is-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.about-hero-inner.is-split .about-hero-lead {
  max-width: 520px;
}

.about-hero-visual {
  position: relative;
}

.about-hero-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(26, 63, 173, 0.2);
  display: block;
}

.about-hero-visual .evo-sign {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 54%;
  min-height: 150px;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .about-hero-inner.is-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-hero-inner.is-split .about-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .about-hero-visual img { height: 260px; }
  .about-hero-visual .evo-sign { right: 4%; bottom: -6%; width: 70%; }
  .ai-section.has-media .ai-grid { grid-template-columns: 1fr; }
  .ai-media-panel { order: -1; }
}

/* Work hero mosaic */
.work-hero-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  min-height: 280px;
}

.work-hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  min-height: 130px;
}

.work-hero-mosaic img:first-child {
  grid-row: 1 / 3;
  min-height: 280px;
  border-radius: 18px;
}

.work-mosaic-main {
  object-position: 38% 48%;
}

.work-mosaic-team {
  object-position: 50% 40%;
}

.work-mosaic-desk {
  object-position: 45% 45%;
}

@media (max-width: 768px) {
  .work-hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .work-hero-mosaic img:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 180px;
  }
}


/* Industries page */
.ind-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 88% 8%, rgba(47, 91, 232, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(91, 140, 255, 0.08), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f4f7ff 52%, #eef2ff 100%);
}

.ind-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 91, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 232, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 92%);
  pointer-events: none;
}

.ind-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.ind-breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.ind-breadcrumb a:hover { color: var(--blue); }

.ind-hero-brand {
  margin: 0 0 0.65rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--blue);
}

.ind-hero-copy h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1.1rem;
  max-width: 16ch;
}

.ind-hero-copy h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ind-hero-lead {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 48ch;
}

.ind-hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.25rem;
  margin: 0 0 1.75rem;
  padding: 0;
}

.ind-hero-points li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text);
}

.ind-hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.4'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.ind-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ind-hero-trust {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.ind-hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind-hero-rings {
  position: absolute;
  inset: 8% 6% 12% 10%;
  pointer-events: none;
}

.ind-hero-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(47, 91, 232, 0.16);
}

.ind-hero-rings span:nth-child(2) { inset: 8%; opacity: 0.75; }
.ind-hero-rings span:nth-child(3) { inset: 16%; opacity: 0.5; }

.ind-hero-photo {
  position: relative;
  z-index: 1;
  width: min(340px, 72%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(26, 63, 173, 0.18);
  border: 6px solid #fff;
}

.ind-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ind-hero-card {
  position: absolute;
  top: 6%;
  right: 0;
  z-index: 2;
  width: min(220px, 48%);
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(47, 91, 232, 0.14);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.1);
  display: grid;
  gap: 0.75rem;
}

.ind-hero-card div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ind-hero-card strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.ind-hero-card span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.ind-row {
  padding: 5rem 0;
  background: var(--bg-white);
  border-top: 1px solid rgba(47, 91, 232, 0.06);
}

.ind-row--alt { background: #f7f9fd; }

.ind-row-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.ind-row-grid--flip .ind-row-copy { order: 2; }
.ind-row-grid--flip .ind-row-media { order: 1; }

.ind-row-copy h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  margin: 0 0 1.35rem;
  padding-bottom: 0.75rem;
  color: var(--text);
}

.ind-row-copy h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.25rem;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
}

.ind-row-copy > p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 54ch;
}

.ind-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin: 1.5rem 0 1.85rem;
  padding: 0;
}

.ind-checks li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text);
}

.ind-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.4'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center / 9px no-repeat;
}

.ind-row-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ind-circle {
  position: relative;
  width: min(380px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 10px;
  background:
    radial-gradient(circle at 30% 20%, rgba(74, 125, 255, 0.18), transparent 45%),
    #fff;
  box-shadow: 0 20px 44px rgba(26, 63, 173, 0.12);
}

.ind-circle::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dotted rgba(47, 91, 232, 0.35);
  pointer-events: none;
}

.ind-circle::after {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1.5px dotted rgba(26, 63, 173, 0.16);
  pointer-events: none;
}

.ind-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.ind-circle-img--care {
  object-position: center 18%;
}

@media (max-width: 1024px) {
  .ind-hero-grid,
  .ind-row-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .ind-row-grid--flip .ind-row-copy,
  .ind-row-grid--flip .ind-row-media { order: unset; }

  .ind-hero-copy h1 { max-width: none; }
  .ind-hero-visual { min-height: 360px; }
  .ind-hero-card { right: 4%; }
}

@media (max-width: 640px) {
  .ind-hero { padding: 7.5rem 0 3.25rem; }
  .ind-hero-points,
  .ind-checks { grid-template-columns: 1fr; }
  .ind-hero-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 1.25rem;
  }
  .ind-hero-visual {
    flex-direction: column;
    min-height: 0;
  }
  .ind-hero-photo { width: min(280px, 78%); }
  .ind-row { padding: 3.25rem 0; }
}

/* AI page (MindInventory-informed structure) */
.ai-page-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 4.25rem;
  background:
    radial-gradient(ellipse 70% 55% at 90% 0%, rgba(47, 91, 232, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(91, 140, 255, 0.08), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f4f7ff 52%, #eef2ff 100%);
}

.ai-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 91, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 232, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 15%, transparent 90%);
  pointer-events: none;
}

.ai-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
}

.ai-page-brand {
  margin: 0 0 0.65rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
}

.ai-page-hero-copy h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1.1rem;
  max-width: 14ch;
}

.ai-page-hero-copy h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-page-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 48ch;
}

.ai-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ai-page-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-page-proof li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ai-page-proof strong {
  color: var(--text);
  font-weight: 600;
}

.ai-page-hero-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(47, 91, 232, 0.12);
  box-shadow: 0 24px 50px rgba(26, 63, 173, 0.14);
  min-height: 360px;
}

.ai-page-hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.ai-hero-float img {
  width: 36px;
  height: auto;
  min-height: 0;
  object-fit: contain;
  flex-shrink: 0;
}

.ai-pillar-grid,
.ai-svc-grid,
.ai-sol-grid,
.ai-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.ai-pillar,
.ai-svc-card,
.ai-sol-card,
.ai-ind-card {
  padding: 1.5rem 1.4rem;
  background: var(--bg-white);
  border: 1px solid rgba(47, 91, 232, 0.1);
  border-radius: var(--radius);
  transition: var(--transition);
}

.ai-pillars .ai-pillar { background: var(--bg); }

.ai-pillar:hover,
.ai-svc-card:hover,
.ai-sol-card:hover,
.ai-ind-card:hover {
  border-color: rgba(47, 91, 232, 0.22);
  box-shadow: 0 12px 28px rgba(26, 63, 173, 0.08);
  transform: translateY(-2px);
}

.ai-pillar h3,
.ai-svc-card h3,
.ai-sol-card h3,
.ai-ind-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  color: var(--text);
}

.ai-pillar p,
.ai-svc-card p,
.ai-sol-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.ai-page-midlink {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.ai-model-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 900px;
  margin: 0 auto;
}

.ai-ind-card ul {
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.ai-ind-card li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.ai-ind-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.ai-ind-card > a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}

.ai-ind-card > a:hover { text-decoration: underline; }

.ai-process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.75rem;
  align-items: start;
}

.ai-process-intro .section-title { margin-bottom: 0.85rem; }

.ai-process-intro > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.ai-process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.ai-process-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  background: var(--bg-white);
  border: 1px solid rgba(47, 91, 232, 0.1);
  border-radius: 14px;
}

.ai-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(47, 91, 232, 0.08);
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
}

.ai-process-steps h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.ai-process-steps p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .ai-page-hero-grid,
  .ai-process-layout {
    grid-template-columns: 1fr;
  }

  .ai-page-hero-copy h1 { max-width: none; }

  .ai-pillar-grid,
  .ai-svc-grid,
  .ai-sol-grid,
  .ai-ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ai-page-hero { padding: 7.5rem 0 3rem; }
  .ai-page-hero-visual,
  .ai-page-hero-visual > img { min-height: 240px; }

  .ai-pillar-grid,
  .ai-svc-grid,
  .ai-sol-grid,
  .ai-ind-grid {
    grid-template-columns: 1fr;
  }
}

/* Resources / Blogs */
.res-hero {
  position: relative;
  overflow: hidden;
  padding: 8.75rem 0 3.25rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 90% -10%, rgba(47, 91, 232, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(91, 140, 255, 0.08), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f3f6ff 50%, #eef2ff 100%);
}

.res-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 91, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 232, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 85%);
  pointer-events: none;
}

.res-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 35%;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(47, 91, 232, 0.1);
  box-shadow:
    0 0 0 48px rgba(47, 91, 232, 0.03),
    0 0 0 96px rgba(47, 91, 232, 0.02);
  pointer-events: none;
}

.res-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.res-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.75rem;
}

.res-hero h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3.25rem;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateX(-50%);
}

.res-hero p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.res-listing { padding-top: 2rem; }

.res-toolbar {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.res-toolbar-title {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  margin: 0;
  display: inline-block;
  position: relative;
  padding-bottom: 0.65rem;
  width: fit-content;
}

.res-toolbar-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.res-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.res-pill {
  appearance: none;
  border: 1px solid rgba(47, 91, 232, 0.28);
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.res-pill:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.res-pill.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.res-grid.is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.res-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  transition: var(--transition);
}

.res-card:hover {
  border-color: rgba(47, 91, 232, 0.18);
  box-shadow: 0 16px 36px rgba(26, 63, 173, 0.1);
  transform: translateY(-3px);
}

.res-card.is-hidden { display: none; }

.res-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg);
}

.res-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.res-card:hover .res-card-media img { transform: scale(1.03); }

.res-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.15rem;
  flex: 1;
}

.res-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.res-card-body h3 a {
  color: var(--text);
}

.res-card-body h3 a:hover { color: var(--blue); }

.res-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.res-author img,
.res-author-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.res-author-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 91, 232, 0.12);
  color: var(--blue);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.res-author-fallback[data-initials="AM"] {
  background: rgba(45, 212, 191, 0.16);
  color: #0f766e;
}

.res-author-fallback[data-initials="RD"] {
  background: rgba(251, 191, 36, 0.18);
  color: #b45309;
}

.res-author-fallback[data-initials="KN"] {
  background: rgba(34, 211, 238, 0.16);
  color: #0e7490;
}

.res-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
}

.res-author span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.res-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.res-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.res-read {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

.res-read:hover { text-decoration: underline; }

.res-load {
  margin-top: 2.75rem;
  text-align: center;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.res-load.is-hidden { display: none; }

.res-load-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.08);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.res-load-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue);
  border-radius: inherit;
  transition: width 0.35s ease;
}

.res-load-text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Single blog / resource article */
.res-article {
  background: var(--bg);
  padding-bottom: 4rem;
}

.res-article-hero {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(47, 91, 232, 0.1), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  padding: 8.25rem 0 2.25rem;
  border-bottom: 1px solid var(--border);
}

.res-article-hero-inner {
  max-width: 820px;
}

.res-post-crumb {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.res-post-crumb a:hover { color: var(--blue); }

.res-article-topic {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.res-article-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text);
  max-width: 28ch;
}

.res-article-deck {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 62ch;
}

.res-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.res-article-meta-facts {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.res-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

@media (min-width: 1080px) {
  .res-article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 2.75rem;
  }
}

.res-article-main {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  box-shadow: 0 10px 40px rgba(16, 24, 40, 0.04);
}

.res-post-hero {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(47, 91, 232, 0.1);
}

.res-post-hero img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

.res-summary {
  background: linear-gradient(135deg, rgba(47, 91, 232, 0.08) 0%, rgba(34, 211, 238, 0.06) 100%);
  border: 1px solid rgba(47, 91, 232, 0.14);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  margin: 0 0 1.75rem;
}

.res-summary-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.45rem;
}

.res-summary p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.6;
}

.res-toc-mobile {
  display: block;
  margin: 0 0 1.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  padding: 0.85rem 1rem;
}

.res-toc-mobile summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

.res-toc-mobile summary::-webkit-details-marker { display: none; }

.res-toc-mobile ol {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
}

.res-toc-mobile a {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.res-toc-mobile a:hover { color: var(--blue); }

@media (min-width: 1080px) {
  .res-toc-mobile { display: none; }
}

.res-post-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  overflow-x: auto;
}

.res-post-body h2 {
  color: var(--text);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin: 2.35rem 0 0.85rem;
  letter-spacing: -0.02em;
  scroll-margin-top: 6rem;
}

.res-post-body h3 {
  color: var(--text);
  font-size: 1.15rem;
  margin: 1.6rem 0 0.65rem;
  scroll-margin-top: 6rem;
}

.res-post-body p { margin: 0 0 1.1rem; }

.res-post-body ul,
.res-post-body ol {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
}

.res-post-body li { margin: 0.35rem 0; }

.res-post-body strong { color: var(--text); }

.res-post-body table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
}

.res-post-body th,
.res-post-body td {
  border: 1px solid var(--border);
  padding: 0.7rem 0.8rem;
  text-align: left;
  vertical-align: top;
  min-width: 120px;
}

.res-post-body th {
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
}

.res-post-body a { color: var(--blue); font-weight: 500; }

.res-post-body blockquote {
  margin: 0 0 1.35rem;
  padding: 0.9rem 1.1rem;
  border-left: 3px solid var(--blue);
  background: var(--bg);
  border-radius: 0 12px 12px 0;
  color: var(--text);
}

.res-post-cta {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.5rem;
  padding: 1.35rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #101828 0%, #1a3fad 100%);
  color: #fff;
}

.res-post-cta-copy strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.res-post-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.res-post-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.res-post-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.res-post-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.res-article-aside {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1080px) {
  .res-article-aside {
    position: sticky;
    top: 6.5rem;
  }
}

.res-aside-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.res-toc,
.res-aside-card,
.res-aside-related {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
}

.res-toc ol {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.res-toc a {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.4;
  display: inline-block;
}

.res-toc a:hover,
.res-toc a.is-active {
  color: var(--blue);
  font-weight: 600;
}

.res-aside-card-text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.res-aside-card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.res-aside-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.res-aside-related a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.res-aside-related a:hover { color: var(--blue); }

@media (max-width: 1024px) {
  .res-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .res-hero { padding: 7.5rem 0 2.5rem; }
  .res-grid { grid-template-columns: 1fr; }
}

/* AI case studies slider */
.ai-cases {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 85% 10%, rgba(47, 91, 232, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 45% at 5% 90%, rgba(91, 140, 255, 0.08), transparent 50%),
    linear-gradient(180deg, #f4f7ff 0%, #eef2fb 100%);
}

.ai-cases::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 91, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 232, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 95%);
  pointer-events: none;
}

.ai-cases .container { position: relative; z-index: 1; }

.ai-cases-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ai-cases-head .section-desc {
  margin: 0.65rem 0 0;
  max-width: 52ch;
}

.ai-cases-nav {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.ai-cases-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(47, 91, 232, 0.22);
  background: #fff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.ai-cases-btn svg {
  width: 18px;
  height: 18px;
}

.ai-cases-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.ai-cases-viewport {
  position: relative;
}

.ai-case-slide {
  display: none;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(47, 91, 232, 0.1);
  box-shadow: 0 20px 50px rgba(26, 63, 173, 0.1);
}

.ai-case-slide.is-active {
  display: grid;
}

.ai-case-copy {
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-case-copy h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.ai-case-copy > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.ai-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ai-case-tags span {
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(47, 91, 232, 0.2);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue);
  background: rgba(47, 91, 232, 0.04);
}

.ai-case-outcomes {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.ai-case-outcomes-label {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ai-case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ai-case-metrics strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}

.ai-case-metrics span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.ai-case-media {
  position: relative;
  min-height: 320px;
  background: var(--bg);
}

.ai-case-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.ai-case-link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.16);
  transition: var(--transition);
}

.ai-case-link svg {
  width: 18px;
  height: 18px;
}

.ai-case-link:hover {
  background: var(--blue);
  color: #fff;
}

@media (max-width: 900px) {
  .ai-cases-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .ai-case-slide.is-active {
    grid-template-columns: 1fr;
  }

  .ai-case-media,
  .ai-case-media img {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .ai-case-copy { padding: 1.35rem; }
  .ai-case-metrics { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* AI page visual enrichment */
.ai-page-hero-visual {
  position: relative;
}

.ai-hero-orbits {
  position: absolute;
  inset: -8% -6% -10% -8%;
  pointer-events: none;
  z-index: 0;
}

.ai-hero-orbits span {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(47, 91, 232, 0.18);
  animation: aiOrbitPulse 7s ease-in-out infinite;
}

.ai-hero-orbits span:nth-child(2) {
  inset: 6%;
  opacity: 0.65;
  animation-delay: 1.2s;
}

.ai-page-hero-visual > img {
  position: relative;
  z-index: 1;
  animation: aiHeroFloat 8s ease-in-out infinite;
}

.ai-hero-float {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(47, 91, 232, 0.14);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
  animation: aiFloatUp 5.5s ease-in-out infinite;
}

.ai-hero-float strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
}

.ai-hero-float span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

@keyframes aiOrbitPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.02); opacity: 1; }
}

@keyframes aiHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes aiFloatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.ai-visual-band {
  padding: 3.5rem 0;
  background: var(--bg-white);
}

.ai-visual-band-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.ai-visual-band-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 20px 44px rgba(26, 63, 173, 0.12);
}

.ai-visual-band-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.ai-visual-band-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(10, 22, 40, 0.82);
  color: #fff;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.ai-visual-band-chip strong {
  display: block;
  font-size: 0.92rem;
}

.ai-visual-band-chip span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  opacity: 0.8;
}

.ai-visual-band-copy .section-title { margin-bottom: 0.85rem; }

.ai-visual-band-copy > p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ai-visual-checks {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.ai-visual-checks li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.ai-visual-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.4'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center / 9px no-repeat;
}

.ai-card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 0.35rem;
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(47, 91, 232, 0.1);
}

.ai-svc-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(47, 91, 232, 0.08);
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.ai-svc-icon svg {
  width: 20px;
  height: 20px;
}

.ai-stagger > *:nth-child(1) { transition-delay: 0.04s; }
.ai-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.ai-stagger > *:nth-child(3) { transition-delay: 0.12s; }
.ai-stagger > *:nth-child(4) { transition-delay: 0.16s; }
.ai-stagger > *:nth-child(5) { transition-delay: 0.2s; }
.ai-stagger > *:nth-child(6) { transition-delay: 0.24s; }
.ai-stagger > *:nth-child(7) { transition-delay: 0.28s; }
.ai-stagger > *:nth-child(8) { transition-delay: 0.32s; }

.ai-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color var(--transition), box-shadow var(--transition);
}

.fade-up.visible .ai-stagger > *,
.ai-stagger.fade-up.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.ai-sol-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ai-sol-shot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 14px 34px rgba(26, 63, 173, 0.1);
}

.ai-sol-shot img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ai-sol-shot:hover img { transform: scale(1.04); }

.ai-sol-shot span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.ai-models-panel {
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(47, 91, 232, 0.12), transparent 40%),
    #fff;
  border: 1px solid rgba(47, 91, 232, 0.1);
  box-shadow: 0 16px 40px rgba(26, 63, 173, 0.06);
}

.ai-models-panel .tech-tag {
  transition: transform 0.25s ease, border-color var(--transition), color var(--transition), background var(--transition);
}

.ai-models-panel .tech-tag:hover {
  transform: translateY(-3px);
}

.ai-ind-card {
  overflow: hidden;
  padding: 0;
}

.ai-ind-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ai-ind-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ai-ind-card:hover .ai-ind-thumb img { transform: scale(1.05); }

.ai-ind-card h3,
.ai-ind-card ul,
.ai-ind-card > a {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.ai-ind-card h3 { margin-top: 1rem; }
.ai-ind-card > a { display: inline-block; padding-bottom: 1.2rem; }

.ai-process-photo {
  margin: 1rem 0 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(47, 91, 232, 0.1);
}

.ai-process-photo img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.ai-process-steps li {
  transition: transform 0.3s ease, border-color var(--transition), box-shadow var(--transition);
}

.ai-process-steps li:hover {
  transform: translateX(4px);
  border-color: rgba(47, 91, 232, 0.22);
  box-shadow: 0 10px 24px rgba(26, 63, 173, 0.08);
}

@media (max-width: 1024px) {
  .ai-visual-band-grid,
  .ai-sol-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ai-hero-float { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; }
  .ai-visual-band { padding: 2rem 0; }
  .ai-models-panel { padding: 1.5rem 1.15rem; }
}

/* AI section layout differentiation */
.ai-pillars {
  background: var(--bg-white);
}

.ai-why-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.ai-why-intro .section-title {
  margin-bottom: 0.85rem;
  max-width: 12ch;
}

.ai-why-intro .section-desc {
  margin: 0;
  max-width: 36ch;
}

.ai-why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(47, 91, 232, 0.12);
}

.ai-why-list li {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(47, 91, 232, 0.12);
  transition: background 0.25s ease;
}

.ai-why-list li:hover {
  background: linear-gradient(90deg, rgba(47, 91, 232, 0.04), transparent 70%);
}

.ai-why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
  padding-top: 0.15rem;
}

.ai-why-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.ai-why-list p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.ai-build-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.75rem;
  align-items: start;
}

.ai-build-intro .section-title {
  margin-bottom: 0.85rem;
  max-width: 14ch;
}

.ai-build-intro .section-desc {
  margin: 0;
  max-width: 38ch;
}

.ai-build-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
}

.ai-build-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.85rem 0 0.85rem 1.15rem;
  border-left: 3px solid rgba(47, 91, 232, 0.25);
  transition: border-color 0.25s ease;
}

.ai-build-list li:hover {
  border-left-color: var(--blue);
}

.ai-build-list strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.ai-build-list span {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Services remain the only card grid in this trio */
#services .ai-svc-card {
  background: var(--bg-white);
  box-shadow: 0 8px 24px rgba(26, 63, 173, 0.05);
}

@media (max-width: 1024px) {
  .ai-why-layout,
  .ai-build-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .ai-why-intro .section-title,
  .ai-build-intro .section-title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .ai-build-list { grid-template-columns: 1fr; }
}

/* Hire onboarding path (creative) */
.hire-onboard {
  position: relative;
}

.hire-onboard .section-title {
  margin-bottom: 0.25rem;
}

.hire-onboard-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 0.5rem;
}

.hire-onboard-track::before {
  content: '';
  position: absolute;
  top: 2.15rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 91, 232, 0.15), rgba(47, 91, 232, 0.45), rgba(47, 91, 232, 0.15));
  z-index: 0;
}

.hire-onboard-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
}

.hire-onboard-node {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff 0%, #eef2ff 100%);
  border: 2px solid rgba(47, 91, 232, 0.22);
  box-shadow: 0 10px 24px rgba(26, 63, 173, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hire-onboard-num {
  position: absolute;
  top: -0.45rem;
  right: -0.35rem;
  min-width: 1.55rem;
  height: 1.55rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(47, 91, 232, 0.35);
}

.hire-onboard-icon {
  color: var(--blue);
  display: inline-flex;
}

.hire-onboard-icon svg {
  width: 22px;
  height: 22px;
}

.hire-onboard-card {
  width: 100%;
  padding: 1.15rem 1rem 1.25rem;
  background: var(--bg-white);
  border: 1px solid rgba(47, 91, 232, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.04);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hire-onboard-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.hire-onboard-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hire-onboard-step:hover .hire-onboard-node {
  transform: translateY(-4px) scale(1.04);
  border-color: var(--blue);
  box-shadow: 0 14px 28px rgba(47, 91, 232, 0.2);
}

.hire-onboard-step:hover .hire-onboard-card {
  transform: translateY(-3px);
  border-color: rgba(47, 91, 232, 0.22);
  box-shadow: 0 14px 30px rgba(26, 63, 173, 0.1);
}

.hire-onboard-step:nth-child(1) .hire-onboard-card { border-top: 3px solid #2f5be8; }
.hire-onboard-step:nth-child(2) .hire-onboard-card { border-top: 3px solid #4a74f5; }
.hire-onboard-step:nth-child(3) .hire-onboard-card { border-top: 3px solid #1a3fad; }
.hire-onboard-step:nth-child(4) .hire-onboard-card { border-top: 3px solid #5b8cff; }

@media (max-width: 1024px) {
  .hire-onboard-track {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  .hire-onboard-track::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .hire-onboard-track {
    grid-template-columns: 1fr;
  }

  .hire-onboard-step {
    display: grid;
    grid-template-columns: auto 1fr;
    text-align: left;
    align-items: start;
    gap: 0.85rem;
  }

  .hire-onboard-node {
    width: 52px;
    height: 52px;
  }
}

/* Why Evolva AI ? bento redesign */
.ai-pillars {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(47, 91, 232, 0.08), transparent 55%),
    var(--bg);
}

.ai-why-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.ai-why-bento > .ai-why-tile:not(.ai-why-tile--wide) {
  grid-column: span 2;
}

.ai-why-bento > .ai-why-tile:nth-child(5),
.ai-why-bento > .ai-why-tile:nth-child(6) {
  grid-column: span 3;
}

.ai-why-tile {
  position: relative;
  overflow: hidden;
  padding: 1.45rem 1.35rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(47, 91, 232, 0.1);
  min-height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ai-why-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 91, 232, 0.22);
  box-shadow: 0 16px 36px rgba(26, 63, 173, 0.1);
}

.ai-why-tile--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
}

.ai-why-tile-media {
  min-height: 160px;
  max-height: 200px;
  overflow: hidden;
}

.ai-why-tile-media img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.ai-why-tile--wide:hover .ai-why-tile-media img {
  transform: scale(1.04);
}

.ai-why-tile-body {
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ai-why-tile--accent {
  background: linear-gradient(145deg, #102b7a 0%, #2f5be8 100%);
  border-color: transparent;
  color: #fff;
}

.ai-why-tile--accent h3 { color: #fff; }
.ai-why-tile--accent .ai-why-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.ai-why-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: rgba(47, 91, 232, 0.1);
}

.ai-why-tile h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.ai-why-tile p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.ai-why-tile--accent p {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1024px) {
  .ai-why-bento { grid-template-columns: 1fr 1fr; }
  .ai-why-bento > .ai-why-tile:not(.ai-why-tile--wide),
  .ai-why-bento > .ai-why-tile:nth-child(5),
  .ai-why-bento > .ai-why-tile:nth-child(6) {
    grid-column: auto;
  }
  .ai-why-tile--wide {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
  .ai-why-tile-media { min-height: 180px; }
}

@media (max-width: 640px) {
  .ai-why-bento { grid-template-columns: 1fr; }
}

/* AI build board (solution types) */
.ai-build-section {
  background: var(--bg-white);
}

.ai-build-board {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 920px;
  margin: 0 auto 1.75rem;
}

.ai-build-chip {
  appearance: none;
  border: 1px solid rgba(47, 91, 232, 0.16);
  background: #f4f7ff;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.7rem 1.05rem 0.7rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ai-build-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(47, 91, 232, 0.35);
  flex-shrink: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.ai-build-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 91, 232, 0.35);
  box-shadow: 0 8px 20px rgba(26, 63, 173, 0.1);
}

.ai-build-chip.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 91, 232, 0.28);
}

.ai-build-chip.is-active .ai-build-chip-dot {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}

.ai-build-detail {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 91, 232, 0.1), transparent 55%),
    linear-gradient(180deg, #f7f9fd 0%, #eef2ff 100%);
  border: 1px solid rgba(47, 91, 232, 0.12);
  min-height: 140px;
  transition: opacity 0.25s ease;
}

.ai-build-detail-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.ai-build-detail h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  letter-spacing: -0.02em;
}

.ai-build-detail p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* About: Core Capabilities scroll stack (sticky cards) */
.about-cap-stack-section {
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(47, 91, 232, 0.08), transparent 55%),
    linear-gradient(180deg, #f7f9fd 0%, #eef2fb 100%);
  padding-bottom: 5rem;
}

.about-cap-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 980px;
  margin: 2rem auto 0;
  padding-bottom: 2rem;
}

.about-cap-stack-card {
  position: sticky;
  top: calc(5.75rem + (var(--i, 0) * 0.85rem));
  z-index: calc(10 + var(--i, 0));
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  min-height: 280px;
  background: #fff;
  border: 1px solid rgba(47, 91, 232, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(26, 63, 173, 0.1);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-cap-stack-card:hover {
  border-color: rgba(47, 91, 232, 0.28);
  box-shadow: 0 22px 50px rgba(26, 63, 173, 0.14);
}

.about-cap-stack-media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #0a1628;
}

.about-cap-stack-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-cap-stack-card:hover .about-cap-stack-media img {
  transform: scale(1.04);
}

.about-cap-stack-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 43, 122, 0.18), transparent 55%);
  pointer-events: none;
}

.about-cap-stack-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.1rem;
  text-align: left;
}

.about-cap-stack-num {
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.about-cap-stack-copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.about-cap-stack-copy p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 36ch;
}

.about-cap-stack-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
}

@media (max-width: 800px) {
  .about-cap-stack-card {
    grid-template-columns: 1fr;
    position: relative;
    top: auto;
    min-height: 0;
  }
  .about-cap-stack-media {
    min-height: 200px;
    max-height: 220px;
  }
  .about-cap-stack-copy {
    padding: 1.5rem 1.35rem 1.75rem;
  }
}

/* -- Legal / Privacy -- */
.legal-hero {
  text-align: left;
  padding-bottom: 2.5rem;
}
.legal-hero p {
  margin: 0;
  font-size: 0.95rem;
}
.legal-doc {
  max-width: 760px;
  margin: 0 auto;
}
.legal-doc > p:first-child {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 2rem;
}
.legal-doc h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin: 2.25rem 0 0.75rem;
  color: var(--text);
}
.legal-doc p,
.legal-doc li {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.legal-doc ul {
  margin: 0 0 1rem 1.2rem;
}
.legal-doc a {
  color: var(--blue);
  text-decoration: none;
}
.legal-doc a:hover { text-decoration: underline; }

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--blue); }

/* -- Thank you -- */
.thank-you-section {
  position: relative;
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
}
.thank-you-panel {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 91, 232, 0.12);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(26, 63, 173, 0.1);
}
.thank-you-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  color: var(--blue);
}
.thank-you-mark svg {
  width: 100%;
  height: 100%;
}
.thank-you-panel h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  margin: 0.35rem 0 1rem;
}
.thank-you-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0 auto 1.75rem;
  max-width: 42ch;
}
.thank-you-next {
  list-style: none;
  text-align: left;
  margin: 0 auto 2rem;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.thank-you-next li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.thank-you-next li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.thank-you-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.thank-you-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.thank-you-links a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .thank-you-panel { padding: 2.25rem 1.35rem; border-radius: 22px; }
  .thank-you-actions .btn { width: 100%; }
}

.contact-form-privacy {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.contact-form-privacy a {
  color: var(--blue);
  text-decoration: none;
}
.contact-form-privacy a:hover { text-decoration: underline; }

/* Gravity Forms contact styles live in css/public-style.css (loads after GF) */

/* ============================================================
   SITE RESPONSIVE SYSTEM
   Breakpoints: desktop (>1280), laptop (<=1280), tablet (<=1024/900),
   tablet portrait (<=768), mobile (<=640/480)
   + landscape short-height pass
   ============================================================ */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* Laptop / large tablet landscape */
@media (max-width: 1280px) {
  .container { width: min(1200px, 94%); }

  .section { padding: 5rem 0; }

  .hero-stage { min-height: 380px; }

  .why-dark-stats { grid-template-columns: repeat(3, 1fr); }

  .cta-banner {
    padding: 2.5rem 2rem;
    gap: 1.5rem;
  }
}

/* Tablet (portrait + smaller landscape) */
@media (max-width: 1024px) {
  .section { padding: 4.25rem 0; }

  .page-hero {
    padding: 8rem 0 3.5rem;
  }

  .page-hero h1 { font-size: clamp(1.85rem, 4.5vw, 2.6rem); }

  .svc-detail-hero-layout,
  .viz-media-split,
  .page-hero-split {
    gap: 2rem;
  }

  .hero-float-aws,
  .hero-float-stat,
  .orbit-node-1,
  .orbit-node-2,
  .orbit-node-3 {
    transform: scale(0.9);
  }

  .service-card.has-photo,
  .hire-card.has-photo {
    min-height: 250px;
  }

  .industry-hover-card { min-height: 320px; }

  .cta-banner::before,
  .cta-banner::after,
  .svc-cta-panel::before,
  .svc-cta-panel::after {
    opacity: 0.45;
    transform: scale(0.75);
  }

  .ai-copy { padding: 2rem 1.75rem; }

  .contact-form { padding: 1.75rem; }

  .thank-you-section {
    min-height: auto;
    padding: 7.5rem 0 4rem;
  }
}

/* Small tablet / large phone */
@media (max-width: 900px) {
  .hero-banner-inner { grid-template-columns: 1fr; }

  .hero-banner-panel {
    min-height: 0;
  }

  .page-visual-aside,
  .page-hero-split .page-visual-aside img {
    max-height: 360px;
    width: 100%;
    object-fit: cover;
  }

  .svc-detail-actions,
  .hero-actions,
  .ai-page-hero-actions {
    flex-wrap: wrap;
  }

  .svc-detail-actions .btn,
  .hero-actions .btn {
    flex: 1 1 auto;
  }
}

/* Tablet portrait / phone landscape width */
@media (max-width: 768px) {
  .container { width: min(1200px, 92%); }

  .section { padding: 3.5rem 0; }

  .section-alt { padding-top: 3.5rem; padding-bottom: 3.5rem; }

  .page-hero {
    padding: 6.75rem 0 2.75rem;
    text-align: center;
  }

  .page-hero p { margin-left: auto; margin-right: auto; }

  .partner-tiles,
  .industries-hover-grid,
  .stats-strip,
  .about-stats,
  .why-dark-stats,
  .ai-why-bento {
    grid-template-columns: 1fr !important;
  }

  .ai-why-bento > .ai-why-tile:not(.ai-why-tile--wide),
  .ai-why-bento > .ai-why-tile:nth-child(5),
  .ai-why-bento > .ai-why-tile:nth-child(6),
  .ai-why-tile--wide {
    grid-column: auto !important;
  }

  .ai-pillar-grid,
  .ai-svc-grid,
  .ai-sol-grid,
  .ai-ind-grid,
  .hire-onboard-track,
  .res-grid,
  .svc-fit-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-float-aws,
  .hero-float-stat {
    display: none;
  }

  .orbit-node-1,
  .orbit-node-2,
  .orbit-node-3 {
    display: none;
  }

  .evolve-orbit {
    width: 220px;
    height: 220px;
  }

  .industry-hover-card {
    min-height: 260px;
  }

  .service-card.has-photo,
  .hire-card.has-photo {
    min-height: 220px;
  }

  .cta-banner::before,
  .cta-banner::after,
  .svc-cta-panel::before,
  .svc-cta-panel::after {
    display: none;
  }

  .contact-section { padding-top: 6.5rem; }

  .contact-grid { gap: 2rem; }

  .contact-form { padding: 1.5rem; }

  .legal-hero { padding: 6.75rem 0 2rem; }

  .legal-doc { padding: 0 0.15rem; }

  .footer { padding: 3rem 0 1.75rem; }

  .footer-brand p { max-width: none; }

  .bubble-1 { width: 240px; height: 240px; }
  .bubble-2 { width: 140px; height: 140px; }

  .svc-detail-meta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-hero-split,
  .svc-detail-hero-layout {
    text-align: center;
  }

  .page-hero-split .svc-detail-actions,
  .svc-detail-hero-copy .svc-detail-actions {
    justify-content: center;
  }
}

/* Mobile portrait */
@media (max-width: 640px) {
  .section { padding: 3rem 0; }

  .page-hero {
    padding: 6.25rem 0 2.25rem;
  }

  .page-hero p,
  .section-desc {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .hero-proof-item:last-child { border-bottom: none; }

  .stats-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .industry-hover-card { min-height: 220px; }

  .btn {
    padding: 0.8rem 1.4rem;
    font-size: 0.92rem;
  }

  .thank-you-panel { padding: 2rem 1.25rem; }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn { width: 100%; }

  .form-phone-row {
    grid-template-columns: 76px 1fr;
  }

  .ai-copy { padding: 1.5rem 1.25rem; }

  .evo-sign { min-height: 220px; }

  .viz-media-frame { min-height: 220px; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { width: 92%; }

  .section { padding: 2.75rem 0; }

  .header-inner { gap: 0.5rem; }

  .logo img { max-height: 36px; width: auto; }

  .page-hero h1,
  .contact-title {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .section-title {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .hero.hero-evolve {
    --hero-gap: 2rem;
    --header-offset: 5rem;
  }

  .evolve-cards {
    max-width: 280px;
    height: 260px;
  }

  .svc-detail-meta span,
  .svc-block-tag {
    font-size: 0.75rem;
  }

  .footer-social {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Tablet landscape: keep 2-col where height is ok */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .services-grid,
  .hire-grid,
  .partner-tiles,
  .industries-hover-grid,
  .svc-tier-grid,
  .svc-offer-grid,
  .svc-deliver-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .section { padding: 3.75rem 0; }

  .page-hero { padding: 6.5rem 0 2.5rem; }
}

/* Phone landscape / short viewports */
@media (orientation: landscape) and (max-height: 520px) {
  .page-hero,
  .legal-hero,
  .ai-page-hero,
  .ind-hero,
  .contact-section {
    padding-top: 4.75rem;
    padding-bottom: 1.5rem;
  }

  .hero.hero-evolve {
    --hero-gap: 1.25rem;
    --header-offset: 4.25rem;
  }

  .hero-stage,
  .evolve-cards {
    min-height: 220px;
    height: auto;
  }

  .section { padding: 2.25rem 0; }

  .nav {
    height: 100vh;
    height: 100dvh;
  }

  .hire-sidebar,
  .about-cap-stack-card,
  .svc-narrative-photo {
    position: static !important;
    top: auto !important;
  }

  .thank-you-section {
    min-height: auto;
    padding: 5rem 0 2.5rem;
  }

  .thank-you-panel {
    padding: 1.75rem 1.25rem;
  }

  .industry-hover-card,
  .service-card.has-photo,
  .hire-card.has-photo {
    min-height: 180px;
  }

  .cta-banner {
    padding: 1.5rem;
  }
}

/* Very short landscape (phones) */
@media (orientation: landscape) and (max-height: 420px) {
  .hero-proof { display: none; }

  .page-visual-aside,
  .ai-page-hero-visual {
    max-height: 180px;
  }

  .bubble { display: none; }
}

/* Touch devices: reduce decorative bleed */
@media (hover: none) and (pointer: coarse) {
  .cta-banner::before,
  .cta-banner::after,
  .svc-cta-panel::before,
  .svc-cta-panel::after {
    display: none;
  }
}

/* Safe areas (notched phones) */
@supports (padding: max(0px)) {
  .header-inner {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
}
