/* ===== TECTO MARK — PREMIUM STYLESHEET ===== */

/* ── CSS Custom Properties ───────────────────── */
:root {
  /* Core Palette */
  --bg-main: #07080A;
  --bg-surface: #0E1015;
  --bg-surface-2: #141720;
  --bg-card: rgba(255, 255, 255, 0.028);
  --bg-card-hover: rgba(255, 255, 255, 0.055);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-hover: rgba(59, 130, 246, 0.45);

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.76);
  --text-muted: rgba(255, 255, 255, 0.48);
  --text-dim: rgba(255, 255, 255, 0.28);

  --accent: #3B82F6;
  --accent-light: #60A5FA;
  --accent-gradient: linear-gradient(135deg, #3B82F6 0%, #60A5FA 50%, #93C5FD 100%);
  --accent-glow: rgba(59, 130, 246, 0.25);
  --accent-rgb: 59, 130, 246;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font: var(--font-body);

  /* Legacy Compatibility Variables */
  --white: var(--text-primary);
  --off-white: var(--bg-surface);
  --charcoal: var(--text-primary);
  --near-black: var(--bg-main);
  --mid-grey: var(--text-muted);
  --light-grey: var(--text-dim);

  --nav-h: 72px;
  --nav-h-compact: 56px;
  --section-pad: clamp(60px, 8vw, 130px);
  --container: 1320px;
  --gutter: clamp(16px, 4vw, 56px);

  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ── Reset & Typography Foundation ─────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  font-variant-numeric: tabular-nums lining-nums;
  background: var(--bg-main);
  color: var(--text-secondary);
  line-height: 1.68;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  cursor: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-feature-settings: 'cv02', 'cv03', 'cv04';
  text-wrap: balance;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; font-family: var(--font); }
::selection { background: var(--accent); color: #fff; }

/* ── Screen-Reader / SEO Utility ─────────────── */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* ── Custom Cursor ───────────────────────────── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.25s var(--ease-smooth), height 0.25s var(--ease-smooth), background 0.25s, opacity 0.2s;
}
.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.16s var(--ease-smooth), width 0.25s var(--ease-smooth), height 0.25s var(--ease-smooth), border-radius 0.25s var(--ease-smooth), border-color 0.25s, background 0.25s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cursor-text {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  pointer-events: none;
}
.cursor.hover {
  width: 14px;
  height: 14px;
  background: transparent;
  border: 2px solid var(--accent);
}
.cursor-follower.hover {
  width: 52px;
  height: 52px;
  border-color: var(--accent);
}

/* Contextual cursor states */
.cursor-follower.cursor--view {
  width: 76px;
  height: 32px;
  border-radius: 16px;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.4);
}
.cursor-follower.cursor--view .cursor-text {
  opacity: 1;
  transform: scale(1);
}
.cursor.cursor--view-active {
  opacity: 0;
}

.cursor-follower.cursor--drag {
  width: 110px;
  height: 32px;
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.cursor-follower.cursor--drag .cursor-text {
  opacity: 1;
  transform: scale(1);
  color: #fff;
}
.cursor.cursor--drag-active {
  opacity: 0;
}

.cursor-follower.cursor--expand {
  width: 44px;
  height: 44px;
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.15);
}
.cursor-follower.cursor--expand .cursor-text {
  opacity: 1;
  transform: scale(1);
  font-size: 16px;
  color: var(--accent);
}

/* Hidden cursor state when over data-cursor="none" */
.cursor.cursor--hidden,
.cursor-follower.cursor--hidden {
  opacity: 0 !important;
  visibility: hidden;
}

[data-cursor="none"],
[data-cursor="none"] * {
  cursor: auto !important;
}
[data-cursor="none"] a,
[data-cursor="none"] button,
[data-cursor="none"] select {
  cursor: pointer !important;
}
[data-cursor="none"] input,
[data-cursor="none"] textarea {
  cursor: text !important;
}

body:has(.mobile-menu.open) .cursor,
body:has(.mobile-menu.open) .cursor-follower { display: none; }

/* ── Container ───────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Section Label ───────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

/* ── Reveal Animations ───────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="0.05"].visible { transition-delay: 0.05s; }
[data-delay="0.1"].visible { transition-delay: 0.1s; }
[data-delay="0.15"].visible { transition-delay: 0.15s; }
[data-delay="0.2"].visible { transition-delay: 0.2s; }
[data-delay="0.25"].visible { transition-delay: 0.25s; }
[data-delay="0.3"].visible { transition-delay: 0.3s; }
[data-delay="0.4"].visible { transition-delay: 0.4s; }
[data-delay="0.5"].visible { transition-delay: 0.5s; }
[data-delay="0.6"].visible { transition-delay: 0.6s; }
[data-delay="0.7"].visible { transition-delay: 0.7s; }

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.25s var(--ease-smooth), box-shadow 0.25s, filter 0.25s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  filter: brightness(1.1);
}
.btn-primary .arrow { display: inline-block; transition: transform 0.25s var(--ease-smooth); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.25s, border-color 0.25s;
}
.btn-secondary:hover { color: #fff; border-color: var(--accent); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease-smooth), box-shadow 0.25s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.large-btn { padding: 18px 36px; font-size: 0.9rem; }

/* ── Accent ──────────────────────────────────── */
.accent {
  color: var(--accent);
  font-style: normal;
}

