/* =========================================================
   IgniteDry Technologies — Production Styles
   Consolidated from the original page.
   Visual identity, responsive behaviour and animations preserved.
   ========================================================= */
/* DESIGN TOKENS */
:root {
  --bg-0: #060809;
  --bg-1: #0b1014;
  --bg-2: #111619;
  --bg-3: #171d21;
  --accent: #00cccc;
  --accent-bright: #00e8e8;
  --accent-dim: rgba(0,204,204,0.08);
  --accent-glow: rgba(0,204,204,0.22);
  --accent-border: rgba(0,204,204,0.25);
  --accent-hover: rgba(0,204,204,0.18);
  --accent-dark: #009999;
  --border-hover: rgba(0,204,204,0.25);
  --radius-pill: 100px;
  --shadow-glow: 0 0 40px rgba(0,204,204,0.15);
  --ease: cubic-bezier(0.16,1,0.3,1);
  --ease-out: cubic-bezier(0,0,0.2,1);
  --ease-in: cubic-bezier(0.4,0,1,1);
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 80px;
  --sp-8: 96px;
  color-scheme: dark;
}
/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
}
body {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
  background-color: var(--bg-0);
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
a {
  color: inherit;
}
/* Scrollbar */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg-0);
}
::-webkit-scrollbar-thumb {
  background: #1e2a30;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2e3e48;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #1e2a30 var(--bg-0);
}
/* Noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}
/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 10px 20px;
  background: var(--accent);
  color: #030f0f;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 100000;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
/* AMBIENT ORBS */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  opacity: 0;
  will-change: transform, opacity;
}
.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,204,204,0.13) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}
.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,150,180,0.1) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}
.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,204,204,0.07) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
}
/* SCROLL PROGRESS */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px var(--accent);
  transition: none;
}
/* PAGE LOADER */
/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
/* NAVIGATION */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
}
.navbar {
  transition: height 0.35s var(--ease), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 28px;
  height: 100%;
  margin: 0 auto;
}
/* Brand */
.brand {
  flex-shrink: 0;
}
.brand-icon {
  min-width: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(10, 30, 48, 0.88), rgba(13, 40, 64, 0.72));
  box-shadow: 0 5px 18px rgba(0, 0, 0, .5), 0 0 0 1px rgba(0, 204, 204, .16), 0 0 22px rgba(255, 107, 0, .045);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.brand:hover .brand-icon, .brand:focus-visible .brand-icon {
  transform: scale(1.07) rotate(-4deg);
  box-shadow: 0 6px 24px rgba(0,0,0,.55), 0 0 0 1px rgba(0,204,204,.35), 0 0 20px rgba(0,204,204,.18);
}
.brand-text-group {
  gap: 2px;
}
.brand-name {
  font-family: "Space Grotesk", sans-serif;
}
.brand-tagline {
  font-family: "Manrope", sans-serif;
}
/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  text-decoration: none;
  padding: 8px 13px;
  font-weight: 550;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
  letter-spacing: 0.005em;
  touch-action: manipulation;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-link:hover, .nav-link:focus-visible {
  color: var(--text);
  background: rgba(0, 204, 204, 0.065);
  border-color: rgba(0, 204, 204, 0.18);
  transform: translateY(-1px);
  outline: none;
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: var(--accent-border);
}
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link .fa-chevron-down {
  font-size: 0.6rem;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease);
}
.nav-item-mega:hover .fa-chevron-down, .nav-item-mega:focus-within .fa-chevron-down {
  transform: rotate(180deg);
}
/* Mega menu */
.nav-item-mega {
  position: relative;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(860px, 92vw);
  background: rgba(5, 15, 18, 0.98);
  border: 1px solid rgba(0, 204, 204, 0.20);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 200;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: rgba(5, 15, 18, 0.98);
  border-top: 1px solid rgba(0, 204, 204, 0.20);
  border-left: 1px solid rgba(0, 204, 204, 0.20);
}
.nav-item-mega:hover .mega-menu, .nav-item-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px 36px;
}
.mega-cat h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,204,204,0.1);
  font-family: "Manrope", sans-serif;
}
.mega-cat ul {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mega-cat a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s, padding-left 0.2s var(--ease);
  cursor: pointer;
}
.mega-cat a:hover, .mega-cat a:focus-visible {
  color: var(--text);
  background: var(--accent-dim);
  border-color: var(--accent-border);
  padding-left: 16px;
  outline: none;
}
.mega-cat a i {
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.2s;
}
.mega-cat a:hover i {
  color: var(--accent);
}
.soon-badge {
  margin-left: auto;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(251,146,60,0.15);
  color: #fb923c;
  border: 1px solid rgba(251,146,60,0.3);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
/* CTA button in nav */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #030f0f;
  font-size: 0.875rem;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s;
  touch-action: manipulation;
}
.btn-accent:hover, .btn-accent:focus-visible {
  outline: none;
}
.btn-accent:active {
  transform: translateY(0);
}
/* Mobile nav toggle */
.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  position: relative;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  touch-action: manipulation;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-nav-toggle:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}
.mobile-nav-toggle .icon-bars, .mobile-nav-toggle .icon-xmark {
  position: absolute;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}
