/* ── CSS VARIABLES ── */
:root {
  --cyan: #76D6E9;
  --cyan-d: #4bbdd4;
  --cyan-xl: #e8f8fc;
  --navy: #1A324B;
  --navy-m: #2a4a6b;
  --navy-d: #0f1e2d;
  --bg: #fff;
  --bg-soft: #f4f9fb;
  --bg-mid: #eaf5f9;
  --card: #fff;
  --card2: #f0f8fb;
  --border: #c8eaf2;
  --border-s: #ddf0f6;
  --text: #0f1e2d;
  --text-m: #2a4a6b;
  --text-s: #5a7a94;
  --text-xs: #8aabb8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #eaf5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--cyan-d);
  border-radius: 3px;
}

/* ── NAVBAR ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* floating pill container */
  padding: 12px 24px;
  pointer-events: none; /* let clicks pass through padding area */
}

#navbar {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border-s);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(26,50,75,0.10);
  max-width: 1280px;
  margin: 0 auto;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s ease;
}

/* Hidden state — slides up */
#navbar.nav-hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

/* Visible floating state */
#navbar.nav-floating {
  box-shadow: 0 8px 40px rgba(26,50,75,0.16), 0 2px 8px rgba(26,50,75,0.08);
}

/* At top of page — no pill, full-width flat */
#site-header.nav-at-top {
  padding: 0;
}
#site-header.nav-at-top #navbar {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none;
  max-width: 100%;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo img {
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-m);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-cta-btn {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.nav-cta-btn:hover {
  background: var(--navy-m);
  transform: translateY(-1px);
}

.nav-link-career {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-hiring-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  animation: hiring-blink 2s ease-in-out infinite;
}

@keyframes hiring-blink {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }

  50% {
    opacity: .7;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
  }
}

/* Mega menu — CSS :focus-within hover */
.has-dropdown {
  position: relative;
}

.nd-arrow {
  font-size: 9px;
  margin-left: 4px;
  opacity: .5;
  transition: transform .25s;
}

.has-dropdown:hover .nd-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.mega-menu {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  top: auto;
  background: #fff;
  border: 1px solid var(--border-s);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(26, 50, 75, 0.14), 0 0 0 1px rgba(118, 214, 233, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s, transform .22s ease;
  min-width: 720px;
  z-index: 9999;
  overflow: hidden;
}

.mega-menu-wide {
  min-width: 900px;
}

.has-dropdown:hover .mega-menu,
.has-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Panel header */
.mega-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  background: linear-gradient(135deg, #f8fcff, #eaf5f9);
  border-bottom: 1px solid var(--border-s);
}

.mega-panel-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
}

.mega-panel-sub {
  font-size: 12px;
  color: var(--text-s);
  margin-top: 2px;
}

.mega-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}

.mega-header-cta:hover {
  background: var(--navy-m);
  transform: translateY(-1px);
}

/* Inner padding */
.mega-inner {
  padding: 20px 24px;
}

/* ── Services grid ── */
.mega-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mega-svc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .18s, border-color .18s, transform .18s;
  position: relative;
  overflow: hidden;
}

.mega-svc-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--svc-color, var(--cyan-d));
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity .18s;
}

.mega-svc-item:hover {
  background: var(--bg-soft);
  border-color: var(--border-s);
  transform: translateX(3px);
}

.mega-svc-item:hover::before {
  opacity: 1;
}

.mega-svc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  font-size: 15px;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .2s;
}

.mega-svc-item:hover .mega-svc-icon {
  background: color-mix(in srgb, var(--svc-color, var(--cyan-d)) 12%, #fff);
  border-color: color-mix(in srgb, var(--svc-color, var(--cyan-d)) 40%, #fff);
  transform: scale(1.1);
}

.mega-svc-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.mega-svc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.mega-svc-desc {
  font-size: 11px;
  color: var(--text-xs);
  margin-top: 2px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-svc-item:hover .mega-svc-name {
  color: var(--navy);
}

.mega-svc-arrow {
  font-size: 10px;
  color: var(--text-xs);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s, transform .18s;
  flex-shrink: 0;
}

.mega-svc-item:hover .mega-svc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Technology grid ── */
.mega-inner-tech {
  padding: 20px 24px;
}

.mega-tech-grid-new {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 16px;
}

.mega-tech-col {
  padding: 0;
}

.mega-tech-col-head {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-s);
}

.mega-tech-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-tech-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-s);
  text-decoration: none;
  padding: 5px 6px;
  border-radius: 7px;
  transition: background .15s, color .15s;
}

.mega-tech-link:hover {
  background: var(--bg-soft);
  color: var(--navy);
}

.mega-tech-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .8;
  transition: opacity .15s, transform .15s;
}

.mega-tech-link:hover .mega-tech-dot {
  opacity: 1;
  transform: scale(1.3);
}

/* Footer bar */
.mega-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-s);
}

.mega-footer-stats {
  display: flex;
  gap: 24px;
}

.mega-fstat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mega-fstat-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.mega-fstat-label {
  font-size: 10px;
  color: var(--text-xs);
  letter-spacing: .04em;
}