/* ====================================================
   NAVIGATION
===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: height 0.3s var(--ease-smooth), background 0.4s var(--ease-smooth), border-color 0.4s, box-shadow 0.4s;
  background: rgba(7, 8, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav.scrolled,
.nav.nav-compact {
  background: rgba(7, 8, 10, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.nav.nav-compact {
  height: var(--nav-h-compact);
}
.nav.nav-compact .nav-logo {
  font-size: 0.92rem;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s;
}
.nav-logo::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}
.nav-logo:hover { color: var(--accent-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-smooth);
}
.nav-link:hover { color: #FFFFFF; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: 9999px;
  padding: 10px 22px;
  flex-shrink: 0;
  transition: all 0.25s var(--ease-smooth);
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.5);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
  cursor: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #FFFFFF;
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s;
}

/* ── Mobile Menu ─────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--near-black);
  z-index: 2000;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  display: none !important;
  flex-direction: column;
}
.mobile-menu.open { 
  display: flex !important;
  transform: translateY(0) !important; 
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  overflow-y: auto !important;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px var(--gutter) 48px;
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  margin-bottom: 48px;
}
.mobile-menu-logo {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.25rem;
  cursor: none;
  padding: 4px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-nav-link {
  color: var(--white);
  font-size: clamp(1.9rem, 7.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 16px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.25s, padding-left 0.25s var(--ease-smooth);
}
.mobile-nav-link:hover { color: var(--accent); padding-left: 12px; }
.mobile-menu-cta {
  display: inline-flex;
  margin-top: 40px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  align-self: flex-start;
  transition: background 0.25s;
}
.mobile-menu-cta:hover { background: #2563eb; }
.mobile-menu-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.mobile-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-social-icon:hover {
  transform: translateY(-2px);
}

/* ====================================================
   HERO
===================================================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(45, 91, 255, 0.13) 0%, transparent 65%),
              radial-gradient(ellipse 50% 50% at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
              var(--bg-main);
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Vertical lines */
.hero-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--gutter);
  pointer-events: none;
}
.hero-line {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(var(--accent-rgb), 0.15) 40%, transparent);
  height: 100%;
  transform-origin: top;
  animation: lineReveal 2s var(--ease-smooth) forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
  transform: scaleY(0);
}
.hero-line:nth-child(1) { --i: 0; }
.hero-line:nth-child(2) { --i: 1; }
.hero-line:nth-child(3) { --i: 2; }
.hero-line:nth-child(4) { --i: 3; }
.hero-line:nth-child(5) { --i: 4; }

@keyframes lineReveal {
  to { transform: scaleY(1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 60px var(--gutter);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-smooth) 0.2s forwards;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
  font-weight: 850;
  letter-spacing: -0.024em;
  line-height: 1.08;
  margin-bottom: 24px;
  text-transform: uppercase;
  max-width: 700px;
}
.hero-line-text {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-smooth) forwards;
}
.hero-line-text[data-delay="0.1"] { animation-delay: 0.3s; }
.hero-line-text[data-delay="0.2"] { animation-delay: 0.4s; }
.hero-line-text[data-delay="0.3"] { animation-delay: 0.5s; }
.hero-line-text[data-delay="0.4"] { animation-delay: 0.6s; }
.hero-line-text[data-delay="0.5"] { animation-delay: 0.7s; }
.accent-word {
  background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 50%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
  display: inline-block;
}

.hero-sub {
  max-width: 530px;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-smooth) 0.8s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-smooth) 0.9s forwards;
}
.hero-actions .btn-secondary {
  color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.25);
}
.hero-actions .btn-secondary:hover { color: #fff; border-bottom-color: #fff; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 9999px;
  padding: 8px 18px;
}
.badge-stars {
  color: #FBBF24;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.badge-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-corner-tag {
  position: absolute;
  top: calc(var(--nav-h) + 24px);
  right: var(--gutter);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ====================================================
   MARQUEE
===================================================== */
.marquee-section {
  background: var(--near-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track { overflow: hidden; white-space: nowrap; }
.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-content span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.marquee-content .sep { color: var(--accent); }

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

/* ====================================================
   TRUST BAR
===================================================== */
.trust-bar {
  padding: 56px 0;
  background: #0A0C11;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
}
.trust-item:hover { color: #FFFFFF; }
.trust-icon { color: var(--accent); font-size: 0.75rem; }
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
}

/* ====================================================
   INTRODUCTION
===================================================== */
.intro-section {
  padding: var(--section-pad) 0;
  background: #0D0F16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.intro-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}
.intro-left { padding-top: 6px; }
.intro-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #FFFFFF;
}
.intro-body {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 56px;
  max-width: 600px;
}
.intro-body strong { color: #FFFFFF; font-weight: 600; }
.intro-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease-smooth), border-color 0.3s, box-shadow 0.3s;
}
.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #FFFFFF;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ====================================================
   SERVICES
===================================================== */
.services-section {
  padding: var(--section-pad) 0;
  background: #08090C;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.services-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 20px;
}
.services-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: #FFFFFF;
}
.services-list {
  display: flex;
  flex-direction: column;
}
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  cursor: none;
  transition: padding 0.4s var(--ease-smooth);
}
.service-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.service-row:hover { padding-top: 36px; padding-bottom: 36px; }
.service-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  min-width: 36px;
  padding-top: 6px;
}
.service-main { flex: 1; overflow: hidden; }
.service-title-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.service-category {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: color 0.25s;
}
.service-row:hover .service-category { color: var(--accent); }
.service-name {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}
.service-arrow {
  margin-left: auto;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.3s var(--ease-smooth), color 0.25s;
  flex-shrink: 0;
  padding-top: 4px;
}
.service-row:hover .service-arrow { transform: translate(4px, -4px); color: var(--accent); }
.service-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease-smooth), opacity 0.35s, margin-top 0.35s;
}
.service-row:hover .service-expand {
  max-height: 550px;
  opacity: 1;
  margin-top: 16px;
}
.service-expand p {
  font-size: 0.96rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  max-width: 560px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
}

