/* ══════════════════════════════════════════
   ITProz Sdn Bhd — Main Stylesheet
   ══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --red: #C0392B;
  --red-mid: #E84040;
  --red-light: #FF6B6B;
  --blue-deep: #0B1629;
  --blue-dark: #0D1F3C;
  --blue-acc: #2563EB;
  --blue-glow: #3B82F6;
  --white: #ffffff;
  --off: #F8F9FC;
  --g100: #F1F4F9;
  --g200: #E2E8F0;
  --g400: #94A3B8;
  --g600: #475569;
  --g800: #1E293B;
  --font: 'DM Sans', sans-serif;
  --font2: 'Sora', sans-serif;
  --rsm: 8px;
  --rmd: 12px;
  --rlg: 18px;
  --tr: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--g800);
  overflow-x: hidden;
  padding-top: 68px;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0B1629; }
::-webkit-scrollbar-thumb { background: var(--red-mid); border-radius: 2px; }

img { display: block; max-width: 100%; }
a, button { cursor: pointer; }
ul { list-style: none; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  transition: background 0.4s, box-shadow 0.4s;
}

#nav.dark {
  background: rgba(11, 22, 41, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}

#nav.light {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nlogo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.nlogo img { height: 34px; }

.nlogo-txt {
  font-family: var(--font2);
  font-size: 19px;
  font-weight: 600;
}

#nav.dark .nlogo-txt { color: #fff; }
#nav.light .nlogo-txt { color: var(--g800); }

.nlinks {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nlinks a {
  font-size: 13.5px;
  font-weight: 400;
  padding: 7px 13px;
  border-radius: 6px;
  transition: all var(--tr);
  white-space: nowrap;
  text-decoration: none;
  border: none;
  background: none;
  font-family: var(--font);
  cursor: pointer;
}

#nav.dark .nlinks a { color: rgba(255, 255, 255, 0.72); }
#nav.dark .nlinks a:hover { color: #fff; background: rgba(255, 255, 255, 0.09); }
#nav.dark .nlinks a.on { color: #fff; }
#nav.light .nlinks a { color: var(--g600); }
#nav.light .nlinks a:hover { color: var(--g800); background: var(--g100); }
#nav.light .nlinks a.on { color: var(--blue-acc); }

.ncta {
  background: var(--red-mid) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 7px !important;
  transition: all var(--tr) !important;
}

.ncta:hover {
  background: var(--red) !important;
  box-shadow: 0 0 20px rgba(232, 64, 64, 0.4) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 9100;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#nav.dark .hamburger span { background: #fff; }
#nav.light .hamburger span { background: var(--g800); }

#nav.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav.open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU PANEL ── */
#mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8999;
  overflow-y: auto;
  flex-direction: column;
  padding: 12px 5vw 40px;
  gap: 4px;
}

#mobile-menu.open { display: flex; }

#mobile-menu.dark-menu {
  background: rgba(11, 22, 41, 0.97);
  backdrop-filter: blur(20px);
}

#mobile-menu.light-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#mobile-menu a {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  padding: 13px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font);
  transition: background var(--tr), color var(--tr);
}

#mobile-menu.dark-menu a { color: rgba(255, 255, 255, 0.75); }
#mobile-menu.dark-menu a:hover,
#mobile-menu.dark-menu a.on { color: #fff; background: rgba(255, 255, 255, 0.08); }
#mobile-menu.light-menu a { color: var(--g600); }
#mobile-menu.light-menu a:hover,
#mobile-menu.light-menu a.on { color: var(--g800); background: var(--g100); }

#mobile-menu .mob-cta {
  margin-top: 8px;
  background: var(--red-mid) !important;
  color: #fff !important;
  text-align: center;
  border-radius: 8px !important;
  font-weight: 500;
}

#mobile-menu .mob-cta:hover { background: var(--red) !important; }

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  min-height: calc(100dvh - 68px);
  display: flex;
  align-items: center;
  padding: 48px 5vw 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #060e1f 0%, #0B1629 40%, #0d1f3c 70%, #140820 100%);
}

#pcanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-glow-r {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-b {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 26px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-light);
}

.hero h1 {
  font-family: var(--font2);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--red-light), #FF8C42, var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.78;
  max-width: 480px;
  margin-bottom: 38px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-mid);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  font-family: var(--font);
  transition: all var(--tr);
  box-shadow: 0 4px 22px rgba(232, 64, 64, 0.32);
  text-decoration: none;
}

.btn-red:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 64, 64, 0.45);
}

.btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font);
  transition: all var(--tr);
  text-decoration: none;
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 32px;
}

