/* ============================================================
   StrattonX Technologies — Global Styles
   ============================================================ */

:root {
  --navy: #042C53;
  --corp-blue: #185FA5;
  --electric: #378ADD;
  --sky: #85B7EB;
  --ice: #E6F1FB;
  --white: #FFFFFF;
  --near-black: #0D1B2A;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(133, 183, 235, 0.2);
  --glow: rgba(55, 138, 221, 0.45);
  --gradient-hero: linear-gradient(135deg, #0D1B2A 0%, #042C53 40%, #185FA5 100%);
  --gradient-accent: linear-gradient(135deg, #378ADD, #85B7EB);
  --gradient-card: linear-gradient(145deg, rgba(24, 95, 165, 0.15), rgba(4, 44, 83, 0.4));
  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-height: 80px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container: min(1200px, 92vw);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 40px rgba(55, 138, 221, 0.25);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ice);
  background: var(--near-black);
  overflow-x: hidden;
}

@media (min-width: 769px) {
  body.custom-cursor-active { cursor: none; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.75rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: var(--glass);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-desc {
  color: rgba(230, 241, 251, 0.75);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* —— Loader —— */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--near-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-accent);
  border-radius: 10px;
  animation: loaderFill 1.8s ease forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(133, 183, 235, 0.2);
  border-top-color: var(--electric);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* —— Scroll Progress —— */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-accent);
  z-index: 9999;
  box-shadow: 0 0 12px var(--glow);
}

/* —— Custom Cursor —— */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--electric);
  box-shadow: 0 0 20px var(--electric);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(55, 138, 221, 0.5);
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--sky);
  background: rgba(55, 138, 221, 0.08);
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* —— Navbar —— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  color: rgba(230, 241, 251, 0.85);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--electric);
  transition: width var(--transition), left var(--transition);
  box-shadow: 0 0 8px var(--electric);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 60%;
  left: 20%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--near-black);
  box-shadow: 0 4px 24px rgba(55, 138, 221, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(55, 138, 221, 0.55);
}

.btn-outline {
  border: 1px solid var(--glass-border);
  color: var(--white);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--electric);
  background: rgba(55, 138, 221, 0.15);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  color: var(--sky);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover { color: var(--white); }

.nav-cta { margin-left: 0.5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* —— Hero —— */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55, 138, 221, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 138, 221, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
  z-index: 2;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-1 { top: -20%; right: -10%; background: var(--electric); }
.hero-glow-2 { bottom: -30%; left: -15%; background: var(--corp-blue); }

.hero-content {
  position: relative;
  z-index: 10;
  width: var(--container);
  margin-inline: auto;
  padding-block: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--sky);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 1.25rem;
}

.hero h1 .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(230, 241, 251, 0.8);
  max-width: 680px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
}

.stat-item {
  padding: 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-number span { color: var(--electric); }

.stat-label {
  font-size: 0.8rem;
  color: var(--sky);
  margin-top: 0.35rem;
}

.hero-floats {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(380px, 35vw);
  display: none;
  z-index: 5;
}

@media (min-width: 1100px) {
  .hero-floats { display: block; }
}

.float-card {
  position: absolute;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
  animation: float 6s ease-in-out infinite;
}

.float-card:nth-child(1) { top: 0; right: 0; animation-delay: 0s; }
.float-card:nth-child(2) { top: 120px; right: 60px; animation-delay: 1s; }
.float-card:nth-child(3) { top: 240px; right: 10px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-card i {
  font-size: 1.5rem;
  color: var(--electric);
  margin-bottom: 0.5rem;
}

.float-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--white);
}

.float-card span {
  font-size: 0.75rem;
  color: var(--sky);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.trust-badges p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(230, 241, 251, 0.5);
  width: 100%;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.trust-logos span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(230, 241, 251, 0.4);
  letter-spacing: 0.05em;
}

/* —— Glass Cards —— */
.glass-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(16px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(55, 138, 221, 0.4);
}

.glass-card:hover::before { opacity: 1; }

/* —— Services —— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(55, 138, 221, 0.25), rgba(24, 95, 165, 0.15));
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--electric);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(230, 241, 251, 0.7);
  margin-bottom: 1rem;
}

.service-benefits {
  margin-bottom: 1.25rem;
}

.service-benefits li {
  font-size: 0.85rem;
  color: var(--sky);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--electric);
  font-weight: 700;
}

.service-cta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--electric);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-cta:hover { color: var(--sky); gap: 0.6rem; }

/* —— About —— */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 400px;
}

.about-3d-box {
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin-inline: auto;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: relative;
  transform-style: preserve-3d;
  animation: rotate3d 20s linear infinite;
  box-shadow: var(--shadow-glow);
}

@keyframes rotate3d {
  0% { transform: perspective(800px) rotateY(0deg) rotateX(5deg); }
  100% { transform: perspective(800px) rotateY(360deg) rotateX(5deg); }
}

.about-3d-inner {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(133, 183, 235, 0.3);
  border-radius: calc(var(--radius-lg) - 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.about-3d-inner i { font-size: 3rem; color: var(--electric); }

.timeline {
  margin-top: 3rem;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--electric), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--electric);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--glow);
}

.timeline-item h4 {
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 0.35rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: rgba(230, 241, 251, 0.65);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.metric-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.metric-box .num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--electric);
}

/* —— Why Choose —— */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(55, 138, 221, 0.2), transparent);
  font-size: 1.75rem;
  color: var(--electric);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.comparison-section {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.compare-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.compare-card.highlight {
  background: linear-gradient(145deg, rgba(55, 138, 221, 0.15), rgba(4, 44, 83, 0.5));
  border-color: var(--electric);
  box-shadow: var(--shadow-glow);
}

.compare-card h4 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  color: var(--white);
}