.mobile-nav-toggle .icon-xmark {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}
.mobile-nav-toggle.is-open .icon-bars {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}
.mobile-nav-toggle.is-open .icon-xmark {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
/* Mobile nav drawer */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 8900;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  z-index: 9100;
  background: var(--bg-1);
  border-left: 1px solid var(--glass-border);
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--sp-3);
  border-bottom: 1px solid var(--glass-border);
  min-height: 72px;
}
.mob-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.mob-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-sub);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  touch-action: manipulation;
}
.mob-close:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}
.mob-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-2) var(--sp-2);
}
.mob-section {
  display: block;
  padding: 10px 12px 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: "Manrope", sans-serif;
}
.mob-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  touch-action: manipulation;
}
.mob-link:hover, .mob-link:focus-visible {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: var(--accent-border);
  outline: none;
}
.mob-link i {
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.mob-divider {
  height: 1px;
  background: var(--glass-border);
  margin: var(--sp-1) 12px var(--sp-1);
}
.mob-footer {
  padding: var(--sp-2) var(--sp-3) var(--sp-3);
  border-top: 1px solid var(--glass-border);
}
.mob-footer .btn-accent {
  width: 100%;
  justify-content: center;
}
/* HERO */
.hero {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
}
/* Technology image is deliberately subdued so the original orbit remains the hero. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(6, 8, 9, .98) 0%, rgba(6, 8, 9, .91) 38%, rgba(6, 8, 9, .66) 67%, rgba(6, 8, 9, .82) 100%),
    linear-gradient(180deg, rgba(6, 8, 9, .32) 0%, rgba(6, 8, 9, .50) 62%, #060809 100%),
    url("../images/hero-technology-background.png");
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
/* Animated grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background-image: linear-gradient(rgba(0,204,204,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,204,204,0.035) 1px, transparent 1px);
}
.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0,204,204,0.5), transparent);
  box-shadow: 0 0 12px rgba(0,204,204,0.4);
  top: -2px;
  opacity: 0;
}
.hero-container {
  margin: 0 auto;
  padding: 0 var(--sp-2);
  display: grid;
  align-items: center;
  position: relative;
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 4;
}
.hero h1 {
  opacity: 0;
  transform: translateY(30px);
}
.hero h1 em {
  font-style: normal;
}
.hero-desc {
  opacity: 0;
  transform: translateY(20px);
}
.hero-desc strong {
  color: var(--text);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s;
  border: none;
  touch-action: manipulation;
  white-space: nowrap;
}
.btn-primary {
  font-weight: 700;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:hover, .btn-primary:focus-visible {
  filter: brightness(1.05);
  outline: none;
}
.btn-primary:active {
  transform: translateY(-1px);
}
.btn-primary.pulse-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(0,204,204,0.55);
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
    0%   { transform: scale(1);    opacity: 0.7; }
    100% { transform: scale(1.28); opacity: 0; }
  }
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  box-shadow: 0 8px 26px rgba(0,0,0,0.4);
  outline: none;
}
/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  font-weight: 500;
  color: var(--text-sub);
  transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease), background 0.2s;
  cursor: default;
}
.badge i {
  font-size: 0.75rem;
  color: var(--accent);
}
.badge:hover {
  color: var(--accent);
}
/* Hero orbit visual */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 204, 204, .12) 0%, rgba(0, 204, 204, .045) 42%, transparent 72%);
  filter: blur(8px);
}
.galaxy-orbit {
  position: relative;
  width: 500px;
  height: 500px;
  transform-style: preserve-3d;
  margin: 0 auto;
}
.orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  border: 1px dashed rgba(0,204,204,0.18);
  transform: translate(-50%,-50%);
}
.orbit-card {
  position: absolute;
  width: 160px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  text-align: center;
  z-index: 2;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 20px rgba(0,204,204,0.15), inset 0 0 15px rgba(0,204,204,0.05);
  backface-visibility: hidden;
  will-change: transform, opacity;
  pointer-events: none;
}
.orbit-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(0,204,204,0.1);
  color: var(--accent);
  margin: 0 auto var(--sp-1);
  box-shadow: 0 0 12px rgba(0,204,204,0.25);
}
.orbit-card h3 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.orbit-card p {
  font-size: 0.73rem;
  color: var(--text-sub);
  line-height: 1.4;
}
.orbit-card:nth-child(2) {
  animation: orbit-1 32s linear infinite;
}
.orbit-card:nth-child(3) {
  animation: orbit-2 32s linear infinite;
}
.orbit-card:nth-child(4) {
  animation: orbit-3 32s linear infinite;
}
.orbit-card:nth-child(5) {
  animation: orbit-4 32s linear infinite;
}
.orbit-card:nth-child(6) {
  animation: orbit-5 32s linear infinite;
}
@keyframes orbit-1 { from { transform: translate(-50%,-50%) rotateY(0deg)   translateZ(200px) rotateY(0deg); }    to { transform: translate(-50%,-50%) rotateY(360deg) translateZ(200px) rotateY(-360deg); } }
@keyframes orbit-2 { from { transform: translate(-50%,-50%) rotateY(72deg)  translateZ(200px) rotateY(-72deg); }  to { transform: translate(-50%,-50%) rotateY(432deg) translateZ(200px) rotateY(-432deg); } }
@keyframes orbit-3 { from { transform: translate(-50%,-50%) rotateY(144deg) translateZ(200px) rotateY(-144deg); } to { transform: translate(-50%,-50%) rotateY(504deg) translateZ(200px) rotateY(-504deg); } }
@keyframes orbit-4 { from { transform: translate(-50%,-50%) rotateY(216deg) translateZ(200px) rotateY(-216deg); } to { transform: translate(-50%,-50%) rotateY(576deg) translateZ(200px) rotateY(-576deg); } }
@keyframes orbit-5 { from { transform: translate(-50%,-50%) rotateY(288deg) translateZ(200px) rotateY(-288deg); } to { transform: translate(-50%,-50%) rotateY(648deg) translateZ(200px) rotateY(-648deg); } }
.center-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 210px;
  background: linear-gradient(135deg, var(--glass-bg), rgba(30,30,30,0.9));
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid var(--accent);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  z-index: 5;
  box-shadow: 0 0 40px rgba(0,204,204,0.35), inset 0 0 20px rgba(0,204,204,0.15);
  backface-visibility: hidden;
  will-change: transform, opacity;
  pointer-events: none;
  animation: center-pulse 3s infinite;
}
.center-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background: rgba(0,204,204,0.15);
  color: var(--accent);
  margin: 0 auto 0.8rem;
  box-shadow: 0 0 18px rgba(0,204,204,0.4);
}
.center-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.center-card p {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.4;
}
@keyframes center-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,204,204,0.35), 0 0 40px rgba(0,204,204,0.35), inset 0 0 20px rgba(0,204,204,0.15); }
    50%       { box-shadow: 0 0 0 18px rgba(0,204,204,0), 0 0 50px rgba(0,204,204,0.5), inset 0 0 25px rgba(0,204,204,0.2); }
  }
/* SECTIONS & CONTAINER */
.section {
  position: relative;
  z-index: 1;
}
.container {
  margin: 0 auto;
  padding: 0 var(--sp-2);
}
/* Section header */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  font-family: "Manrope", sans-serif;
}
.section-label::before {
  content: "";
  display: block;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}
.section-subtitle {
  color: var(--text-sub);
}
.section-subtitle strong {
  color: var(--text);
}
/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
}
/* Glass card base */
.glass-card {
  border: 1px solid var(--glass-border);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,204,204,0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.glass-card:hover::before {
  opacity: 1;
}
@media (hover: none) {
  .glass-card:hover {
    transform: none;
  }
}
/* Feature icon (shared across multiple sections) */
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  background: linear-gradient(135deg, rgba(0,204,204,0.13), rgba(0,165,165,0.06));
  color: var(--accent);
  margin-bottom: var(--sp-2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  flex-shrink: 0;
}
.glass-card:hover .feature-icon {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,204,204,0.22);
}
/* Feature card text */
.feature-card p {
  color: var(--text-sub);
}
/* MISSION SECTION */
.mission-wrap {
  border-radius: var(--radius);
  padding: var(--sp-7);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
}
.mission-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(0,204,204,0.08) 0%, transparent 50%),
      radial-gradient(circle at 85% 80%, rgba(0,150,180,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.mission-wrap .section-label, .mission-wrap .section-title, .mission-wrap p {
  position: relative;
  z-index: 1;
}
.mission-wrap p {
  color: var(--text-sub);
  margin-bottom: 16px;
}
.mission-wrap p strong {
  color: var(--text);
}
.mission-stats {
  display: grid;
  position: relative;
  z-index: 1;
}
.stat {
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.stat:hover {
  border-color: var(--accent-border);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.4;
}
/* WHY CHOOSE US */
.why-wrap {
  border-radius: var(--radius);
  padding: var(--sp-7);
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.why-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(0,204,204,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  position: relative;
  z-index: 1;
}
/* PROBLEM / SOLUTION */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: var(--sp-4);
}
.problem-card {
  background: rgba(255,80,80,0.04);
  border: 1px solid rgba(255,80,80,0.15);
}
.solution-card {
  background: rgba(0,204,204,0.04);
  border: 1px solid rgba(0,204,204,0.15);
}
.ps-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.problem-card .ps-card-head {
  color: #ff7070;
}
.solution-card .ps-card-head {
  color: var(--accent);
}
.ps-list {
  display: flex;
  flex-direction: column;
}
.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-sub);
}
.ps-list li i {
  flex-shrink: 0;
  margin-top: 3px;
}
.problem-card .ps-list li i {
  color: #ff7070;
}
.solution-card .ps-list li i {
  color: var(--accent);
}
/* DATA IMPORTANCE */
.data-wrap {
  border-radius: var(--radius);
  padding: var(--sp-7);
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.data-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 75%, rgba(0,204,204,0.07) 0%, transparent 50%);
  pointer-events: none;
}
/* SERVICES GRID */
.services-grid {
  display: grid;
}
.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-number {
  position: absolute;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  transition: color 0.3s;
}
.glass-card:hover .service-number {
  color: rgba(0,204,204,0.1);
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: linear-gradient(135deg, rgba(0,204,204,0.12), rgba(0,165,165,0.05));
  color: var(--accent);
  margin-bottom: var(--sp-2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.32);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  flex-shrink: 0;
}
.glass-card:hover .icon-circle {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,204,204,0.22);
}
.service-card h3 {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-card h3 .angle-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.service-card p {
  color: var(--text-sub);
  margin-bottom: var(--sp-2);
  flex-grow: 1;
}
.service-card p strong {
  color: var(--text);
}
.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--sp-2);
}
.chip {
  border: 1px solid var(--border);
  color: var(--text-sub);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}