.mega-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: gap .2s;
}

.mega-footer-link:hover {
  gap: 10px;
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 8px;
  transition: background .2s;
}

.hamburger:hover { background: var(--bg-soft); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}

/* Animate to X when open */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media(max-width:900px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* On mobile — always normal sticky, no floating pill behavior */
  #site-header {
    position: sticky;
    padding: 0;
  }
  #navbar {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    box-shadow: none;
    max-width: 100%;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* ── SIDEBAR OVERLAY ── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 26, .5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s, visibility .3s;
}

.sidebar-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ── MOBILE SIDEBAR ── */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #fff;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -8px 0 40px rgba(10, 15, 26, .18);
  overflow: hidden;
}

.mobile-sidebar.is-open {
  transform: translateX(0);
}

/* Sidebar header */
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-s);
  flex-shrink: 0;
}

.sidebar-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text-m);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}

.sidebar-close:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Sidebar nav scroll area */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav::-webkit-scrollbar { width: 3px; }
.sidebar-nav::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* Sidebar links */
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-m);
  text-decoration: none;
  border-radius: 10px;
  transition: background .2s, color .2s;
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.sidebar-link i:first-child {
  width: 18px;
  text-align: center;
  color: var(--text-xs);
  font-size: 13px;
  flex-shrink: 0;
}

.sidebar-link:hover,
.sidebar-link:focus-visible {
  background: var(--bg-soft);
  color: var(--navy);
}

.sidebar-link:hover i:first-child { color: var(--navy); }

.sidebar-link-career { color: var(--text-m); }

/* Accordion */
.sidebar-accordion { display: flex; flex-direction: column; }

.sidebar-acc-btn {
  justify-content: space-between;
}

.sidebar-acc-btn > span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-acc-arrow {
  font-size: 10px;
  color: var(--text-xs);
  transition: transform .3s;
  flex-shrink: 0;
}

.sidebar-acc-btn[aria-expanded="true"] .sidebar-acc-arrow {
  transform: rotate(180deg);
}

.sidebar-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sidebar-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-s);
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.sidebar-sub-link:hover {
  background: var(--bg-soft);
  color: var(--navy);
}

/* Technology sub-groups */
.sidebar-tech-group { margin-bottom: 8px; }

.sidebar-tech-head {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 14px 4px;
}

.sidebar-tech-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Sidebar footer CTA */
.sidebar-footer {
  padding: 12px 16px 20px;
  border-top: 1px solid var(--border-s);
  flex-shrink: 0;
}

.sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.sidebar-cta:hover {
  background: var(--navy-m);
  transform: translateY(-1px);
}

/* ── COMMON SECTION STYLES ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cyan-xl);
  border: 1px solid var(--cyan-d);
  color: var(--navy);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.15;
}

.section-title .accent {
  background: linear-gradient(135deg, var(--cyan-d), var(--navy));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-line {
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan-d), var(--navy));
  margin-top: 16px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 50, 75, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color .3s, background .3s;
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--bg-soft);
}

/* ── TECH TICKER ── */
.tech-ticker {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  overflow: hidden;
  position: relative;
  padding: 14px 0;
}

.tech-ticker::before,
.tech-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.tech-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-soft), transparent);
}

.tech-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-soft), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-s);
}

.ticker-item i {
  color: var(--navy-m);
  font-size: 15px;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.hero-left {
  position: relative;
  width: 52%;
  flex-shrink: 0;
  overflow: hidden;
  background: #0a0f1a;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 80px;
  background: linear-gradient(135deg, #060d18 0%, #0a1628 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* Light theme — triangle matches white background */
#hero[data-hero-theme="light"] .hero-left::after {
  background: #fff;
}

.hero-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 15, 26, .3) 0%, rgba(10, 15, 26, .1) 40%, rgba(10, 15, 26, .7) 100%), linear-gradient(to right, transparent 60%, rgba(10, 15, 26, .8) 100%);
  pointer-events: none;
}

.hero-left-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 68px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(118, 214, 233, .15);
  border: 1px solid rgba(118, 214, 233, .35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #76D6E9;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #76D6E9;
  flex-shrink: 0;
  animation: pulse-ring 2s ease-out infinite;
}

.hero-headline {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 18px;
}

.hero-headline .hl-accent {
  background: linear-gradient(135deg, #76D6E9, #4bbdd4, #a8edff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .65);
  max-width: 420px;
  margin-bottom: 20px;
}

/* Trust signals */
.hero-trust-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
}

/* Recent win pill */
.hero-recent-win {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 28px;
  transition: background .2s;
}

.hero-recent-win:hover {
  background: rgba(255, 255, 255, .09);
}

.hero-win-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(245, 158, 11, .15);
  border: 1px solid rgba(245, 158, 11, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-win-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
}

.hero-win-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px;
}

.hero-win-badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  background: rgba(16, 185, 129, .2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, .3);
  padding: 3px 10px;
  border-radius: 100px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #76D6E9, #4bbdd4);
  color: #0a0f1a;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(118, 214, 233, .5);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  text-decoration: none;
  transition: background .3s, border-color .3s;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .4);
}

