/* ============================================================
   THE5THKIND.AI — STYLESHEET
   ============================================================ */

:root {
  --bg:        #080808;
  --bg2:       #0f0f0f;
  --bg3:       #151515;
  --fg:        #ffffff;
  --fg2:       #aaaaaa;
  --fg3:       #555555;
  --accent:    #f97316;
  --accent2:   #fb923c;
  --accentDim: rgba(249,115,22,0.15);
  --border:    rgba(255,255,255,0.07);
  --borderHov: rgba(255,255,255,0.18);
  --radius:    12px;
  --radiusLg:  22px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --font:      'Inter', system-ui, sans-serif;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

img, canvas { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); border: none; background: none; cursor: pointer; }
ul { list-style: none; }
textarea, input { font-family: var(--font); }

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ── Custom Cursor ───────────────────────────────────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.2s ease;
  mix-blend-mode: normal;
}

.cursor-trail {
  width: 30px; height: 30px;
  border: 1.5px solid rgba(249,115,22,0.45);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor { transform: translate(-50%, -50%) scale(2.5); }
body:has(a:hover) .cursor-trail,
body:has(button:hover) .cursor-trail { width: 18px; height: 18px; border-color: rgba(249,115,22,0.8); }

/* ── Typography ─────────────────────────────────────────── */
h1 { font-size: clamp(2.8rem, 6.5vw, 6rem); font-weight: 900; line-height: 1.0; letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; line-height: 1.3; }
p  { font-size: 0.975rem; line-height: 1.75; color: var(--fg2); }

.muted  { color: var(--fg3); }
.accent { color: var(--accent); }
.center { text-align: center; }
.sub    { color: var(--fg3); font-size: 1rem; margin-bottom: 2.5rem; }

/* ── Container ──────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 2rem;
}

/* ── Section Label ──────────────────────────────────────── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--fg3);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--fg3);
}
.section-label.center {
  justify-content: center;
}
.section-label.center::before { display: none; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn-fill:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249,115,22,0.28);
}
.btn-fill.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--fg);
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.btn-ghost:hover {
  border-color: var(--borderHov);
  background: rgba(255,255,255,0.04);
}

/* ── Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.fade-section { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-section.in-view { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
#navbar.stuck {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
  padding: 0.9rem 0;
}

.nav-inner {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fg);
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg2);
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--fg); background: rgba(255,255,255,0.05); }

.nav-cta {
  background: rgba(255,255,255,0.06) !important;
  color: var(--fg) !important;
  border: 1px solid var(--border);
  border-radius: 50px !important;
  padding: 0.45rem 1.1rem !important;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}
.nav-cta:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.18,1);
}
.mob-menu.open { transform: none; }
.mob-menu a {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  transition: color 0.2s ease;
}
.mob-menu a:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 5rem;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  margin-left: max(2rem, calc(50% - 590px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(249,115,22,0.3);
  background: rgba(249,115,22,0.07);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFade 0.7s 0.2s var(--ease) forwards;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(249,115,22,0); }
}

.hero-title {
  margin-bottom: 1.75rem;
}
.hero-title .hl {
  display: block;
  overflow: hidden;
  line-height: 1.02;
}
.hero-title .hl::after { content: ''; }
/* Each line slides up */
.hero-title .hl:nth-child(1) { animation: slideUp 0.8s 0.35s var(--ease) both; }
.hero-title .hl:nth-child(2) { animation: slideUp 0.8s 0.45s var(--ease) both; }
.hero-title .hl:nth-child(3) { animation: slideUp 0.8s 0.55s var(--ease) both; }
.hero-title .hl:nth-child(4) { animation: slideUp 0.8s 0.65s var(--ease) both; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px) skewY(3deg); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.hero-desc {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFade 0.8s 0.75s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFade 0.8s 0.9s var(--ease) forwards;
}

/* Hero 3D canvas */
.hero-3d {
  position: absolute;
  inset-inline-end: 0;
  inset-block: 0;
  width: 58%;
  z-index: 1;
}
#heroCanvas { width: 100%; height: 100%; }

/* Left gradient fade */
.hero-fade {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 55%;
  background: linear-gradient(to right, var(--bg) 55%, transparent);
  z-index: 2;
  pointer-events: none;
}

/* Bottom ticker */
.hero-ticker {
  position: absolute;
  inset-block-end: 1.5rem;
  inset-inline: 0;
  z-index: 3;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: scrollLeft 32s linear infinite;
}
.ticker-track span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg3);
}
.ticker-track .dot { color: var(--accent); font-size: 0.5rem; }

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.pillar {
  padding: 3rem 2.5rem;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.pillar.sep {
  border-inline: 1px solid var(--border);
}
.pillar-num {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.pillar h3 { margin-bottom: 0.6rem; }

/* ============================================================
   STACK SECTION
   ============================================================ */
.stack-section {
  padding: 7rem 0;
}
.stack-section h2 { margin-bottom: 1rem; }
.stack-section .container { margin-bottom: 2.5rem; }

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  padding: 1.75rem 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-content {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scrollLeft 28s linear infinite;
}
.m-pill {
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg2);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}
.m-pill.lit {
  border-color: rgba(249,115,22,0.35);
  background: rgba(249,115,22,0.06);
  color: var(--accent);
}

.powered-by {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg3);
  margin: 2.5rem 0 1rem;
}
.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.tech-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg3);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s ease, border-color 0.2s ease;
  cursor: default;
}
.tech-chip:hover { color: var(--fg); border-color: var(--borderHov); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  padding: 7rem 0;
  background: var(--bg2);
}
.process-section h2 { margin-bottom: 3rem; }