.hs {
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.hs:first-child { padding-left: 0; }
.hs:last-child { border-right: none; }
.hs:not(:first-child) { padding-left: 24px; }

.hs-n {
  font-family: var(--font2);
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.hs-n sup {
  font-size: 0.95rem;
  color: var(--red-light);
  vertical-align: super;
}

.hs-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 5px;
  letter-spacing: 0.04em;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 480px;
}

.hero-img-main {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--rlg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-img-float {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--rmd);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.hero-badge-float {
  position: absolute;
  top: 24px;
  right: -16px;
  background: rgba(11, 22, 41, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
}

.hbf-n {
  font-family: var(--font2);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--red-light);
}

.hbf-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ══════════════ SECTION COLOURS ══════════════ */
.sw { background: var(--white); }
.so { background: var(--off); }
.sd { background: var(--blue-deep); }
.sg { background: var(--g800); }
.sp { padding: 96px 5vw; }
.sp-sm { padding: 64px 5vw; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-mid);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--red-mid);
}

.eyebrow.bl { color: var(--blue-acc); }
.eyebrow.bl::before { background: var(--blue-acc); }
.eyebrow.wh { color: rgba(255, 255, 255, 0.5); }
.eyebrow.wh::before { background: rgba(255, 255, 255, 0.25); }

h2.td {
  font-family: var(--font2);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--g800);
  margin-bottom: 14px;
}

h2.td em { font-style: normal; color: var(--red-mid); }
h2.td em.bl { color: var(--blue-acc); }

h2.tw {
  font-family: var(--font2);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 14px;
}

h2.tw em { font-style: normal; color: var(--red-light); }

.sub-d {
  font-size: 18px;
  color: var(--g400);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 50px;
}

.sub-w {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 50px;
}

.dvd {
  height: 1px;
  background: var(--g200);
  margin: 0 5vw;
}

/* ══════════════ ABOUT ══════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 18px;
  color: var(--g600);
  line-height: 1.82;
  margin-bottom: 16px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.apoint {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 18px;
  background: var(--g100);
  border-radius: var(--rsm);
  border-left: 3px solid var(--red-mid);
  transition: all var(--tr);
}

.apoint:hover {
  background: var(--g200);
  transform: translateX(4px);
}

.apoint p {
  font-size: 16.5px;
  color: var(--g600);
  line-height: 1.6;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vmv {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--rmd);
  padding: 22px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: all var(--tr);
}

.vmv:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.11);
  transform: translateY(-2px);
}

.vmv-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-mid);
  margin-bottom: 7px;
}

.vmv-txt {
  font-size: 16.5px;
  color: var(--g600);
  line-height: 1.65;
}

.team-tile {
  background: linear-gradient(135deg, var(--blue-deep), #1a1020);
  border-radius: var(--rmd);
  padding: 22px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.team-big {
  font-family: var(--font2);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--red-light);
}

.team-small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.09em;
  margin-top: 4px;
}

.about-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--rlg);
  margin-top: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

/* ══════════════ SERVICES ══════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--rlg);
  padding: 34px 28px;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}

.svc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-mid), var(--blue-acc));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}

.svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  border-color: transparent;
}

.svc:hover::after { transform: scaleX(1); }

.svc-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--rsm);
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.1), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(192, 57, 43, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all var(--tr);
}

.svc:hover .svc-ico { box-shadow: 0 0 20px rgba(192, 57, 43, 0.22); }

.svc h3 {
  font-size: 18.5px;
  font-weight: 500;
  color: var(--g800);
  margin-bottom: 9px;
}

.svc p {
  font-size: 16.5px;
  color: var(--g400);
  line-height: 1.7;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 500;
  color: var(--red-mid);
  margin-top: 16px;
  transition: gap var(--tr);
  cursor: pointer;
  text-decoration: none;
}

.svc:hover .svc-link { gap: 9px; }

/* ══════════════ PRODUCT CARDS ══════════════ */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pcard {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--rlg);
  padding: 28px 24px;
  transition: all var(--tr);
}

.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.14);
}

.pbadge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-acc);
}

.pcard h3 {
  font-size: 18.5px;
  font-weight: 500;
  color: var(--g800);
  margin-bottom: 8px;
}

.pcard p {
  font-size: 16.5px;
  color: var(--g400);
  line-height: 1.65;
}

.ptags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.ptag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--g100);
  color: var(--g600);
}

/* STATS STRIP */
.sstrip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--g200);
  border-radius: var(--rmd);
  overflow: hidden;
  margin-top: 32px;
}

.ssi {
  background: #fff;
  padding: 20px 16px;
  text-align: center;
  transition: background var(--tr);
}

.ssi:hover { background: var(--g100); }

.ssi-n {
  font-family: var(--font2);
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--blue-acc);
}