.hero-stats-row {
  display: flex;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .05);
  width: fit-content;
}

.hero-stat {
  padding: 14px 22px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #76D6E9, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, .45);
  margin-top: 2px;
  letter-spacing: .04em;
}

.hero-clients-pill {
  position: absolute;
  top: 72px;
  right: 72px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100px;
  padding: 8px 16px 8px 8px;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .3);
  background: linear-gradient(135deg, var(--cyan-d), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
  flex-shrink: 0;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-clients-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

.hero-tech-pill {
  position: absolute;
  bottom: 170px;
  right: 72px;
  z-index: 3;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(118, 214, 233, .25);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tech-pill-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-tech-pill-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 32px;
  background: linear-gradient(135deg, #060d18 0%, #0a1628 40%, #0d1f35 70%, #071020 100%);
  overflow: hidden;
}

/* Animated grid lines */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(118, 214, 233, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 214, 233, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 48px 48px; }
}

/* Radial aurora glow */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(118,214,233,.08) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 20% 80%, rgba(99,102,241,.06) 0%, transparent 60%),
    radial-gradient(ellipse 25% 25% at 80% 20%, rgba(16,185,129,.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-right-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118,214,233,.18) 0%, rgba(118,214,233,.06) 40%, transparent 70%);
  pointer-events: none;
  animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: .7; }
  50%       { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
}

/* ── Floating orbit cards ── */
.orbit-card {
  position: absolute;
  z-index: 20;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(118,214,233,.2);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
  white-space: nowrap;
  backdrop-filter: blur(12px);
  animation: card-float 6s ease-in-out infinite;
}

.orbit-card:nth-child(2) { animation-delay: -1.5s; }
.orbit-card:nth-child(3) { animation-delay: -3s; }
.orbit-card:nth-child(4) { animation-delay: -4.5s; }

@keyframes card-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.orbit-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.orbit-card-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.orbit-card-sub {
  font-size: 10px;
  color: rgba(255,255,255,.5);
}

/* ── Orbit scene ── */
.orbit-scene {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

/* Outer dashed ring */
.orbit-scene::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px dashed rgba(118,214,233,.2);
  pointer-events: none;
  animation: ring-pulse 4s ease-in-out infinite;
}

/* Inner dashed ring */
.orbit-scene::after {
  content: '';
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 1px dashed rgba(118,214,233,.15);
  pointer-events: none;
  animation: ring-pulse 4s ease-in-out infinite reverse;
}

@keyframes ring-pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.02); }
}

.orbit-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.orbit-ring-1 { animation: orbit-cw  45s linear infinite; }
.orbit-ring-2 { animation: orbit-ccw 30s linear infinite; }

@keyframes orbit-cw  { to { transform: rotate(360deg);  } }
@keyframes orbit-ccw { to { transform: rotate(-360deg); } }

.orbit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -28px 0 0 -28px;
}

.orbit-ring-1 .orbit-icon .tech-bubble { animation: counter-cw  45s linear infinite; }
.orbit-ring-2 .orbit-icon .tech-bubble { animation: counter-ccw 30s linear infinite; }

@keyframes counter-cw  { to { transform: rotate(-360deg); } }
@keyframes counter-ccw { to { transform: rotate(360deg);  } }

/* ── Tech bubbles — dark themed with color glow ── */
.tech-bubble {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1.5px solid rgba(118,214,233,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(0,0,0,.4),
    0 0 0 4px rgba(118,214,233,.06),
    inset 0 1px 0 rgba(255,255,255,.1);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
}

/* Per-icon color glow via data attribute — applied via JS below */
.tech-bubble::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bubble-color, rgba(118,214,233,.3)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
}

.tech-bubble:hover {
  transform: scale(1.22);
  border-color: rgba(118,214,233,.6);
  box-shadow:
    0 8px 32px rgba(0,0,0,.5),
    0 0 20px rgba(118,214,233,.3),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.tech-bubble:hover::after { opacity: 1; }

.tech-bubble-sm {
  width: 44px;
  height: 44px;
}

/* ── Orbit center ── */
.orbit-center {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: center-entrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes center-entrance {
  0%   { transform: scale(0) rotate(-180deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg);    opacity: 1; }
}

.orbit-center-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118,214,233,.35) 0%, rgba(118,214,233,.1) 45%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}

/* Spinning conic ring 1 */
.orbit-center::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 55%, rgba(118,214,233,1) 75%, rgba(118,214,233,.3) 85%, transparent 100%);
  animation: spin-ring 3s linear infinite;
  z-index: -1;
}

/* Spinning conic ring 2 */
.orbit-center::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, transparent 55%, rgba(99,179,237,.7) 75%, rgba(99,179,237,.2) 85%, transparent 100%);
  animation: spin-ring 5s linear infinite reverse;
  z-index: -1;
}

@keyframes spin-ring { to { transform: rotate(360deg); } }

@keyframes glow-pulse {
  0%, 100% { transform: scale(1);    opacity: .6; }
  50%       { transform: scale(1.2); opacity: 1;  }
}