.steps { border-top: 1px solid var(--border); }

.step { border-bottom: 1px solid var(--border); }

.step-head {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}
.step-head:hover h3 { color: var(--accent); }

.step-idx {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--fg3);
  min-width: 52px;
  flex-shrink: 0;
}
.step-head h3 {
  flex: 1;
  font-size: 1.15rem;
  transition: color 0.2s ease;
}
.step-icon {
  width: 30px; height: 30px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--fg3);
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.3s ease;
}
.step.active .step-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.step.active .step-head h3 { color: var(--accent); }

.step-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 80px;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.step.active .step-body {
  max-height: 160px;
  padding: 0 0 2rem 80px;
}
.step-body p { margin-bottom: 1rem; }
.step-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  color: var(--fg3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.28rem 0.7rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 7rem 0;
}
.services-section h2 { margin-bottom: 3rem; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
/* 5-card layout: last row of 2 cards centred */
.svc-grid .svc-card:nth-child(4) { grid-column: 1 / 2; }
.svc-grid .svc-card:nth-child(5) { grid-column: 2 / 3; }
.svc-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radiusLg);
  padding: 2.25rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-card:hover {
  border-color: var(--borderHov);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}
.svc-card.highlight {
  background: var(--accent);
  border-color: var(--accent);
}
.svc-card.highlight p,
.svc-card.highlight .svc-link { color: rgba(255,255,255,0.8); }

.svc-icon {
  font-size: 1.35rem;
  margin-bottom: 1.4rem;
  display: block;
}
.svc-card h3 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.svc-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.svc-meta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249,115,22,0.10);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 0.75rem;
}
.svc-card.highlight .svc-meta {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.svc-includes {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.svc-includes li {
  font-size: 0.8rem;
  color: var(--muted);
  padding-left: 1.1em;
  position: relative;
}
.svc-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}
.svc-card.highlight .svc-includes li { color: rgba(255,255,255,0.7); }
.svc-card.highlight .svc-includes li::before { color: #fff; }
.svc-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  transition: letter-spacing 0.2s ease;
}
.svc-link:hover { letter-spacing: 0.03em; }
.svc-card.highlight .svc-link { color: #fff; }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section {
  position: relative;
  padding: 7rem 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(249,115,22,0.12), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.04), transparent 22%),
    linear-gradient(180deg, #0d0d0d 0%, #101010 100%);
  overflow: hidden;
}
.clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
  pointer-events: none;
}
.clients-section h2 { margin-bottom: 1rem; max-width: 12ch; }
.clients-section .sub {
  margin: 0 auto;
  max-width: 64ch;
}

.clients-section .section-label,
.clients-section h2 {
  position: relative;
  z-index: 1;
}