.glass-card:hover .chip {
  border-color: rgba(0,204,204,0.2);
  color: var(--accent);
  background: var(--accent-dim);
}
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,204,204,0.3);
  background: rgba(0,204,204,0.07);
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  width: fit-content;
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  touch-action: manipulation;
}
.learn-more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,204,204,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.learn-more-btn:hover::before {
  transform: translateX(100%);
}
.learn-more-btn:hover, .learn-more-btn:focus-visible {
  background: rgba(0,204,204,0.15);
  border-color: rgba(0,204,204,0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,204,204,0.2);
  outline: none;
}
/* PARTNERSHIP — TIMELINE STEPS */
.partner-wrap {
  border-radius: var(--radius);
  padding: var(--sp-7);
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.partner-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(0,204,204,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.partner-wrap .section-label, .partner-wrap .section-title, .partner-wrap .section-subtitle {
  position: relative;
  z-index: 1;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--sp-5);
  position: relative;
  z-index: 1;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 1px;
  background: linear-gradient(90deg,
      rgba(0,204,204,0.3),
      rgba(0,204,204,0.15),
      rgba(0,204,204,0.3)
    );
  border-top: 1px dashed rgba(0,204,204,0.2);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-2);
  background: var(--bg-1);
  border: 2px solid var(--accent-border);
  box-shadow: 0 0 0 6px var(--bg-1), 0 0 0 7px rgba(0,204,204,0.1);
  position: relative;
  z-index: 2;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.step-card:hover .step-num-wrap {
  border-color: var(--accent);
  box-shadow: 0 0 0 6px var(--bg-1), 0 0 0 7px rgba(0,204,204,0.3), 0 0 20px rgba(0,204,204,0.2);
  transform: translateY(-3px);
}
.step-icon-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  background: rgba(0,204,204,0.1);
}
.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #030f0f;
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(0,204,204,0.4);
}
.step-card h3 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.step-card p {
  color: var(--text-sub);
}
/* SUPPORT */
.support-wrap {
  border-radius: var(--radius);
  padding: var(--sp-7);
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.support-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 75%, rgba(0,204,204,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  position: relative;
  z-index: 1;
}
.support-card {
  padding: var(--sp-4);
  text-align: center;
}
.support-card .feature-icon {
  margin: 0 auto var(--sp-2);
  width: 72px;
  height: 72px;
  font-size: 1.7rem;
  border-radius: 18px;
}
.support-card h3 {
  margin-bottom: 10px;
}
.support-card p {
  color: var(--text-sub);
}
/* CASE STUDIES */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: var(--sp-5);
}
.case-card {
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.case-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.case-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  background: rgba(0,204,204,0.1);
}
.case-meta {
  flex: 1;
  min-width: 0;
}
.case-client {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.case-industry {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0,204,204,0.1);
  border: 1px solid rgba(0,204,204,0.2);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.case-body p {
  color: var(--text-sub);
  font-size: 0.93rem;
  line-height: 1.72;
}
.case-body p strong {
  color: var(--text);
}
.case-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px var(--sp-2);
  border-radius: var(--radius-md);
  background: rgba(0,204,204,0.06);
  border: 1px solid rgba(0,204,204,0.15);
  margin-top: 4px;
}
.case-result i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.case-result p {
  color: var(--text-sub);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.case-result p strong {
  color: var(--accent);
}
/* FAQ */
.faq-grid {
  display: grid;
  margin-top: var(--sp-5);
}
details {
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
details[open] {
  border-color: rgba(0,204,204,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
summary {
  padding: 20px var(--sp-3);
  cursor: pointer;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color 0.2s;
  min-height: 44px;
  touch-action: manipulation;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease), color 0.2s;
  flex-shrink: 0;
}
details[open] summary::after {
  content: "";
  color: var(--accent);
  transform: rotate(180deg);
}
details[open] summary {
  color: var(--accent);
}
details p, details ul {
  padding: 0 var(--sp-3) var(--sp-3);
  color: var(--text-sub);
  line-height: 1.78;
  font-size: 0.94rem;
  margin-top: 4px;
}
details ul {
  padding-left: var(--sp-5);
  list-style: disc;
}
details ul li {
  margin-bottom: 6px;
}
/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  align-items: start;
  margin-top: var(--sp-5);
}
/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.contact-info-card {
  padding: var(--sp-3) var(--sp-3);
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}
.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-info-item:first-child {
  padding-top: 0;
}
.ci-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent);
  background: rgba(0,204,204,0.1);
  flex-shrink: 0;
}
.ci-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ci-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ci-value {
  font-size: 0.9rem;
  color: var(--text-sub);
  font-weight: 500;
}
.ci-value a {
  text-decoration: none;
  transition: color 0.2s;
}
.ci-value a:hover {
  color: var(--accent);
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  color: #25d366;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  touch-action: manipulation;
}
.whatsapp-btn:hover {
  background: rgba(37,211,102,0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.2);
}
/* Contact form */
.contact-form-wrap {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.required-star {
  color: #ff6b6b;
}
.field-wrap {
  position: relative;
}
.field-wrap i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.88rem;
  pointer-events: none;
  transition: color 0.2s;
  z-index: 1;
}
.field-wrap textarea ~ i {
  top: 18px;
  transform: none;
}
input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 13px 15px 13px 40px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder {
  color: var(--text-muted);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(0,204,204,0.42);
  box-shadow: 0 0 0 3px rgba(0,204,204,0.1);
  background: rgba(255,255,255,0.06);
}
.field:focus-within .field-wrap i {
  color: var(--accent);
}
select {
  padding-left: 40px;
  cursor: pointer;
}
select option {
  background: var(--bg-1);
  color: var(--text);
}
textarea {
  min-height: 138px;
  resize: vertical;
  padding-top: 13px;
}
.form-notice {
  color: var(--text-muted);
  font-size: 0.86rem;
  grid-column: 1 / -1;
  line-height: 1.6;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #030f0f;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  min-height: 48px;
}
.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,204,204,0.45);
  filter: brightness(1.05);
}
.btn-submit:hover::before {
  opacity: 1;
}
.btn-submit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-submit:active {
  transform: translateY(-1px);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
/* TOAST */
.toast-glass {
  position: fixed;
  z-index: 9998;
  right: 20px;
  bottom: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  max-width: 360px;
  color: var(--text);
  background: rgba(12,18,22,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  transform: translateY(80px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.toast-glass.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.toast-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.toast-glass.success .toast-icon {
  color: var(--accent);
}
.toast-glass.error   .toast-icon {
  color: #ff6b6b;
}
.toast-text {
  font-size: 0.9rem;
  line-height: 1.55;
}
/* FOOTER */
footer {
  padding: var(--sp-7) 0 var(--sp-4);
  margin-top: var(--sp-7);
  border-top: 1px solid var(--border);
  background: var(--bg-1);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--sp-5);
}
.footer-brand .brand {
  margin-bottom: var(--sp-2);
  display: inline-flex;
}
.footer-brand p {
  color: var(--text-sub);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: var(--sp-2);
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  font-size: 0.85rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s var(--ease);
  touch-action: manipulation;
}
.social-link:hover, .social-link:focus-visible {
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
  outline: none;
}
.footer-col h4 {
  color: var(--accent);
  margin-bottom: var(--sp-2);
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}
.footer-col nav a {
  display: block;
  padding: 4px 0;
  color: var(--text-sub);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s var(--ease);
}
.footer-col nav a:hover, .footer-col nav a:focus-visible {
  color: var(--accent);
  padding-left: 5px;
  outline: none;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  color: var(--text-sub);
  font-size: 0.9rem;
}
.footer-contact-item i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  font-size: 0.85rem;
}
.footer-contact-item a {
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: var(--accent);
}
.copyright {
  margin-top: var(--sp-5);
  color: var(--text-muted);
  text-align: center;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
  line-height: 1.75;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 16px;
}
.copyright strong {
  color: var(--text-sub);
}
.copyright a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.copyright a:hover {
  color: var(--accent);
}
.copyright-dot {
  color: var(--text-muted);
}
/* ACCESSIBILITY & FOCUS */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
a:focus:not(:focus-visible) {
  outline: none;
}
/* GLOBAL OVERFLOW GUARD */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.container, .hero-container, .services-grid, .cases-grid, .ps-grid, .why-grid, .support-grid, .steps-grid {
  max-width: 100%;
}
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .hero h1, .hero-desc, .hero-actions, .trust-badges {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* The orbit is a core product visual and intentionally remains in motion. */
  .orbit-card:nth-child(2) { animation: orbit-1 32s linear infinite !important; }
  .orbit-card:nth-child(3) { animation: orbit-2 32s linear infinite !important; }
  .orbit-card:nth-child(4) { animation: orbit-3 32s linear infinite !important; }
  .orbit-card:nth-child(5) { animation: orbit-4 32s linear infinite !important; }
  .orbit-card:nth-child(6) { animation: orbit-5 32s linear infinite !important; }
  .center-card { animation: center-pulse 3s ease-in-out infinite !important; }
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .btn-accent {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
}
@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }
  .steps-grid::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(6, 8, 9, .88) 0%, rgba(6, 8, 9, .90) 52%, #060809 100%),
      url("../images/hero-technology-background.png");
    background-position: center top;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .trust-badges {
    justify-content: center;
  }
  .hero-visual, .galaxy-orbit, .orbit-path, .orbit-card, .center-card {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  .ps-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
  .mission-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 74px;
  }
  .navbar {
    height: 74px;
  }
  .section {
    padding: 72px 0;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 48px;
  }
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .mission-wrap, .why-wrap, .data-wrap, .partner-wrap, .support-wrap {
    padding: var(--sp-4) var(--sp-3);
  }
  .contact-form-wrap {
    padding: var(--sp-4) var(--sp-3);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .services-grid, .cases-grid, .faq-grid {
    grid-template-columns: 1fr !important;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-4);
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-col nav a {
    text-align: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
  .mission-stats {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card, .service-card {
    padding: var(--sp-3);
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  .btn, .btn-submit {
    width: 100%;
    justify-content: center;
  }
  .mission-stats {
    grid-template-columns: 1fr;
  }
}
body {
  text-rendering: optimizeLegibility;
}
.menu-status {
  margin-left: auto;
  padding: 2px 7px;
  border-radius: 100px;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.menu-status.live {
  color: #7ff3e8;
  background: rgba(0,204,204,.12);
  border: 1px solid rgba(0,204,204,.25);
}
.status-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 16px;
  padding: 5px 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.status-live {
  color: #70e9df;
  background: rgba(0,204,204,.1);
  border: 1px solid rgba(0,204,204,.25);
}
.status-flagship {
  color: #051010;
  background: linear-gradient(135deg,var(--accent-bright),var(--accent));
  border: 1px solid var(--accent);
}
.status-planned {
  color: #ffc978;
  background: rgba(251,146,60,.1);
  border: 1px solid rgba(251,146,60,.28);
}
.mission-offers .stat {
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.stat-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(0,204,204,.1);
  border: 1px solid rgba(0,204,204,.16);
  font-size: 1.05rem;
}
.mission-offers .stat-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mission-offers .stat-label strong {
  color: var(--text);
  font-family: "Space Grotesk",sans-serif;
  font-size: .92rem;
}
.mission-offers .stat-label span {
  color: var(--text-sub);
  font-size: .78rem;
  line-height: 1.45;
}
.roadmap-grid {
  display: grid;
}
.roadmap-card h3 {
  margin-bottom: 10px;
}
.roadmap-card p {
  color: var(--text-sub);
}
.planned-card {
  border-style: dashed;
}
.planned-card .feature-icon, .planned-card .icon-circle {
  color: #f1ad57;
  background: rgba(251,146,60,.08);
}
.planned-card:hover {
  border-color: rgba(251,146,60,.3);
}
.ai-sector-card {
  background: linear-gradient(135deg,rgba(24,20,17,.72),rgba(13,19,23,.72));
}
.ai-sector-card .chip-container {
  margin-top: 16px;
}
.service-card > .status-pill {
  margin-right: auto;
}
.support-media-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
  margin-top: var(--sp-4);
}
.support-photo {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
}
.support-photo img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  object-position: center;
}
.support-photo figcaption {
  padding: 14px 16px;
  color: var(--text-sub);
  font-size: .78rem;
  border-top: 1px solid var(--glass-border);
}
.support-grid-compact {
  grid-template-columns: repeat(2,minmax(0,1fr));
  margin-top: 0;
}
.service-clarity-card {
  background: rgba(0,204,204,.04);
  border-color: rgba(0,204,204,.15);
}
.clarity-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}
.clarity-row + .clarity-row {
  border-top: 1px solid var(--glass-border);
}
.clarity-row > i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.clarity-row strong {
  display: block;
  color: var(--text);
  font-size: .88rem;
  margin-bottom: 3px;
}
.clarity-row span {
  display: block;
  color: var(--text-sub);
  font-size: .78rem;
  line-height: 1.55;
}
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
/* Ensure planned labels do not look like clickable live products. */
.planned-card .chip {
  border-style: dashed;
}
@media (max-width:1050px) {
  .support-media-grid {
    grid-template-columns: 1fr;
  }
  .support-photo {
    max-height: 560px;
  }
  .support-photo img {
    min-height: 360px;
  }
}
@media (max-width:760px) {
  .mission-offers {
    grid-template-columns: 1fr 1fr;
  }
  .support-grid-compact {
    grid-template-columns: 1fr;
  }
  .support-photo img {
    min-height: 300px;
  }
}
@media (max-width:560px) {
  .mission-offers {
    grid-template-columns: 1fr;
  }
  .mission-wrap, .why-wrap, .data-wrap, .partner-wrap, .support-wrap {
    padding: var(--sp-4) var(--sp-3);
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .ai-sector-card {
    grid-column: auto;
  }
  .support-photo img {
    min-height: 250px;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  overflow: hidden;
}
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  min-width: 0;
}
.brand-name {
  display: inline-block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1.2px;
  background: linear-gradient(90deg, #ff6b00 0%, #ff3f1f 55%, #2d1d24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
}
.brand-tagline {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #555;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .brand-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .brand-name {
    font-size: 21px;
  }
  .brand-tagline {
    font-size: 7px;
    letter-spacing: 3px;
  }
}
/* Utilities created while removing inline style attributes. */
.layer-content { position: relative; z-index: 1; }
.icon-accent { color: var(--accent); }
.mr-8 { margin-right: 8px; }
.mr-6 { margin-right: 6px; }
.icon-lg { font-size: 1.3rem; }
.full-row { grid-column: 1 / -1; }
.nav-actions-group { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
/* =========================================================
   2026 CORPORATE REFINEMENT
   Keeps the IgniteDry identity and information architecture,
   but reduces visual noise and gives the site a calmer,
   more premium Microsoft/Meta-style presentation.
   ========================================================= */
:root {
  --radius: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --shadow-sm: 0 8px 24px rgba(0,0,0,.18);
  --shadow: 0 18px 48px rgba(0,0,0,.24);
  --shadow-lg: 0 28px 80px rgba(0,0,0,.34);
  --text: #f4f7f8;
  --text-sub: #aab4ba;
  --text-muted: #69777f;
  --border: rgba(255,255,255,.09);
  --glass-border: rgba(255,255,255,.09);
  --card-bg: rgba(13,18,21,.88);
  --glass-bg: rgba(13,18,21,.82);
}
html { scroll-behavior: smooth; }
body,
button,
input,
select,
textarea {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1, h2, h3, h4, h5,
.brand-name,
.ps-card-head,
.mission-offers .stat-label strong,
.service-number {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
}
.btn,
.btn-accent,
.btn-submit,
.section-label,
.brand-tagline {
  font-family: "Inter", system-ui, sans-serif;
}
body::before,
.ambient-orb,
#scroll-progress,
.scan-line {
  display: none !important;
}
body {
  background:
    radial-gradient(circle at 82% 8%, rgba(0,204,204,.045), transparent 28%),
    var(--bg-0);
  line-height: 1.62;
}
/* Header: flatter and quieter. */
.navbar {
  height: 74px;
  background: rgba(6,8,9,.82);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: none;
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
}
.navbar.scrolled {
  height: 68px;
  background: rgba(6,8,9,.96);
  border-bottom-color: rgba(255,255,255,.09);
  box-shadow: 0 10px 34px rgba(0,0,0,.22);
}
.nav-wrap { max-width: 1320px; }
.nav-link {
  border-radius: 6px;
  font-size: .82rem;
  color: #c4ccd0;
}
.nav-link::after { display: none; }
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.07);
  color: #fff;
  transform: none;
}
.btn-accent {
  border-radius: 7px;
  padding: 9px 17px;
  min-height: 40px;
  background: var(--accent);
  box-shadow: none;
  font-weight: 700;
}
.btn-accent:hover,
.btn-accent:focus-visible {
  transform: none;
  box-shadow: 0 0 0 4px rgba(0,204,204,.09);
  filter: brightness(1.05);
}
.mega-menu {
  border-radius: 10px;
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 24px 64px rgba(0,0,0,.42);
}
/* Hero: large type + editorial image instead of an animated diagram. */
.hero {
  min-height: auto;
  padding: 106px 0 72px;
  background: var(--bg-0);
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(6,8,9,.98) 0%, rgba(6,8,9,.82) 55%, rgba(6,8,9,.32) 100%),
    radial-gradient(circle at 78% 36%, rgba(0,204,204,.075), transparent 32%);
  filter: none;
  transform: none;
}
.hero::after {
  background: linear-gradient(180deg, transparent 70%, var(--bg-0) 100%);
}
.hero-grid {
  opacity: .35;
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 90%);
}
.hero-container {
  width: min(1280px, 94%);
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: clamp(42px, 6vw, 86px);
}
.hero-content { max-width: 650px; }
.hero h1 {
  font-weight: 650;
}
.hero h1 em {
  color: var(--accent);
}
.btn {
  border-radius: 7px;
  padding: 12px 20px;
  min-height: 46px;
  font-size: .92rem;
  box-shadow: none;
}
.btn-primary {
  background: var(--accent);
  color: #031313;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: none;
  box-shadow: 0 0 0 4px rgba(0,204,204,.10);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.15);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.24);
  transform: none;
}
.pulse-ring::before { display: none; }
.trust-badges { gap: 8px; }
.badge {
  border-radius: 6px;
  padding: 7px 10px;
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.08);
  font-size: .72rem;
}
.badge:hover {
  transform: none;
  background: rgba(255,255,255,.04);
  border-color: rgba(0,204,204,.22);
}
.hero-visual.corporate-visual {
  height: auto;
  min-height: 520px;
  display: block;
  perspective: none;
}
.hero-visual.corporate-visual::before {
  width: 70%;
  height: 70%;
  right: -6%;
  top: 10%;
  left: auto;
  border-radius: 40%;
  background: rgba(0,204,204,.09);
  filter: blur(80px);
}
.hero-photo-card {
  margin: 0;
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: #0b1013;
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) contrast(1.03) brightness(.76);
  transform: scale(1.01);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(4,7,8,.84) 100%),
    linear-gradient(90deg, rgba(0,204,204,.08), transparent 48%);
}
.hero-photo-card figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.hero-photo-card figcaption strong {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -.02em;
}
.visual-kicker {
  color: var(--accent);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.visual-float-card {
  position: absolute;
  right: -18px;
  bottom: 38px;
  min-width: 245px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,11,13,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
}
.visual-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0,204,204,.10);
  flex-shrink: 0;
}
.visual-float-card div { display: flex; flex-direction: column; gap: 2px; }
.visual-float-card strong { font-size: .85rem; }
.visual-float-card span:not(.visual-dot) { color: var(--text-sub); font-size: .72rem; }
/* Moving service rail: continuous but deliberately restrained. */
.services-marquee {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: #090d0f;
}
.services-marquee::before,
.services-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.services-marquee::before { left: 0; background: linear-gradient(90deg, #090d0f, transparent); }
.services-marquee::after { right: 0; background: linear-gradient(-90deg, #090d0f, transparent); }
.marquee-set {
  flex-shrink: 0;
}
.marquee-set span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 17px 28px;
  white-space: nowrap;
  color: #aeb9be;
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.marquee-set span::after {
  content: "";
  width: 3px;
  height: 3px;
  margin-left: 28px;
  border-radius: 50%;
  background: rgba(0,204,204,.55);
}
.marquee-set i { color: var(--accent); font-size: .8rem; }
@keyframes ignite-service-marquee {
  to { transform: translateX(-50%); }
}
/* Sections: tighter spacing, flatter surfaces. */
.section { padding: clamp(68px, 7vw, 92px) 0; }
.container { width: min(1180px, 94%); }
.section-label {
  margin-bottom: 12px;
  font-size: .65rem;
  letter-spacing: .14em;
}
.section-label::before { width: 14px; }
.section-title {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 600;
  text-wrap: balance;
}
.section-subtitle {
  max-width: 680px;
  margin-bottom: 34px;
  font-size: .98rem;
  line-height: 1.62;
}
.mission-wrap,
.why-wrap,
.data-wrap,
.partner-wrap,
.support-wrap {
  padding: clamp(34px, 5vw, 54px);
  border-radius: 12px;
  background: rgba(11,16,19,.76);
  border-color: rgba(255,255,255,.08);
}
.mission-wrap::before,
.why-wrap::before,
.data-wrap::before,
.partner-wrap::before,
.support-wrap::before {
  opacity: .34;
}
.mission-wrap p {
  max-width: 880px;
  font-size: .98rem;
  line-height: 1.68;
}
.mission-stats {
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 10px;
  margin-top: 30px;
}
.stat {
  padding: 18px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.022);
}
.stat:hover { transform: none; background: rgba(255,255,255,.035); }
/* Cards: smaller radii, cleaner contrast, little/no glow. */
.glass-card {
  background: rgba(13,18,21,.86);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 10px;
  border-color: rgba(255,255,255,.085);
  box-shadow: none;
}
.glass-card::before { display: none; }
.glass-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,204,204,.24);
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
}
.feature-icon,
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 9px;
  background: rgba(0,204,204,.08);
  box-shadow: none;
}
.glass-card:hover .feature-icon,
.glass-card:hover .icon-circle {
  transform: none;
  box-shadow: none;
}
.why-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 26px;
}
.feature-card { padding: 24px; }
.feature-card h3 { color: var(--text); font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: .84rem; line-height: 1.55; }
.ps-grid { gap: 14px; }
.ps-card { padding: 26px; border-radius: 10px; backdrop-filter: none; }
.ps-list { gap: 9px; }
.ps-list li { font-size: .86rem; line-height: 1.52; }
.roadmap-grid {
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-top: 28px;
}
.roadmap-card {
  min-height: 0;
  padding: 22px;
}
.roadmap-card h3 { color: var(--text); font-size: .98rem; }
.roadmap-card p { font-size: .82rem; line-height: 1.55; }
.ai-sector-card { grid-column: span 2; }
.status-pill {
  border-radius: 4px !important;
  font-size: .58rem !important;
  letter-spacing: .05em;
}
/* Photography in the services area. */
.services-showcase {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
  margin: 8px 0 28px;
}
.showcase-photo {
  position: relative;
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  background: #0c1114;
}
.showcase-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(.68) brightness(.72) contrast(1.04);
  transition: transform .7s var(--ease), filter .45s ease;
}
.showcase-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4,7,8,.88) 100%);
  pointer-events: none;
}
.showcase-photo:hover img {
  transform: scale(1.025);
  filter: saturate(.8) brightness(.77) contrast(1.04);
}
.showcase-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.showcase-photo figcaption strong {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.showcase-photo figcaption span { color: #b4bec3; font-size: .76rem; }
.services-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 0;
}
.service-card {
  min-height: 0;
  padding: 24px;
}
.service-number {
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  color: rgba(255,255,255,.035);
}
.service-card h3 {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.28;
}
.service-card h3 .angle-icon { display: none; }
.service-card p { font-size: .84rem; line-height: 1.55; }
.chip { border-radius: 4px; padding: 4px 8px; font-size: .68rem; }
.learn-more-btn { font-size: .78rem; }
.planned-card { background: rgba(18,17,15,.64); }
.steps-grid { gap: 10px; }
.step-card { border-radius: 9px; padding: 22px; }
.step-card:hover { transform: none; }
.step-card h3 { font-size: .95rem; }
.step-card p { font-size: .82rem; line-height: 1.52; }
.support-media-grid { gap: 14px; }
.support-photo { border-radius: 10px; box-shadow: none; }
.support-photo img { min-height: 390px; filter: saturate(.72) brightness(.8); }
.support-grid-compact { gap: 12px; }
.support-grid-compact .support-card { min-height: 0; padding: 22px; }
.support-card h3 { color: var(--text); font-size: .95rem; }
.support-card p { font-size: .82rem; line-height: 1.52; }
.cases-grid { gap: 12px; }
.case-card { border-radius: 10px; }
.faq-grid {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.faq-grid details {
  border-radius: 8px;
  background: rgba(255,255,255,.018);
}
.faq-grid summary { font-size: .86rem; }
.faq-grid details p { font-size: .82rem; line-height: 1.52; }
.contact-layout { gap: 18px; }
.contact-info-card,
.contact-form-wrap {
  border-radius: 10px;
  background: rgba(13,18,21,.78);
  box-shadow: none;
}
.field input,
.field select,
.field textarea { border-radius: 7px; }
.btn-submit { border-radius: 7px; box-shadow: none; }
.whatsapp-btn { border-radius: 7px; }
footer { border-top-color: rgba(255,255,255,.08); }
/* Responsive refinement */
@media (max-width: 1100px) {
  .hero-container { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero-photo-card { height: 460px; }
  .hero-visual.corporate-visual { min-height: 460px; }
  .mission-stats { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .roadmap-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .hero { padding-top: 92px; }
  .hero-container { grid-template-columns: 1fr; }
  .visual-float-card { right: 16px; bottom: 18px; }
  .why-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .roadmap-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ai-sector-card { grid-column: span 2; }
  .services-showcase { grid-template-columns: 1fr 1fr; }
  .support-media-grid { grid-template-columns: 1fr; }
  .support-photo img { min-height: 320px; max-height: 440px; }
}
@media (max-width: 700px) {
  body { padding-top: 68px; }
  .hero { padding: 68px 0 48px; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero-desc { font-size: .98rem; }
  .hero-visual.corporate-visual { min-height: 340px; }
  .hero-photo-card { height: 340px; border-radius: 9px; }
  .hero-photo-card figcaption { left: 18px; right: 18px; bottom: 18px; }
  .visual-float-card { display: none; }
  .marquee-set span { padding: 14px 20px; }
  .section { padding: 58px 0; }
  .section-title { font-size: clamp(1.85rem, 9vw, 2.65rem); }
  .mission-wrap,
  .why-wrap,
  .data-wrap,
  .partner-wrap,
  .support-wrap { padding: 26px 20px; }
  .mission-stats,
  .why-grid,
  .roadmap-grid,
  .services-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .ai-sector-card { grid-column: auto; }
  .services-showcase { grid-template-columns: 1fr; }
  .showcase-photo,
  .showcase-photo img { min-height: 220px; }
  .ps-grid { grid-template-columns: 1fr; }
  .support-grid-compact { grid-template-columns: 1fr; }
  .services-grid { gap: 10px; }
  .service-card { padding: 22px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .services-marquee-track {  transform: none; }
  .showcase-photo img { transition: none; }
}
/* =========================================================
   HERO FULL-BLEED + GUARANTEED MOVING SERVICES
   2026-08-11
   ========================================================= */
/* Desktop hero now follows the reference composition:
   copy on the left, full-height photography on the right,
   with no card treatment around the image. */
@media (min-width: 901px) {
  .hero {
    min-height: calc(100vh - 74px);
    padding: clamp(88px, 9vh, 124px) 0 clamp(64px, 7vh, 92px);
    display: flex;
    align-items: center;
    background: var(--bg-0);
    overflow: hidden;
    isolation: isolate;
  }
  .hero::before {
    background: none !important;
    filter: none !important;
    transform: none !important;
  }
  .hero::after {
    background:
      linear-gradient(180deg, transparent 72%, rgba(6,8,9,.58) 91%, var(--bg-0) 100%) !important;
    z-index: 1;
  }
  .hero-grid {
    opacity: .16;
    width: 47%;
    right: auto;
    mask-image: linear-gradient(90deg, #000 0%, #000 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 65%, transparent 100%);
  }
  .hero-container {
    width: min(1320px, 92%);
    display: block;
    position: relative;
    z-index: 4;
    margin: 0 auto;
    padding: 0;
  }
  .hero-content {
    position: relative;
    z-index: 5;
  }
  /* Turn the existing visual element into the full right-hand hero image. */
  .hero-visual.corporate-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    min-height: 0;
    display: block;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .hero-visual.corporate-visual::before {
    display: none !important;
  }
  .hero-photo-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    background: #0b1013;
  }
  .hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
    transform: none;
    filter: saturate(.82) contrast(1.02) brightness(.86);
  }
  /* Fade the photo naturally into the dark copy area, like the reference. */
  .hero-photo-overlay {
    position: absolute;
    inset: 0;
  }
  /* The reference image is clean photography, not a card with labels. */
  .hero-photo-card figcaption,
  .visual-float-card {
    display: none !important;
  }
}
/* Tablet/mobile: keep the same photographic idea, but place it below the copy. */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 74px 0 0;
  }
  .hero-container {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 42px;
  }
  .hero-content {
    width: min(92%, 720px);
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
  }
  .hero-visual.corporate-visual {
    position: relative;
    width: 100%;
    height: clamp(360px, 58vw, 560px);
    min-height: 0 !important;
    overflow: hidden;
  }
  .hero-visual.corporate-visual::before {
    display: none !important;
  }
  .hero-photo-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    border: 0;
    border-radius: 0 !important;
    box-shadow: none;
  }
  .hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.82) contrast(1.02) brightness(.82);
    transform: none;
  }
  .hero-photo-overlay {
    background:
      linear-gradient(180deg, var(--bg-0) 0%, rgba(6,8,9,.52) 13%, transparent 38%),
      linear-gradient(180deg, transparent 70%, rgba(6,8,9,.42) 100%);
  }
  .hero-photo-card figcaption,
  .visual-float-card {
    display: none !important;
  }
}
/* Continuous service movement. Kept CSS-only so it does not depend on GSAP/JS. */
.services-marquee {
  overflow: hidden;
}
.services-marquee-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  transform: translate3d(0,0,0);
  will-change: transform;
  animation: ignite-service-marquee-fixed 20s linear infinite !important;
  animation-play-state: running !important;
}
.marquee-set {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center;
  width: max-content;
}
/* Do not accidentally stop because the pointer sits over the rail. */
.services-marquee:hover .services-marquee-track {
  animation-play-state: running !important;
}
@keyframes ignite-service-marquee-fixed {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
/* The user explicitly requested this service rail to remain moving. */
@media (prefers-reduced-motion: reduce) {
  .services-marquee-track {
    animation: ignite-service-marquee-fixed 28s linear infinite !important;
    animation-play-state: running !important;
  }
}
/* =========================================================
   HERO EDITORIAL COPY REFINEMENT — reference-inspired
   ========================================================= */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(238,241,243,.72);
  font-family: "Inter", system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
}
.hero-eyebrow span {
  width: 26px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0,204,204,.35);
}
.hero h1 {
  max-width: 700px;
  font-size: clamp(3rem, 5.9vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero h1 em {
  display: inline;
  background: linear-gradient(110deg, var(--accent) 0%, #19dddd 56%, #9cf5f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  max-width: 640px;
  color: #b3bec4;
  font-size: clamp(1rem, 1.24vw, 1.14rem);
  line-height: 1.7;
  margin-bottom: 30px;
}
.hero-actions {
  margin-bottom: 28px;
}
.hero .btn {
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: .9rem;
  box-shadow: none;
}
.hero .btn-primary {
  background: var(--accent);
  color: #041313;
  box-shadow: 0 8px 28px rgba(0,204,204,.16);
}
.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,204,204,.23);
}
.hero .btn-primary.pulse-ring::after {
  display: none;
}
.hero .btn-ghost {
  border-color: rgba(255,255,255,.16);
  background: rgba(4,8,10,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-scope {
  display: grid;
  gap: 8px;
  max-width: 650px;
  opacity: 0;
  transform: translateY(18px);
}
.hero-scope-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  color: #aab5bb;
  font-size: .78rem;
}
.hero-scope-row > span:not(.scope-label) {
  display: inline-flex;
  align-items: center;
}
.hero-scope-row > span:not(.scope-label):not(:last-child)::after {
  content: "•";
  margin: 0 10px;
  color: rgba(0,204,204,.72);
}
.scope-label {
  min-width: 98px;
  margin-right: 12px;
  color: #eef1f3;
  font-weight: 700;
}
.hero-scope-row.is-upcoming > span:not(.scope-label) {
  color: #839299;
}
.hero-scope-row.is-upcoming .scope-label {
  color: var(--accent);
}
@media (min-width: 901px) {
  .hero-content {
    width: min(720px, 50vw) !important;
    max-width: 720px !important;
  }
  .hero-visual.corporate-visual {
    width: 59% !important;
  }
  .hero-photo-overlay {
    background:
      linear-gradient(90deg,
        var(--bg-0) 0%,
        rgba(6,8,9,.98) 8%,
        rgba(6,8,9,.84) 20%,
        rgba(6,8,9,.46) 34%,
        rgba(6,8,9,.12) 49%,
        transparent 64%),
      linear-gradient(180deg,
        rgba(6,8,9,.05) 0%,
        transparent 58%,
        rgba(6,8,9,.14) 80%,
        rgba(6,8,9,.6) 100%) !important;
  }
}
@media (max-width: 900px) {
  .hero-eyebrow { margin-top: 8px; }
  .hero h1 { font-size: clamp(2.75rem, 10vw, 4.6rem); max-width: 760px; }
  .hero-desc { max-width: 700px; }
}
@media (max-width: 600px) {
  .hero-eyebrow { font-size: .62rem; letter-spacing: .12em; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 3.7rem); line-height: 1; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero .btn { justify-content: center; width: 100%; }
  .hero-scope { gap: 10px; }
  .hero-scope-row { font-size: .74rem; line-height: 1.8; }
  .scope-label { width: 100%; min-width: 100%; margin: 0 0 2px; }
}
/* =========================================================
   MARKET-FOCUSED CONSOLIDATION
   Small & growing businesses + grouped solutions + research
   ========================================================= */
.nav-link-insights {
  color: #dffafa;
}
.nav-link-insights::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 1px;
}
.marquee-upcoming {
  opacity: .72;
}
.marquee-upcoming i {
  opacity: .78;
}
/* Grouped solution architecture */
.consolidated-solutions {
  padding-top: clamp(76px, 9vw, 118px);
  padding-bottom: clamp(76px, 9vw, 118px);
}
.solution-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.solution-pillar {
  position: relative;
  min-width: 0;
  padding: 30px 28px 28px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.022), transparent 38%),
    rgba(10,14,16,.74);
  overflow: hidden;
  box-shadow: none;
}
.solution-pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,204,204,.55), transparent);
  opacity: .38;
}
.solution-pillar-featured {
  border-color: rgba(0,204,204,.18);
  background:
    radial-gradient(circle at 80% 5%, rgba(0,204,204,.07), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.028), transparent 38%),
    rgba(10,14,16,.80);
}
.solution-pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.solution-index {
  font-family: "Inter Tight", "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  color: #62717a;
}
.solution-status,
.mini-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .035em;
}
.solution-status {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.025);
  color: #9eacb5;
}
.solution-status.available {
  color: #8ee9df;
  border-color: rgba(0,204,204,.18);
  background: rgba(0,204,204,.055);
}
.solution-status.mixed {
  color: #c1d3d7;
}
.solution-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0,204,204,.16);
  border-radius: 9px;
  background: rgba(0,204,204,.055);
  color: var(--accent);
  font-size: 1rem;
}
.solution-pillar h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.15rem);
  letter-spacing: -.035em;
  margin-bottom: 10px;
}
.solution-intro {
  color: #9ba8af;
  line-height: 1.65;
  font-size: .92rem;
  margin-bottom: 26px;
  max-width: 42rem;
}
.solution-lines {
  border-top: 1px solid rgba(255,255,255,.07);
}
.solution-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.solution-line > div {
  min-width: 0;
}
.solution-line strong {
  display: block;
  margin-bottom: 4px;
  font-size: .9rem;
  color: #eef4f4;
}
.solution-line span:not(.mini-status) {
  display: block;
  font-size: .78rem;
  line-height: 1.5;
  color: #788790;
}
.mini-status {
  padding: 4px 7px;
  margin-top: 1px;
  border: 1px solid rgba(255,255,255,.08);
  color: #89969d;
  background: rgba(255,255,255,.02);
}
.mini-status.live,
.mini-status.flagship {
  color: #82ddd5;
  border-color: rgba(0,204,204,.16);
  background: rgba(0,204,204,.045);
}
.mini-status.upcoming {
  color: #b7c0c5;
  border-color: rgba(255,255,255,.10);
}
.solution-note {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding-top: 17px;
  color: #718087;
  font-size: .73rem;
  line-height: 1.5;
}
.solution-note i {
  color: var(--accent);
  margin-top: 2px;
}
.solution-coverage {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 14px 0 0;
  color: #7f8f97;
  font-size: .75rem;
  line-height: 1.55;
}
.solution-coverage i {
  color: var(--accent);
  margin-top: 3px;
}
.solution-coverage strong {
  color: #c9d2d6;
}
.solution-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b7c4c9;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 650;
  transition: color .2s ease;
}
.text-link:hover {
  color: var(--accent);
}
.anchor-alias {
  position: absolute;
  top: -92px;
}
/* Research & Insights */
.research-insights {
  padding-top: clamp(72px, 8vw, 110px);
  padding-bottom: clamp(72px, 8vw, 110px);
  border-top: 1px solid rgba(255,255,255,.055);
  border-bottom: 1px solid rgba(255,255,255,.055);
  background:
    radial-gradient(circle at 12% 12%, rgba(0,204,204,.05), transparent 25%),
    #080b0d;
}
.research-head > div {
  max-width: 820px;
}
.research-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(0,204,204,.15);
  border-radius: 999px;
  background: rgba(0,204,204,.045);
  color: #8ccfc9;
  font-size: .7rem;
  font-weight: 700;
}
.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 38px;
}
.research-card:hover {
  border-color: rgba(0,204,204,.18);
  background: rgba(0,204,204,.025);
}
.research-meta {
  margin-bottom: auto;
}
.research-meta span:last-child {
  color: #89969c;
}
.research-card h3 {
  margin-top: 52px;
  margin-bottom: 10px;
}
.research-foot {
  color: #697880;
  font-size: .76rem;
}
.footer-roadmap {
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-roadmap span,
.footer-roadmap small {
  display: block;
}
.footer-roadmap span {
  margin-bottom: 4px;
  color: #697980;
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-roadmap small {
  color: #9da9ae;
  font-size: .73rem;
}
@media (max-width: 1100px) {
  .solution-pillars {
    grid-template-columns: 1fr;
  }
  .solution-pillar {
    padding: 28px;
  }
  .solution-intro {
    max-width: 720px;
  }
  .research-grid {
    grid-template-columns: 1fr 1fr;
  }
  .research-card:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .research-head,
  .research-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .research-grid {
    grid-template-columns: 1fr;
  }
  .research-card:last-child {
    grid-column: auto;
  }
  .research-card {
    min-height: 220px;
  }
  .solution-pillar {
    padding: 24px 20px;
    border-radius: 8px;
  }
  .solution-line {
    grid-template-columns: 1fr;
  }
  .mini-status {
    width: max-content;
  }
}
/* =========================================================
   RESEARCH & INSIGHTS — HORIZONTAL CAROUSEL
   ========================================================= */
.research-insights {
  overflow: hidden;
}
.research-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.research-head > div:first-child {
  max-width: 800px;
}
/* Header actions */
.research-head-actions {
  flex-shrink: 0;
}
.research-carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.research-arrow {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  background: rgba(255,255,255,.025);
  color: #dce5e7;
  cursor: pointer;
  transition:
    background .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}
.research-arrow:hover {
  color: var(--accent);
  border-color: rgba(0,204,204,.35);
  background: rgba(0,204,204,.07);
  transform: translateY(-1px);
}
.research-arrow:active {
  transform: scale(.96);
}
/* Carousel */
/* Cards */
.research-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.025),
      rgba(255,255,255,.012)
    );
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
  transition:
    border-color .25s ease,
    background .25s ease,
    transform .25s ease;
}
a.research-card:hover {
  border-color: rgba(0,204,204,.25);
  background:
    linear-gradient(
      180deg,
      rgba(0,204,204,.045),
      rgba(255,255,255,.015)
    );
  transform: translateY(-3px);
}
/* Card content */
.research-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #73838a;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.research-meta span:first-child {
  color: #80d9d4;
}
.research-card h3 {
  margin: 48px 0 12px;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.research-card p {
  margin: 0 0 28px;
  color: #87959b;
  font-size: .8rem;
  line-height: 1.62;
}
.research-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.065);
  color: #a6e6e2;
  font-size: .72rem;
  font-weight: 700;
}
.research-read-muted {
  color: #68777e;
}
/* Bottom */
.research-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
/* Tablet */
@media (max-width: 1050px) {
  .research-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}