.orbit-center-inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1f35, #0a1628);
  box-shadow:
    0 0 0 3px rgba(118,214,233,.4),
    0 0 0 8px rgba(118,214,233,.1),
    0 0 50px rgba(118,214,233,.3),
    0 0 100px rgba(118,214,233,.1),
    0 12px 48px rgba(0,0,0,.5);
  overflow: hidden;
  animation: logo-float 5s ease-in-out infinite, logo-glow-pulse 3s ease-in-out infinite;
  transition: transform .3s ease, box-shadow .3s ease;
}

.orbit-center-inner:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 0 4px rgba(118,214,233,.6),
    0 0 70px rgba(118,214,233,.5),
    0 12px 50px rgba(0,0,0,.5);
}

.orbit-center-inner img {
  animation: logo-scale-breathe 4s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 0 12px rgba(118,214,233,.4));
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-8px); }
}

@keyframes logo-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(118,214,233,.4),
      0 0 0 8px rgba(118,214,233,.1),
      0 0 50px rgba(118,214,233,.3),
      0 12px 48px rgba(0,0,0,.5);
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(118,214,233,.65),
      0 0 0 14px rgba(118,214,233,.15),
      0 0 80px rgba(118,214,233,.5),
      0 12px 48px rgba(0,0,0,.5);
  }
}

@keyframes logo-scale-breathe {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.06); }
}

/* ── ISO badge — dark themed ── */
.hero-iso-badge {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(118,214,233,.3);
  border-radius: 100px;
  padding: 7px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  animation: badge-entrance .8s cubic-bezier(.34,1.56,.64,1) .3s both;
}

@keyframes badge-entrance {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-iso-badge span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}

.hero-iso-badge small {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}

/* ── HERO RIGHT — LIGHT THEME ── */
/* Dual selectors: html[data-hero-theme] for flash-free early paint,
   .hero-right[data-theme] for JS-applied after DOM ready */

html[data-hero-theme="light"] .hero-right,
.hero-right[data-theme="light"] {
  background: #fff;
}

html[data-hero-theme="light"] .hero-right::before,
.hero-right[data-theme="light"]::before {
  background-image:
    linear-gradient(rgba(26,50,75,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,50,75,.03) 1px, transparent 1px);
  animation: none;
}

html[data-hero-theme="light"] .hero-right::after,
.hero-right[data-theme="light"]::after { background: none; }

html[data-hero-theme="light"] .hero-right-glow,
.hero-right[data-theme="light"] .hero-right-glow {
  background: radial-gradient(circle, rgba(118,214,233,.12) 0%, transparent 65%);
  animation: none;
}

html[data-hero-theme="light"] .orbit-card,
.hero-right[data-theme="light"] .orbit-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(26,50,75,.1);
  backdrop-filter: none;
}

html[data-hero-theme="light"] .orbit-card-title,
.hero-right[data-theme="light"] .orbit-card-title { color: var(--navy); }

html[data-hero-theme="light"] .orbit-card-sub,
.hero-right[data-theme="light"] .orbit-card-sub   { color: var(--text-xs); }

html[data-hero-theme="light"] .orbit-scene::before,
.hero-right[data-theme="light"] .orbit-scene::before {
  border-color: rgba(26,50,75,.12);
  animation: none;
}

html[data-hero-theme="light"] .orbit-scene::after,
.hero-right[data-theme="light"] .orbit-scene::after {
  border-color: rgba(26,50,75,.08);
  animation: none;
}

html[data-hero-theme="light"] .tech-bubble,
.hero-right[data-theme="light"] .tech-bubble {
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px rgba(26,50,75,.1), 0 0 0 4px rgba(118,214,233,.06);
}

html[data-hero-theme="light"] .tech-bubble::after,
.hero-right[data-theme="light"] .tech-bubble::after { display: none; }

html[data-hero-theme="light"] .tech-bubble:hover,
.hero-right[data-theme="light"] .tech-bubble:hover {
  border-color: var(--cyan-d);
  box-shadow: 0 4px 16px rgba(26,50,75,.15);
}

html[data-hero-theme="light"] .orbit-center-inner,
.hero-right[data-theme="light"] .orbit-center-inner {
  background: transparent;
  box-shadow:
    0 0 0 3px rgba(118,214,233,.3),
    0 0 0 8px rgba(118,214,233,.08),
    0 0 40px rgba(118,214,233,.25),
    0 8px 40px rgba(0,0,0,.2);
}

html[data-hero-theme="light"] .orbit-center-inner img,
.hero-right[data-theme="light"] .orbit-center-inner img { filter: none; }

html[data-hero-theme="light"] .hero-iso-badge,
.hero-right[data-theme="light"] .hero-iso-badge {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(26,50,75,.08);
  backdrop-filter: none;
  animation: none;
}

html[data-hero-theme="light"] .hero-iso-badge span,
.hero-right[data-theme="light"] .hero-iso-badge span { color: var(--navy); }

html[data-hero-theme="light"] .hero-iso-badge small,
.hero-right[data-theme="light"] .hero-iso-badge small { color: var(--text-s); }