.clients-section h2 {
  margin-inline: auto;
  max-width: 13ch;
}

.clients-marquee-shell {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  padding: 2rem 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
  overflow: hidden;
}

.clients-marquee-shell::before,
.clients-marquee-shell::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.clients-marquee-shell::before {
  top: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 68%);
}

.clients-marquee-shell::after {
  right: -60px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 68%);
}

.clients-marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 0.75rem 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.clients-marquee-content {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}

.marquee-primary .clients-marquee-content { animation-duration: 34s; }
.marquee-secondary {
  margin-top: 0.5rem;
  opacity: 0.92;
}
.marquee-secondary .clients-marquee-content {
  animation-duration: 28s;
  animation-direction: reverse;
}

.client-pill {
  min-height: 104px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  color: #f3f3f3;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.client-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(249,115,22,0.35);
  background: linear-gradient(180deg, rgba(249,115,22,0.14) 0%, rgba(249,115,22,0.05) 100%);
  color: #fff;
}

.client-pill.featured {
  border-color: rgba(249,115,22,0.22);
  background:
    radial-gradient(circle at top, rgba(249,115,22,0.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 14px 32px rgba(249,115,22,0.12);
}

.client-mini-pill {
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg2);
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-section {
  padding: 7rem 0;
  background: var(--bg2);
}
.why-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.why-top h2 em { font-style: italic; color: var(--accent); }

.why-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.w-tab {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg2);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.w-tab.active, .w-tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.why-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.why-card:hover {
  border-color: var(--borderHov);
  background: rgba(255,255,255,0.02);
}
.why-check {
  width: 26px; height: 26px;
  background: var(--accentDim);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.why-card span { font-size: 0.875rem; font-weight: 500; }

/* ============================================================
   GLOBE / WORLD
   ============================================================ */
.world-section {
  padding: 7rem 2rem;
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.world-left h2 { margin-bottom: 1.25rem; }
.world-left p  { margin-bottom: 2.25rem; }

.world-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.globe-hint {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg3);
  margin-bottom: 0.75rem;
}
#globeCanvas {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  cursor: grab;
}
#globeCanvas:active { cursor: grabbing; }

/* ============================================================
   WORK
   ============================================================ */
.work-section {
  padding: 7rem 0;
}
.work-section h2 { margin-bottom: 3rem; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.work-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radiusLg);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
  color: var(--fg);
  max-width: 380px;
  width: 100%;
  justify-self: center;
}
.work-card:hover {
  border-color: var(--borderHov);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.6);
}
.work-thumb {
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, var(--c1), var(--c2) 60%, var(--c3));
  transition: transform 0.45s ease;
  position: relative;
}
.work-card:hover .work-thumb { transform: scale(1.03); }

.work-meta {
  padding: 1.25rem 1.5rem;
}
.work-meta h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.work-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.work-pills span {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--fg3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.2rem 0.65rem;
}

.work-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: var(--radiusLg);
}
.work-card:hover .work-hover { opacity: 1; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section {
  padding: 7rem 0;
  background: var(--bg2);
}
.testi-section h2 { margin-bottom: 0.5rem; }

.testi-slider {
  position: relative;
  max-width: 720px;
  margin: 3rem auto 2rem;
  min-height: 140px;
  text-align: center;
}
.testi { display: none; animation: fade 0.5s ease; }
.testi.active { display: block; }
.testi blockquote {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 500;
  color: var(--fg);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi cite {
  font-size: 0.82rem;
  color: var(--fg3);
  font-style: normal;
}
@keyframes fade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 4rem;
}
.td {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}
.td.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 560px;
  margin-inline: auto;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.stat-n {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
}
.stat-l {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--fg3);
  margin-top: 0.4rem;
  text-transform: uppercase;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 7rem 0;
}
.faq-section h2 { margin-bottom: 3rem; }

.faq-list { max-width: 760px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--fg3);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s ease;
}
.faq-item.open .faq-q { color: var(--accent); }
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.925rem;
  color: var(--fg2);
  line-height: 1.75;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 7rem 0;
  background: var(--bg2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-left h2 { margin-bottom: 2rem; }
.contact-email {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--fg);
  transition: color 0.2s ease;
}
.contact-email:hover { color: var(--accent); }
.contact-wa {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: letter-spacing 0.2s ease;
}
.contact-wa:hover { letter-spacing: 0.03em; }

