/* ============================================================
   WAVX — ELITE SOFTWARE COMPANY
   CSS: Rebuilt from scratch — fast, responsive, pixel-perfect
   ============================================================ */

/* ---- PERFORMANCE: GPU LAYER HINTS ---- */
:root {
  --bg-void: #020305;
  --bg-deep: #06080f;
  --bg-card: rgba(255,255,255,0.03);
  --bg-glass: rgba(255,255,255,0.05);
  --orange: #FF6B00;
  --orange-bright: #FF8C00;
  --orange-glow: rgba(255,107,0,0.4);
  --gold: #FFD700;
  --gold-dim: #C9A227;
  --blue: #00E5FF;
  --blue-mid: #0088FF;
  --blue-glow: rgba(0,229,255,0.3);
  --white: #FFFFFF;
  --grey: #B0B8C8;
  --grey-dim: #606878;
  --border: rgba(255,107,0,0.2);
  --grad-fire: linear-gradient(135deg, #FF6B00, #FFD700);
  --grad-ice: linear-gradient(135deg, #00E5FF, #0044FF);
  --grad-full: linear-gradient(135deg, #FF6B00, #FFD700, #00E5FF);
  --font-display: 'Orbitron', monospace;
  --font-body: 'Exo 2', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 16px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.4s var(--ease);
  --nav-h: 72px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--white);
  overflow-x: hidden;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive media */
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--grad-fire); border-radius: 4px; }

/* ---- CUSTOM CURSOR (pointer devices only) ---- */
@media (pointer: fine) {
  body { cursor: none; }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease), height 0.2s var(--ease),
                border-color 0.2s, background 0.2s, opacity 0.2s;
    will-change: transform;
  }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px var(--gold);
    will-change: transform;
  }
  body.cursor-hover .cursor-ring {
    width: 56px; height: 56px;
    border-color: var(--gold);
    background: rgba(255,215,0,0.08);
  }
  a, button, .service-card, .career-card, .team-circle { cursor: none; }
}

@media (pointer: coarse), (hover: none) {
  .cursor-ring, .cursor-dot { display: none !important; }
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.03em; line-height: 1.15; }

.gradient-text {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-mono);
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 0 0 24px; height: 1px;
  background: var(--orange); opacity: 0.6;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 700; margin-bottom: 16px;
}

.section-sub {
  color: var(--grey);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  max-width: 560px; margin: 0 auto 56px;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: clamp(12px,2vw,15px) clamp(24px,3vw,36px);
  background: var(--grad-fire);
  color: #000;
  font-family: var(--font-display); font-size: clamp(0.7rem,1.5vw,0.8rem);
  font-weight: 700; letter-spacing: 0.1em;
  border: none; border-radius: 50px;
  text-decoration: none; cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: 0 0 30px var(--orange-glow), 0 4px 20px rgba(255,107,0,0.3);
  position: relative; overflow: hidden; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 0 60px var(--orange-glow), 0 8px 40px rgba(255,107,0,0.5); }