html[data-hero-theme="light"] .hero-particles,
.hero-right[data-theme="light"] .hero-particles { display: none; }

/* Triangle divider — light theme */
html[data-hero-theme="light"] .hero-left::after,
#hero[data-hero-theme="light"] .hero-left::after { background: #fff; }

/* ── Floating particles ── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hp {
  position: absolute;
  border-radius: 50%;
  animation: particle-rise linear infinite;
  opacity: 0;
}

.hp1  { width:3px;  height:3px;  background:rgba(118,214,233,.7); left:15%;  animation-duration:8s;  animation-delay:0s;   bottom:-10px; }
.hp2  { width:2px;  height:2px;  background:rgba(99,179,237,.6);  left:30%;  animation-duration:11s; animation-delay:2s;   bottom:-10px; }
.hp3  { width:4px;  height:4px;  background:rgba(118,214,233,.5); left:50%;  animation-duration:9s;  animation-delay:4s;   bottom:-10px; }
.hp4  { width:2px;  height:2px;  background:rgba(16,185,129,.6);  left:65%;  animation-duration:13s; animation-delay:1s;   bottom:-10px; }
.hp5  { width:3px;  height:3px;  background:rgba(139,92,246,.5);  left:80%;  animation-duration:10s; animation-delay:3s;   bottom:-10px; }
.hp6  { width:2px;  height:2px;  background:rgba(118,214,233,.4); left:22%;  animation-duration:14s; animation-delay:5s;   bottom:-10px; }
.hp7  { width:5px;  height:5px;  background:rgba(245,158,11,.4);  left:70%;  animation-duration:7s;  animation-delay:1.5s; bottom:-10px; }
.hp8  { width:2px;  height:2px;  background:rgba(118,214,233,.6); left:45%;  animation-duration:12s; animation-delay:6s;   bottom:-10px; }

@keyframes particle-rise {
  0%   { transform: translateY(0)   scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

/* Mobile hero */
@media(max-width:1023px) {
  .hero-left { display: none; }
  .hero-right {
    padding: 90px 24px 48px;
    min-height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
  }
  .hero-mobile {
    display: flex !important;
    position: relative;
    inset: auto;
    padding: 0;
    background: transparent;
    z-index: 10;
    width: 100%;
    margin-bottom: 0;
  }
}

.hero-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10;
  background: var(--bg);
  text-align: center;
}

/* ── ABOUT ── */
#about {
  background: var(--bg);
  overflow: hidden;
  padding: 96px 0;
}

.about-img-wrap {
  position: relative;
  height: 560px;
  flex-shrink: 0;
}

.about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 10;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(26, 50, 75, .14);
  min-width: 150px;
}

.about-exp-num {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--cyan-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.about-exp-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-s);
  margin-top: 4px;
}

.about-cert-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  z-index: 10;
  background: var(--navy);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(26, 50, 75, .25);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media(max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border-s);
  border-radius: 16px;
  transition: background .3s, border-color .3s, transform .3s;
}

.about-feature:hover {
  background: var(--cyan-xl);
  border-color: var(--cyan-d);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  transition: background .3s, border-color .3s;
}

.about-feature:hover .about-feature-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.about-feature:hover .about-feature-icon i {
  color: #fff !important;
}

.about-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.about-feature-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-s);
}

.about-stats {
  display: flex;
  gap: 12px;
}

.about-stat-pill {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-s);
  border-radius: 14px;
  transition: background .3s, border-color .3s, transform .3s;
}

.about-stat-pill:hover {
  background: var(--cyan-xl);
  border-color: var(--cyan-d);
  transform: translateY(-3px);
}

.about-stat-num {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--cyan-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-xs);
  margin-top: 4px;
}

/* ── SERVICES ── */
#services {
  background: linear-gradient(135deg, #0a0f1a 0%, #0f1e2d 40%, #0d1829 70%, #0a1520 100%);
  overflow: hidden;
  position: relative;
  padding: 96px 0;
}

#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(118, 214, 233, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(118, 214, 233, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

#services .section-tag {
  background: rgba(118, 214, 233, .12);
  border-color: rgba(118, 214, 233, .3);
  color: #76D6E9;
}

#services .section-title {
  color: #fff;
}

#services .section-title .accent {
  background: linear-gradient(135deg, #76D6E9, #4bbdd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#services .section-line {
  background: linear-gradient(90deg, #76D6E9, rgba(118, 214, 233, .2));
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media(max-width:1100px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 28px 24px 22px;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.34, 1.2, .64, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 214, 233, .6), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.svc-card:hover {
  border-color: rgba(118, 214, 233, .35);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4), 0 0 40px rgba(118, 214, 233, .08);
  background: rgba(255, 255, 255, .07);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .15);
  letter-spacing: .1em;
}

.svc-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(118, 214, 233, .1);
  border: 1px solid rgba(118, 214, 233, .2);
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  flex-shrink: 0;
}

.svc-card:hover .svc-icon-box {
  background: linear-gradient(135deg, #76D6E9, #4bbdd4);
  border-color: transparent;
  transform: scale(1.1) rotate(-6deg);
}

.svc-card:hover .svc-icon-box i {
  color: #0a0f1a !important;
}

.svc-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.svc-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
  flex: 1;
}

