:root {
  --primary-purple: #5a2ea6;
  --primary-purple-dark: #3f2373;
  --accent-orange: #ff8c2b;
  --accent-orange-dark: #e2710f;
  --bg-main: #ffffff;
  --bg-light: #f7f6fb;
  --bg-dark: #1e1339;
  --text-dark: #1a1230;
  --text-muted: #6b6483;
  --text-light: #f4f1ff;
  --border-color: #e7e2f5;
  --gradient-primary: linear-gradient(135deg, #4f2399 0%, #2d1657 100%);
  --gradient-accent: linear-gradient(135deg, #5a2ea6 0%, #ff8c2b 100%);
  --shadow-sm: 0 2px 8px rgba(25, 11, 48, 0.08);
  --shadow-md: 0 10px 24px rgba(25, 11, 48, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--text-dark); }
h1 { font-size: 3.2rem; font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin-bottom: 1rem; }
ul { list-style: none; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-white { color: #fff; }
.text-light { color: var(--text-light); }
.text-gray-400 { color: #b0a8c6; }
.text-gray-500 { color: #8f87aa; }
.section-padding { padding: 5.8rem 0; }
.bg-light { background: var(--bg-light); }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.align-center { align-items: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-30 { padding-bottom: 7.5rem; }
.text-sm { font-size: 0.9rem; }
.icon-sm { width: 16px; height: 16px; }
.footer-bottom { margin-top: 3rem; border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 1rem 1.6rem; }
.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-outline {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
  background: #fff;
}
.btn-outline:hover {
  background: var(--primary-purple);
  color: #fff;
}
.btn-white { background: #fff; color: var(--primary-purple-dark); }
.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--primary-purple-dark);
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav-container {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--primary-purple-dark);
}
.logo-image {
  height: 46px;
  width: auto;
  display: block;
}
.logo-footer .logo-image {
  height: 58px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.96rem;
}
.nav-links a.active,
.nav-links a:hover { color: var(--primary-purple); }
.nav-cta {
  white-space: nowrap;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.dropdown { position: relative; }
.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: var(--shadow-md);
  z-index: 1200;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.dropdown-content a:hover {
  background: #f5f2ff;
  color: var(--primary-purple);
}

.mobile-menu-btn {
  border: none;
  background: transparent;
  display: none;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 6.4rem 0 3.3rem;
  overflow: hidden;
  color: #fff;
}
.page-header {
  padding: 8.8rem 0 4.4rem;
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.page-header h1 { color: #fff; }
.page-header p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 760px;
  margin: 0.8rem auto 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(160, 118, 255, 0.42), transparent 52%),
    radial-gradient(circle at 10% 22%, rgba(154, 110, 255, 0.48), transparent 40%),
    radial-gradient(circle at 88% 18%, rgba(255, 130, 58, 0.26), transparent 44%),
    radial-gradient(circle at 72% 82%, rgba(100, 70, 200, 0.32), transparent 48%),
    radial-gradient(circle at 4% 78%, rgba(45, 28, 92, 0.45), transparent 46%),
    linear-gradient(145deg, #0a0614 0%, #1a0f36 42%, #07050d 100%);
  z-index: 1;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.055;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0, 0, 0, 0.55), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 35%, rgba(5, 3, 12, 0.45) 100%);
  pointer-events: none;
}
.hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.09;
}
.section-divider {
  position: relative;
}
.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90, 46, 166, 0.2), transparent);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: center;
}
.hero-subtext-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 720px;
}
.hero-subtext {
  margin: 0;
  font-size: 1.06rem;
  color: rgba(248, 244, 255, 0.94);
  line-height: 1.68;
}
.hero-subtext-line2 {
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(220, 208, 255, 0.82);
  line-height: 1.65;
}
.hero-keyline {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary-purple-dark);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.hero-capability-lines {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 0 auto 0.95rem;
}
.hero-capability-lines span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.2;
  color: var(--primary-purple-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 46, 166, 0.17);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  box-shadow: 0 2px 8px rgba(32, 16, 60, 0.05);
  backdrop-filter: blur(2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hero-capability-lines span:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 140, 43, 0.32);
  box-shadow: 0 6px 12px rgba(32, 16, 60, 0.07), 0 0 0 1px rgba(255, 140, 43, 0.06);
}
.hero-trust-cue {
  margin-top: 0.7rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: rgba(26, 18, 48, 0.62);
}
.positioning-line {
  color: var(--primary-purple-dark);
  font-weight: 600;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #ffb679;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(255, 232, 210, 0.96);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 8px 24px rgba(0, 0, 0, 0.2);
}
.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.hero .btn-primary {
  background: linear-gradient(135deg, #6d3de0 0%, #ff8c2b 100%);
  box-shadow: 0 12px 28px rgba(255, 140, 43, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}
.hero .btn-primary:hover {
  box-shadow: 0 16px 34px rgba(255, 140, 43, 0.4), 0 0 28px rgba(255, 140, 43, 0.24);
  transform: translateY(-3px);
  filter: brightness(1.05);
}
.section-tight { padding: 5rem 0; }
.center-actions { justify-content: center; }

.hero-premium { min-height: 70vh; display: flex; align-items: center; }
.hero-premium::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(6, 4, 12, 0.35));
  z-index: 2;
}
.hero-split {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}
.hero-left h1 {
  color: #fff;
  margin-bottom: 0.4rem;
  font-size: clamp(2.2rem, 4.9vw, 4rem);
}
.hero-secondary-title {
  color: #ddd0ff;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-trust-line {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: rgba(227, 216, 255, 0.88);
  letter-spacing: 0.01em;
}
.btn-hero-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.hero-glass-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 48%, rgba(120, 90, 200, 0.08) 100%);
  box-shadow:
    0 22px 50px rgba(8, 5, 18, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 2.1rem 1.9rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}
