:root {
  --bg: #f2f5fb;
  --bg2: #ffffff;
  --bg3: #e6eaf4;
  --orange: #f47c20;
  --odim: rgba(244, 124, 32, 0.1);
  --oborder: rgba(244, 124, 32, 0.28);
  --text: #0d1526;
  --gray: #5e6e89;
  --light: #374151;
  --border: rgba(0, 0, 0, 0.09);
  --card: rgba(0, 0, 0, 0.035);
  --nav-bg: rgba(255, 255, 255, 0.93);
  --nav-border: rgba(0, 0, 0, 0.09);
  --s-bg: linear-gradient(135deg, #1e3db5, #0099d6);
  --s-col: #fff;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}
body.dark {
  --bg: #060a12;
  --bg2: #0b1120;
  --bg3: #111827;
  --text: #ffffff;
  --gray: #8a96a8;
  --light: #c8d0dc;
  --border: rgba(255, 255, 255, 0.07);
  --card: rgba(255, 255, 255, 0.04);
  --nav-bg: rgba(6, 10, 18, 0.85);
  --nav-border: rgba(255, 255, 255, 0.07);
  --s-bg: var(--orange);
  --s-col: #fff;
  --shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  transition:
    background 0.35s,
    color 0.35s;
}

/* CURSOR */
#cur {
  position: fixed;
  width: 12px;
  height: 12px;
  background: #f47c20;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s,
    height 0.25s;
}
#ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(244, 124, 32, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s;
}
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nav-border);
  transition: background 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo img {
  width: auto;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter 0.35s ease;
}
/* Dark mode: shift blue logo hue to orange (#F47C20) to match theme */
body.dark .nav-logo img {
  filter: hue-rotate(183deg) saturate(1.6) brightness(1.15);
}
.s-mark {
  width: 34px;
  height: 34px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #000;
  animation: logoGlow 3s ease-in-out infinite;
}
@keyframes logoGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(244, 124, 32, 0.4);
  }
  50% {
    box-shadow:
      0 0 24px rgba(244, 124, 32, 0.9),
      0 0 40px rgba(244, 124, 32, 0.3);
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--gray);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-contact {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray);
  align-items: center;
}
.nav-contact a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-contact a:hover {
  color: var(--orange);
}
.nav-cta {
  background: var(--orange);
  color: #000;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: none;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.nav-cta:hover::before {
  transform: translateX(100%);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 124, 32, 0.5);
}
.theme-icon-sun {
  display: none;
}
.body.dark .theme-icon-sun {
  display: inline;
}
.theme-icon-moon {
  display: inline;
}
body.dark .theme-icon-sun {
  display: inline;
}
body.dark .theme-icon-moon {
  display: none;
}
#theme-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 1rem;
  transition:
    background 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
  line-height: 1;
  color: var(--text);
}
#theme-btn:hover {
  background: var(--card);
  border-color: var(--oborder);
}
.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg2);
  cursor: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 4px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* BTNS */
.btn-primary {
  background: var(--orange);
  color: #000;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  cursor: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244, 124, 32, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--light);
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: none;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* SECTION BASE */
section {
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 16px;
  font-family: "Orbitron", sans-serif;
}
.section-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--orange);
}
.section-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

/* REVEAL */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.3s;
}
.reveal-d4 {
  transition-delay: 0.4s;
}
.reveal-d5 {
  transition-delay: 0.5s;
}

/* ═══ HERO ═══ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 5% 100px;
  z-index: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
  transition: transform 0.1s linear;
}
.orb1 {
  width: 600px;
  height: 600px;
  background: rgba(244, 124, 32, 0.1);
  top: -100px;
  right: -100px;
}
.orb2 {
  width: 400px;
  height: 400px;
  background: rgba(30, 80, 180, 0.08);
  bottom: 0;
  left: -100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--odim);
  border: 1px solid var(--oborder);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s ease 0.2s forwards;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: dotP 2s ease-in-out infinite;
}
@keyframes dotP {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.5);
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-tagline {
  font-family: "Orbitron", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.6s forwards;
}
.hero-tagline span {
  color: var(--orange);
}
.hero-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
}
.word span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordSlide 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes wordSlide {
  to {
    transform: translateY(0);
  }
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.1s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.3s forwards;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.7s ease 1.5s forwards;
  flex-wrap: wrap;
}
.stat-num {
  font-family: "Orbitron", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}
.stat-num span {
  color: var(--orange);
}
.stat-label {
  font-size: 0.65rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-family: "Orbitron", sans-serif;
}

/* Hero card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-card-main {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  width: 330px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(244, 124, 32, 0.06),
    transparent 60%
  );
  pointer-events: none;
}
.hc-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray);
  margin-bottom: 14px;
  font-family: "Orbitron", sans-serif;
}
.hc-metric {
  font-family: "Orbitron", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hc-sub {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 4px;
}
.hc-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 10px;
}
.hc-bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.hc-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--gray);
  margin-bottom: 4px;
}
.hc-bar-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}
.hc-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: var(--orange);
  width: 0;
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-badge {
  position: absolute;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  color: var(--light);
  white-space: nowrap;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.fb-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}
.fb1 {
  top: -18px;
  left: -48px;
  animation: fl1 4s ease-in-out infinite;
}
.fb2 {
  bottom: 16px;
  right: -56px;
  animation: fl2 5s ease-in-out infinite;
}
@keyframes fl1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fl2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* MARQUEE */
.marquee-section {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: mroll 32s linear infinite;
  padding: 15px 0;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes mroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
  white-space: nowrap;
  font-family: "Orbitron", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
  cursor: default;
}
.marquee-item:hover {
  color: var(--orange);
}
.mspark {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  flex-shrink: 0;
  animation: sparkP 2s ease-in-out infinite;
}
@keyframes sparkP {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.4);
  }
}