.svc-card:hover .svc-desc {
  color: rgba(255, 255, 255, .7);
}

.svc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.svc-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .25s;
}

.svc-card:hover .svc-tag {
  background: rgba(118, 214, 233, .15);
  color: #76D6E9;
  border-color: rgba(118, 214, 233, .3);
}

/* ── COURSES ── */
#courses {
  background: var(--bg-soft);
  padding: 96px 0;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media(max-width:700px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

.course-card {
  background: var(--card);
  border: 1px solid var(--border-s);
  border-radius: 18px;
  padding: 28px;
  transition: border-color .35s, box-shadow .35s, transform .35s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-card:hover {
  border-color: var(--cyan-d);
  box-shadow: 0 16px 48px rgba(118, 214, 233, .12);
  transform: translateY(-4px);
}

.course-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.course-icon.cyan {
  background: var(--cyan-xl);
  border: 1px solid var(--cyan-d);
}

.course-icon.navy {
  background: rgba(26, 50, 75, .08);
  border: 1px solid rgba(26, 50, 75, .15);
}

.course-icon.cyan i {
  color: var(--navy);
}

.course-icon.navy i {
  color: var(--navy-m);
}

.course-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.course-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-s);
  flex: 1;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.badge-cyan {
  background: var(--cyan-xl);
  color: var(--navy);
  border: 1px solid var(--cyan-d);
}

.badge-navy {
  background: rgba(26, 50, 75, .08);
  color: var(--navy-m);
  border: 1px solid rgba(26, 50, 75, .15);
}

.course-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan-d);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.course-link:hover {
  gap: 10px;
}

/* ── PORTFOLIO ── */
#portfolio {
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
  padding: 96px 0;
}

#portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(26, 50, 75, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 50, 75, .025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.pf-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pf-filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-s);
  text-decoration: none;
  transition: all .22s;
}

.pf-filter-btn:hover {
  border-color: var(--cyan-d);
  color: var(--navy);
}

.pf-filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(26, 50, 75, .18);
}

.pf-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

@media(max-width:1024px) {
  .pf-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .pf-grid-home {
    grid-template-columns: 1fr;
  }
}

.pf-card {
  background: #fff;
  border: 1px solid var(--border-s);
  border-radius: 18px;
  overflow: hidden;
  transition: all .35s cubic-bezier(.34, 1.2, .64, 1);
}

.pf-card:hover {
  transform: translateY(-7px);
  border-color: var(--cyan-d);
  box-shadow: 0 24px 56px rgba(118, 214, 233, .13);
}

.pf-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--bg-mid);
}

.pf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  display: block;
}

.pf-card:hover .pf-card-img img {
  transform: scale(1.07);
}

.pf-card-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, .5);
}

.pf-card-status {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pf-card-status.live {
  background: rgba(16, 185, 129, .15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, .3);
}

.pf-card-status.soon {
  background: rgba(245, 158, 11, .15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, .3);
}

.pf-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.live .pf-status-dot {
  background: #10b981;
}

.soon .pf-status-dot {
  background: #f59e0b;
}

.pf-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 26, .75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.pf-card:hover .pf-card-overlay {
  opacity: 1;
}

.pf-overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.pf-card-body {
  padding: 14px 16px 16px;
}

.pf-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}

.pf-card-desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-s);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pf-card-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.pf-card-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--bg-soft);
  color: var(--text-m);
  border: 1px solid var(--border-s);
  transition: all .2s;
}

.pf-card:hover .pf-card-tag {
  background: var(--cyan-xl);
  color: var(--navy);
  border-color: var(--cyan-d);
}

.pf-view-all-banner {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.pf-banner-num {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #76D6E9, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.pf-banner-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
}

.pf-banner-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pf-banner-cat {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .12);
}

.pf-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #76D6E9, #4bbdd4);
  color: #0a0f1a;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}

.pf-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(118, 214, 233, .45);
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--bg-soft);
  padding: 96px 0;
}

.testi-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(118, 214, 233, .08);
  transition: opacity .35s ease, transform .35s ease;
  opacity: 1;
  transform: translateX(0);
}

.testi-quote {
  font-size: 17px;
  line-height: 1.75;
  font-style: italic;
  color: var(--text-m);
  margin: 16px 0;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.testi-role {
  font-size: 13px;
  color: var(--text-xs);
  margin-top: 2px;
}

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.testi-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-s);
  cursor: pointer;
  transition: all .2s;
}

.testi-nav-btn:hover {
  border-color: var(--cyan-d);
  color: var(--navy);
}

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  display: inline-block;
  cursor: pointer;
  transition: all .3s;
}

.testi-dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 5px;
}

.testi-dot:hover {
  background: var(--text-xs);
}

/* ── CONTACT ── */
#contact {
  background: var(--bg);
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-wrap {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-m);
}

.form-group input,
.form-group textarea {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan-d);
  box-shadow: 0 0 0 3px rgba(118, 214, 233, .15);
}