/* Mobile */
@media (max-width: 700px) {
  .research-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .research-card {
    flex-basis: 86%;
  }
}
/* =========================================================
   IGNITEDRY — PRODUCTION HORIZONTAL SLIDESHOWS
   Products & Services + Research & Insights
   ========================================================= */
/* ---------- Shared slideshow controls ---------- */
.services-section,
.research-insights {
  overflow: hidden;
}
.services-section-head,
.research-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.services-section-head > div:first-child,
.research-head > div:first-child {
  min-width: 0;
  max-width: 850px;
}
.services-carousel-controls,
.research-carousel-controls {
  flex: 0 0 auto;
}
.services-arrow,
.research-arrow {
  pointer-events: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.services-arrow:hover,
.services-arrow:focus-visible,
.research-arrow:hover,
.research-arrow:focus-visible {
  color: var(--accent);
  border-color: rgba(0,204,204,.42);
  background: rgba(0,204,204,.10);
  outline: none;
  transform: translateY(-1px);
}
.services-arrow:disabled,
.research-arrow:disabled {
  opacity: .35;
  cursor: default;
  transform: none;
}
/* ---------- Products & Services ---------- */
/* =========================================================
   CONTINUOUS CARD SLIDESHOW
   ========================================================= */
.services-carousel,
.research-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 36px;
}
/* TRACK */
.services-track,
.research-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  /* IMPORTANT:
     no snapping because this is now continuous movement */
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 2px 0 18px;
  touch-action: pan-x pan-y;
}
.services-track::-webkit-scrollbar,
.research-track::-webkit-scrollbar {
  display: none;
}
/* =========================================================
   SERVICE CARDS
   ========================================================= */