.btn-primary:active { transform: translateY(-1px) scale(1); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: clamp(11px,2vw,14px) clamp(24px,3vw,36px);
  background: transparent; color: var(--white);
  font-family: var(--font-display); font-size: clamp(0.7rem,1.5vw,0.8rem);
  font-weight: 600; letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50px;
  text-decoration: none; cursor: pointer;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,0,0.05); transform: translateY(-2px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  padding: 0 clamp(16px,4vw,60px);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s, box-shadow 0.4s;
  will-change: background;
}
.navbar.scrolled {
  background: rgba(2,3,5,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(255,107,0,0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-img { height: 38px; width: auto; object-fit: contain; }
.logo-text {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 900;
  color: var(--white); letter-spacing: 0.05em;
}
.logo-x { color: var(--orange); text-shadow: 0 0 20px var(--orange-glow); }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; color: var(--grey);
  text-decoration: none; padding: 8px 12px; border-radius: 6px;
  transition: color 0.2s; position: relative; white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  transform: translateX(-50%); width: 0; height: 1.5px;
  background: var(--orange); transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--orange);
  text-decoration: none; padding: 8px 18px;
  border: 1px solid var(--orange); border-radius: 50px;
  transition: var(--transition); white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.nav-cta:hover { background: var(--orange); color: #000; box-shadow: 0 0 30px var(--orange-glow); }

.cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--gold); color: #000;
  border-radius: 50px; font-size: 0.6rem; font-weight: 900;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 1100;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: 0;
  width: min(420px, 100vw); height: 100dvh;
  background: #0a0c14; border-left: 1px solid var(--border);
  z-index: 2001; padding: 28px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  will-change: transform;
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.cart-header h3 {
  font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 0.15em; color: var(--orange);
}
.cart-header button {
  background: none; border: none; color: var(--grey);
  cursor: pointer; font-size: 1.1rem;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.cart-header button:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.cart-items { flex: 1; overflow-y: auto; padding-right: 4px; }
.empty-cart {
  color: var(--grey-dim); font-family: var(--font-mono);
  font-size: 0.85rem; text-align: center; margin-top: 48px;
}

.cart-item-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item-row .ci-name { font-size: 0.85rem; color: var(--white); margin-bottom: 2px; }
.cart-item-row .ci-tier { font-size: 0.72rem; color: var(--orange); font-family: var(--font-mono); }
.cart-item-row .ci-price { font-family: var(--font-display); color: var(--gold); font-size: 0.88rem; margin-right: 8px; }
.cart-item-row .ci-remove {
  background: none; border: none; color: var(--grey-dim);
  cursor: pointer; font-size: 0.8rem; padding: 6px;
  transition: color 0.2s; border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}
.cart-item-row .ci-remove:hover { color: #ff4444; background: rgba(255,68,68,0.1); }

.cart-footer { padding-top: 20px; border-top: 1px solid var(--border); }
.cart-total {
  font-family: var(--font-display); font-size: 1rem; margin-bottom: 14px;
  display: flex; justify-content: space-between;
}
.cart-total span { color: var(--gold); }

.btn-checkout {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px;
  background: var(--grad-fire); color: #000;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; border: none; border-radius: 50px;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 10px; -webkit-tap-highlight-color: transparent;
}
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--orange-glow); }
.btn-checkout:active { transform: translateY(0); }
.btn-email { background: linear-gradient(135deg, #0088FF, #00E5FF); }
.btn-email:hover { box-shadow: 0 0 30px rgba(0,136,255,0.4); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative; height: 100svh; min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  will-change: transform;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 clamp(16px,5vw,40px);
  margin-top: var(--nav-h);
}

.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 1.5vw, 0.7rem);
  letter-spacing: 0.3em; color: var(--gold);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.5s var(--ease) forwards;
}
.eyebrow-line {
  flex: 0 0 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow-line:last-child { background: linear-gradient(270deg, transparent, var(--gold)); }

.hero-title {
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1.06;
  letter-spacing: 0.04em; margin-bottom: 24px;
}
.title-line {
  display: block;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem); color: var(--grey);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0; animation: fadeUp 0.8s 1.3s var(--ease) forwards;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1.5s var(--ease) forwards;
}

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.3em; color: var(--grey-dim);
  opacity: 0; animation: fadeIn 0.8s 2.2s forwards;
  pointer-events: none;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(70px);
  will-change: transform;
}
.orb-1 {
  width: clamp(200px,40vw,500px); height: clamp(200px,40vw,500px);
  background: radial-gradient(circle, rgba(255,107,0,0.18), transparent 70%);
  top: -80px; right: -80px;
  animation: drift 14s ease-in-out infinite;
}
.orb-2 {
  width: clamp(180px,35vw,400px); height: clamp(180px,35vw,400px);
  background: radial-gradient(circle, rgba(0,229,255,0.12), transparent 70%);
  bottom: -60px; left: -60px;
  animation: drift 18s ease-in-out infinite reverse;
}
.orb-3 {
  width: clamp(150px,25vw,300px); height: clamp(150px,25vw,300px);
  background: radial-gradient(circle, rgba(255,215,0,0.1), transparent 70%);
  top: 50%; left: 8%;
  animation: drift 12s ease-in-out infinite 3s;
}

/* ============================================================
   TERMINAL SECTION
   ============================================================ */
.terminal-section {
  padding: clamp(60px,10vw,120px) clamp(16px,5vw,60px);
  background: var(--bg-deep);
  display: flex; flex-direction: column; align-items: center;
}
.terminal-container {
  position: relative; max-width: 760px; width: 100%;
  margin-bottom: 64px;
}
.terminal-window {
  background: #0b0d14;
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 0 80px rgba(255,107,0,0.08), 0 40px 80px rgba(0,0,0,0.5);
}
.terminal-bar {
  background: #151820; padding: 10px 16px;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.t-btn { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.t-red { background: #FF5F57; }
.t-yellow { background: #FEBC2E; }
.t-green { background: #28C840; }
.terminal-title {
  font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--grey-dim); margin-left: 8px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.terminal-body {
  padding: clamp(16px,3vw,28px); min-height: 200px;
  font-family: var(--font-mono); font-size: clamp(0.75rem,1.5vw,0.85rem);
}
.terminal-line { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.t-prompt { color: var(--orange); flex-shrink: 0; }
.t-typed { color: var(--blue); word-break: break-all; }
.t-cursor { color: var(--gold); animation: blink 1s step-end infinite; }
.terminal-output { margin-top: 10px; }
.t-output-line {
  color: var(--grey); margin-bottom: 4px; padding-left: 16px;
  font-size: clamp(0.72rem,1.5vw,0.8rem);
  opacity: 0; transition: opacity 0.4s;
}
.t-output-line.visible { opacity: 1; }
.t-output-line.success { color: #28C840; }
.t-output-line.highlight { color: var(--gold); }
.terminal-glow {
  position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(255,107,0,0.2);
  pointer-events: none;
  animation: termGlow 4s ease-in-out infinite;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(12px,2vw,24px);
  max-width: 900px; width: 100%;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(20px,3vw,32px) 16px;
  text-align: center; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.stat-card:hover {
  border-color: var(--orange); transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(255,107,0,0.12);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900;
  color: var(--orange); display: inline;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.4rem,3vw,2rem); font-weight: 900;
  color: var(--gold); display: inline;
}
.stat-label {
  font-family: var(--font-mono); font-size: clamp(0.58rem,1vw,0.7rem);
  letter-spacing: 0.12em; color: var(--grey); margin-top: 8px;
  display: block;
}

/* ============================================================
   SLIDER SECTION
   ============================================================ */
.slider-section {
  padding: clamp(48px,8vw,80px) 0;
  overflow: hidden; text-align: center;
}
.slider-section .section-title { margin-bottom: 36px; }
.slider-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg,transparent,black 10%,black 90%,transparent);
  -webkit-mask-image: linear-gradient(90deg,transparent,black 10%,black 90%,transparent);
}
.slider-track {
  display: flex; gap: 16px; width: max-content;
  animation: infiniteScroll 22s linear infinite;
}
.slider-section:hover .slider-track { animation-play-state: paused; }

.slide-item {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px;
  min-width: clamp(140px,20vw,200px); padding: 24px 20px;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  color: var(--grey);
}
.slide-item i { font-size: clamp(1.5rem,3vw,2rem); color: var(--c); }
.slide-item span { font-family: var(--font-display); font-size: clamp(0.6rem,1.2vw,0.7rem); letter-spacing: 0.1em; }
.slide-item:hover {
  border-color: var(--c); color: var(--white);
  transform: translateY(-5px);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: clamp(60px,10vw,120px) clamp(16px,5vw,60px);
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(14px,2vw,24px);
  max-width: 1200px; margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: clamp(24px,4vw,40px) clamp(20px,3vw,32px);
  text-align: left; transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-fire); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { border-color: rgba(255,107,0,0.4); transform: translateY(-6px); box-shadow: 0 0 50px rgba(255,107,0,0.1), 0 20px 50px rgba(0,0,0,0.35); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--orange); margin-bottom: 20px;
  transition: background 0.3s, box-shadow 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(255,107,0,0.2);
  box-shadow: 0 0 24px rgba(255,107,0,0.3);
}
.service-card h3 { font-size: clamp(0.95rem,2vw,1.15rem); margin-bottom: 10px; }
.service-card p { color: var(--grey); font-size: clamp(0.82rem,1.5vw,0.9rem); line-height: 1.65; margin-bottom: 18px; }

.service-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.service-tags span {
  font-family: var(--font-mono); font-size: 0.62rem;
  padding: 4px 10px; border-radius: 50px;
  background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.2);
  color: var(--blue);
}

.service-cta {
  display: flex; align-items: center; gap: 8px;
  background: none; border: none; color: var(--orange);
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; cursor: pointer; transition: gap 0.3s; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.service-card:hover .service-cta { gap: 14px; }

/* ============================================================
   SERVICE MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88); z-index: 9000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.service-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  width: min(90vw, 820px); max-height: 88svh; overflow-y: auto;
  background: #0d0f18; border: 1px solid var(--border);
  border-radius: 20px; z-index: 9001;
  padding: clamp(24px,5vw,50px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  will-change: transform;
}
.service-modal.active {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.07); border: none; color: var(--grey);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  font-size: 0.85rem; transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.modal-close:hover { background: rgba(255,107,0,0.2); color: var(--orange); }

.modal-service-header { margin-bottom: 32px; }
.modal-service-header .service-icon-wrap { margin-bottom: 14px; width: 64px; height: 64px; border-radius: 16px; }
.modal-service-header h2 { font-size: clamp(1.3rem,3vw,1.8rem); margin-bottom: 10px; }
.modal-service-header p { color: var(--grey); line-height: 1.7; font-size: clamp(0.85rem,1.5vw,0.95rem); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px; margin-bottom: 32px;
}

.pricing-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: clamp(18px,3vw,28px) clamp(14px,2vw,20px);
  text-align: center; transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--orange); background: rgba(255,107,0,0.06);
  box-shadow: 0 0 30px rgba(255,107,0,0.1);
}
.pricing-card.featured::before {
  content: 'POPULAR'; position: absolute; top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-fire); color: #000;
  font-family: var(--font-mono); font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.1em; padding: 3px 12px; border-radius: 50px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-display); font-size: 0.62rem;
  letter-spacing: 0.2em; color: var(--orange); margin-bottom: 10px;
}
.pricing-price {
  font-family: var(--font-display); font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 900; color: var(--gold); margin-bottom: 14px;
}
.pricing-features {
  list-style: none; text-align: left; margin-bottom: 18px;
}
.pricing-features li {
  font-size: clamp(0.72rem,1.3vw,0.8rem); color: var(--grey);
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; gap: 7px; align-items: flex-start;
}
.pricing-features li::before { content: '✦'; color: var(--orange); font-size: 0.5rem; flex-shrink: 0; margin-top: 3px; }

.add-to-cart-btn {
  width: 100%; padding: 11px;
  background: var(--grad-fire); color: #000;
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; border: none; border-radius: 50px;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.add-to-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 0 20px var(--orange-glow); }
.add-to-cart-btn:active { transform: translateY(0); }
.pricing-card:not(.featured) .add-to-cart-btn {
  background: rgba(255,255,255,0.08); color: var(--white);
}
.pricing-card:not(.featured) .add-to-cart-btn:hover {
  background: rgba(255,107,0,0.2); color: var(--orange);
}

.modal-extra { margin-top: 20px; }
.modal-extra label {
  display: block; font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; color: var(--grey); margin-bottom: 7px; margin-top: 14px;
}
.modal-extra input, .modal-extra select, .modal-extra textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 12px 14px;
  color: var(--white); font-family: var(--font-body); font-size: 0.88rem;
  margin-bottom: 4px; outline: none; transition: border-color 0.2s;
}
.modal-extra input:focus, .modal-extra select:focus, .modal-extra textarea:focus { border-color: var(--orange); }
.modal-extra textarea { resize: vertical; min-height: 80px; }
.modal-extra select option { background: #0d0f18; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  padding: clamp(60px,10vw,120px) clamp(16px,5vw,60px);
  text-align: center; background: var(--bg-deep);
}
.team-grid { display: flex; justify-content: center; }
.team-card-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }

.team-orbit {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px; pointer-events: none;
}
.orbit-ring {
  position: absolute; top: 50%; left: 50%; border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
}
.ring-1 { width: 220px; height: 220px; border-color: rgba(255,107,0,0.2); animation: spinOrbit 12s linear infinite; }
.ring-2 { width: 280px; height: 280px; border-color: rgba(255,215,0,0.12); animation: spinOrbit 20s linear infinite reverse; }
.ring-3 { width: 330px; height: 330px; border-color: rgba(0,229,255,0.08); animation: spinOrbit 30s linear infinite; }

.orbit-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  top: 50%; left: 50%; margin: -4px;
  transform-origin: 4px 4px;
}
.dot-1 { background: var(--orange); box-shadow: 0 0 12px var(--orange); animation: orbitDot1 12s linear infinite; }
.dot-2 { background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: orbitDot2 20s linear infinite reverse; }

.team-circle {
  position: relative; width: 180px; height: 180px; border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg-deep), var(--bg-deep)) padding-box,
              var(--grad-fire) border-box;
  cursor: pointer; transition: transform 0.35s, box-shadow 0.35s;
  box-shadow: 0 0 50px rgba(255,107,0,0.2), 0 0 100px rgba(255,107,0,0.06);
  -webkit-tap-highlight-color: transparent;
}
.team-circle:hover, .team-circle:focus {
  transform: scale(1.06);
  box-shadow: 0 0 80px rgba(255,107,0,0.5), 0 0 140px rgba(255,107,0,0.18);
  outline: none;
}
.team-img-layer { position: absolute; inset: 0; }
.team-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-img-fallback {
  position: absolute; inset: 0; display: none;
  align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(255,107,0,0.15), transparent);
  font-size: 3rem; color: rgba(255,107,0,0.5);
}
.team-photo.errored + .team-img-fallback { display: flex; }

.team-hover-reveal {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,0.93), rgba(255,140,0,0.9));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s; padding: 16px; text-align: center;
}
.team-circle:hover .team-hover-reveal,
.team-circle:focus .team-hover-reveal { opacity: 1; }
.reveal-name { font-family: var(--font-display); font-size: 0.58rem; font-weight: 900; letter-spacing: 0.06em; color: #000; line-height: 1.3; margin-bottom: 5px; }
.reveal-role { font-family: var(--font-mono); font-size: 0.56rem; color: rgba(0,0,0,0.85); margin-bottom: 4px; }
.reveal-tagline { font-size: 0.52rem; color: rgba(0,0,0,0.7); font-style: italic; }

.team-info-below { margin-top: 24px; text-align: center; }
.team-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 4px; }
.team-role { font-family: var(--font-mono); font-size: 0.72rem; color: var(--orange); margin-bottom: 14px; letter-spacing: 0.1em; }
.team-socials { display: flex; gap: 14px; justify-content: center; }
.team-socials a { color: var(--grey-dim); font-size: 1rem; transition: color 0.2s, transform 0.2s; }
.team-socials a:hover { color: var(--orange); transform: translateY(-3px); }

/* ============================================================
   CAREERS SECTION
   ============================================================ */
.careers-section {
  padding: clamp(60px,10vw,120px) clamp(16px,5vw,60px);
  text-align: center;
}
.careers-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: clamp(14px,2vw,24px); max-width: 900px; margin: 0 auto;
}

.career-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: clamp(22px,4vw,36px);
  text-align: left; cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.career-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-fire); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.career-card:hover { border-color: rgba(255,107,0,0.35); transform: translateY(-5px); box-shadow: 0 0 40px rgba(255,107,0,0.1); }
.career-card:hover::before { transform: scaleX(1); }

.career-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--orange); margin-bottom: 18px;
  transition: background 0.3s, box-shadow 0.3s;
}
.career-card:hover .career-icon { background: rgba(255,107,0,0.2); box-shadow: 0 0 20px rgba(255,107,0,0.3); }
.career-card h3 { font-size: clamp(0.9rem,2vw,1.05rem); margin-bottom: 8px; }
.career-card p { color: var(--grey); font-size: clamp(0.8rem,1.5vw,0.88rem); line-height: 1.6; margin-bottom: 14px; }