.c-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.fg input, .fg textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  color: var(--fg);
  font-size: 0.9rem;
  outline: none;
  resize: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.fg input:focus, .fg textarea:focus {
  border-color: var(--accent);
  background: rgba(249,115,22,0.04);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--fg3); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(249,115,22,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}
.foot-brand .foot-logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}
.foot-brand .foot-logo span { color: var(--accent); }
.foot-brand p { font-size: 0.875rem; max-width: 300px; }

.foot-nav {
  display: flex;
  gap: 3.5rem;
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.foot-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--fg3);
  margin-bottom: 0.25rem;
}
.foot-col a {
  font-size: 0.875rem;
  color: var(--fg2);
  transition: color 0.2s ease;
}
.foot-col a:hover { color: var(--fg); }

.footer-btm {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-btm span { font-size: 0.78rem; color: var(--fg3); }
.foot-brand-mark { letter-spacing: 0.28em; font-size: 0.6rem !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .clients-section h2,
  .clients-section .sub { max-width: none; }
  .world-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .world-left .section-label { justify-content: center; }
  .world-left .section-label::before { display: none; }
  .world-left p { margin-inline: auto; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }

  .nav-links { display: none; }
  .burger { display: flex; }

  .hero-3d { width: 100%; opacity: 0.25; }
  .hero-fade { width: 100%; background: linear-gradient(to bottom, var(--bg) 20%, rgba(8,8,8,0.5) 60%, var(--bg) 100%); }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar.sep { border-inline: none; border-block: 1px solid var(--border); }

  .svc-grid { grid-template-columns: 1fr; }

  .why-top { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .clients-marquee-shell { padding: 1.5rem 0; }
  .client-pill { min-width: 190px; min-height: 92px; }

  .world-section { padding: 5rem 1.5rem; }
  #globeCanvas { max-width: 320px; }

  .work-grid { grid-template-columns: 1fr; }
  .work-card {
    max-width: min(100%, 360px);
    width: 100%;
  }

  .stats-row { gap: 1rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-top { grid-template-columns: 1fr; }
  .foot-nav { justify-content: flex-start; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .hero-content { padding-inline: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .clients-section { padding: 5.5rem 0; }
  .clients-marquee-shell { margin-top: 2.25rem; border-radius: 24px; }
  .clients-marquee-wrap { padding: 0.55rem 0; }
  .client-pill {
    min-width: 164px;
    min-height: 84px;
    padding: 1rem 1.2rem;
    border-radius: 20px;
    font-size: 0.92rem;
  }
  .client-mini-pill {
    padding: 0.8rem 1.05rem;
    font-size: 0.76rem;
  }
  .cta-strip h2 { font-size: 2.8rem; }
  .stats-row {
    grid-template-columns: repeat(3,1fr);
    gap: 0;
  }
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.85s ease;
}
#preloader.exit {
  transform: translateY(-100%);
  opacity: 0;
}
.pre-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.pre-logo {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--fg);
  animation: prePulse 1.5s ease infinite;
}
.pre-logo span { color: var(--accent); }
@keyframes prePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
.pre-bar {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.18s ease;
  box-shadow: 0 0 12px rgba(249,115,22,0.7);
}
.pre-pct {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--fg3);
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  box-shadow: 0 0 10px rgba(249,115,22,0.6);
  transition: transform 0.05s linear;
}

/* ============================================================
   BACKGROUND GRID
   ============================================================ */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}

/* ============================================================
   HERO BACKGROUND ORBS
   ============================================================ */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.14) 0%, transparent 65%);
  top: -15%;
  right: 10%;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(120,60,255,0.10) 0%, transparent 65%);
  top: 35%;
  right: -8%;
  animation: orbFloat 17s ease-in-out infinite reverse;
}
.orb3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 65%);
  bottom: -5%;
  left: 20%;
  animation: orbFloat 14s ease-in-out infinite 3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  33%       { transform: translateY(-30px) scale(1.04); }
  66%       { transform: translateY(18px) scale(0.97); }
}

