*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== LIGHT MODE THEME ===== */
:root {
  /* Light background palette */
  --light-bg: #f5f7fe;
  --light-surface: #ffffff;
  --light-card: #f8faff;
  --light-border: #dce3f0;
  --light-accent-soft: #eef2ff;
  /* Core brand colors for light mode (adjusted for readability) */
  --axtes-blue: #1a3a8c;
  --axtes-bright: #2b4bcd;
  --red: #c41e3a;
  --red-soft: #fce8eb;
  --border: rgba(27, 55, 135, 0.15);
  --muted: #4a5568;
  --card: rgba(255, 255, 255, 0.85);
  --text: #1a1f2e;
  --text-light: #2d3748;
  --glow-light: rgba(43, 75, 205, 0.08);
  --T: .35s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--light-bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  cursor: none
}

/* custom cursor - refined for light mode */
#cur {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  transition: width .2s, height .2s
}

#cur-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--axtes-bright);
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
  opacity: 0.65
}

/* stars - light mode adaptation: subtle and elegant */
#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #7c8db0;
  opacity: 0;
  animation: twinkle var(--d) ease-in-out infinite
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0
  }
  50% {
    opacity: var(--op, 0.25)
  }
}

/* grid background - light mode subtle lines */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(43, 75, 205, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(43, 75, 205, 0.06) 1px, transparent 1px);
  background-size: 60px 60px
}

.glow-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(43, 75, 205, 0.08) 0%, transparent 70%);
  animation: gp 6s ease-in-out infinite
}

@keyframes gp {
  0%, 100% {
    opacity: 0.5
  }
  50% {
    opacity: 1
  }
}

.scan {
  position: fixed;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(43, 75, 205, 0.3), rgba(196, 30, 58, 0.25), transparent);
  animation: scanDown 11s linear infinite;
  opacity: 0.4
}

@keyframes scanDown {
  0% {
    top: 0%
  }
  100% {
    top: 100%
  }
}

.corner {
  position: fixed;
  width: 48px;
  height: 48px;
  border-color: rgba(43, 75, 205, 0.2);
  border-style: solid;
  z-index: 5;
  pointer-events: none
}

.c-tl {
  top: 14px;
  left: 14px;
  border-width: 2px 0 0 2px
}

.c-tr {
  top: 14px;
  right: 14px;
  border-width: 2px 2px 0 0
}

.c-bl {
  bottom: 14px;
  left: 14px;
  border-width: 0 0 2px 2px
}

.c-br {
  bottom: 14px;
  right: 14px;
  border-width: 0 2px 2px 0
}

/* nav - light mode with glassmorphism */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 70px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none
}

.nav-logo-img {
  height: 38px;
  width: auto;
  mix-blend-mode: normal;
  filter: brightness(0.85) saturate(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  list-style: none
}

.nav-links a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #4a5568;
  text-decoration: none;
  transition: color var(--T);
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--T)
}

.nav-links a:hover {
  color: #1a2c5e
}

.nav-links a:hover::after {
  transform: scaleX(1)
}

.nav-cta {
  background: linear-gradient(135deg, var(--axtes-blue), var(--axtes-bright));
  color: #fff !important;
  padding: .48rem 1.1rem;
  border-radius: 5px;
  transition: box-shadow var(--T), transform var(--T) !important
}

.nav-cta::after {
  display: none !important
}

.nav-cta:hover {
  box-shadow: 0 8px 22px rgba(27, 55, 135, 0.2);
  transform: translateY(-2px)
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #4a5568;
  border-radius: 2px
}

/* mobile menu light */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem
}

.mob-menu.open {
  display: flex
}

.mob-menu a {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  text-decoration: none;
  letter-spacing: .1em;
  transition: color var(--T)
}

.mob-menu a:hover {
  color: var(--axtes-bright)
}

.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.4rem;
  color: #4a5568;
  cursor: pointer;
  background: none;
  border: none
}