.career-meta { display: flex; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.career-meta span {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em;
  color: var(--grey-dim); display: flex; align-items: center; gap: 5px;
}
.career-meta i { color: var(--blue); }

.career-apply {
  display: flex; align-items: center; gap: 8px;
  color: var(--orange); font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  transition: gap 0.3s;
}
.career-card:hover .career-apply { gap: 14px; }

/* Career Modal */
.career-modal-overlay {
  z-index: 9001 !important;
}
.career-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  width: min(92vw, 640px); max-height: 90svh; overflow-y: auto;
  background: #0d0f18; border: 1px solid var(--border);
  border-radius: 20px; z-index: 9002;
  padding: clamp(24px,5vw,48px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  box-shadow: 0 0 80px rgba(255,107,0,0.15), 0 40px 80px rgba(0,0,0,0.8);
  will-change: transform;
}
.career-modal.active {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.career-modal-inner h2 { font-size: clamp(1.2rem,3vw,1.5rem); margin-bottom: 6px; }
.career-modal-inner .sub { color: var(--grey); font-size: 0.85rem; margin-bottom: 28px; }

.app-form label {
  display: block; font-family: var(--font-mono); font-size: 0.63rem;
  letter-spacing: 0.12em; color: var(--grey); margin-bottom: 6px; margin-top: 14px;
}
.app-form label:first-child { margin-top: 0; }
.app-form input, .app-form textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 12px 14px;
  color: var(--white); font-family: var(--font-body); font-size: 0.88rem;
  outline: none; transition: border-color 0.2s; display: block;
}
.app-form input:focus, .app-form textarea:focus { border-color: var(--orange); }
.app-form textarea { resize: vertical; min-height: 80px; }

.file-upload-label {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,107,0,0.4); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--grey); font-size: 0.82rem;
  cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s;
  margin-top: 6px; margin-bottom: 8px; user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.file-upload-label:hover {
  border-color: var(--orange); color: var(--orange);
  background: rgba(255,107,0,0.05);
}
.file-upload-label i { color: var(--orange); flex-shrink: 0; }
.app-form input[type="file"] { display: none; }
.app-submit { margin-top: 22px; width: 100%; }

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients-section {
  padding: clamp(60px,10vw,120px) clamp(16px,5vw,60px);
  text-align: center; background: var(--bg-deep);
}