/* ============================================================
   NAV — HIDE ON SCROLL DOWN / SHOW ON SCROLL UP
   ============================================================ */
#navbar {
  transition: padding 0.3s ease, background 0.3s ease,
              border-color 0.3s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
#navbar.hidden  { transform: translateY(-110%); }

/* ============================================================
   SCRAMBLE CHAR
   ============================================================ */
.scramble-char { color: var(--accent); opacity: 0.65; }

/* ============================================================
   CARD TILT + SHINE EFFECT
   ============================================================ */
.svc-card, .work-card, .pillar {
  transform-style: preserve-3d;
  will-change: transform;
}
/* Shine layer */
.svc-card::before, .work-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.07) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255,255,255,0.03) 100%);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.svc-card:hover::before, .work-card:hover::before { opacity: 1; }
.svc-card { position: relative; overflow: hidden; }
.work-card { position: relative; }

/* ============================================================
   ENHANCED HERO TITLE CHARS (split animation)
   ============================================================ */
.char {
  display: inline-block;
  animation: charIn 0.6s var(--ease) both;
}
@keyframes charIn {
  from { opacity: 0; transform: translateY(40px) rotate(8deg); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   SECTION ENTRANCE — stronger
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ============================================================
   STATS COUNTER — glow on number
   ============================================================ */
.stat-n {
  background: linear-gradient(135deg, #fff 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   PROCESS — active step glow
   ============================================================ */
.step.active {
  background: rgba(249,115,22,0.025);
  border-radius: 8px;
}

/* ============================================================
   FAB CURSOR PARTICLES (added dynamically)
   ============================================================ */
.cursor-particle { will-change: left, top; }

/* ============================================================
   BUTTON — ripple effect
   ============================================================ */
.btn-fill {
  position: relative;
  overflow: hidden;
}
.btn-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%),
    rgba(255,255,255,0.25) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-fill:active::after { opacity: 1; }

/* ============================================================
   GLOBE — wrapper glow ring
   ============================================================ */
#globeCanvas {
  filter: drop-shadow(0 0 28px rgba(249,115,22,0.18));
}

/* ============================================================
   HERO CANVAS — glow
   ============================================================ */
#heroCanvas {
  filter: drop-shadow(0 0 60px rgba(249,115,22,0.22));
}

/* ============================================================
   ENHANCED SECTION DIVIDERS
   ============================================================ */
.process-section,
.testi-section,
.contact-section {
  position: relative;
}
.process-section::before,
.testi-section::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(249,115,22,0.3) 50%, transparent);
}

/* ============================================================
   WORK THUMB — gradient shimmer
   ============================================================ */
.work-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
}
.work-thumb { position: relative; overflow: hidden; }
@keyframes shimmer {
  0%   { background-position: -100% -100%; }
  100% { background-position: 200% 200%; }
}

/* ============================================================
   TESTIMONIAL BLOCKQUOTE — quote mark
   ============================================================ */
.testi blockquote::before {
  content: '"';
  display: block;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

/* ============================================================
   HERO BADGE — animate border on load
   ============================================================ */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(249,115,22,0.3); box-shadow: none; }
  50%       { border-color: rgba(249,115,22,0.7); box-shadow: 0 0 16px rgba(249,115,22,0.2); }
}
.hero-badge { animation: heroFade 0.7s 0.2s var(--ease) forwards, borderGlow 3s 1s ease infinite; }

/* ============================================================
   FOOTER — gradient edge
   ============================================================ */
footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(249,115,22,0.4) 50%, transparent);
  margin-bottom: 0;
}

/* ============================================================
   MEDIA — hide orbs on mobile
   ============================================================ */