.services-track .service-card {
  flex: 0 0 calc((100% - 36px) / 3) !important;
  min-width: 0;
  max-width: none;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  position: relative;
}
/* service card top */
.services-track .service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.services-track .service-number {
  position: static !important;
  font-size: 1rem !important;
  line-height: 1;
  color: rgba(255,255,255,.30) !important;
}
.services-track .status-pill {
  position: static !important;
  margin: 0 !important;
}
/* consistent alignment */
.services-track .service-card h3 {
  min-height: 58px;
}
.services-track .service-card > p {
  margin-bottom: 20px;
}
.services-track .chip-container {
  margin-bottom: 24px;
}
.services-track .learn-more-btn {
  margin-top: auto;
}
/* =========================================================
   RESEARCH CARDS
   ========================================================= */
/* =========================================================
   ARROWS
   ========================================================= */
.services-carousel-controls,
.research-carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 10;
}
.services-arrow,
.research-arrow {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(10,15,18,.9);
  color: #dce5e7;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    background .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}
.services-arrow:hover,
.research-arrow:hover {
  color: var(--accent);
  border-color: rgba(0,204,204,.40);
  background: rgba(0,204,204,.08);
}
.services-arrow:active,
.research-arrow:active {
  transform: scale(.94);
}
/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 1100px) {
  .services-track .service-card,
  .research-track .research-card {
    flex-basis:
      calc((100% - 18px) / 2) !important;
  }
}
/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 700px) {
  .research-head-actions {
    display: flex;
  }
  .services-track .service-card,
  .research-track .research-card {
    flex: 0 0 88% !important;
  }
  .services-track .service-card {
    min-height: 470px;
  }
}
/* SMALL PHONES */
@media (max-width: 430px) {
}
/* ---------- Research & Insights ---------- */
.research-head-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
  flex: 0 0 auto;
}
.research-carousel {
  position: relative;
  width: 100%;
  margin-top: 38px;
  overflow: hidden;
}
.research-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 2px 1px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1px;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}
.research-track::-webkit-scrollbar {
  display: none;
}
.research-track .research-card {
  flex: 0 0 calc((100% - 32px) / 3) !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 300px;
  height: auto;
  display: flex !important;
  flex-direction: column !important;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.research-track .research-card h3 {
  min-height: 84px;
}
.research-track .research-read {
  margin-top: auto;
}
.research-foot {
  gap: 20px;
}
/* ---------- Tablet ---------- */
@media (max-width: 1100px) {
  .services-track .service-card {
    flex-basis: calc((100% - 18px) / 2) !important;
  }
  .research-track .research-card {
    flex-basis: calc((100% - 16px) / 2) !important;
  }
  .services-section-head,
  .research-head {
    align-items: flex-start;
  }
}
/* ---------- Mobile ---------- */
@media (max-width: 700px) {
  .services-section,
  .research-insights {
    overflow: hidden;
  }
  .services-section-head,
  .research-head {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .services-section-head .section-title,
  .research-head .section-title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .services-section-head .section-subtitle,
  .research-head .section-subtitle {
    max-width: 100%;
  }
  .services-carousel-controls {
    width: 100%;
    justify-content: flex-end;
  }
  .research-head-actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .services-arrow,
  .research-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  .services-carousel,
  .research-carousel {
    margin-top: 28px;
    overflow: hidden;
  }
  .services-track,
  .research-track {
    gap: 12px !important;
    padding-right: 7vw;
  }
  /* Show almost one full card and a hint of the next card. */
  .services-track .service-card,
  .research-track .research-card {
    flex-basis: 88% !important;
    min-width: 88% !important;
    min-height: 0;
  }
  .services-track .service-card {
    padding: 22px 20px !important;
  }
  .services-track .service-card h3,
  .research-track .research-card h3 {
    min-height: 0;
  }
  .services-track .service-card h3 {
    font-size: 1.05rem;
    line-height: 1.28;
  }
  .services-track .service-card > p,
  .research-track .research-card p {
    font-size: .86rem;
    line-height: 1.62;
  }
  .services-track .chip-container {
    gap: 7px;
  }
  .services-track .chip {
    font-size: .67rem;
    padding: 5px 8px;
  }
  .research-track .research-card {
    padding: 22px 20px;
  }
  .research-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ---------- Small phones ---------- */
@media (max-width: 430px) {
  .services-track .service-card,
  .research-track .research-card {
    flex-basis: 91% !important;
    min-width: 91% !important;
  }
  .research-badge {
    max-width: 58%;
    white-space: normal;
  }
  .services-section-head,
  .research-head {
    gap: 18px;
  }
  .services-carousel-controls,
  .research-carousel-controls {
    gap: 7px;
  }
}
/* Do not disable the slideshow layout for reduced-motion users.
   JavaScript switches motion to instant rather than removing navigation. */
@media (prefers-reduced-motion: reduce) {
  .services-track,
  .research-track {
    scroll-behavior: auto;
  }
}
/* =========================================================
   GLOBAL SITE WIDTH OVERRIDE
   ========================================================= */
/* =========================================================
   GLOBAL SITE WIDTH
   ========================================================= */
.container,
.nav-wrap,
.footer-container,
.footer-main {
  width: min(1400px, calc(100% - 48px)) !important;
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Mobile */
@media (max-width: 700px) {
  .container,
  .nav-wrap,
  .footer-container,
  .footer-main {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}


/* =========================================================
   HERO IMAGE — MATCH ANALYTICS / IT SUPPORT
   ========================================================= */

@media (min-width: 901px) {
  .hero {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .hero-container {
    width: min(1400px, calc(100% - 48px));
    margin-inline: auto;
    display: block;
    position: static;
  }

  .hero-content {
    position: relative;
    z-index: 5;
    width: min(720px, 48vw);
    max-width: 720px;
  }

  .hero-visual.corporate-visual {
    position: absolute;
    inset: 0 0 0 auto;

    width: 53%;
    height: 100%;

    overflow: hidden;
    z-index: 1;
  }

  .hero-photo-card {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-photo-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: none;
  }

  .hero-photo-overlay {
    position: absolute;
    inset: 0;

    background:
      linear-gradient(
        90deg,
        #060809 0%,
        rgba(6,8,9,.92) 18%,
        rgba(6,8,9,.55) 35%,
        rgba(6,8,9,.15) 52%,
        transparent 70%
      );
  }

  .visual-float-card,
  .hero-photo-card figcaption {
    display: none;
  }
}


/* MOBILE */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    display: block;
    padding-bottom: 0;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-inline: auto;
  }

  .hero-visual.corporate-visual {
    position: relative;

    width: 100%;
    height: 340px;

    margin-top: 40px;
  }

  .hero-photo-card,
  .hero-photo-card img {
    width: 100%;
    height: 100%;
  }

  .hero-photo-card {
    border: 0;
    border-radius: 0;
  }

  .hero-photo-card img {
    object-fit: cover;
  }

  .hero-photo-overlay {
    background:
      linear-gradient(
        180deg,
        #060809 0%,
        transparent 35%
      );
  }
}