/* NEW: clean slider approach — one card visible, transitions smoothly */
.testimonials-wrapper {
  max-width: 680px; margin: 0 auto 40px; position: relative;
}
.testimonial-slider { position: relative; min-height: 200px; }
.testimonial-slide {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.testimonial-slide.active {
  position: relative;
  opacity: 1; transform: translateX(0);
  pointer-events: all;
}
.testimonial-slide.leaving {
  position: absolute;
  opacity: 0; transform: translateX(-30px);
}

.testimonial-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: clamp(24px,4vw,36px);
  text-align: left; width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.t-stars { color: var(--gold); font-size: 1rem; letter-spacing: 4px; margin-bottom: 14px; }
.testimonial-card p {
  color: var(--grey); font-size: clamp(0.88rem,1.8vw,1rem);
  line-height: 1.7; margin-bottom: 20px; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  color: #000; flex-shrink: 0;
}
.t-author strong { font-size: 0.88rem; display: block; }
.t-author small { color: var(--grey-dim); font-size: 0.75rem; }

.testimonial-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 24px;
}
.t-prev, .t-next {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--grey); width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-size: 0.8rem; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.t-prev:hover, .t-next:hover {
  border-color: var(--orange); color: var(--orange);
  background: rgba(255,107,0,0.08);
}