/* ====================================================
   FEATURED WORK
===================================================== */
.work-section {
  padding: var(--section-pad) 0;
  background: #0B0D14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.work-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
}
.work-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.028em;
  line-height: 1.04;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.work-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  line-height: 1.6;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.work-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: none;
  transition: transform 0.4s var(--ease-smooth), border-color 0.4s, box-shadow 0.4s;
}
.work-item:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.12);
}
.work-item-visual {
  height: clamp(300px, 40vw, 480px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #090A0E;
}
.work-visual-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.work-mock-screen {
  width: 85%;
  max-width: 340px;
  background: #121318;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}
.mock-header {
  padding: 10px 16px;
  background: #0A0A0E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.mock-body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.mock-hero-text {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.mock-sub-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.mock-line {
  width: 40px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}
.mock-cta-btn {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 4px;
  margin-top: 8px;
  transition: border-color 0.25s;
}
.work-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 10, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease-smooth);
}
.work-item:hover .work-item-overlay { opacity: 1; }
.work-view-label {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}
.work-item-info {
  padding: 28px 32px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.work-industry {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.work-year {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}
.work-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: #FFFFFF;
  transition: color 0.25s;
}
.work-item:hover .work-title { color: var(--accent); }
.work-services {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.work-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

/* ====================================================
   APPROACH
===================================================== */
.approach-section {
  padding: var(--section-pad) 0;
  background: #08090C;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.approach-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}
.approach-section .section-label { color: rgba(255,255,255,0.45); }
.approach-statement {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.approach-statement .accent-line {
  background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.approach-desc {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 48px;
}
.approach-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 10px 20px;
  transition: all 0.25s;
}
.pillar:hover {
  color: #FFFFFF;
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.3);
}
.pillar-icon { color: var(--accent); }

/* ====================================================
   PROCESS
===================================================== */
.process-section {
  padding: var(--section-pad) 0;
  background: #0D0F16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.process-header {
  margin-bottom: 80px;
}
.process-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: #FFFFFF;
}
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 24px;
}
.process-step {
  flex: 1;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.3s var(--ease-smooth), border-color 0.3s, box-shadow 0.3s;
}
.process-step:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), rgba(var(--accent-rgb), 0.2));
  margin-top: 40px;
  align-self: flex-start;
}
.process-step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: #FFFFFF;
}
.process-step-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

/* ====================================================
   ABOUT
===================================================== */
.about-section {
  padding: var(--section-pad) 0;
  background: #08090C;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}
.about-tagline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.024em;
  line-height: 1.05;
  margin-top: 24px;
  color: #FFFFFF;
}
.about-subtagline {
  font-size: 0.95rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 18px;
  max-width: 280px;
}
.about-actions-row {
  margin-top: 28px;
}
.about-narrative {
  margin-bottom: 36px;
}
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.28;
  margin-bottom: 24px;
  color: #FFFFFF;
}
.about-body {
  font-size: 1.02rem;
  line-height: 1.72;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 20px;
  max-width: 620px;
}

/* ── 3D Interactive Growth Network Card ───────── */
.about-growth-card {
  position: relative;
  background: radial-gradient(ellipse at 50% 35%, rgba(45, 91, 255, 0.08) 0%, rgba(13, 15, 21, 0.95) 75%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-smooth);
}
.about-growth-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(59, 130, 246, 0.14);
}
.growth-card-hud-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.3);
}
.growth-hud-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.8);
}
.hud-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3B82F6;
  box-shadow: 0 0 8px #3B82F6;
  animation: pulse 2s infinite;
}
.growth-hud-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}
.growth-canvas-wrap {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  cursor: grab;
}
.growth-canvas-wrap:active {
  cursor: grabbing;
}
.growth-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.growth-card-hud-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.3);
}
.growth-metric-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.growth-m-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}
.growth-m-val {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-variant-numeric: tabular-nums;
}
.growth-m-val.accent-val {
  color: #60A5FA;
}

/* ====================================================
   THE TEAM / FOUNDERS
===================================================== */
.team-block {
  padding-top: clamp(64px, 8vw, 110px);
  margin-top: clamp(64px, 8vw, 110px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.team-header {
  margin-bottom: clamp(40px, 5vw, 60px);
}

.team-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.024em;
  line-height: 1.08;
  color: #FFFFFF;
  margin-top: 6px;
  margin-bottom: 16px;
}

.team-heading .accent {
  color: var(--accent);
}

.team-subheading {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
}

/* 4-column Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
}

/* Founder Card */
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: transparent;
  transition-delay: calc(var(--card-index, 0) * 75ms);
}

/* Photo Box with Circle Ratio & Avatar Wrap */
.founder-avatar-wrap {
  position: relative;
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
}

.founder-photo-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #090B10;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.6);
  transition: border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}

/* Numbered Badge floating near circle */
.founder-badge {
  position: absolute;
  top: 4px;
  right: 6px;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  background: rgba(8, 11, 18, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(45, 91, 255, 0.45);
  padding: 3px 8px;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.founder-photo-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: grayscale(0.4) contrast(1.05) brightness(0.98);
  transition: transform 0.6s var(--ease-smooth), filter 0.5s var(--ease-smooth);
}

.founder-photo-tint {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(15, 30, 65, 0.16);
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.founder-photo-border {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

/* Interactive Hover States */
.founder-card:hover .founder-photo {
  transform: scale(1.06);
  filter: grayscale(0.05) contrast(1.08) brightness(1.02);
}

.founder-card:hover .founder-photo-box {
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.8), 0 0 28px rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.founder-card:hover .founder-badge {
  border-color: rgba(59, 130, 246, 0.8);
  background: rgba(14, 20, 36, 0.95);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.45);
}

/* Card Content */
.founder-content {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: #FFFFFF;
}

.founder-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.founder-bio {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 8px;
  max-width: 240px;
}

.founder-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.founder-social-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.founder-social-link svg {
  display: inline-block;
  vertical-align: middle;
}

.founder-social-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.founder-link-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

/* Tablet Breakpoint (768px – 1023px): 2 columns */
@media (max-width: 1023px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }
}

/* Mobile Breakpoint (0 – 767px): 1 column stacked */
@media (max-width: 767px) {
  .team-block {
    padding-top: 52px;
    margin-top: 52px;
  }

  .team-header {
    margin-bottom: 36px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-avatar-wrap {
    max-width: 180px;
  }

  .founder-bio {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ====================================================
   INDUSTRIES
===================================================== */
.industries-section {
  padding: var(--section-pad) 0 0;
  background: #0A0C12;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.industries-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
}
.industries-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.024em;
  line-height: 1.08;
  color: #FFFFFF;
}
.industries-scroll-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
  position: relative;
}
.industries-track { overflow: hidden; white-space: nowrap; }
.industries-inner {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marqueeScroll 40s linear infinite;
  padding: 0 16px;
}
.industry-tag {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s;
  flex-shrink: 0;
}
.industry-tag:hover { color: var(--accent); }
.ind-sep {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* ====================================================
   INSIGHTS
===================================================== */
.insights-section {
  padding: var(--section-pad) 0;
  background: #0B0D14;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.insights-header { margin-bottom: 64px; }
.insights-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.8vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.026em;
  line-height: 1.04;
  color: #FFFFFF;
}
.insights-section .section-label { color: rgba(255,255,255,0.45); }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: transparent;
}
.insight-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: none;
  transition: transform 0.35s var(--ease-smooth), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.insight-item:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(59, 130, 246, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.1);
}
.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.insight-category {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.insight-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}
.insight-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.28;
  margin-bottom: 16px;
  color: #FFFFFF;
  transition: color 0.25s;
}
.insight-item:hover .insight-title { color: var(--accent); }
.insight-excerpt {
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}
.insight-link {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
  padding-bottom: 3px;
  display: inline-block;
  transition: color 0.25s, border-color 0.25s;
}
.insight-link:hover { color: #fff; border-color: #fff; }

/* ====================================================
   FINAL CTA
===================================================== */
.final-cta-section {
  padding: var(--section-pad) 0;
  background: #0E1017;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.final-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.8vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.026em;
  line-height: 1.04;
  color: #FFFFFF;
}
.final-cta-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-email {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.final-email:hover { color: var(--accent); border-color: var(--accent); }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.08);
  border-radius: 9999px;
  padding: 12px 24px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.16);
  transform: translateY(-2px);
}