@media (max-width: 768px) {
  .bg-orb { display: none; }
  .bg-grid { opacity: 0.4; }
  #preloader .pre-logo { font-size: 1.8rem; }
  .stat-n {
    background: var(--fg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* ============================================================
   SHOWREEL SECTION
   ============================================================ */
.showreel-section {
  padding: 9rem 0 8rem;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.showreel-bg-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.showreel-section h2 { margin-bottom: 1rem; }
.showreel-section .sub { margin-bottom: 3.5rem; }

/* ── Showreel inline video ──────────────────────────────── */
.showreel-video-wrap {
  width: min(90vw, 960px);
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radiusLg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.showreel-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Work card inline video ─────────────────────────────── */
.work-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.showreel-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 92px; height: 92px;
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.play-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(249,115,22,0.4);
  border-radius: 50%;
  animation: ringPulse 2s ease infinite;
}
.play-ring-2 {
  inset: -14px;
  border-color: rgba(249,115,22,0.18);
  animation-delay: 0.5s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.6; }
}
.play-icon-btn {
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  box-shadow: 0 0 40px rgba(249,115,22,0.45);
}
.showreel-play:hover .play-icon-btn {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(249,115,22,0.7);
}
.showreel-play:hover .play-ring { animation-play-state: paused; }
.showreel-cta-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg3);
  display: block;
}

/* ============================================================
   WORK CARDS — PREMIUM VISUAL THUMBNAILS
   ============================================================ */
.work-thumb {
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  transition: none;
}
.work-card:hover .work-thumb { transform: none; }
/* Each theme */
.wt-ai-product { background: radial-gradient(ellipse at 30% 40%, #3d1a00, #1a0a00 60%, #0a0500); }
.wt-clone      { background: radial-gradient(ellipse at 70% 40%, #150a3d, #080318 60%, #030010); }
.wt-brand      { background: radial-gradient(ellipse at 50% 30%, #001a1f, #000d12 60%, #000508); }
.wt-reel       { background: radial-gradient(ellipse at 40% 60%, #1f1000, #100800 60%, #050200); }

/* Animated gradient gfx overlays inside thumbs */
.wt-gfx {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}
.work-card:hover .wt-gfx { transform: scale(1.06); }

.wt-gfx-1 {
  background:
    radial-gradient(ellipse at 25% 60%, rgba(249,115,22,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(251,191,36,0.25) 0%, transparent 45%),
    repeating-linear-gradient(60deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 32px);
}
.wt-gfx-2 {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(120,80,255,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 30%, rgba(60,20,200,0.3) 0%, transparent 45%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 28px);
}
.wt-gfx-3 {
  background:
    radial-gradient(ellipse at 50% 70%, rgba(0,180,160,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(0,120,200,0.25) 0%, transparent 40%),
    repeating-linear-gradient(30deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 1px, transparent 1px, transparent 36px);
}
.wt-gfx-4 {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,140,0,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 75%, rgba(200,50,50,0.3) 0%, transparent 40%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 24px);
}

/* Overlay with play icon + type label */
.wt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 2;
}
.wt-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.work-card:hover .wt-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.1);
}
.wt-type {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  transition: color 0.25s ease;
}
.work-card:hover .wt-type { color: rgba(255,255,255,0.75); }

/* Duration badge top-right */
.wt-overlay::after {
  content: '';
  position: absolute;
  top: 1rem; right: 1rem;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249,115,22,0.8);
}

/* ============================================================
   TESTIMONIAL AVATARS
   ============================================================ */
.testi-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--av, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06), 0 0 20px rgba(0,0,0,0.4);
}
.testi-author {
  margin-top: 1rem;
}
.testi-author cite {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  font-style: normal;
  margin-bottom: 0.2rem;
}
.testi-role {
  font-size: 0.75rem;
  color: var(--fg3);
  display: block;
}

/* ============================================================
   CTA STRIP — eyebrow label
   ============================================================ */
.cta-strip {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.cta-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem !important;
}
.cta-strip h2 {
  margin-bottom: 2.5rem;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

/* ============================================================
   CONTACT DETAILS (icon + text links)
   ============================================================ */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0;
}
.contact-detail-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg2);
  transition: color 0.2s ease;
}
.contact-detail-item:hover { color: var(--accent); }
.cd-icon {
  width: 34px; height: 34px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.contact-detail-item:hover .cd-icon {
  background: var(--accentDim);
  border-color: rgba(249,115,22,0.35);
}
.contact-address {
  align-items: flex-start;
  cursor: default;
  line-height: 1.5;
}
.contact-address .cd-icon { margin-top: 2px; }
.foot-address {
  display: block;
  font-size: 0.8rem;
  color: var(--fg3);
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* ============================================================
   FOOTER — social icons + 3-col nav
   ============================================================ */
.foot-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.foot-social {
  width: 36px; height: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg3);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.foot-social:hover {
  color: var(--fg);
  border-color: var(--borderHov);
  background: rgba(255,255,255,0.04);
}
.foot-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.foot-col h4 { margin-bottom: 1.25rem; }

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 768px) {
  .showreel-section { padding: 6rem 0; }
  .showreel-bg-word { font-size: 5rem; }
  .foot-nav { grid-template-columns: 1fr 1fr; }
  .svc-grid .svc-card:nth-child(4),
  .svc-grid .svc-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 480px) {
  .foot-nav { grid-template-columns: 1fr; }
}

/* ── Video Modal ──────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  padding: 1.5rem;
}
.video-modal.open {
  opacity: 1;
  pointer-events: all;
}
.vm-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 1;
  flex-shrink: 0;
}
.vm-close:hover { background: rgba(249,115,22,0.35); }
.vm-inner {
  width: min(90vw, 1100px);
  aspect-ratio: 16 / 9;
  border-radius: var(--radiusLg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  transform: scale(0.92);
  transition: transform 0.35s var(--ease);
}
.video-modal.open .vm-inner { transform: scale(1); }
.vm-inner video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 480px) {
  .vm-inner { border-radius: var(--radius); }
}

/* ============================================================
   PREMIUM ENHANCEMENTS — v3
   ============================================================ */

/* ── Noise texture overlay ────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

/* ── Gradient text utility ────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #f97316 0%, #fbbf24 40%, #f97316 80%, #ef4444 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Hero trust line ──────────────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: heroFade 0.8s 1.1s var(--ease) forwards;
}
.trust-avatars {
  display: flex;
}
.trust-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--bg);
  margin-right: -8px;
  position: relative;
}
.trust-av:nth-child(1) { z-index: 4; }
.trust-av:nth-child(2) { z-index: 3; }
.trust-av:nth-child(3) { z-index: 2; }
.trust-av:nth-child(4) { z-index: 1; }
.trust-text {
  font-size: 0.8rem;
  color: var(--fg3);
  margin-left: 0.3rem;
}
.trust-text strong {
  color: var(--fg);
}

/* ── Glowing CTA button ──────────────────────────────────── */
.btn-glow {
  animation: btnGlow 3s ease infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(249,115,22,0.3), 0 0 60px rgba(249,115,22,0.08); }
  50%      { box-shadow: 0 0 30px rgba(249,115,22,0.5), 0 0 80px rgba(249,115,22,0.15); }
}
.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ── Service card icon upgrade ────────────────────────────── */
.svc-icon {
  width: 48px; height: 48px;
  background: var(--accentDim);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1.4rem;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover .svc-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}
.svc-card.highlight .svc-icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.svc-card.highlight:hover .svc-icon {
  background: rgba(255,255,255,0.25);
}

/* ── Highlighted card animated border ─────────────────────── */
.svc-card.highlight {
  position: relative;
  border: none;
  background: var(--accent);
  overflow: hidden;
}
.svc-card.highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.15) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255,255,255,0.08) 100%);
  border-radius: inherit;
  opacity: 1;
  pointer-events: none;
}