.ssi-l {
  font-size: 11px;
  color: var(--g400);
  margin-top: 3px;
}

/* ══════════════ 3D SECTION ══════════════ */
.t3banner {
  background: linear-gradient(135deg, #060e1f, #1a1020);
  border-radius: var(--rlg);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.t3banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.15), transparent 65%);
}

.t3banner::after {
  content: '3D';
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font2);
  font-size: 9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  line-height: 1;
}

.ep {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  background: rgba(232, 64, 64, 0.12);
  border: 1px solid rgba(232, 64, 64, 0.25);
  color: var(--red-light);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

.epdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.t3banner h2 {
  font-family: var(--font2);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.t3banner p {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.52);
  max-width: 600px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.t3cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.t3c {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rmd);
  padding: 26px 22px;
  transition: all var(--tr);
}

.t3c:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 64, 64, 0.28);
  transform: translateY(-3px);
}

.t3cn {
  font-family: var(--font2);
  font-size: 2.3rem;
  font-weight: 300;
  color: rgba(232, 64, 64, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.t3c h3 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.t3c p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.43);
  line-height: 1.65;
}

.t3uses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.t3u {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--rsm);
  padding: 20px;
  transition: all var(--tr);
}

.t3u:hover { background: rgba(255, 255, 255, 0.06); }

.t3ul {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 8px;
}

.t3u p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.43);
  line-height: 1.6;
}

/* ══════════════ SOLUTIONS ══════════════ */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.solc {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--rlg);
  padding: 34px 30px;
  transition: all var(--tr);
}

.solc:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(37, 99, 235, 0.18);
}

.soln {
  font-family: var(--font2);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
  margin-bottom: 14px;
}

.solc h3 {
  font-size: 19.5px;
  font-weight: 500;
  color: var(--g800);
  margin-bottom: 9px;
}

.solc > p {
  font-size: 16.5px;
  color: var(--g400);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sl li {
  font-size: 16.5px;
  color: var(--g600);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.sl li::before {
  content: '→';
  color: var(--blue-acc);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

/* ══════════════ INDUSTRIES ══════════════ */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.indc {
  background: var(--g100);
  border: 1px solid var(--g200);
  border-radius: var(--rmd);
  padding: 24px 18px;
  text-align: center;
  transition: all var(--tr);
}

.indc:hover {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.18);
}

.indc-ico {
  font-size: 26px;
  margin-bottom: 10px;
}

.indc-l {
  font-size: 16.5px;
  color: var(--g600);
}

/* ══════════════ CTA ══════════════ */
.cta-wrap {
  background: linear-gradient(135deg, #060e1f 0%, #1a1020 60%, #0d1f3c 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 5vw;
}

.cta-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12), transparent 65%);
}

.cta-in {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-in h2 {
  font-family: var(--font2);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 14px;
}

.cta-in p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
  margin-bottom: 34px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--g800);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  font-family: var(--font);
  transition: all var(--tr);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.22);
}

/* ══════════════ INNER HERO ══════════════ */
.ihero {
  background: linear-gradient(135deg, #060e1f, #0d1f3c);
  padding: 60px 5vw 80px;
  position: relative;
  overflow: hidden;
}

.ihero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 65%);
}

.ihero h1 {
  font-family: var(--font2);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.ihero h1 em { font-style: normal; color: var(--red-light); }

.ihero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.52);
  max-width: 600px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.ihero-img {
  position: absolute;
  right: 5vw;
  bottom: 0;
  width: 380px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--rlg) var(--rlg) 0 0;
  opacity: 0.25;
  z-index: 0;
}

/* ══════════════ TIMELINE ══════════════ */
.tl {
  padding-left: 28px;
  border-left: 2px solid var(--g200);
}

.tli {
  position: relative;
  margin-bottom: 30px;
}

.tld {
  position: absolute;
  left: -37px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red-mid);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--red-mid);
}

.tli h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--g800);
  margin-bottom: 5px;
}

.tli p {
  font-size: 16.5px;
  color: var(--g400);
  line-height: 1.65;
}

/* ══════════════ PARTNERS ══════════════ */
.pchips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pchip {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 16.5px;
  color: var(--g600);
  transition: all var(--tr);
}

.pchip:hover {
  border-color: rgba(37, 99, 235, 0.28);
  color: var(--blue-acc);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.cgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.ccard {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--rsm);
  padding: 18px 20px;
  transition: all var(--tr);
}

.ccard:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cname {
  font-size: 17px;
  font-weight: 500;
  color: var(--g800);
  margin-bottom: 3px;
}

.ctype {
  font-size: 15px;
  color: var(--blue-acc);
}