/* ====================================================
   CONTACT
===================================================== */
.contact-section {
  padding: var(--section-pad) 0;
  background: #07080A;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 100px;
  align-items: start;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.026em;
  line-height: 1.05;
  margin-bottom: 40px;
  color: #FFFFFF;
}
.contact-details { margin-bottom: 40px; }
.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.contact-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: color 0.25s;
}
.contact-detail-value:hover { color: var(--accent); }
.contact-links-stack,
.contact-wa-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wa-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
  transition: transform 0.25s, color 0.25s;
}
.wa-direct-link:hover {
  color: #4ef387;
  transform: translateX(4px);
}
.wa-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
  display: inline-block;
  animation: pulse 2s infinite ease-in-out;
}
.whatsapp-group-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.footer-contact-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.footer-quick-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-quick-item:hover { color: var(--accent); }
.footer-quick-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
}
/* Contact Section Social Media Grid */
.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.social-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-pill-link .social-icon {
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-pill-link:hover .social-icon {
  transform: scale(1.15);
}

/* Platform specific interactive glows & accents */
.social-pill-insta:hover {
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.55);
  color: #fff;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.25);
  transform: translateY(-2px);
}
.social-pill-insta:hover .social-icon {
  stroke: #FF5A87;
}

.social-pill-fb:hover {
  background: rgba(24, 119, 242, 0.12);
  border-color: rgba(24, 119, 242, 0.55);
  color: #fff;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.25);
  transform: translateY(-2px);
}
.social-pill-fb:hover .social-icon {
  fill: #4593fc;
}

.social-pill-li:hover {
  background: rgba(10, 102, 194, 0.12);
  border-color: rgba(10, 102, 194, 0.55);
  color: #fff;
  box-shadow: 0 4px 20px rgba(10, 102, 194, 0.25);
  transform: translateY(-2px);
}
.social-pill-li:hover .social-icon {
  fill: #2e8ff5;
}

.social-pill-x:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.social-pill-x:hover .social-icon {
  fill: #ffffff;
}

/* ====================================================
   SERVICE INQUIRY SYSTEM (ENTERPRISE / AGENCY TIER)
===================================================== */
.inquiry-system-wrap {
  position: relative;
  width: 100%;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.inquiry-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inquiry-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.inquiry-group-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 4px;
}

.inquiry-group-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  background: rgba(45, 91, 255, 0.1);
  border: 1px solid rgba(45, 91, 255, 0.25);
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
}

.inquiry-group-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inquiry-group-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin: 0;
}

.inquiry-group-hint {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; position: relative; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.required { color: var(--accent); }
.optional-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: none;
  font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.25); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 91, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

/* Multi-select Services Chips Grid */
.services-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.chip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 13px 16px;
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s var(--ease-smooth);
  user-select: none;
  outline: none;
}

.chip-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-size: 11px;
  font-weight: 900;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.2s;
}

.chip-label { line-height: 1.25; }

.chip-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.chip-item.active {
  background: rgba(45, 91, 255, 0.16);
  border-color: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(45, 91, 255, 0.25);
}

.chip-item.active .chip-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

@keyframes pulseGlow {
  0% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(45, 91, 255, 0.7); }
  50% { transform: scale(1.04); box-shadow: 0 0 20px 6px rgba(45, 91, 255, 0.45); }
  100% { transform: scale(1); box-shadow: 0 0 16px rgba(45, 91, 255, 0.25); }
}

.other-service-wrap {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: fadeUp 0.3s ease;
}

.other-service-wrap label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Pills (Budget & Timeline) */
.pills-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pill-option {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.pill-option.active {
  background: rgba(45, 91, 255, 0.18);
  border-color: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(45, 91, 255, 0.3);
}

/* Actions & Footer Meta */
.form-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.form-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.inquiry-wa-alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.inquiry-wa-alt:hover {
  color: #4ef387;
  transform: translateX(2px);
}

.wa-status-mini {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px #25D366;
}

.form-general-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
}

/* Field Error & Success States */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25) !important;
}

.field-error {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #EF4444;
  margin-top: 4px;
  display: block;
  min-height: 14px;
}

.form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  cursor: pointer;
  transition: transform 0.25s var(--ease-smooth), box-shadow 0.25s, filter 0.25s;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.55);
  filter: brightness(1.1);
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.form-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

/* IN-SITE CONFIRMATION VIEW */
.inquiry-confirmation {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 48px 40px;
  animation: fadeUp 0.5s var(--ease-smooth);
}

.confirm-pill-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(45, 91, 255, 0.12);
  border: 1px solid rgba(45, 91, 255, 0.3);
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.confirm-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.confirm-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
  max-width: 580px;
}