/* ═══ SERVICES (6 AD OPS PILLARS) ═══ */
#services {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.services-header {
  margin-bottom: 56px;
}
.services-header p {
  color: var(--gray);
  max-width: 500px;
  margin-top: 14px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--border);
}
.service-card {
  background: var(--bg2);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: none;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.service-card:hover::before {
  left: 160%;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 124, 32, 0.06),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  background: var(--bg3);
}
.service-card:hover::after {
  opacity: 1;
}
.sc-num {
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--odim);
  border: 1px solid var(--oborder);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.service-card:hover .sc-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 20px rgba(244, 124, 32, 0.3);
}
.sc-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.sc-body {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ═══ CORE LOOP ═══ */
#core-loop {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.loop-header {
  text-align: center;
  margin-bottom: 64px;
}
.loop-header .section-label {
  justify-content: center;
}
.loop-header .section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 12px;
}
.loop-header p {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}
.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.loop-step {
  background: var(--bg2);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.3s;
}
.loop-step:hover {
  background: var(--bg3);
}
.loop-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.loop-step:hover::before {
  transform: scaleX(1);
}
.ls-num {
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 16px;
}
.ls-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s;
}
.loop-step:hover .ls-icon {
  transform: scale(1.2) rotate(-6deg);
}
.ls-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ls-desc {
  color: var(--gray);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* ═══ REAL NUMBERS (CASE STUDY STATS) ═══ */
#stats-bar {
  padding: 80px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(244, 124, 32, 0.06),
    transparent 70%
  );
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.stats-top-label {
  text-align: center;
  margin-bottom: 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat-block {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.stat-block:last-child {
  border-right: none;
}
.sbn {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 40px rgba(244, 124, 32, 0.5);
}
.sbl {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  font-family: "Barlow", sans-serif;
}

/* ═══ CASE STUDY ═══ */
#case-study {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cs-left .section-title {
  margin-bottom: 16px;
}
.cs-left p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.cs-highlight {
  background: var(--odim);
  border: 1px solid var(--oborder);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 24px;
}
.cs-highlight p {
  color: var(--light);
  font-size: 0.88rem;
  font-style: italic;
  margin: 0;
}
.cs-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cs-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
  cursor: none;
}
.cs-card:hover {
  border-color: var(--oborder);
  transform: translateX(6px);
}
.cs-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  border-radius: 3px 0 0 3px;
}
.cs-card-label {
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.cs-card-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.cs-card-body {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ═══ TWO PILLAR MODEL ═══ */
#pillars {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.pillars-header {
  text-align: center;
  margin-bottom: 64px;
}
.pillars-header .section-label {
  justify-content: center;
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pillar-card {
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.pillar-card.p1 {
  background: linear-gradient(
    135deg,
    rgba(244, 124, 32, 0.1),
    rgba(244, 124, 32, 0.03)
  );
  border: 1px solid var(--oborder);
}
.pillar-card.p2 {
  background: var(--bg3);
  border: 1px solid var(--border);
}
.pillar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.pillar-pct {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(244, 124, 32, 0.4);
}
.pillar-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.pillar-subtitle {
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.pillar-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.pi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.pi-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.pi-desc {
  color: var(--gray);
  font-size: 0.75rem;
  line-height: 1.5;
}
.pillar-obj {
  background: var(--odim);
  border: 1px solid var(--oborder);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--light);
}
.pillar-obj strong {
  color: var(--orange);
}

/* ═══ WHY US ═══ */
#why {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
#why .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.why-left {
  position: sticky;
  top: 120px;
}
.why-left .section-title {
  margin-bottom: 20px;
}
.why-left p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  cursor: none;
  transform-style: preserve-3d;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(244, 124, 32, 0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-card:hover {
  border-color: var(--oborder);
  box-shadow: 0 0 30px rgba(244, 124, 32, 0.1);
}
.why-card:hover::before {
  transform: scaleX(1);
}
.wc-icon {
  font-size: 1.7rem;
  margin-bottom: 18px;
  transition: transform 0.4s;
  display: inline-block;
}
.why-card:hover .wc-icon {
  transform: scale(1.25) rotate(8deg);
}
.wc-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.wc-desc {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* ═══ AI COMPARISON ═══ */
#ai-section {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 64px;
}
.ai-col {
  border-radius: 16px;
  padding: 32px;
}
.ai-col.col-cant {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.ai-col.col-can {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.ai-col.col-us {
  background: linear-gradient(
    135deg,
    rgba(244, 124, 32, 0.1),
    rgba(244, 124, 32, 0.03)
  );
  border: 1px solid var(--oborder);
}
.ai-col-title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.ai-col.col-cant .ai-col-title {
  color: #f87171;
}
.ai-col.col-can .ai-col-title {
  color: var(--gray);
}
.ai-col.col-us .ai-col-title {
  color: var(--orange);
}
.ai-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.84rem;
  color: var(--light);
  line-height: 1.5;
}
.ai-item .ico {
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}
.ai-tagline {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
}

/* ═══ NETWORKS ═══ */
#networks {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.networks-header {
  text-align: center;
  margin-bottom: 48px;
}
.networks-header .section-label {
  justify-content: center;
}
.networks-header .section-title {
  text-align: center;
}
.net-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.net-tag {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.net-tag:hover {
  background: var(--odim);
  color: var(--orange);
  border-color: var(--oborder);
  transform: translateY(-3px);
}

/* ═══ TIERS ═══ */
#tiers {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.tiers-header {
  text-align: center;
  margin-bottom: 64px;
}
.tiers-header .section-label {
  justify-content: center;
}
.tiers-header .section-title {
  text-align: center;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tier-card {
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.tier-card,
.tier-card:visited,
.tier-card:hover,
.tier-card:active {
  color: var(--text);
  text-decoration: none;
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}
.tier-card.t1 {
  background: var(--bg3);
  border: 1px solid var(--border);
}
.tier-card.t2 {
  background: linear-gradient(135deg, rgba(244, 124, 32, 0.08), var(--bg3));
  border: 1px solid var(--oborder);
}
.tier-card.t3 {
  background: linear-gradient(135deg, rgba(244, 124, 32, 0.14), var(--bg3));
  border: 1px solid rgba(244, 124, 32, 0.5);
}
.tier-badge {
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.tier-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.tier-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--light);
}
.tier-item::before {
  content: "→";
  color: var(--orange);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.tier-highlight {
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ═══ TESTIMONIALS ═══ */
#testimonials {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.testi-header {
  text-align: center;
  margin-bottom: 64px;
}
.testi-header .section-label {
  justify-content: center;
}
.testi-header .section-title {
  text-align: center;
}
.testi-header p {
  color: var(--gray);
  margin-top: 12px;
  font-size: 0.95rem;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s;
  cursor: none;
}
.testi-card:hover {
  border-color: var(--oborder);
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(244, 124, 32, 0.08);
}
.testi-quote {
  padding-top: 20px;
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 18px;
  font-family: Georgia, serif;
}
.testi-text {
  color: var(--light);
  font-size: 0.86rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.testi-company {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.testi-person {
  font-size: 0.65rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
}

/* ═══ VISION ═══ */
#vision {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#vision::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 124, 32, 0.1), transparent 65%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: ctaP 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaP {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}
.vision-tagline {
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.vision-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
  cursor: none;
}
.vision-card:hover {
  border-color: var(--oborder);
  transform: translateY(-6px);
}
.vc-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.vc-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.vc-desc {
  color: var(--gray);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ═══ CTA ═══ */
#cta {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}
.cta-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  max-width: 700px;
  margin: 16px auto 20px;
}
.cta-title em {
  font-style: normal;
  color: var(--orange);
}
.cta-sub {
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cta-locations {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.loc-city {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.loc-address {
  font-size: 0.76rem;
  color: var(--gray);
  line-height: 1.5;
}
.loc-phone {
  font-size: 0.8rem;
  color: var(--light);
  text-decoration: none;
  margin-top: 4px;
}


/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 5%;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  text-decoration: none;
}
.footer-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: filter 0.35s ease;
}
/* Dark mode: same orange hue shift for footer logo */
body.dark .footer-logo-img {
  filter: hue-rotate(183deg) saturate(1.6) brightness(1.15);
}
.footer-logo .s-mark {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: #000;
}
.footer-copy {
  color: var(--gray);
  font-size: 0.76rem;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.82rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.social-icon:hover {
  background: var(--odim);
  color: var(--orange);
  border-color: var(--oborder);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .cs-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  #why .container {
    grid-template-columns: 1fr;
  }
  .why-left {
    position: static;
  }
  .testi-grid,
  .pillars-grid,
  .ai-grid,
  .tiers-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .nav-contact {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
  .loop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body {
    cursor: auto;
  }
  #cur,
  #ring {
    display: none;
  }
}
@media (max-width: 600px) {
  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  .cta-locations {
    gap: 24px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .net-grid {
    gap: 8px;
  }
}

/* Entrance animation — sections animate in without hiding if JS fails */
@keyframes sectionIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  animation: sectionIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.reveal-d1 {
  animation-delay: 0.1s;
}
.reveal-d2 {
  animation-delay: 0.2s;
}
.reveal-d3 {
  animation-delay: 0.3s;
}
.reveal-d4 {
  animation-delay: 0.4s;
}
.reveal-d5 {
  animation-delay: 0.5s;
}
/* CHATBOT */
#snap-chatbot {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 140;
}
.snap-chatbot-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), #ff9a46);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px rgba(244, 124, 32, 0.28);
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.snap-chatbot-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(244, 124, 32, 0.36);
}
.snap-chatbot-toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.12);
}
.snap-chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 90px;
  width: min(390px, calc(100vw - 24px));
  max-height: calc(100vh - 140px);
  background: rgba(11, 17, 32, 0.96);
  border: 1px solid var(--oborder);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
  backdrop-filter: blur(22px);

  display: flex;
  flex-direction: column;
}
#snap-chatbot.is-open .snap-chatbot-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.snap-chatbot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px;
  background: linear-gradient(
    180deg,
    rgba(244, 124, 32, 0.12),
    rgba(244, 124, 32, 0.02)
  );
  border-bottom: 1px solid var(--border);
}
.snap-chatbot-header h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0;
}
.snap-chatbot-header p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 6px;
}
.snap-chatbot-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.snap-chatbot-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: none;
}
.snap-chatbot-messages {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.snap-chatbot-msg {
  display: flex;
}
.snap-chatbot-msg.is-user {
  justify-content: flex-end;
}
.snap-chatbot-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  border: 1px solid var(--border);
}
.snap-chatbot-msg.is-bot .snap-chatbot-bubble {
  background: rgba(255, 255, 255, 0.04);
  color: var(--light);
  border-top-left-radius: 6px;
}
.snap-chatbot-msg.is-user .snap-chatbot-bubble {
  background: rgba(244, 124, 32, 0.14);
  border-color: var(--oborder);
  color: var(--white);
  border-top-right-radius: 6px;
}
.snap-chatbot-msg.is-typing .snap-chatbot-bubble {
  display: flex;
  gap: 6px;
  align-items: center;
}
.snap-chatbot-msg.is-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: block;
  animation: snapChatTyping 1s infinite ease-in-out;
}
.snap-chatbot-msg.is-typing span:nth-child(2) {
  animation-delay: 0.12s;
}
.snap-chatbot-msg.is-typing span:nth-child(3) {
  animation-delay: 0.24s;
}
@keyframes snapChatTyping {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}
.snap-chatbot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}
.snap-chatbot-chip {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--light);
  font-size: 0.7rem;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.snap-chatbot-chip:hover {
  border-color: var(--oborder);
  color: var(--orange);
  transform: translateY(-2px);
}
.snap-chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 0 16px 16px;
  flex-shrink: 0;
}
#snap-chatbot-input {
  width: 100%;
  min-height: 48px;
  max-height: 140px;
  resize: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--white);
  font: inherit;
  line-height: 1.5;
  outline: none;
}
#snap-chatbot-input::placeholder {
  color: #7b8798;
}
#snap-chatbot-input:focus {
  border-color: var(--oborder);
  box-shadow: 0 0 0 3px rgba(244, 124, 32, 0.1);
}
.snap-chatbot-send {
  align-self: end;
  height: 48px;
  padding: 0 16px;
  border: none;
  border-radius: 14px;
  background: var(--orange);
  color: #000;
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: none;
}
.snap-chatbot-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 16px 16px;
  flex-shrink: 0;
}
.snap-chatbot-link {
  font-size: 0.78rem;
  color: var(--orange);
  text-decoration: none;
}
.snap-chatbot-link:hover {
  color: #ff9a46;
}
@media (max-width: 640px) {
  #snap-chatbot {
    right: 12px;
    left: auto !important;
    bottom: 12px;
    width: 32vw;
  }
  .snap-chatbot-toggle {
    width: 100%;
    justify-content: center;
    padding: 12px 10px;
    font-size: 0.62rem;
    white-space: nowrap;
  }
  .snap-chatbot-panel {
    right: 0;
    left: auto !important;
    bottom: 86px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 120px);
  }
  #snap-chatbot.is-open{
      width: calc(100vw - 24px);
      max-height: 62vh;
  }
  .snap-chatbot-messages {
    max-height: 45vh;
  }
}
/* LIGHT MODE ONLY: chatbot improvements */
body:not(.dark) .snap-chatbot-panel {
  background: #ffffff;
  border: 1px solid rgba(13, 21, 38, 0.08);
  box-shadow: 0 24px 70px rgba(13, 21, 38, 0.12);
}