.hero-glass-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 64px rgba(8, 5, 18, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 48px rgba(124, 86, 255, 0.12);
}
.hero-card-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 196, 150, 0.92);
}
.hero-glass-card h3 {
  color: #fff;
  margin: 0 0 1.4rem;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero-glass-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}
.hero-glass-card li {
  display: flex;
  gap: 0.65rem;
  color: rgba(248, 244, 255, 0.94);
  line-height: 1.55;
  font-size: 0.98rem;
  font-weight: 500;
}
.hero-glass-card li svg {
  width: 18px;
  height: 18px;
  color: #ffb679;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent-orange);
  box-shadow: 0 0 0 10px rgba(255, 140, 43, 0.16);
  animation: pulse 2.4s infinite ease-in-out;
}
.hero-orbit span:nth-child(1) { top: 28%; left: 18%; }
.hero-orbit span:nth-child(2) { top: 22%; right: 22%; animation-delay: 0.4s; }
.hero-orbit span:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 0.8s; }
.hero-orbit span:nth-child(4) { bottom: 24%; right: 15%; animation-delay: 1.2s; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
}

.service-interactive {
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
}
.services-visual-grid .service-card {
  min-height: 180px;
}
.service-tabs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.service-tab {
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--primary-purple-dark);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}
.service-tab.active {
  border-color: var(--primary-purple);
  background: rgba(90, 46, 166, 0.08);
}
.service-display {
  text-align: center;
  padding: 1.2rem 0.6rem 0.8rem;
}
.service-visual {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(90, 46, 166, 0.16), rgba(255, 140, 43, 0.2));
  color: var(--primary-purple-dark);
}
.service-visual svg { width: 34px; height: 34px; }

.impact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.impact-card p {
  font-weight: 500;
}