.confirm-email-highlight {
  color: #FFFFFF;
  border-bottom: 1px dashed var(--accent);
  font-weight: 600;
}

.confirm-recap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Service Deep-Link CTA inside services accordions */
.service-inquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 91, 255, 0.4);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.service-inquire-btn:hover {
  color: #5b80ff;
  border-bottom-color: #5b80ff;
  transform: translateX(3px);
}

/* ====================================================
   FOOTER
===================================================== */
.footer {
  background: #050507;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-top { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 56px;
  padding-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  color: #FFFFFF;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s;
}
.footer-nav a:hover { color: #FFFFFF; }
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-social-link svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-social-link:hover svg {
  transform: scale(1.15);
}
.footer-social-insta:hover {
  border-color: rgba(225, 48, 108, 0.6);
  color: #fff;
  background: rgba(225, 48, 108, 0.15);
  box-shadow: 0 0 16px rgba(225, 48, 108, 0.35);
  transform: translateY(-2px);
}
.footer-social-insta:hover svg {
  stroke: #FF5A87;
}
.footer-social-fb:hover {
  border-color: rgba(24, 119, 242, 0.6);
  color: #fff;
  background: rgba(24, 119, 242, 0.15);
  box-shadow: 0 0 16px rgba(24, 119, 242, 0.35);
  transform: translateY(-2px);
}
.footer-social-fb:hover svg {
  fill: #4593fc;
}
.footer-social-li:hover {
  border-color: rgba(10, 102, 194, 0.6);
  color: #fff;
  background: rgba(10, 102, 194, 0.15);
  box-shadow: 0 0 16px rgba(10, 102, 194, 0.35);
  transform: translateY(-2px);
}
.footer-social-li:hover svg {
  fill: #2e8ff5;
}
.footer-social-x:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.footer-social-x:hover svg {
  fill: #ffffff;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy, .footer-right {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

/* ====================================================
   TOAST
===================================================== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  border-left: 3px solid var(--accent);
  z-index: 9000;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s var(--ease-smooth), opacity 0.5s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--accent); font-size: 1rem; }

/* ====================================================
   TOUCH AFFORDANCE BADGES & ACCORDION INDICATORS
===================================================== */
.work-touch-badge {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(7, 8, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease-smooth), background 0.25s, border-color 0.25s, color 0.25s;
}

/* ====================================================
   5-TIER RESPONSIVE SYSTEM
===================================================== */

/* ── 1. SMALL DESKTOP (1024px – 1279px) ────────────── */
@media (max-width: 1279px) {
  .hero-headline { font-size: clamp(2.6rem, 5.2vw, 4.4rem); }
  .nav-inner { gap: 24px; }
  .nav-links { gap: 24px; }
}

/* ── 2. TABLET (768px – 1023px) ────────────────────── */
@media (max-width: 1023px) {
  /* Navigation: Keep Logo + Primary CTA visible; secondary links collapse */
  .nav-links { display: none !important; }
  .nav-cta {
    display: inline-flex !important;
    padding: 10px 20px !important;
    font-size: 0.78rem !important;
    margin-left: auto;
  }
  .nav-toggle { display: flex !important; margin-left: 16px; }

  /* Hero: Stacking & 3D Object centered ~65% scale */
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px; }
  .hero-inner { padding: 40px var(--gutter); text-align: left; }
  .hero-headline { font-size: clamp(2.4rem, 6.5vw, 4.2rem); max-width: 100%; }
  .hero-sub { max-width: 600px; }
  .hero-3d-container {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    margin: 32px auto 0 !important;
    transform: none !important;
    width: clamp(280px, 46vw, 380px) !important;
    height: clamp(280px, 46vw, 380px) !important;
    opacity: 0.9 !important;
    z-index: 2;
  }
  .hero-scroll-indicator, .hero-corner-tag { display: none !important; }

  /* Layout grids */
  .intro-layout,
  .approach-inner,
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .intro-left, .approach-left, .about-left { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Services: Tap-to-expand Accordion */
  .service-row { cursor: pointer; }
  .service-row:hover .service-expand { max-height: 0; opacity: 0; }
  .service-row.active .service-expand {
    max-height: 1200px;
    opacity: 1;
    padding-bottom: 20px;
  }
  .service-row.active .service-arrow {
    transform: rotate(45deg);
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(59, 130, 246, 0.15);
  }
  .service-expand-body { flex-direction: column; gap: 24px; }
  .service-visual { width: 100%; max-width: 480px; }

  /* Work: 2-column editorial grid */
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .work-touch-badge { display: inline-flex; }

  /* Process Timeline */
  .process-timeline { gap: 12px; }
  .process-step { min-width: 120px; }
  .process-connector { width: 20px; }

  /* Industries Strip edge fade */
  .industries-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }

  /* Inquiry Chips: 2 columns */
  .services-chips-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── 3. MOBILE-LARGE (640px – 767px) ───────────────── */
@media (max-width: 767px) {
  /* Navigation */
  .nav-cta { display: none !important; }
  .nav-toggle { margin-left: auto; }

  /* Process: Switch to Vertical Timeline */
  .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 56px;
    overflow-x: visible;
  }
  .process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent) 0%, rgba(59, 130, 246, 0.25) 100%);
  }
  .process-connector { display: none !important; }
  .process-step {
    position: relative;
    padding-bottom: 36px;
    min-width: 0;
  }
  .process-step:last-child { padding-bottom: 0; }
  .process-step-num {
    position: absolute;
    left: -56px;
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-surface-2);
    border: 1.5px solid var(--accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.35);
    z-index: 2;
  }
  .process-step-content { margin-top: 4px; }
  .process-step-title { font-size: 1.15rem; margin-bottom: 6px; color: #fff; }
  .process-step-desc { font-size: 0.88rem; line-height: 1.55; color: rgba(255, 255, 255, 0.65); }

  /* General elements */
  .trust-items { gap: 0; }
  .trust-divider { display: none; }
  .trust-item { padding: 12px 16px; width: 50%; justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-detail-item { margin-bottom: 16px; }
  .footer-top-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Floating action buttons */
  .fab-group {
    bottom: 20px;
    right: 16px;
    flex-direction: row;
    gap: 10px;
  }
  .fab {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    max-width: 48px !important;
  }
  .fab-label { display: none; }
}

/* ── 4. MOBILE (0px – 639px) ────────────────────────── */
@media (max-width: 639px) {
  :root {
    --nav-h: 68px;
    --nav-h-compact: 54px;
    --section-pad: 54px;
  }

  /* Hero: Clean mobile typography & stacked full-width actions */
  .hero-headline {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
    letter-spacing: -0.024em;
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 15px 24px;
  }
  .hero-actions .btn-secondary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 0;
  }
  .hero-3d-container {
    width: 240px !important;
    height: 240px !important;
    margin: 20px auto 0 !important;
    opacity: 0.8 !important;
  }

  /* Featured Work: Touch Horizontal Swipe with Scroll-Snap */
  .work-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 10px 0 24px !important;
    margin-left: calc(-1 * var(--gutter)) !important;
    margin-right: calc(-1 * var(--gutter)) !important;
    padding-left: var(--gutter) !important;
    padding-right: var(--gutter) !important;
    scrollbar-width: none;
  }
  .work-grid::-webkit-scrollbar { display: none; }
  .work-item {
    flex: 0 0 calc(100vw - (var(--gutter) * 2)) !important;
    max-width: 360px !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
  }
  .work-item-visual { height: 260px; }
  .work-item-info { padding: 20px 18px 24px; }
  .work-touch-badge { display: inline-flex; }

  /* Services Rows */
  .service-row { padding-top: 24px; padding-bottom: 24px; }
  .service-num { font-size: 0.85rem; }
  .service-category { font-size: 1.35rem; }
  .service-name { font-size: 0.88rem; }
  .service-visual { max-width: 100%; height: 210px; }

  /* Inquiry Form: Single Column Stacked Service Chips (min 46px tap height) */
  .services-chips-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .chip-item {
    min-height: 48px !important;
    padding: 12px 16px !important;
    font-size: 0.86rem !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }
  .chip-label { font-size: 0.86rem; }
  .inquiry-btn-submit {
    width: 100% !important;
    justify-content: center !important;
    padding: 16px 24px !important;
  }

  /* Contact section social pills */
  .contact-social-grid { grid-template-columns: 1fr !important; }

  /* Footer & Headlines */
  .final-cta-heading { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .footer-nav { gap: 16px; flex-direction: column; }
}