body:not(.dark) .snap-chatbot-header {
  background: linear-gradient(
    180deg,
    rgba(244, 124, 32, 0.12),
    rgba(244, 124, 32, 0.04)
  );
  border-bottom: 1px solid rgba(13, 21, 38, 0.08);
}

body:not(.dark) .snap-chatbot-header h3 {
  color: #0d1526;
}

body:not(.dark) .snap-chatbot-header p {
  color: #5e6e89;
}

body:not(.dark) .snap-chatbot-msg.is-bot .snap-chatbot-bubble {
  background: #f3f6fb;
  color: #0d1526;
  border: 1px solid rgba(13, 21, 38, 0.08);
}

body:not(.dark) .snap-chatbot-msg.is-user .snap-chatbot-bubble {
  background: rgba(244, 124, 32, 0.14);
  color: #0d1526;
  border: 1px solid rgba(244, 124, 32, 0.22);
}

body:not(.dark) .snap-chatbot-chip {
  background: #ffffff;
  color: #0d1526;
  border: 1px solid rgba(13, 21, 38, 0.1);
}

body:not(.dark) .snap-chatbot-chip:hover {
  background: rgba(244, 124, 32, 0.08);
  border-color: rgba(244, 124, 32, 0.28);
  color: #f47c20;
}