.global-map-section .map-panel {
  margin-top: 1.25rem;
  min-height: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background:
    radial-gradient(circle at 14% 22%, rgba(90, 46, 166, 0.2), transparent 54%),
    radial-gradient(circle at 82% 72%, rgba(255, 140, 43, 0.18), transparent 56%),
    linear-gradient(160deg, #1c1238 0%, #241847 62%, #2c1d53 100%);
  position: relative;
  overflow: hidden;
}
.map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: brightness(1.22) contrast(1.05);
  z-index: 1;
}
.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 140, 43, 0.95);
  box-shadow: 0 0 0 6px rgba(255, 140, 43, 0.2), 0 0 14px rgba(255, 140, 43, 0.55);
  z-index: 3;
}
.map-point {
  cursor: pointer;
  transition: all 0.2s ease;
  animation: mapPulse 2.6s infinite ease-in-out;
}
.map-point:hover,
.map-point.active {
  background: rgba(255, 174, 80, 1);
  box-shadow: 0 0 0 7px rgba(255, 140, 43, 0.28), 0 0 18px rgba(255, 140, 43, 0.75);
  transform: translateY(-1px);
}
.map-point::after {
  content: attr(data-region);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 150%;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.map-point:hover::after { opacity: 1; }
.dot-us { left: 16.8%; top: 36%; animation-delay: 0s; }
.dot-ca { left: 17.8%; top: 28%; animation-delay: 0.15s; }
.dot-uk { left: 44.8%; top: 31.5%; animation-delay: 0.3s; }
.dot-me { left: 54.2%; top: 43%; animation-delay: 0.45s; }
.dot-sg { left: 69.8%; top: 61.2%; animation-delay: 0.2s; }
.dot-my { left: 68.5%; top: 58.7%; animation-delay: 0.35s; }
.dot-ch { left: 46.2%; top: 34.4%; animation-delay: 0.5s; }
.dot-nl { left: 45.4%; top: 31.2%; animation-delay: 0.1s; }
.dot-es { left: 43.4%; top: 36.7%; animation-delay: 0.25s; }
.dot-in { left: 62.4%; top: 47.4%; animation-delay: 0.55s; }
.dot-au { left: 79.8%; top: 66.8%; animation-delay: 0.4s; }
.dot-de { left: 47.7%; top: 31.8%; animation-delay: 0.08s; }
.dot-jp { left: 82.8%; top: 39.2%; animation-delay: 0.22s; }
.map-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff8c3a, transparent);
  opacity: 0.38;
  z-index: 2;
}
.line-in-us {
  width: 36%;
  left: 25%;
  top: 49%;
  transform: rotate(-12deg);
}
.line-in-eu {
  width: 17%;
  left: 49%;
  top: 49%;
  transform: rotate(-6deg);
}
.line-in-apac {
  width: 22%;
  left: 61%;
  top: 55%;
  transform: rotate(-3deg);
}
.map-global-line {
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.map-tech-tags {
  margin-top: 0.6rem;
}
.map-tech-tags span {
  background: #f2edff;
  color: #4a2a84;
  border-color: rgba(90, 46, 166, 0.12);
  font-size: 0.75rem;
}
@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(255, 140, 43, 0.16), 0 0 14px rgba(255, 140, 43, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(255, 140, 43, 0.25), 0 0 18px rgba(255, 140, 43, 0.75); }
}
.map-info-card {
  position: absolute;
  left: 52%;
  top: 44%;
  transform: translate(20px, -50%);
  max-width: 300px;
  text-align: left;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.map-info-card.visible {
  opacity: 1;
  visibility: visible;
}
.map-info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.map-info-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tech-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}
.tech-strip-section-hero {
  background: linear-gradient(180deg, rgba(246, 244, 252, 0.95) 0%, #ffffff 100%);
  padding: 1.1rem 0 1.2rem;
}
.tech-strip-section-hero.tech-strip-after-hero {
  position: relative;
  z-index: 4;
  margin-top: -2.75rem;
  padding-top: 3.75rem;
  padding-bottom: 1.35rem;
  background: linear-gradient(
    180deg,
    rgba(14, 9, 26, 0.72) 0%,
    rgba(24, 16, 44, 0.42) 12%,
    rgba(232, 228, 248, 0.96) 38%,
    #faf9fc 58%,
    #ffffff 100%
  );
  box-shadow: 0 -20px 48px rgba(0, 0, 0, 0.12);
}
.tech-strip-section-hero.tech-strip-after-hero .tech-strip-header h2 {
  color: var(--primary-purple-dark);
}
.tech-strip-section-hero.tech-strip-after-hero .tech-strip-marquee {
  border-color: rgba(90, 46, 166, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 255, 0.94));
}
.tech-strip-header { margin-bottom: 0.8rem; }
.tech-strip-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-purple-dark);
}
.tech-strip-marquee {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: center;
  border: 1px solid rgba(90, 46, 166, 0.12);
  border-radius: 16px;
  padding: 0.7rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 241, 252, 0.92));
  box-shadow: 0 6px 16px rgba(31, 18, 60, 0.08);
  scrollbar-width: thin;
}
.tech-strip-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.tech-strip-track span {
  background: #fff;
  border: 1px solid rgba(90, 46, 166, 0.1);
  border-radius: 10px;
  padding: 0.42rem 0.62rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-weight: 600;
  color: var(--primary-purple-dark);
  opacity: 0.85;
  transition: all 0.2s ease;
}
.tech-strip-track span:hover {
  opacity: 1;
  transform: scale(1.05);
}
.tech-logo-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.tech-logo-item em {
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1;
}
.tech-strip span {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--primary-purple-dark);
  transition: all 0.2s ease;
}
.tech-strip span:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.tech-strip svg { color: var(--accent-orange-dark); width: 16px; height: 16px; }