/* ── 5. TOUCH-DEVICE OVERRIDES (pointer: coarse) ────── */
@media (pointer: coarse), (hover: none) {
  body, button, a, select, input, textarea {
    cursor: auto !important;
  }
  .cursor, .cursor-follower {
    display: none !important;
  }
  .work-touch-badge {
    display: inline-flex !important;
  }
  .service-row {
    cursor: pointer !important;
  }
  .service-row:hover::after {
    transform: scaleX(0) !important;
  }
  .service-row.active::after {
    transform: scaleX(1) !important;
  }
}

/* Page loading transition */
body { opacity: 0; transition: opacity 0.5s ease; }
body.loaded { opacity: 1; }

/* Nav active link */
.nav-link.active { color: #FFFFFF; }
.nav-link.active::after { transform: scaleX(1); background: var(--accent); }


/* ── PRELOADER ─────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--near-black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease-smooth), visibility 0.7s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.preloader-logo {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--white);
  opacity: 0;
  animation: preloaderFadeIn 0.6s var(--ease-smooth) 0.2s forwards;
}
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: preloaderFadeIn 0.4s ease 0.5s forwards;
}
.preloader-progress {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.04s linear;
}
.preloader-count {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
  opacity: 0;
  animation: preloaderFadeIn 0.4s ease 0.5s forwards;
}
@keyframes preloaderFadeIn {
  to { opacity: 1; }
}


/* ── FLOATING ACTION BUTTONS ───────────────────── */
.fab-group {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
}
.fab-group.visible {
  opacity: 1;
  transform: translateY(0);
}
.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 16px;
  height: 48px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: none;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s, background 0.3s;
  white-space: nowrap;
  overflow: hidden;
  max-width: 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.fab svg { flex-shrink: 0; }
.fab-label {
  opacity: 0;
  transition: opacity 0.2s, max-width 0.3s var(--ease-smooth);
  max-width: 0;
  overflow: hidden;
}
.fab:hover {
  max-width: 200px;
  transform: translateY(-2px) scale(1.02);
}
.fab:hover .fab-label {
  opacity: 1;
  max-width: 120px;
}
.fab-whatsapp {
  background: #25D366;
  color: #fff;
}
.fab-whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}
.fab-cta {
  background: var(--accent);
  color: #fff;
}
.fab-cta:hover {
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.5);
}

@media (max-width: 768px) {
  .fab-group {
    bottom: 20px;
    right: 16px;
    flex-direction: row;
    gap: 10px;
  }
  .fab {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    max-width: 48px !important;
  }
  .fab:hover { transform: none; }
  .fab-label { display: none; }
}


/* ── TESTIMONIALS ──────────────────────────────── */
.testimonials-section {
  background: var(--near-black);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.testimonials-header {
  margin-bottom: 56px;
}
.testimonials-section .section-label {
  color: rgba(255,255,255,0.4);
}
.testimonials-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--white);
}
.testimonials-slider {
  position: relative;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 100%);
  transition: transform 0.55s var(--ease-smooth);
  will-change: transform;
}
.testimonial-card {
  padding: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.testimonial-card:hover::before { opacity: 1; }
.testimonial-quote-icon {
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 0.6;
  font-family: Georgia, serif;
  opacity: 0.8;
}
.testimonial-text {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--mid-grey);
  letter-spacing: 0.02em;
}
.testimonial-stars {
  color: #FFB800;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.testimonial-prev,
.testimonial-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--white);
  font-size: 1.1rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}
.testimonials-dots {
  display: flex;
  gap: 8px;
}
.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: none;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
}
.tdot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
  transform: none;
}

@media (max-width: 768px) {
  .testimonial-card { padding: 28px 20px; }
  .testimonials-controls { gap: 16px; }
}