/* ── HERO LIGHT MODE ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 100px clamp(1.5rem, 5vw, 4rem) 60px;
  overflow: hidden
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 50% 55%, rgba(43, 75, 205, 0.1) 0%, transparent 70%);
  animation: gp 6s ease-in-out infinite
}

.hero-inner {
  max-width: 1140px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.7rem
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red-soft);
  border: 1px solid rgba(196, 30, 58, 0.25);
  border-radius: 100px;
  padding: .32rem .85rem;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  width: fit-content;
  opacity: 0;
  animation: fadeUp .7s ease .3s forwards
}

.bdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.5s ease-in-out infinite
}

@keyframes blink {
  0%, 100% {
    opacity: 1
  }
  50% {
    opacity: .3
  }
}

.hero-h1 {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.06;
  opacity: 0;
  animation: fadeUp .8s ease .5s forwards
}

.hero-h1 .g {
  background: linear-gradient(135deg, #1a2c5e 20%, var(--axtes-bright) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-h1 .r {
  color: var(--red);
  -webkit-text-fill-color: var(--red)
}

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--text-light);
  max-width: 460px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp .8s ease .7s forwards
}

.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease .9s forwards
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--axtes-blue), var(--axtes-bright));
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: .78rem 1.7rem;
  border-radius: 6px;
  font-family: 'Orbitron', monospace;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform var(--T), box-shadow var(--T);
  position: relative;
  overflow: hidden
}

.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(27, 55, 135, 0.25)
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--axtes-blue);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: .78rem 1.7rem;
  border-radius: 6px;
  font-family: 'Orbitron', monospace;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color var(--T), color var(--T), box-shadow var(--T)
}

.btn-o:hover {
  border-color: var(--axtes-bright);
  color: var(--axtes-bright);
  box-shadow: 0 0 20px rgba(43, 75, 205, 0.15)
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp .8s ease 1.1s forwards
}

.snum {
  font-family: 'Orbitron', monospace;
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a2c5e;
  line-height: 1
}

.slabel {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted)
}

/* ── HERO RIGHT (logo unchanged but with light accent) ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1.2s ease .6s forwards
}

@keyframes fadeIn {
  to {
    opacity: 1
  }
}

.logo-scene {
  position: relative;
  width: min(460px, 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoFloat 6s ease-in-out infinite
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-13px)
  }
}

.logo-glow-halo {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 55% at 50% 55%, rgba(43, 75, 205, 0.2) 0%, rgba(43, 75, 205, 0.08) 40%, transparent 70%);
  filter: blur(22px);
  animation: gp 4s ease-in-out infinite
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: orbit var(--od) linear infinite;
  pointer-events: none;
  z-index: 2
}

@keyframes orbit {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(360deg)
  }
}

.logo-img-main {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 3;
  mix-blend-mode: normal;
  filter: brightness(0.9) saturate(1.05);
  animation: logoReveal 1.4s cubic-bezier(.4, 0, .2, 1) .7s both
}

@keyframes logoReveal {
  from {
    opacity: 0;
    filter: brightness(1.2) blur(8px)
  }
  to {
    opacity: 1;
    filter: brightness(0.9) saturate(1.05)
  }
}

.logo-glitch {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: multiply;
  width: 100%;
  height: auto;
  animation: glitch 9s ease-in-out 3s infinite;
  opacity: 0.35
}

@keyframes glitch {
  0%, 93%, 100% {
    opacity: 0;
    transform: none
  }
  94% {
    opacity: 0.5;
    transform: translate(-2px, 0);
    filter: hue-rotate(60deg)
  }
  95.5% {
    opacity: 0.3;
    transform: translate(3px, 1px);
    filter: hue-rotate(-30deg)
  }
  96.5% {
    opacity: 0.5;
    transform: translate(-1px, -1px)
  }
  97% {
    opacity: 0
  }
}

.logo-shimmer {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 15%, rgba(255, 255, 255, 0.5) 50%, transparent 85%);
  background-size: 220% 100%;
  animation: shimmerSweep 4s ease-in-out 2s infinite
}

@keyframes shimmerSweep {
  0% {
    background-position: -220% 0
  }
  100% {
    background-position: 220% 0
  }
}

.logo-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 5%, rgba(43, 75, 205, 0.7) 40%, rgba(80, 120, 240, 0.6) 50%, rgba(43, 75, 205, 0.7) 60%, transparent 95%);
  animation: logoScan 4.2s ease-in-out 1.5s infinite;
  opacity: 0
}

@keyframes logoScan {
  0% {
    top: 0%;
    opacity: 0
  }
  4% {
    opacity: 0.8
  }
  88% {
    opacity: .5
  }
  100% {
    top: 100%;
    opacity: 0
  }
}

.dot-ring {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--red);
  top: 5%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: 7;
  pointer-events: none;
  animation: dotRingPulse 2.2s ease-out 2.5s infinite;
  opacity: 0.7
}

@keyframes dotRingPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .8
  }
  100% {
    transform: translate(-50%, -50%) scale(3.2);
    opacity: 0
  }
}

.beam {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(43, 75, 205, 0.4), transparent);
  animation: beamFlash var(--bd) ease-in-out infinite;
  opacity: 0
}

@keyframes beamFlash {
  0%, 100% {
    opacity: 0
  }
  50% {
    opacity: 0.7
  }
}

/* ── SECTIONS LIGHT ADAPTATION ── */
section {
  position: relative;
  z-index: 2
}