.testimonial-dots { display: flex; gap: 8px; align-items: center; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.testimonial-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

.trust-badges {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 16px;
}
.trust-badge {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 22px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 50px;
  font-family: var(--font-display); font-size: clamp(0.58rem,1.2vw,0.65rem);
  letter-spacing: 0.08em; color: var(--grey);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.trust-badge i { color: var(--orange); }
.trust-badge:hover { border-color: var(--orange); color: var(--white); transform: translateY(-3px); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: clamp(60px,10vw,120px) clamp(16px,5vw,60px);
  position: relative; overflow: hidden; text-align: center;
}
.contact-bg-fx {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,0.05), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(0,229,255,0.04), transparent 60%);
}

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(32px,5vw,60px);
  max-width: 1000px; margin: 0 auto; text-align: left;
}

.contact-info-side { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }

.ci-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--orange);
}

.contact-info-item strong {
  display: block; font-family: var(--font-display);
  font-size: 0.68rem; letter-spacing: 0.12em; color: var(--white); margin-bottom: 4px;
}
.contact-info-item a, .contact-info-item span {
  color: var(--grey); font-size: 0.88rem; text-decoration: none; transition: color 0.2s;
}
.contact-info-item a:hover { color: var(--orange); }

.whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; font-family: var(--font-display); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.08em; border-radius: 50px;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent; margin-top: 8px;
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(37,211,102,0.4); }
.whatsapp-btn i { font-size: 1.1rem; }