/* ── ENHANCED SERVICE ACCORDION ────────────────── */
.service-row {
  cursor: none;
  position: relative;
}
.service-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.service-row:hover::after,
.service-row.active::after {
  transform: scaleX(1);
}
.service-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth), padding 0.3s ease, opacity 0.3s;
  opacity: 0;
  padding: 0 0 0 0;
}
.service-row:hover .service-expand {
  max-height: 550px;
  opacity: 1;
  padding-bottom: 20px;
}
.service-row.active .service-expand {
  max-height: 1200px;
  opacity: 1;
  padding-bottom: 20px;
}
@media (hover: none), (pointer: coarse), (max-width: 1023px) {
  .service-row:hover .service-expand {
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
  }
}
.service-row .service-arrow {
  transition: transform 0.3s var(--ease-smooth);
}
.service-row:hover .service-arrow,
.service-row.active .service-arrow {
  transform: rotate(45deg);
  color: var(--accent);
}


/* ── ENHANCED FORM VALIDATION ──────────────────── */
.form-group {
  position: relative;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}
.form-group .field-error {
  font-size: 0.7rem;
  color: #ef4444;
  margin-top: 4px;
  display: block;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.form-group.has-error .field-error {
  opacity: 1;
  transform: translateY(0);
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #ef4444 !important;
  animation: fieldShake 0.35s ease;
}
.form-group.has-success input,
.form-group.has-success select,
.form-group.has-success textarea {
  border-color: #22c55e !important;
}
@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.form-submit {
  position: relative;
  overflow: hidden;
}
.form-submit .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 8px;
}
.form-submit.loading .btn-spinner { display: inline-block; }
.form-submit.loading .btn-text { opacity: 0.7; }
@keyframes spin {
  to { transform: rotate(360deg); }
}
.form-submit.success-state {
  background: #22c55e !important;
}


/* ── IMPROVED MOBILE RESPONSIVENESS ────────────── */
@media (max-width: 480px) {
  .hero-headline { letter-spacing: -0.02em; }
  .work-grid { grid-template-columns: 1fr; gap: 20px; }
  .insights-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .about-tagline { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .contact-layout { gap: 48px; }
  .final-cta-inner { flex-direction: column; gap: 32px; }
  .process-timeline { gap: 32px; }
  .footer-top-inner { flex-direction: column; gap: 24px; }
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 9998;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.05s linear;
}

/* Enhanced hover glow on work items */
.work-item {
  transition: transform 0.4s var(--ease-smooth);
}
.work-item:hover {
  transform: translateY(-6px);
}

/* Insight items hover */
.insight-item {
  transition: transform 0.35s var(--ease-smooth), background 0.3s, border-color 0.3s;
}
.insight-item:hover {
  transform: translateY(-4px);
}

/* Pulse animation for the dot in eyebrow */
.dot {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0); }
}

/* Glow on pillar icons */
.pillar-icon {
  transition: color 0.3s, text-shadow 0.3s;
}
.pillar:hover .pillar-icon {
  text-shadow: 0 0 16px rgba(var(--accent-rgb), 0.8);
}

/* Trust item scale hover */
.trust-item {
  transition: transform 0.3s;
}
.trust-item:hover {
  transform: translateY(-2px);
}

/* Social link animated underline */
.social-link, .footer-nav a {
  position: relative;
  transition: color 0.3s;
}
.social-link::after, .footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-smooth);
}
.social-link:hover::after, .footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Keyboard nav focus visible */
body.keyboard-nav a:focus,
body.keyboard-nav button:focus,
body.keyboard-nav input:focus,
body.keyboard-nav select:focus,
body.keyboard-nav textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ====================================================
   HERO 3D "CAMERA × TECH FUSION" (SIGNATURE 3D MOMENT)
===================================================== */
.hero-3d-container {
  position: absolute;
  right: clamp(20px, 5vw, 110px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(360px, 34vw, 520px);
  height: clamp(360px, 34vw, 520px);
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-3d-container::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 91, 255, 0.07) 0%, transparent 65%);
  filter: blur(35px);
  pointer-events: none;
  z-index: -1;
}

#cameraTechCanvas {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero-3d-fallback {
  display: none;
  width: 75%;
  height: 75%;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .hero-3d-container {
    right: 10px;
    width: 340px;
    height: 340px;
    opacity: 0.85;
  }
}

@media (max-width: 768px) {
  .hero-3d-container {
    right: auto;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    opacity: 0.55;
    z-index: 1;
  }
}

/* ====================================================
   SERVICE ROW INTERFACE FRAGMENTS
===================================================== */
.service-expand-body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  padding-top: 10px;
}

.service-expand-text {
  flex: 1;
  max-width: 520px;
}

.service-visual {
  flex: 0 0 330px;
  height: 230px;
  background: #0d0d0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* 01 DIGITAL — Nav + Card */
.sv-digital {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(145deg, #111116, #09090b);
}
.sv-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}
.sv-nav-logo {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fff;
}
.sv-nav-links {
  display: flex;
  gap: 10px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}
.sv-nav-cta {
  color: var(--accent) !important;
  font-weight: 600;
}
.sv-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sv-card-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.sv-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.sv-card-meta {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
}
.sv-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 4px 0;
}
.sv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sv-card-price {
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
}
.sv-card-btn {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--accent);
}