.form-group textarea {
  resize: none;
}

.form-error {
  font-size: 12px;
  color: #f87171;
  margin-top: 4px;
}

.form-success {
  background: rgba(118, 214, 233, .1);
  border: 1px solid rgba(118, 214, 233, .3);
  color: var(--cyan-d);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

.contact-info-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--cyan-xl);
  border: 1px solid var(--cyan-d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--navy);
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 3px;
}

.contact-info-val {
  font-size: 14px;
  color: var(--text-m);
  text-decoration: none;
}

.contact-info-val:hover {
  color: var(--navy);
}

.contact-divider {
  height: 1px;
  background: var(--border);
}

.social-heading {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-xs);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.social-btn:hover {
  border-color: var(--cyan-d);
  color: var(--navy);
}

/* ── FOOTER — styles moved to includes/footer.php ── */


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
   Breakpoints: 1024px | 768px | 480px | 360px
═══════════════════════════════════════════════════════ */

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {

  /* Navbar */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  #hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero-left  { display: none; }
  .hero-right {
    flex: none;
    width: 100%;
    padding: 90px 24px 48px;
    min-height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
  }
  .hero-mobile {
    display: flex !important;
    position: relative;
    inset: auto;
    padding: 0;
    background: transparent;
    width: 100%;
    margin-bottom: 0;
  }

  /* Orbit scene — scale down on tablet */
  .orbit-scene {
    width: min(360px, 90vw);
    height: min(360px, 90vw);
  }
  .orbit-scene::before { width: min(320px, 80vw); height: min(320px, 80vw); }
  .orbit-scene::after  { width: min(200px, 50vw); height: min(200px, 50vw); }

  /* Orbit cards — hide on tablet to avoid overflow */
  .orbit-card { display: none; }

  /* ISO badge — reposition */
  .hero-iso-badge {
    top: 4%;
    font-size: 10px;
    padding: 5px 12px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap { height: 380px; overflow: visible; }
  .about-exp-badge { bottom: -12px; left: -8px; }
  .about-cert-badge { right: -8px; }

  /* Services */
  .svc-grid { grid-template-columns: repeat(2, 1fr); }

  /* Courses */
  .courses-grid { grid-template-columns: 1fr; }

  /* Portfolio */
  .pf-grid-home { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Portfolio banner */
  .pf-view-all-banner {
    padding: 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {

  /* Global section padding */
  #about, #services, #courses, #portfolio, #testimonials, #contact {
    padding: 64px 0;
  }

  /* Container padding */
  .container { padding: 0 16px; }

  /* Navbar */
  .nav-inner { padding: 0 16px; height: 60px; }
  .nav-logo img { height: 48px !important; }

  /* Hero */
  .hero-right { padding: 80px 16px 40px; gap: 28px; }
  .hero-mobile {
    padding: 0;
    gap: 0;
    margin-bottom: 0;
  }

  /* Orbit scene — smaller on mobile */
  .orbit-scene {
    width: min(280px, 85vw);
    height: min(280px, 85vw);
  }
  .orbit-scene::before { width: min(250px, 75vw); height: min(250px, 75vw); }
  .orbit-scene::after  { width: min(160px, 48vw); height: min(160px, 48vw); }

  /* Scale orbit rings to fit */
  .orbit-ring-1 .orbit-icon { transform: scale(0.75); }

  /* Center logo */
  .orbit-center       { width: 140px; height: 140px; }
  .orbit-center-inner { width: 120px; height: 120px; }

  /* Tech bubbles */
  .tech-bubble    { width: 42px; height: 42px; }
  .tech-bubble-sm { width: 34px; height: 34px; }
  .tech-bubble i  { font-size: 16px !important; }
  .tech-bubble-sm i { font-size: 13px !important; }

  /* ISO badge */
  .hero-iso-badge { display: none; }

  /* Hero mobile text */
  .hero-mobile h1 { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  .hero-mobile p  { font-size: 14px !important; }

  /* About */
  .about-img-wrap { height: 260px; }
  .about-exp-badge {
    bottom: -10px;
    left: 8px;
    padding: 12px 14px;
  }
  .about-exp-num   { font-size: 28px; }
  .about-cert-badge {
    top: 12px;
    right: 8px;
    padding: 8px 12px;
  }
  .about-stats { flex-wrap: wrap; }
  .about-stat-pill { min-width: calc(50% - 6px); }
  .about-cta-row { justify-content: center; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; gap: 14px; }
  .svc-card { padding: 22px 18px 18px; }

  /* Courses */
  .courses-grid { grid-template-columns: 1fr; gap: 16px; }
  .course-card  { padding: 20px; }

  /* Portfolio */
  .pf-grid-home { grid-template-columns: 1fr; gap: 16px; }
  .pf-filter-bar { gap: 6px; }
  .pf-filter-btn { padding: 6px 14px; font-size: 11px; }

  /* Testimonials */
  .testi-card { padding: 24px 20px; }
  .testi-quote { font-size: 15px; }

  /* Contact */
  .contact-form-wrap,
  .contact-info-wrap { padding: 20px; }

  /* Section headings */
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Portfolio banner */
  .pf-view-all-banner {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .pf-banner-num { font-size: 36px; }
  .pf-banner-cats { display: none; }
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {

  /* Hero */
  .hero-right { padding: 72px 12px 36px; gap: 24px; }
  .hero-mobile { padding: 0; margin-bottom: 0; }

  /* Orbit scene — very small */
  .orbit-scene {
    width: 240px;
    height: 240px;
  }
  .orbit-scene::before { width: 210px; height: 210px; }
  .orbit-scene::after  { width: 135px; height: 135px; }

  /* Hero CTA buttons — stack */
  .hero-mobile > div { flex-direction: column !important; align-items: center; }
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  /* About image */
  .about-img-wrap { height: 220px; }
  .about-exp-badge { display: none; }
  .about-cert-badge { display: none; }

  /* Stats — 2 per row */
  .about-stats { gap: 8px; }
  .about-stat-pill { min-width: calc(50% - 4px); padding: 12px 8px; }
  .about-stat-num  { font-size: 22px; }

  /* Services */
  .svc-card { padding: 18px 14px; }
  .svc-title { font-size: 14px; }

  /* Courses */
  .course-footer { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Contact form */
  .contact-form-wrap,
  .contact-info-wrap { padding: 16px; }

  /* Testimonials */
  .testi-card { padding: 20px 14px; }
  .testi-quote { font-size: 14px; }

  /* Mobile menu */
  .mobile-sidebar { width: min(300px, 92vw); }

  /* Section tag */
  .section-tag { font-size: 11px; padding: 4px 12px; }
}

/* ── VERY SMALL (≤360px) ── */
@media (max-width: 360px) {

  .orbit-scene {
    width: 200px;
    height: 200px;
  }
  .orbit-scene::before { width: 175px; height: 175px; }
  .orbit-scene::after  { width: 112px; height: 112px; }

  .orbit-center       { width: 110px; height: 110px; }
  .orbit-center-inner { width: 95px;  height: 95px; }

  .tech-bubble    { width: 34px; height: 34px; }
  .tech-bubble-sm { width: 28px; height: 28px; }
  .tech-bubble i  { font-size: 13px !important; }
  .tech-bubble-sm i { font-size: 11px !important; }

  .hero-mobile h1 { font-size: 1.7rem !important; }

  .container { padding: 0 12px; }
  .nav-inner  { padding: 0 12px; }
}

/* ── Fix orbit icon positions for smaller scenes ── */
@media (max-width: 768px) {
  /* Ring 1 icons — recalculate for r=140 */
  .orbit-ring-1 .orbit-icon:nth-child(1) { transform: translate(0px,   -140px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(2) { transform: translate(121px,  -70px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(3) { transform: translate(121px,   70px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(4) { transform: translate(0px,    140px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(5) { transform: translate(-121px,  70px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(6) { transform: translate(-121px, -70px) !important; }

  /* Ring 2 icons — recalculate for r=85 */
  .orbit-ring-2 .orbit-icon:nth-child(1) { transform: translate(0px,   -85px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(2) { transform: translate(81px,  -26px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(3) { transform: translate(50px,   72px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(4) { transform: translate(-50px,  72px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(5) { transform: translate(-81px, -26px) !important; }
}

@media (max-width: 480px) {
  /* Ring 1 icons — recalculate for r=115 */
  .orbit-ring-1 .orbit-icon:nth-child(1) { transform: translate(0px,   -115px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(2) { transform: translate(100px,  -57px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(3) { transform: translate(100px,   57px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(4) { transform: translate(0px,    115px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(5) { transform: translate(-100px,  57px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(6) { transform: translate(-100px, -57px) !important; }

  /* Ring 2 icons — recalculate for r=70 */
  .orbit-ring-2 .orbit-icon:nth-child(1) { transform: translate(0px,   -70px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(2) { transform: translate(67px,  -22px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(3) { transform: translate(41px,   59px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(4) { transform: translate(-41px,  59px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(5) { transform: translate(-67px, -22px) !important; }
}

@media (max-width: 360px) {
  /* Ring 1 icons — recalculate for r=95 */
  .orbit-ring-1 .orbit-icon:nth-child(1) { transform: translate(0px,   -95px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(2) { transform: translate(82px,  -47px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(3) { transform: translate(82px,   47px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(4) { transform: translate(0px,    95px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(5) { transform: translate(-82px,  47px) !important; }
  .orbit-ring-1 .orbit-icon:nth-child(6) { transform: translate(-82px, -47px) !important; }

  /* Ring 2 icons — recalculate for r=58 */
  .orbit-ring-2 .orbit-icon:nth-child(1) { transform: translate(0px,   -58px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(2) { transform: translate(55px,  -18px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(3) { transform: translate(34px,   49px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(4) { transform: translate(-34px,  49px) !important; }
  .orbit-ring-2 .orbit-icon:nth-child(5) { transform: translate(-55px, -18px) !important; }
}

/* ── Prevent horizontal scroll globally ── */
html, body { max-width: 100%; overflow-x: hidden; }