.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.12em; color: var(--grey); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 14px 16px;
  color: var(--white); font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s, background 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); background: rgba(255,107,0,0.03);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #0d0f18; color: var(--white); }
.form-submit { align-self: flex-start; margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; padding: clamp(48px,8vw,80px) clamp(16px,5vw,60px) clamp(28px,4vw,40px);
  background: #020408; overflow: hidden;
  border-top: 1px solid var(--border);
}
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 2px; max-width: 90%;
  background: var(--grad-fire); filter: blur(6px); opacity: 0.5;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: clamp(24px,4vw,48px); max-width: 1200px; margin: 0 auto 48px;
}
.footer-logo { height: 38px; margin-bottom: 6px; }
.footer-logo-text {
  display: block; font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: 12px;
}
.footer-logo-text span { color: var(--orange); }
.footer-brand p { color: var(--grey-dim); font-size: 0.88rem; line-height: 1.65; margin-bottom: 22px; }

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-dim); font-size: 0.88rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-socials a:hover {
  background: rgba(255,107,0,0.15); border-color: var(--orange);
  color: var(--orange); transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display); font-size: 0.68rem;
  letter-spacing: 0.2em; color: var(--orange); margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block; color: var(--grey-dim); font-size: 0.84rem;
  text-decoration: none; margin-bottom: 9px; transition: color 0.2s; line-height: 1.5;
}
.footer-col a:hover { color: var(--white); }
.footer-col a i, .footer-col p i { color: var(--orange); margin-right: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; max-width: 1200px; margin: 0 auto;
}
.footer-bottom p { color: var(--grey-dim); font-size: 0.78rem; }
.footer-tagline {
  font-family: var(--font-mono); font-size: 0.62rem !important;
  letter-spacing: 0.2em;
  background: var(--grad-fire); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   TOAST
   ============================================================ */
#toastContainer {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 99999; display: flex; flex-direction: column; gap: 10px;
  align-items: center; pointer-events: none; width: max-content; max-width: 90vw;
}
.toast {
  background: linear-gradient(135deg, #FF6B00, #FFD700);
  color: #000; font-family: var(--font-display);
  font-size: clamp(0.65rem,1.5vw,0.72rem); font-weight: 700;
  letter-spacing: 0.08em; padding: 13px 28px; border-radius: 50px;
  box-shadow: 0 0 40px rgba(255,107,0,0.5);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none; max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1; transform: scaleY(1); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(24px, -16px) scale(1.04); }
  66%       { transform: translate(-16px, 12px) scale(0.97); }
}
@keyframes infiniteScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes spinOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes orbitDot1 {
  from { transform: translate(-50%,-50%) rotate(0deg) translateX(110px); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(110px); }
}
@keyframes orbitDot2 {
  from { transform: translate(-50%,-50%) rotate(0deg) translateX(140px); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(140px); }
}
@keyframes termGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,107,0,0.2); }
  50%       { box-shadow: 0 0 20px 2px rgba(255,107,0,0.15), 0 0 0 1px rgba(255,107,0,0.35); }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large tablets */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Tablets / small laptops — show hamburger */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed; top: 0; right: -100%;
    width: min(300px, 80vw); height: 100dvh;
    background: #070910; border-left: 1px solid var(--border);
    padding: calc(var(--nav-h) + 20px) 28px 40px;
    flex-direction: column; z-index: 1050;
    gap: 6px; transition: right 0.4s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { display: flex !important; right: 0 !important; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .service-modal { padding: 20px; width: 96vw; }
  .career-modal { padding: 20px; width: 96vw; }
  /* Team orbit too large on small screens */
  .team-orbit { width: 240px; height: 240px; }
  .ring-1 { width: 160px; height: 160px; }
  .ring-2 { width: 200px; height: 200px; }
  .ring-3 { width: 236px; height: 236px; }
  /* Orbs hidden on mobile for perf */
  .hero-orb { display: none; }
}

/* Very small */
@media (max-width: 380px) {
  .section-title { font-size: 1.4rem; }
  .hero-title { font-size: 1.75rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}