/* ── Card gradient border glow on hover ───────────────────── */
.svc-card:not(.highlight):hover {
  border-color: rgba(249,115,22,0.4);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(249,115,22,0.15);
}

/* ── Testimonials star ratings ────────────────────────────── */
.testi-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

/* ── Why-us cards — icon glow ─────────────────────────────── */
.why-check {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(249,115,22,0.08));
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover .why-check {
  transform: scale(1.15);
  box-shadow: 0 0 16px rgba(249,115,22,0.35);
}

/* ── Contact form glass card ──────────────────────────────── */
.c-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radiusLg);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color 0.4s ease;
}
.c-form:focus-within {
  border-color: rgba(249,115,22,0.3);
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.fg input, .fg textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.95rem 1.2rem;
  color: var(--fg);
  font-size: 0.9rem;
  outline: none;
  resize: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.fg input:focus, .fg textarea:focus {
  border-color: var(--accent);
  background: rgba(249,115,22,0.04);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.08), 0 0 20px rgba(249,115,22,0.06);
}
.form-status {
  margin: 0.9rem 0 0;
  min-height: 1.4em;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}
.form-status.is-success {
  color: #86efac;
}
.form-status.is-error {
  color: #fca5a5;
}

/* ── CTA strip upgrade ────────────────────────────────────── */
.cta-strip {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(249,115,22,0.07) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(249,115,22,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(251,191,36,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.cta-heading {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}
.cta-sub {
  font-size: 1rem;
  color: var(--fg3);
  margin-bottom: 2.5rem !important;
}

/* ── Stats — suffix styling ───────────────────────────────── */
.stat-suffix {
  font-size: 0.6em;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  vertical-align: super;
}

/* ── FAQ glow on hover ────────────────────────────────────── */
.faq-item {
  transition: background 0.3s ease;
  padding-inline: 0.5rem;
  border-radius: 8px;
}
.faq-item:hover {
  background: rgba(249,115,22,0.02);
}

/* ── Floating WhatsApp button ─────────────────────────────── */
.fab-whatsapp {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: auto;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.25rem;
  z-index: 9000;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
  animation: fabBounce 2s 3s ease infinite;
  cursor: pointer;
}
.fab-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.4);
}
.fab-label {
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
@keyframes fabBounce {
  0%, 100% { transform: translateY(0); }
  15% { transform: translateY(-6px); }
  30% { transform: translateY(0); }
  45% { transform: translateY(-4px); }
  60% { transform: translateY(0); }
}
@media (max-width: 768px) {
  .fab-whatsapp { bottom: 1rem; right: 1rem; height: 48px; padding: 0 1rem; }
  .fab-label { display: none; }
  .fab-whatsapp { width: 48px; justify-content: center; padding: 0; border-radius: 50%; }
}

/* ── Section transitions — colored top border ─────────────── */
.services-section::before,
.faq-section::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(249,115,22,0.2) 50%, transparent);
}
.services-section, .faq-section { position: relative; }