.story-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(90, 46, 166, 0.12);
  color: var(--primary-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.case-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
}
.carousel-nav {
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.case-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 0.9rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.25rem;
}
.story-card { min-height: 170px; }

.flow-diagram {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.flow-diagram > div {
  padding: 0.75rem 0.8rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border-color);
  font-weight: 700;
}
.flow-diagram span {
  color: var(--accent-orange-dark);
  display: inline-flex;
  align-items: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.timeline > div {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  padding: 1rem 0.75rem;
}
.timeline-connected > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.45rem;
  width: 0.9rem;
  height: 2px;
  background: rgba(90, 46, 166, 0.35);
}
.timeline span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(90, 46, 166, 0.12);
  color: var(--primary-purple-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 0.45rem;
}
.timeline p { margin: 0; font-weight: 600; }

.industry-icons {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
}
.industry-icons > div {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.9rem 0.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}
.industry-icons svg { color: var(--primary-purple); }

.need-buttons {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.cta-minimal h2 { margin-bottom: 0.3rem; }
.case-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-stack {
  display: grid;
  gap: 0.9rem;
}
.service-band {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.55rem 1.45rem;
  box-shadow: var(--shadow-sm);
}
.service-band-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}
.service-band-head h3 {
  margin: 0;
  font-size: 1.2rem;
}
.service-band-head svg {
  color: var(--primary-purple);
}
.service-band p {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}
.service-outcome {
  margin-top: 0.85rem;
  margin-bottom: 0;
  font-weight: 600;
  color: #3e2c6b;
}
.service-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.service-pill-list span {
  display: inline-flex;
  padding: 0.35rem 0.62rem;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: #fbfaff;
  font-size: 0.83rem;
  font-weight: 600;
}
.service-band-highlight {
  background: var(--gradient-primary);
  border: none;
}
.service-band-highlight .service-band-head h3,
.service-band-highlight .service-band-head svg,
.service-band-highlight p {
  color: #fff;
}
.service-band-highlight .service-pill-list span {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.service-band-featured {
  border-color: rgba(90, 46, 166, 0.32);
  box-shadow: 0 10px 24px rgba(48, 29, 89, 0.14);
}
.service-checklist {
  margin-top: 0.8rem;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.service-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  color: #f5eeff;
  font-weight: 500;
}
.service-checklist svg {
  width: 15px;
  height: 15px;
  color: #ffc98e;
}
.impact-proof-card {
  padding: 2rem 1.85rem;
}
.impact-proof-card .case-tag {
  margin-bottom: 0.8rem;
}
.impact-proof-card h3 {
  margin-bottom: 0.75rem;
}
.impact-line {
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2e2548;
}
.impact-line strong {
  color: var(--primary-purple);
}
.contact-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: stretch;
}
.contact-panel,
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.3rem;
}
.contact-line {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-top: 0.85rem;
  color: var(--text-muted);
}
.contact-line svg {
  color: var(--primary-purple);
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
  flex-shrink: 0;
}
.contact-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.full-width {
  width: 100%;
}