body:not(.dark) #snap-chatbot-input {
  background: #ffffff;
  color: #0d1526;
  border: 1px solid rgba(13, 21, 38, 0.12);
}

body:not(.dark) #snap-chatbot-input::placeholder {
  color: #7b8798;
}

body:not(.dark) #snap-chatbot-input:focus {
  border-color: rgba(244, 124, 32, 0.45);
  box-shadow: 0 0 0 3px rgba(244, 124, 32, 0.1);
}

body:not(.dark) .snap-chatbot-icon-btn {
  background: #ffffff;
  color: #0d1526;
  border: 1px solid rgba(13, 21, 38, 0.1);
}

/* ===== RESPONSIVE OVERRIDES FINAL ===== */
@media (max-width: 1199px) {
  .hero-grid {
    gap: 56px;
  }
  .hero-card-main {
    width: 100%;
    max-width: 330px;
  }
  .fb1 {
    left: -20px;
  }
  .fb2 {
    right: -24px;
  }
  #why .container {
    gap: 48px;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-block:nth-child(3) {
    border-right: none;
  }
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  body {
    cursor: auto;
  }
  #cur,
  #ring {
    display: none;
  }
    .menu-toggle {
    display: flex;
  }
    .nav-links {
    position: absolute;
    top: 68px;
    right: 20px;
    left: auto !important;

    display: none;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;

    width: 260px;
    padding: 18px;
    gap: 16px;

    background: var(--nav-bg);
    border: 1px solid var(--nav-border);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }
  nav {
    padding: 0 20px;
    height: 68px;
  }
  .nav-logo {
    font-size: 0.82rem;
  }
  .nav-links a {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  
  }
  .nav-cta {
    padding: 10px 14px;
    font-size: 0.56rem;
  }

  #hero {
    min-height: auto;
    padding: 128px 5% 72px;
  }
  .hero-grid,
  .cs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-sub {
    max-width: 100%;
  }
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }
  .hero-stats {
    padding-top: 28px;
    margin-top: 36px;
    gap: 24px;
  }
  .hero-visual {
    display: none;
  }
  .hero-badge,
  .hero-tagline,
  .hero-sub,
  .hero-actions,
  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .loop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 16px 24px;
    margin-bottom: 24px;
  }
  .stat-block:last-child {
    margin-bottom: 0;
  }

  .pillars-grid,
  .ai-grid,
  .tiers-grid,
  .testi-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .pillar-items {
    grid-template-columns: 1fr 1fr;
  }
  .why-left {
    position: static;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-locations {
    gap: 24px;
  }
  .loc-item {
    padding-left: 0 !important;
    border-left: none !important;
    text-align: center;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
  nav {
  padding: 0 16px;
  height: 68px;
  align-items: center;
}

nav > div {
  flex-direction: row;
  align-items: center !important;
  gap: 10px !important;
}

.menu-toggle {
  display: flex;
}

.nav-links {
  position: absolute;
  top: 68px;
  left: 16px;
  right: 16px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: none;
  padding: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  font-size: 0.65rem;
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
}

.nav-links a:last-child {
  border-bottom: none;
}

.nav-cta {
  padding: 9px 12px;
  font-size: 0.54rem;
}

  #hero {
    padding: 132px 0 64px;
  }
  .hero-title {
    font-size: clamp(2.15rem, 9vw, 3.25rem);
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  .hero-actions {
    gap: 12px;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 16px 22px;
  }
  .hero-stats > div {
    min-width: 130px;
  }
  .stat-num {
    font-size: 1.45rem;
  }

  .marquee-item {
    padding: 0 18px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  #services,
  #core-loop,
  #case-study,
  #pillars,
  #why,
  #ai-section,
  #tiers,
  #testimonials,
  #vision {
    padding: 88px 0;
  }
  #networks,
  #cta {
    padding: 80px 0;
  }
  .services-grid,
  .loop-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .loop-step,
  .why-card,
  .testi-card,
  .tier-card,
  .pillar-card,
  .vision-card {
    padding: 24px 20px;
  }
  .cs-card {
    padding: 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-block {
    padding: 0 0 20px;
    margin-bottom: 20px;
  }
  .stats-top-label {
    margin-bottom: 32px;
  }
  .sbn {
    font-size: 1.7rem;
  }

  .pillars-grid {
    gap: 16px;
  }
  .pillar-items {
    grid-template-columns: 1fr;
  }
  .pillar-pct {
    font-size: 2.7rem;
  }

  .ai-grid {
    gap: 16px;
    margin-top: 40px;
  }
  .ai-col {
    padding: 24px 20px;
  }
  .tiers-grid,
  .testi-grid,
  .vision-grid {
    gap: 16px;
  }
  .net-grid {
    gap: 8px;
  }
  .net-tag {
    padding: 9px 14px;
    font-size: 0.56rem;
  }

  .cta-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .cta-sub {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }
  .cta-actions {
    gap: 12px;
    margin-bottom: 32px;
  }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost {
    width: 100%;
  }
  .cta-locations {
    padding-top: 28px;
    gap: 18px;
    flex-direction: column;
    align-items: center;
  }

  footer {
    padding: 36px 20px;
  }
  .footer-inner {
    align-items: center;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
    flex-wrap: wrap;
  }

  #snap-chatbot {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
  .snap-chatbot-toggle {
    width: 100%;
    justify-content: center;
  }
  .snap-chatbot-panel {
    right: 0;
    left: 0;
    bottom: 86px;
    width: 100%;
    max-height: calc(100vh - 120px);
  }
}

@media (max-width: 479px) {
  body {
    font-size: 15px;
  }
  .section-label {
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }
  .section-title {
    font-size: clamp(1.75rem, 9vw, 2.2rem);
  }

  nav {
    padding: 10px 12px;
  }
  .nav-logo {
    font-size: 0.74rem;
    gap: 8px;
  }
  .s-mark {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  .nav-links {
    max-width: 170px;
    gap: 8px 10px;
  }
  .nav-links a {
    font-size: 0.5rem;
  }
  .nav-cta {
    font-size: 0.5rem;
    padding: 8px 10px;
  }

  #hero {
    padding-top: 126px;
  }
  .hero-badge {
    font-size: 0.55rem;
    padding: 6px 10px;
    letter-spacing: 0.08em;
  }
  .hero-tagline {
    font-size: 0.62rem;
  }
  .hero-title {
    font-size: clamp(1.95rem, 10vw, 2.45rem);
  }
  .hero-sub {
    font-size: 0.88rem;
  }
  .hero-stats > div {
    min-width: 110px;
  }
  .stat-label {
    font-size: 0.56rem;
  }

  .service-card,
  .loop-step,
  .why-card,
  .testi-card,
  .tier-card,
  .pillar-card,
  .vision-card,
  .ai-col {
    padding: 20px 16px;
  }
  .cs-card,
  .cs-highlight {
    padding: 18px 16px;
  }
  .sc-title,
  .ls-title,
  .wc-title,
  .vc-title,
  .cs-card-title {
    font-size: 1rem;
  }
  .sc-body,
  .ls-desc,
  .wc-desc,
  .vc-desc,
  .cs-card-body,
  .testi-text,
  .tier-item,
  .pi-desc,
  .ai-item {
    font-size: 0.8rem;
  }
  .tier-name {
    font-size: 1.35rem;
  }
  .tier-highlight,
  .tier-badge,
  .testi-person,
  .loc-city {
    font-size: 0.55rem;
  }
  .net-tag {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .social-icon {
    width: 32px;
    height: 32px;
  }

  .snap-chatbot-panel {
    max-height: calc(100vh - 110px);
    border-radius: 18px;
  }
  .snap-chatbot-header {
    padding: 14px 14px 12px;
  }
  .snap-chatbot-header h3 {
    font-size: 1.25rem;
  }
  .snap-chatbot-messages {
    padding: 12px;
    gap: 10px;
  }
  .snap-chatbot-bubble {
    max-width: 92%;
    padding: 10px 12px;
    font-size: 0.82rem;
  }
  .snap-chatbot-chips,
  .snap-chatbot-form,
  .snap-chatbot-footer {
    padding-left: 12px;
    padding-right: 12px;
  }
  .snap-chatbot-form {
    grid-template-columns: 1fr;
  }
  .snap-chatbot-send {
    width: 100%;
  }
}

@media (hover: none) and (pointer: coarse) {
  .hero-card-main:hover,
  .why-card:hover,
  .tier-card:hover,
  .testi-card:hover,
  .cs-card:hover,
  .service-card:hover,
  .loop-step:hover,
  .vision-card:hover,
  .net-tag:hover,
  .social-icon:hover,
  .snap-chatbot-toggle:hover,
  .snap-chatbot-chip:hover {
    transform: none;
    box-shadow: none;
  }
}

/* SUBPAGES */
/* blog.html shared subpage hero */
.page-hero {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(244, 124, 32, 0.08),
    transparent 60%
  );
}
.page-hero h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* blog.html page-specific styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  display: block;
  color: inherit;
}
.blog-card:hover {
  border-color: var(--oborder);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
body.dark .blog-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.blog-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-body {
  padding: 28px;
}
.blog-tag {
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.blog-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-excerpt {
  color: var(--gray);
  font-size: 0.84rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-meta {
  font-size: 0.72rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-meta span {
  color: var(--orange);
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 12px;
}
/* MODAL */
.blog-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  overflow-y: auto;
  padding: 40px 20px;
  backdrop-filter: blur(6px);
}
.blog-modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.blog-modal-panel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  max-width: 820px;
  width: 100%;
  padding: 60px;
  position: relative;
  margin: auto;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.blog-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--gray);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.blog-modal-close:hover {
  color: var(--orange);
  border-color: var(--oborder);
}
.blog-modal-tag {
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--odim);
  border: 1px solid var(--oborder);
  border-radius: 100px;
  padding: 5px 14px;
  display: inline-block;
  margin-bottom: 18px;
}
.blog-modal-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.blog-modal-meta {
  color: var(--gray);
  font-size: 0.82rem;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.blog-modal-body {
  color: var(--light);
  font-size: 1.02rem;
  line-height: 1.85;
}
.blog-modal-body h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px;
}
.blog-modal-body p {
  margin-bottom: 18px;
}
.blog-modal-body ul {
  padding-left: 22px;
  margin-bottom: 18px;
}
.blog-modal-body li {
  margin-bottom: 10px;
}
.blog-modal-body strong {
  color: var(--orange);
}
.blog-modal-body .data-highlight {
  background: var(--odim);
  border: 1px solid var(--oborder);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  font-family: "Orbitron", sans-serif;
  font-size: 0.75rem;
  color: var(--orange);
}
.blog-modal-cta {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-modal-panel {
    padding: 32px 22px;
    border-radius: 16px;
  }
  .blog-modal-overlay {
    padding: 0;
    align-items: flex-start;
  }
}

/* careers.html shared subpage hero */
.page-hero {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(244, 124, 32, 0.08),
    transparent 60%
  );
}
.page-hero h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* careers.html page-specific styles */
.job-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.job-card:hover {
  border-color: var(--oborder);
  box-shadow: 0 8px 40px rgba(244, 124, 32, 0.07);
}
.job-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.job-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--odim);
  border: 1px solid var(--oborder);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.job-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.job-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
  flex-wrap: wrap;
}
.job-dept {
  background: var(--odim);
  border: 1px solid var(--oborder);
  color: var(--orange);
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.job-dot {
  color: var(--border);
}
.job-type {
  color: var(--orange);
  font-weight: 600;
}
.job-desc {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 700px;
}
.job-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
  padding: 28px;
  background: var(--bg3);
  border-radius: 14px;
}
.job-section-label {
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.job-list {
  list-style: none;
  padding: 0;
}
.job-list li {
  font-size: 0.84rem;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.job-list li::before {
  content: "\25B6";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.55rem;
  top: 5px;
}
.job-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.job-email-link {
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.job-email-link:hover {
  color: var(--orange);
}
.email-link {
  color: var(--orange);
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}
.careers-intro {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.careers-intro h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.careers-intro p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}
.job-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--odim);
  border: 1px solid var(--oborder);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .job-sections {
    grid-template-columns: 1fr;
  }
  .job-header {
    flex-direction: column;
    gap: 12px;
  }
}

/* case-studies.html shared subpage hero */
.page-hero {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(244, 124, 32, 0.08),
    transparent 60%
  );
}
.page-hero h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* case-studies.html page-specific styles */
/* TABS */
.cs-tabs {
  display: flex;
  gap: 4px;
  margin: 0 0 40px;
  padding: 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  flex-wrap: wrap;
}
.cs-tab {
  padding: 10px 22px;
  border-radius: 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.cs-tab.active {
  background: var(--orange);
  color: #000;
}
.cs-tab:hover:not(.active) {
  background: var(--odim);
  color: var(--orange);
}
.cs-tab-add {
  border: 1px dashed var(--oborder);
  color: var(--orange);
}
.cs-tab-add:hover {
  background: var(--odim);
}
.cs-tab-pane {
  display: none;
}
.cs-tab-pane.active {
  display: block;
}
/* CARDS */
.cs-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 0;
}
.cs-full-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.cs-full-card:hover {
  border-color: var(--oborder);
  box-shadow: 0 8px 40px rgba(244, 124, 32, 0.08);
}
.cs-full-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}
.cs-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--odim);
  border: 1px solid var(--oborder);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.cs-duration {
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.cs-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cs-metric-val {
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.cs-metric-lbl {
  font-size: 0.68rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.cs-findings {
  margin-top: 24px;
}
.cs-finding {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  color: var(--light);
  line-height: 1.6;
}
.cs-finding::before {
  content: "B6";
  color: var(--orange);
  font-size: 0.6rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.cs-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--odim);
  border: 1px solid var(--oborder);
  border-radius: 10px;
  color: var(--orange);
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.cs-pdf-btn:hover {
  background: var(--orange);
  color: #000;
  transform: translateY(-2px);
}
.cs-future-slot {
  background: var(--bg3);
  border: 2px dashed var(--border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 300px;
}
.cs-future-slot h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray);
}
.cs-future-slot p {
  color: var(--gray);
  font-size: 0.85rem;
  max-width: 260px;
  line-height: 1.6;
}
.cs-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px dashed var(--oborder);
  border-radius: 8px;
  color: var(--orange);
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.cs-add-btn:hover {
  background: var(--odim);
}
@media (max-width: 900px) {
  .cs-page-grid {
    grid-template-columns: 1fr;
  }
  .cs-metric-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-tabs {
    gap: 6px;
  }
}

/* contact.html shared subpage hero */
.page-hero {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(244, 124, 32, 0.08),
    transparent 60%
  );
}
.page-hero h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* contact.html page-specific styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  padding-top: 80px;
}
.contact-info h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.cd-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cd-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--odim);
  border: 1px solid var(--oborder);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.cd-label {
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 3px;
}
.cd-val {
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.5;
}
.form-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1/-1;
}
label {
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
input,
textarea,
select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  width: 100%;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--oborder);
  box-shadow: 0 0 0 3px rgba(244, 124, 32, 0.1);
}
select option {
  background: var(--bg2);
  color: var(--text);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
.tier-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tier-pill {
  flex: 1;
  min-width: 80px;
  padding: 10px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.tier-pill:hover,
.tier-pill.selected {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--odim);
}
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: #000;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.submit-btn:hover::before {
  transform: translateX(100%);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244, 124, 32, 0.45);
}
.form-note {
  font-size: 0.76rem;
  color: var(--gray);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.success-msg {
  display: none;
  text-align: center;
  padding: 40px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 16px;
  margin-top: 20px;
}
.success-msg.show {
  display: block;
}
.success-msg h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.success-msg p {
  color: var(--gray);
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