/* ── Pillar hover accent ──────────────────────────────────── */
.pillar {
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), background 0.3s ease;
  border-radius: 8px;
}
.pillar:hover {
  background: rgba(249,115,22,0.025);
}
.pillar:hover .pillar-num {
  text-shadow: 0 0 12px rgba(249,115,22,0.5);
}

/* ── Work card play icon pulse ────────────────────────────── */
.wt-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: ringPulse 2s ease infinite;
  pointer-events: none;
}

/* ── Enhanced service card link arrow animation ───────────── */
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.svc-link:hover {
  letter-spacing: 0;
  gap: 0.6rem;
}

/* ── Smooth page load ─────────────────────────────────────── */
html {
  scroll-padding-top: 80px;
}

/* ── Logo micro-interaction ───────────────────────────────── */
.logo {
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.85; }
.logo span {
  transition: color 0.2s ease;
}
.logo:hover span {
  color: var(--accent2);
}

/* ── Marquee pills hover ─────────────────────────────────── */
.m-pill {
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.m-pill:hover {
  transform: translateY(-2px);
  border-color: var(--borderHov);
}

/* ── Tech chip shine ──────────────────────────────────────── */
.tech-chip {
  position: relative;
  overflow: hidden;
}
.tech-chip::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left 0.5s ease;
}
.tech-chip:hover::before { left: 100%; }

/* ── Footer links underline on hover ──────────────────────── */
.foot-col a {
  position: relative;
}
.foot-col a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.foot-col a:hover::after {
  width: 100%;
}

/* ── Nav link active highlight ────────────────────────────── */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.25s ease, left 0.25s ease;
}
.nav-links a:hover::after {
  width: 60%;
  left: 20%;
}
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 60%; left: 20%; }

/* ── Contact detail items — stagger reveal ────────────────── */
.contact-details .contact-detail-item {
  opacity: 0;
  animation: heroFade 0.5s var(--ease) forwards;
}
.contact-details .contact-detail-item:nth-child(1) { animation-delay: 0.1s; }
.contact-details .contact-detail-item:nth-child(2) { animation-delay: 0.2s; }
.contact-details .contact-detail-item:nth-child(3) { animation-delay: 0.3s; }
.contact-details .contact-detail-item:nth-child(4) { animation-delay: 0.4s; }