/* 02 SOCIAL — Phone Notch + Instagram Grid */
.sv-social {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  background: #000;
}
.sv-phone-notch {
  width: 50px;
  height: 4px;
  background: #222;
  border-radius: 2px;
  margin: 0 auto 6px;
}
.sv-insta-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.sv-insta-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.sv-insta-info {
  flex: 1;
}
.sv-insta-name {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.sv-insta-followers {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.4);
}
.sv-insta-follow {
  font-size: 0.55rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
}
.sv-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 6px;
}
.sv-post {
  aspect-ratio: 1;
  background: #1a1a1f;
  border-radius: 2px;
}
.sv-post--1 { background: #26262e; }
.sv-post--2 { background: #33333e; }
.sv-post--3 { background: #1e1e24; }
.sv-post--4 { background: #2f2f3a; }
.sv-post--5 { background: var(--accent); opacity: 0.7; }
.sv-post--6 { background: #23232b; }
.sv-post--7 { background: #3b3b47; }
.sv-post--8 { background: #1c1c22; }
.sv-post--9 { background: #292933; }
.sv-insta-bar {
  display: flex;
  justify-content: space-around;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}
.sv-bar-active {
  color: var(--accent);
}

/* 03 CONTENT — 9:16 Video Frame */
.sv-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08080a;
}
.sv-video-frame {
  width: 140px;
  height: 206px;
  background: linear-gradient(180deg, #181822 0%, #0c0c12 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  position: relative;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sv-rec-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #ef4444;
  animation: pulse 1.5s infinite;
}
.sv-video-overlay {
  display: flex;
  justify-content: flex-end;
}
.sv-video-label {
  font-size: 0.52rem;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 5px;
  border-radius: 3px;
}
.sv-video-scene {
  position: relative;
  margin-top: auto;
  margin-bottom: 6px;
}
.sv-scene-text {
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
}
.sv-scene-caption {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}
.sv-scrubber {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  border-radius: 1px;
}
.sv-scrubber-fill {
  width: 45%;
  height: 100%;
  background: var(--accent);
}
.sv-scrubber-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.sv-video-actions {
  display: flex;
  justify-content: space-between;
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* 04 MEDIA — Meta Ad Card */
.sv-media {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #09090c;
}
.sv-ad-card {
  width: 100%;
  background: #141418;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sv-ad-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sv-ad-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2563eb;
}
.sv-ad-meta {
  display: flex;
  flex-direction: column;
}
.sv-ad-name {
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.sv-ad-sponsored {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 3px;
}
.sv-ad-image {
  height: 68px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.sv-ad-img-content {
  font-size: 0.6rem;
  font-weight: 700;
  color: #93c5fd;
  text-align: center;
  padding: 0 8px;
}
.sv-ad-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sv-ad-headline {
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.sv-ad-desc {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
}
.sv-ad-cta {
  align-self: flex-start;
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}

/* 05 GROWTH — SVG Chart */
.sv-growth {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #0f1422, #070910);
}
.sv-chart-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
}
.sv-chart-label {
  font-weight: 700;
  color: #fff;
}
.sv-chart-period {
  color: rgba(255, 255, 255, 0.4);
}
.sv-chart-wrap {
  display: flex;
  align-items: stretch;
  gap: 8px;
  height: 110px;
  margin: 4px 0;
}
.sv-chart-yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
}
.sv-chart-area {
  flex: 1;
  position: relative;
}
.sv-sparkline {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.sv-callout {
  position: absolute;
  top: -4px;
  right: 0;
  background: rgba(30, 58, 138, 0.88);
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 4px;
  padding: 2px 6px;
  text-align: right;
  backdrop-filter: blur(4px);
}
.sv-callout-val {
  font-size: 0.62rem;
  font-weight: 800;
  color: #60a5fa;
  font-family: monospace;
}
.sv-callout-sub {
  font-size: 0.46rem;
  color: rgba(255, 255, 255, 0.6);
}
.sv-chart-xaxis {
  display: flex;
  justify-content: space-between;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  padding-left: 20px;
}

@media (max-width: 900px) {
  .service-expand-body {
    flex-direction: column;
  }
  .service-visual {
    flex: none;
    width: 100%;
    max-width: 360px;
  }
}

/* ====================================================
   SELECTED WORK CONTEXT FRAMES & 3D TILT
===================================================== */
.work-item {
  perspective: 1000px;
}

.work-frame {
  transform: rotateX(var(--tiltX, 0deg)) rotateY(var(--tiltY, 0deg));
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
  will-change: transform;
}

/* Phone Frame */
.work-frame--phone {
  width: 230px;
  height: 370px;
  background: #111114;
  border-radius: 34px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.wf-phone-notch {
  width: 65px;
  height: 5px;
  background: #000;
  border-radius: 4px;
  margin-bottom: 8px;
  z-index: 2;
}
.wf-phone-screen {
  flex: 1;
  width: 100%;
  background: #18181c;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wf-phone-bar {
  width: 75px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-top: 8px;
}

/* Browser Frame */
.work-frame--browser {
  width: 88%;
  max-width: 380px;
  background: #0d121c;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wf-browser-bar {
  height: 32px;
  background: #161e2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 12px;
}
.wf-browser-dots {
  display: flex;
  gap: 5px;
}
.wf-browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.wf-browser-dots span:nth-child(1) { background: #ef4444; opacity: 0.85; }
.wf-browser-dots span:nth-child(2) { background: #f59e0b; opacity: 0.85; }
.wf-browser-dots span:nth-child(3) { background: #10b981; opacity: 0.85; }
.wf-browser-url {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
  background: rgba(0, 0, 0, 0.25);
  padding: 3px 10px;
  border-radius: 4px;
  flex: 1;
  max-width: 180px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.wf-browser-screen {
  flex: 1;
  background: #080c14;
}

/* Instagram App Frame */
.work-frame--instagram {
  width: 260px;
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wf-ig-header {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.wf-ig-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}
.wf-ig-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
}
.wf-ig-follow {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--accent);
}
.wf-ig-post {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1c1c20, #0a0a0c);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-ig-post-content {
  text-align: center;
}
.wf-ig-post-text {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
}
.wf-ig-post-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
}
.wf-ig-actions {
  display: flex;
  gap: 12px;
  padding: 8px 12px 4px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.8);
}
.wf-ig-caption {
  padding: 0 12px 10px;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}
.wf-ig-caption strong {
  color: #fff;
}

/* ====================================================
   MAGNETIC HERO CTA
===================================================== */
#ctaMagnetic {
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ====================================================
   ACCESSIBILITY & PREFERS-REDUCED-MOTION
===================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-3d-stack,
  .hero-3d-stack * {
    transform: none !important;
    transition: none !important;
  }
  .work-frame {
    transform: none !important;
    transition: none !important;
  }
  #ctaMagnetic {
    transform: none !important;
    transition: none !important;
  }
}