.hero-card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}
.hero-card ul li {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  color: var(--text-muted);
}
.hero-card svg {
  color: var(--accent-orange);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.region-strip {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: #fff;
  padding: 2rem 0;
}
.region-strip p {
  text-align: center;
  color: var(--primary-purple-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}
.region-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
.region-list span,
.industry-list span {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-purple-dark);
}

.section-header { margin-bottom: 2.2rem; }
.service-card,
.problem-card,
.case-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.service-card:hover,
.problem-card:hover,
.case-card:hover {
  transform: translateY(-4px);
  border-color: #d7c8f9;
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(90, 46, 166, 0.1);
  color: var(--primary-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.service-card p,
.problem-card p,
.case-card p { color: var(--text-muted); margin-bottom: 0; }
.case-tag {
  display: inline-block;
  background: rgba(255, 140, 43, 0.14);
  color: #8a4d12;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  color: var(--text-dark);
}
.benefits-list li svg { color: var(--accent-orange-dark); }
.method-card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.method-card ol {
  margin-top: 1rem;
  padding-left: 1.2rem;
}
.method-card ol li {
  margin-bottom: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.industry-list {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner {
  background: var(--gradient-primary);
  color: #fff;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); }
.lead-form {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text-dark);
}
.lead-form h3 { margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.form-control {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(90, 46, 166, 0.1);
}
textarea.form-control { resize: vertical; min-height: 100px; }

.footer {
  background: linear-gradient(160deg, #32205b 0%, #3b2469 55%, #4a2d7d 100%);
  padding: 4rem 0 1.8rem;
}
.footer-premium {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 43, 0.6), transparent);
}
.footer-cta-strip {
  padding-bottom: 1.4rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-brand-topline {
  color: #d7cde9;
  text-align: center;
  font-size: 0.96rem;
  font-weight: 500;
  padding-bottom: 1.2rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-cta-inner h3 {
  color: #fff;
  margin: 0;
  font-size: 1.45rem;
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand-copy {
  color: #c9bfdc;
  margin-top: 0.8rem;
  max-width: 430px;
}
.footer-capability-list li {
  color: #d1c8e4;
  margin-bottom: 0.65rem;
}
.footer-contact-plain li {
  color: #d1c8e4;
  margin-bottom: 0.65rem;
}
.footer-tech-line {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #d1c8e4;
  font-size: 0.92rem;
  text-align: center;
}
.footer-flex-note {
  margin-top: 0.35rem;
  color: #b9add2;
  font-size: 0.84rem;
}
.logo-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}
.footer h4 { color: #fff; margin-bottom: 0.8rem; }
.footer-links li { margin-bottom: 0.6rem; color: #b0a8c6; }
.footer-links a:hover { color: #fff; }
.footer-contact li {
  margin-bottom: 0.6rem;
  color: #b0a8c6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact a {
  color: #b0a8c6;
}
.footer-contact a:hover {
  color: #fff;
}
.social-links {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #b0a8c6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  font-size: 0.82rem;
  transition: all 0.2s ease;
}
.social-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.social-links svg {
  width: 14px;
  height: 14px;
}

.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow-md);
  z-index: 1001;
}

.animate-up {
  opacity: 0;
  transform: translateY(24px);
  animation: up 0.8s forwards;
}
.animate-up.delay-1 { animation-delay: 0.15s; }
.animate-up.delay-2 { animation-delay: 0.3s; }
.animate-up.delay-3 { animation-delay: 0.45s; }
@keyframes up { to { opacity: 1; transform: translateY(0); } }
.hero-slide-in {
  opacity: 0;
  transform: translateX(26px);
  animation: heroCardIn 0.9s 0.25s forwards;
}
@keyframes heroCardIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .hero-grid,
  .hero-split,
  .cta-grid { grid-template-columns: 1fr; }
  .hero-glass-card { max-width: 720px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline-connected > div::after { display: none; }
  .industry-icons { grid-template-columns: repeat(3, 1fr); }
  .contact-split { grid-template-columns: 1fr; }
  .footer-main-grid { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 880px) {
  .logo-image { height: 40px; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 90px;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: inline-flex; }
  .dropdown-content {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    min-width: 0;
    padding: 0.25rem 0 0.25rem 0.75rem;
  }
  .nav-cta { margin-top: 0.3rem; width: 100%; justify-content: center; }
}

@media (max-width: 700px) {
  .logo-image { height: 36px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-padding { padding: 4rem 0; }
  .section-tight { padding: 3.4rem 0; }
  h1 { font-size: 2.15rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-left,
  .hero-glass-card { text-align: left; }
  .hero-secondary-title { font-size: 1.2rem; }
  .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .flow-diagram {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .flow-diagram span { transform: rotate(90deg); }
  .timeline { grid-template-columns: 1fr; }
  .timeline-connected > div::after { display: none; }
  .industry-icons { grid-template-columns: repeat(2, 1fr); }
  .tech-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-strip-track {
    flex-wrap: nowrap;
    min-width: max-content;
  }
  .case-carousel { grid-template-columns: 1fr; }
  .case-grid-3 { grid-template-columns: 1fr; }
  .carousel-nav { display: none; }
  .hero-capability-lines {
    display: grid;
    gap: 0.65rem;
    justify-items: center;
  }
  .hero-capability-lines span {
    width: min(280px, 92vw);
    text-align: center;
  }
  .map-info-card {
    position: static;
    margin: 0.9rem;
    max-width: none;
    transform: none;
  }
  .map-bg { opacity: 0.22; }
  .tech-strip-section-hero.tech-strip-after-hero {
    margin-top: -1.25rem;
    padding-top: 2.25rem;
  }
  .hero-premium::after { height: 48px; }
}

/* -------------------------------------------------------------------------
   Homepage — premium enterprise consulting (scoped under .home-page)
   ------------------------------------------------------------------------- */
.home-page .home-section {
  scroll-margin-top: 96px;
}
.home-page .home-section--surface {
  background: #fff;
  border-top: 1px solid rgba(90, 46, 166, 0.07);
}
.home-page .home-section--muted {
  background: linear-gradient(180deg, #fcfbfe 0%, #f3effb 55%, #f7f5fc 100%);
  border-top: 1px solid rgba(90, 46, 166, 0.06);
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 0.55rem;
}
.section-kicker--on-dark {
  color: rgba(255, 200, 160, 0.95);
}
.section-intro {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  text-align: left;
}
.section-intro.text-center {
  text-align: center;
}
.section-intro h2 {
  margin-bottom: 0.65rem;
}
.section-intro--light h2 {
  color: #fff;
}
.section-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 500;
}
.section-lead--on-dark {
  color: rgba(232, 224, 255, 0.88);
}

/* Floating tech logo strip */
.tech-float-section .tech-float-intro {
  text-align: center;
  margin-bottom: 1.6rem;
}
.tech-float-section .tech-float-intro .section-kicker {
  color: rgba(255, 200, 160, 0.95);
}
.tech-float-title {
  margin: 0 auto;
  max-width: 520px;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.35;
}
.tech-float-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  padding: 0.65rem 0 0.75rem;
}
.tech-float-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.8rem;
  width: 100%;
}
.tech-float-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--primary-purple-dark);
  transition: transform 0.22s ease;
}
.tech-float-logo:hover {
  transform: translateY(-2px);
}
.tech-float-logo img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  opacity: 1;
}
.tech-float-logo em {
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.tech-strip-section-hero.tech-float-section {
  margin-top: -1.8rem;
  padding-top: 3.5rem;
  padding-bottom: 2.9rem;
  background: linear-gradient(
    180deg,
    rgba(18, 12, 32, 0.55) 0%,
    rgba(232, 228, 247, 0.94) 30%,
    #f8f6fc 58%,
    #fbfafe 100%
  );
}

.home-page .what-we-do {
  padding-top: 6.6rem;
}
.home-page .what-we-do .section-intro h2 {
  font-size: clamp(2.15rem, 3.4vw, 2.9rem);
}
.home-page .what-we-do .section-intro h2::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin: 0.9rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(90, 46, 166, 0.85), rgba(255, 140, 43, 0.35));
}
.home-page .what-we-do .section-lead {
  font-size: 1.08rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* What we do — primary + secondary */
.services-primary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}
.service-feature {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #faf8ff 100%);
  border: 1px solid rgba(90, 46, 166, 0.12);
  box-shadow: 0 8px 28px rgba(25, 11, 48, 0.06);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.service-feature:hover {
  background: linear-gradient(135deg, #2b145a, #4b1f7a);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  border-color: rgba(255, 255, 255, 0.14);
}
.service-feature--accent {
  background: linear-gradient(180deg, #fff 0%, #faf8ff 100%);
  border-color: rgba(90, 46, 166, 0.12);
  color: inherit;
}
.service-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(90, 46, 166, 0.1);
  color: var(--primary-purple);
  transition: all 0.3s ease;
}
.service-feature--accent .service-feature__icon {
  background: rgba(90, 46, 166, 0.1);
  color: var(--primary-purple);
}
.service-feature h3 {
  font-size: 1.22rem;
  margin-bottom: 0.5rem;
}
.service-feature p {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.service-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-purple);
}
.service-feature__link svg {
  width: 16px;
  height: 16px;
}
.service-feature:hover h3,
.service-feature:hover p {
  color: #fff;
}
.service-feature:hover .service-feature__icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.service-feature:hover .service-feature__link {
  color: #ff9f43;
}
.services-secondary-head {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.services-secondary-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}
.services-secondary-desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.services-secondary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.services-secondary__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.services-secondary__item:hover {
  background: linear-gradient(135deg, #2b145a, #4b1f7a);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}
.services-secondary__item svg {
  width: 22px;
  height: 22px;
  color: var(--accent-orange-dark);
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: all 0.3s ease;
}
.services-secondary__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}
.services-secondary__item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.services-secondary__item:hover strong,
.services-secondary__item:hover span {
  color: #fff;
}
.services-secondary__item:hover svg {
  color: #fff;
}

/* Problem → impact band */
.problems-impact-band {
  background: linear-gradient(145deg, #1a0f32 0%, #2d1a52 42%, #1e1238 100%);
  color: #fff;
  border-top: none;
  position: relative;
  overflow: hidden;
}
.problems-impact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 20%, rgba(255, 140, 43, 0.12), transparent 55%);
  pointer-events: none;
}
.problems-impact-band .container {
  position: relative;
  z-index: 1;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}
.impact-tile {
  padding: 1.65rem 1.45rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.impact-tile:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.impact-tile--lead {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 186, 120, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.impact-tile__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 200, 160, 0.9);
  margin-bottom: 0.5rem;
}
.impact-tile h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}
.impact-tile__stat {
  font-size: 0.95rem;
  color: rgba(230, 222, 255, 0.95);
  margin-bottom: 0.6rem;
}
.impact-tile__stat strong {
  color: #ffb679;
  font-size: 1.15rem;
}
.impact-tile p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(210, 200, 235, 0.88);
}

/* Map ambient layer */
.home-page .map-panel.map-panel--animated {
  position: relative;
}
.home-page .map-panel.map-panel--animated::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 20% 30%, rgba(255, 140, 43, 0.14), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(120, 80, 220, 0.12), transparent 42%);
  animation: mapAmbientPulse 10s ease-in-out infinite alternate;
}
@keyframes mapAmbientPulse {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.02); }
}
.home-page .map-panel.map-panel--animated .map-dot {
  z-index: 4;
}

/* Case studies — outcome-forward */
.case-card-outcome {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
}
.case-card__top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.case-card__top .story-icon {
  margin-bottom: 0;
}
.case-outcome {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(90, 46, 166, 0.1), rgba(255, 140, 43, 0.1));
  border: 1px solid rgba(90, 46, 166, 0.12);
  margin-bottom: 0.85rem;
}
.case-outcome__value {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--primary-purple-dark);
  line-height: 1;
}
.case-outcome__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.case-card-outcome h3 {
  margin-bottom: 0.4rem;
}
.carousel-nav--premium {
  border-color: rgba(90, 46, 166, 0.18);
  color: var(--primary-purple-dark);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.carousel-nav--premium:hover {
  background: var(--primary-purple-dark);
  color: #fff;
  border-color: var(--primary-purple-dark);
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(45, 26, 82, 0.2);
}

/* Delivery model flow */
.delivery-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.delivery-flow__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  position: relative;
}
.delivery-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 2.15rem;
  bottom: 0;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(90, 46, 166, 0.15), transparent);
}
.delivery-flow__node {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: var(--gradient-accent);
  box-shadow: 0 4px 14px rgba(255, 140, 43, 0.25);
}
.delivery-flow__body strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}
.delivery-flow__body span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* How we work — timeline premium */
.timeline-premium > div {
  padding: 1.35rem 1rem 1.5rem;
  text-align: left;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.timeline-premium > div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.timeline-premium span {
  margin-bottom: 0.65rem;
}
.timeline-step-title {
  margin: 0 0 0.25rem;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
}
.timeline-step-desc {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Industries */
.industry-icons--premium > div {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.industry-icons--premium > div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(90, 46, 166, 0.2);
}

/* Choose need */
.need-buttons--premium {
  gap: 0.75rem;
}
.btn-need {
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-need:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 26, 82, 0.12);
}

@media (max-width: 1050px) {
  .services-primary {
    grid-template-columns: 1fr;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .impact-tile--lead {
    order: -1;
  }
}

@media (max-width: 880px) {
  .why-bredon-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .services-secondary {
    grid-template-columns: 1fr;
  }
  .tech-float-track {
    gap: 2rem;
  }
  .tech-strip-section-hero.tech-float-section {
    margin-top: -1.05rem;
    padding-top: 2.1rem;
    padding-bottom: 2.2rem;
  }
  .home-page .what-we-do {
    padding-top: 5.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .map-panel.map-panel--animated::before {
    animation: none;
  }
}