.si {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem clamp(1.5rem, 5vw, 3rem)
}

.sl {
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .55rem
}

.sl::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red)
}

.sh {
  font-family: 'Orbitron', monospace;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: .9rem;
  color: #1a2c5e
}

.sh .g {
  background: linear-gradient(135deg, #1a2c5e 20%, var(--axtes-bright) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ssub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.75
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* services light cards */
#services {
  background: linear-gradient(180deg, transparent, var(--light-accent-soft), transparent)
}

.sg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2.8rem
}

.sc {
  background: var(--light-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.9rem 1.7rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--T), border-color var(--T), box-shadow var(--T);
  cursor: default;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.sc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--axtes-blue), var(--axtes-bright), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease
}

.sc:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 75, 205, 0.35);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.sc:hover::before {
  transform: scaleX(1)
}

.si-icon {
  width: 50px;
  height: 50px;
  border-radius: 9px;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  background: var(--light-accent-soft);
  border: 1px solid rgba(43, 75, 205, 0.2);
  color: #1a2c5e
}

.st {
  font-family: 'Orbitron', monospace;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  color: #1a2c5e
}

.sd {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7
}

.sa {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.1rem;
  font-size: .76rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--axtes-bright);
  font-weight: 600;
  text-decoration: none;
  transition: gap var(--T), color var(--T)
}

.sa:hover {
  gap: .8rem;
  color: var(--axtes-blue)
}

/* stats band light */
#sb {
  background: var(--light-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.sbi {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2.8rem clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center
}

.sbn {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: 900;
  color: #1a2c5e;
  line-height: 1;
  margin-bottom: .35rem
}

.sbn span {
  color: var(--red)
}

.sbl {
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted)
}

/* why section */
#why {}

.wi {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.wv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px
}

.whexgrid {
  position: relative;
  width: 280px;
  height: 280px
}

.hn {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 14px;
  background: var(--light-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  transition: transform var(--T), border-color var(--T), box-shadow var(--T);
  animation: hexFloat var(--hd) ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.hn:hover {
  transform: scale(1.12) !important;
  border-color: var(--axtes-bright);
  box-shadow: 0 0 22px rgba(43, 75, 205, 0.2);
}

@keyframes hexFloat {
  0%, 100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(var(--hy, -8px))
  }
}

.hc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--axtes-blue), var(--axtes-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 0 36px rgba(43, 75, 205, 0.3), 0 0 70px rgba(43, 75, 205, 0.15);
  animation: gp 3s ease-in-out infinite;
  color: #fff
}

.wp {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2rem
}

.wpi {
  display: flex;
  gap: .95rem;
  align-items: flex-start;
  padding: 1.1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color var(--T), background var(--T);
  background: var(--light-surface);
}

.wpi:hover {
  background: var(--light-accent-soft);
  border-color: var(--border)
}

.wpi-ic {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--light-accent-soft);
  border: 1px solid rgba(43, 75, 205, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #1a2c5e
}

.wpi-t h4 {
  font-family: 'Orbitron', monospace;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: .35rem;
  color: #1a2c5e
}

.wpi-t p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65
}

/* process light */
#process {
  background: linear-gradient(180deg, transparent, var(--light-accent-soft), transparent)
}

.ps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  margin-top: 2.8rem;
  position: relative
}

.ps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--axtes-bright), var(--red), var(--axtes-bright), transparent);
  z-index: 0;
  opacity: 0.4
}

.pc {
  background: var(--light-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform var(--T), border-color var(--T);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.pc:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 75, 205, 0.4);
}

.pn {
  font-family: 'Orbitron', monospace;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--red);
  margin-bottom: .9rem
}

.pic {
  font-size: 1.9rem;
  margin-bottom: .9rem;
  display: block;
  animation: stepFloat var(--sd, 4s) ease-in-out infinite
}

@keyframes stepFloat {
  0%, 100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-8px)
  }
}