/* ══════════════ TESTIMONIALS ══════════════ */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tc {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--rlg);
  padding: 28px;
  transition: all var(--tr);
  border-top: 3px solid var(--red-mid);
}

.tc:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.tc p {
  font-size: 17px;
  color: var(--g600);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.tc-auth {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--red-mid);
}

/* ══════════════ CONTACT ══════════════ */
.cgrid2 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.cinfo h3 {
  font-family: var(--font2);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--g800);
  margin-bottom: 12px;
}

.cinfo > p {
  font-size: 17px;
  color: var(--g400);
  line-height: 1.8;
  margin-bottom: 32px;
}

.crows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.crow {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cico {
  width: 40px;
  height: 40px;
  border-radius: var(--rsm);
  background: var(--g100);
  border: 1px solid var(--g200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.clbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-mid);
  margin-bottom: 2px;
}

.cval {
  font-size: 17px;
  color: var(--g600);
}

.fbox {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--rlg);
  padding: 38px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.ftitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--g800);
  margin-bottom: 26px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg { margin-bottom: 16px; }

.fg label {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--g600);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--g100);
  border: 1.5px solid var(--g200);
  color: var(--g800);
  border-radius: var(--rsm);
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 17px;
  transition: border var(--tr), box-shadow var(--tr);
  outline: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue-acc);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.fg textarea {
  resize: none;
  height: 100px;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue-acc);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  transition: all var(--tr);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
  cursor: pointer;
}

.btn-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
}

/* ══════════════ FOOTER ══════════════ */
footer {
  background: var(--g800);
  padding: 60px 5vw 26px;
}

.fgrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.fbrand img {
  height: 30px;
  margin-bottom: 12px;
   
  opacity: 0.8;
}

.fbrand p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.33);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 8px;
}

.fcol h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 14px;
}

.fcol ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fcol a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.48);
  transition: color var(--tr);
  cursor: pointer;
  text-decoration: none;
}

.fcol a:hover { color: rgba(255, 255, 255, 0.9); }

.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.23);
}

/* ══════════════ GSAP INITIAL STATES ══════════════ */
@media (min-width: 601px) {
  .g-fade { opacity: 0; }
  .g-up { opacity: 0; transform: translateY(40px); }
  .g-left { opacity: 0; transform: translateX(-40px); }
  .g-right { opacity: 0; transform: translateX(40px); }
  .g-scale { opacity: 0; transform: scale(0.92); }
}

@media (max-width: 600px) {
  .g-fade, .g-up, .g-left, .g-right, .g-scale {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { align-items: flex-start; }
}

@media (max-width: 960px) {
  .nlinks { display: none !important; }
  .hamburger { display: flex !important; }
  .about-grid, .cgrid2 { grid-template-columns: 1fr; }
  .svc-grid, .pgrid, .t3cards, .tgrid { grid-template-columns: 1fr 1fr; }
  .sol-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .cgrid { grid-template-columns: repeat(2, 1fr); }
  .fgrid { grid-template-columns: 1fr 1fr; }
  .sstrip { grid-template-columns: repeat(3, 1fr); }
  .t3uses { grid-template-columns: 1fr; }
  .col2-inline { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  #nav { padding: 0 4vw; }

  .hero {
    padding: 32px 4vw 52px;
    min-height: 0 !important;
    align-items: flex-start;
  }

  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(1.85rem, 7.5vw, 2.8rem); }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; gap: 10px; margin-bottom: 36px; }
  .hero-btns .btn-red,
  .hero-btns .btn-outline-w { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 24px; }
  .hs { border-right: none !important; padding: 0 !important; }
  .hs:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.09) !important;
    padding-right: 12px !important;
  }

  .sp { padding: 52px 4vw; }
  .sp-sm { padding: 36px 4vw; }
  .cta-wrap { padding: 52px 4vw; }
  .ihero { padding: 36px 4vw 48px; }
  .ihero-img { display: none; }
  .ihero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:2fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1.4fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-column:1/-1"] { grid-column: auto !important; }

  .svc-grid, .pgrid, .t3cards, .tgrid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .cgrid2 { grid-template-columns: 1fr; gap: 32px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .frow { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .sstrip { grid-template-columns: repeat(2, 1fr); }
  .sol-grid { grid-template-columns: 1fr; }
  .cgrid { grid-template-columns: 1fr 1fr; }
  .t3uses { grid-template-columns: 1fr; }

  .fbot { flex-direction: column; gap: 8px; text-align: center; }
  .fbox { padding: 22px 16px; }
  .t3banner { padding: 28px 20px; }
  .t3banner::after { display: none; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.75rem; }
  .hs-n { font-size: 1.4rem; }
  .sstrip { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .cgrid { grid-template-columns: 1fr !important; }
}