.compare-card ul li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(230, 241, 251, 0.75);
  padding-left: 1.5rem;
  position: relative;
}

.compare-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--electric);
}

/* —— Industries —— */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.industry-tile {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}

.industry-tile:hover {
  background: rgba(55, 138, 221, 0.12);
  border-color: var(--electric);
  transform: scale(1.03);
}

.industry-tile i {
  font-size: 2rem;
  color: var(--electric);
}

.industry-tile span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

/* —— Global —— */
.global-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.globe-container {
  position: relative;
  aspect-ratio: 1;
  max-width: 450px;
  margin-inline: auto;
}

.globe-svg {
  width: 100%;
  height: 100%;
  animation: globeSpin 30s linear infinite;
}

@keyframes globeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.globe-ring {
  position: absolute;
  inset: -10%;
  border: 1px dashed rgba(133, 183, 235, 0.25);
  border-radius: 50%;
  animation: globeSpin 20s linear infinite reverse;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.region-tag {
  padding: 0.5rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sky);
  transition: var(--transition);
}

.region-tag:hover {
  border-color: var(--electric);
  color: var(--white);
  box-shadow: 0 0 20px rgba(55, 138, 221, 0.2);
}

.global-features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.global-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.global-feature i {
  font-size: 1.25rem;
  color: var(--electric);
  margin-top: 0.15rem;
}

/* —— Process —— */
.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--corp-blue), var(--electric));
  opacity: 0.4;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.process-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  background: var(--gradient-card);
  border: 2px solid var(--electric);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.process-step:hover .process-num {
  transform: scale(1.1);
  background: rgba(55, 138, 221, 0.25);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.8rem;
  color: rgba(230, 241, 251, 0.6);
  line-height: 1.5;
}

/* —— Testimonials —— */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin-inline: auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 2rem;
}

.testimonial-inner {
  text-align: center;
  padding: 3rem 2rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--electric);
  object-fit: cover;
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(230, 241, 251, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--sky);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--electric);
  border-color: var(--electric);
  color: var(--near-black);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
  cursor: pointer;
  padding: 0;
  border: none;
}

.slider-dot.active {
  background: var(--electric);
  width: 24px;
  border-radius: 4px;
}

/* —— Case Studies —— */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.case-card {
  overflow: hidden;
}

.case-header {
  height: 160px;
  background: linear-gradient(135deg, var(--corp-blue), var(--navy));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
}

.case-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 27, 42, 0.9));
}

.case-header h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  color: var(--white);
}

.case-body { padding: 1.5rem 2rem 2rem; }

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}

.case-metric {
  text-align: center;
  padding: 0.75rem;
  background: rgba(55, 138, 221, 0.1);
  border-radius: 10px;
}

.case-metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--electric);
}

.case-metric span {
  font-size: 0.7rem;
  color: var(--sky);
  text-transform: uppercase;
}

/* —— Tech Stack —— */
.tech-marquee {
  overflow: hidden;
  padding: 2rem 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.tech-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.tech-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 100px;
  padding: 1.25rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.tech-item:hover {
  border-color: var(--electric);
  transform: translateY(-4px);
}

.tech-item i {
  font-size: 2rem;
  color: var(--electric);
}

.tech-item span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

/* —— FAQ —— */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--electric); }

.faq-question i {
  transition: transform var(--transition);
  color: var(--electric);
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: rgba(230, 241, 251, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 300px; }

/* —— CTA —— */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-box {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem);
  background: linear-gradient(135deg, rgba(24, 95, 165, 0.3), rgba(4, 44, 83, 0.6));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(55, 138, 221, 0.15) 0%, transparent 50%);
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10%, 10%); }
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-box p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(230, 241, 251, 0.8);
  position: relative;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

/* —— Footer —— */
.footer {
  background: linear-gradient(180deg, var(--near-black), #061018);
  border-top: 1px solid var(--glass-border);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(230, 241, 251, 0.65);
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul a {
  font-size: 0.9rem;
  color: rgba(230, 241, 251, 0.65);
}

.footer ul a:hover { color: var(--electric); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--sky);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--electric);
  color: var(--near-black);
  border-color: var(--electric);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--white);
  font-size: 0.9rem;
}

.newsletter-form input::placeholder { color: rgba(230, 241, 251, 0.4); }

.newsletter-form input:focus {
  outline: none;
  border-color: var(--electric);
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cert-badge {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--sky);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(230, 241, 251, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover { color: var(--electric); }

/* —— FAB —— */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 900;
  box-shadow: 0 8px 32px rgba(55, 138, 221, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.fab.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab:hover {
  transform: translateY(-4px) scale(1.05);
}

/* —— Solutions teaser —— */
.solutions-banner {
  background: linear-gradient(90deg, rgba(4, 44, 83, 0.5), rgba(24, 95, 165, 0.2));
  border-block: 1px solid var(--glass-border);
  padding: 2rem 0;
}

.solutions-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* —— Background sections —— */
.bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(55, 138, 221, 0.08), transparent),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(24, 95, 165, 0.1), transparent);
  pointer-events: none;
  z-index: 0;
}

.section > .container { position: relative; z-index: 1; }

/* —— Responsive —— */
@media (max-width: 1024px) {
  .about-grid,
  .global-wrap,
  .comparison-section { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .process-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
    gap: 0.5rem;
    transition: right var(--transition);
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 0.75rem 0; font-size: 1rem; }
  .nav-cta { margin-left: 0; margin-top: 1rem; width: 100%; }
  .hamburger { display: flex; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .metrics-row { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .case-metrics { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