.ptitle {
  font-family: 'Orbitron', monospace;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: .55rem;
  color: #1a2c5e
}

.pdesc {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.65
}

/* industries light */
.ig {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.2rem
}

.it {
  background: var(--light-surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .46rem 1.1rem;
  font-size: .8rem;
  letter-spacing: .07em;
  color: var(--muted);
  transition: border-color var(--T), color var(--T), background var(--T);
  cursor: default
}

.it:hover {
  border-color: var(--axtes-bright);
  color: var(--axtes-blue);
  background: var(--light-accent-soft);
}

/* testimonials light */
.tg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem
}

.tc {
  background: var(--light-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.9rem;
  transition: transform var(--T), border-color var(--T);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.tc:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 75, 205, 0.3);
}

.tq {
  font-size: 2rem;
  line-height: 1;
  color: var(--axtes-bright);
  margin-bottom: .9rem;
  font-family: 'Orbitron', monospace
}

.tt {
  font-size: .93rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.4rem
}

.ta {
  display: flex;
  align-items: center;
  gap: .75rem
}

.tav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--axtes-blue), var(--axtes-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: .75rem;
  font-weight: 700;
  color: #fff
}

.tn {
  font-size: .86rem;
  font-weight: 600;
  color: #1a2c5e
}

.tr {
  font-size: .73rem;
  color: var(--muted);
  letter-spacing: .04em
}

/* cta light */
#cta {
  background: linear-gradient(135deg, rgba(43, 75, 205, 0.06), rgba(27, 55, 135, 0.02));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.ctai {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem clamp(1.5rem, 5vw, 3rem)
}

.ctah {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  margin-bottom: 1.1rem;
  color: #1a2c5e
}

.ctah .g {
  background: linear-gradient(135deg, #1a2c5e 10%, var(--axtes-bright) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ctas {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2.3rem;
  line-height: 1.7
}

.ctaact {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap
}

/* contact form light */
input,
textarea,
select {
  background: var(--light-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .82rem 1.05rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: .93rem;
  color: #1a2f3f;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  width: 100%
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--axtes-bright);
  box-shadow: 0 0 0 3px rgba(43, 75, 205, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: #8e9aaf
}

select option {
  background: #fff;
  color: #1a2c5e
}

#csuc {
  color: #2c7a4d;
  font-weight: 500;
  background: #e6f4ea;
  padding: 0.6rem;
  border-radius: 40px;
}

/* footer light */
footer {
  background: var(--light-surface);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2
}

.fi {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3.5rem clamp(1.5rem, 5vw, 3rem) 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.8rem
}

.fb-name {
  font-family: 'Orbitron', monospace;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2c5e;
  margin-bottom: .35rem
}

.fb-name span {
  color: var(--red)
}

.fb-tag {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem
}

.fb p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 270px
}

.fct {
  font-family: 'Orbitron', monospace;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1a2c5e;
  margin-bottom: 1.1rem
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem
}

.fc ul a {
  font-size: .86rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--T)
}

.fc ul a:hover {
  color: var(--axtes-bright)
}

.fbot {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.4rem clamp(1.5rem, 5vw, 3rem);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .9rem
}

.fcopy {
  font-size: .75rem;
  color: #7c8db0;
  letter-spacing: .07em
}

.fsoc {
  display: flex;
  gap: .9rem
}

.soc {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--light-accent-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: var(--muted);
  text-decoration: none;
  transition: border-color var(--T), color var(--T), background var(--T)
}

.soc:hover {
  border-color: var(--axtes-bright);
  color: var(--axtes-bright);
  background: #eef2ff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }
  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center
  }
  .hero-actions {
    justify-content: center
  }
  .hero-stats {
    justify-content: center
  }
  .hero-right {
    display: none
  }
  .wi {
    grid-template-columns: 1fr
  }
  .wv {
    display: none
  }
  .ps {
    grid-template-columns: repeat(2, 1fr)
  }
  .ps::before {
    display: none
  }
  .sbi {
    grid-template-columns: repeat(2, 1fr)
  }
  .fi {
    grid-template-columns: 1fr 1fr
  }
  .nav-links {
    display: none
  }
  .nav-burger {
    display: flex
  }
}

@media(max-width: 560px) {
  .sbi {
    grid-template-columns: 1fr 1fr
  }
  .ps {
    grid-template-columns: 1fr
  }
  .fi {
    grid-template-columns: 1fr
  }
}