/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #080808;
  --bg-2: #0d0d0d;
  --bg-3: #111111;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --accent: #63ffb4;
  --accent-2: #5282ff;
  --text: #f0ece3;
  --text-2: #888;
  --text-3: #444;
  --font-display: 'Cabinet Grotesk', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-mono: 'Geist Mono', monospace;
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== CANVAS BG ===== */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ===== NOISE ===== */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ===== CURSOR ===== */
.cursor {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(99,255,180,0.3);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 12px; height: 12px; }

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 48px; height: 48px;
  border-color: rgba(99,255,180,0.6);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-3); border-radius: 2px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-ap { color: var(--text); }
.logo-x { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #080808;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(99,255,180,0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-2);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--font-mono);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-name {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 28px;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) { animation-delay: 0.55s; color: var(--accent); }
.hero-title .line:nth-child(3) { animation-delay: 0.7s; }

.hero-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

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

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.85s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #080808;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99,255,180,0.25);
}

.btn-ghost {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.03);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
}

.stat-suffix {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-hint span {
  font-size: 10px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: rgba(255,255,255,0.015);
}

.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee-track .dot { color: var(--accent); }

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

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 60px;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.section-sub {
  font-size: 16px;
  color: var(--text-2);
  margin-top: -40px;
  margin-bottom: 60px;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: none;
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 1px;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(99,255,180,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(99,255,180,0.08);
  border: 1px solid rgba(99,255,180,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tags span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* ===== WORK ===== */
.work { background: var(--bg); }

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.work-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: none;
}

.work-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.work-card--large {
  grid-column: 1 / -1;
}

.work-card-inner {
  display: flex;
  flex-direction: column;
}

.work-card--large .work-card-inner {
  flex-direction: row;
}

.work-preview {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.work-card--large .work-preview {
  flex: 1;
  border-bottom: none;
  border-right: 1px solid var(--border);
  min-height: 300px;
}

.work-preview--sm {
  min-height: 160px;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.browser-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.browser-bar span:nth-child(1) { background: #ff5f57; }
.browser-bar span:nth-child(2) { background: #febc2e; }
.browser-bar span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

/* CCTV Mockup */
.cctv-mockup {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-nav {
  height: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.mock-hero {
  flex: 1;
  background: linear-gradient(135deg, rgba(99,255,180,0.05) 0%, rgba(82,130,255,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-title {
  height: 16px;
  width: 60%;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.mock-sub {
  height: 10px;
  width: 40%;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}

.mock-btn {
  height: 24px;
  width: 80px;
  background: rgba(99,255,180,0.2);
  border-radius: 6px;
  margin-top: 4px;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mock-card {
  height: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* Tracium mockup */
.tracium-mockup {
  display: flex;
  gap: 8px;
  flex: 1;
}

.mock-sidebar {
  width: 40px;
  background: rgba(99,255,180,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.mock-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-chart {
  flex: 1;
  background: linear-gradient(to top, rgba(99,255,180,0.1), rgba(99,255,180,0.02));
  border: 1px solid var(--border);
  border-radius: 6px;
  clip-path: polygon(0 80%, 15% 60%, 30% 70%, 45% 40%, 60% 55%, 75% 20%, 90% 35%, 100% 10%, 100% 100%, 0 100%);
}

.mock-stats {
  display: flex;
  gap: 6px;
}

.mock-stats div {
  flex: 1;
  height: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* AttendX mockup */
.attend-mockup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mock-header-bar {
  height: 28px;
  background: rgba(82,130,255,0.1);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.mock-table {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-row {
  height: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.mock-row:nth-child(odd) { background: rgba(255,255,255,0.015); }

.work-info {
  padding: 24px;
}

.work-card--large .work-info {
  min-width: 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.work-info h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.work-info p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.work-stack {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.work-stack span {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-3);
  font-family: var(--font-mono);
}

/* ===== PRICING ===== */
.pricing { background: var(--bg-2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  cursor: none;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: rgba(99,255,180,0.03);
  border-color: rgba(99,255,180,0.2);
}

.pricing-card--featured:hover {
  border-color: rgba(99,255,180,0.4);
  box-shadow: 0 24px 48px rgba(99,255,180,0.08);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #080808;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.pricing-features li svg { flex-shrink: 0; margin-top: 1px; }

.pricing-features li.bonus { color: #fbbf24; }

.pricing-support {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-bottom: 24px;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: var(--transition);
}

.pricing-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.pricing-btn--featured {
  background: var(--accent);
  color: #080808;
  border-color: var(--accent);
}

.pricing-btn--featured:hover {
  background: #fff;
  border-color: #fff;
  color: #080808;
  box-shadow: 0 8px 24px rgba(99,255,180,0.2);
}

.pricing-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.extra-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  cursor: none;
}

.extra-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.extra-icon { font-size: 28px; flex-shrink: 0; }

.extra-content { flex: 1; }

.extra-content h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.extra-content p {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 8px;
}

.extra-tags {
  display: flex;
  gap: 6px;
}

.extra-tags span {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-3);
  font-family: var(--font-mono);
}

.extra-price {
  text-align: right;
  flex-shrink: 0;
}

.extra-price span {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--accent);
}

.extra-price small {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

/* ===== PROCESS ===== */
.process { background: var(--bg); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: none;
}

.step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.step h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

.step-arrow {
  color: var(--text-3);
  font-size: 20px;
  padding: 0 12px;
  padding-top: 40px;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(99,255,180,0.08);
  border: 1px solid rgba(99,255,180,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item-label {
  display: block;
  font-size: 10px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

/* FORM */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-display);
  outline: none;
  transition: var(--transition);
  cursor: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(99,255,180,0.3);
  background: rgba(99,255,180,0.02);
}

.form-group select option { background: var(--bg-2); }

.form-group textarea { resize: vertical; }

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #080808;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: none;
  transition: var(--transition);
}

.form-submit:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99,255,180,0.2);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: var(--bg);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; display: block; }

.footer-brand p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h5 {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-3);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

/* ===== PAGE HEADER ===== */
.page-header {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 32px 60px;
  position: relative;
  z-index: 2;
}

.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--font-mono);
  margin-bottom: 24px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.highlight {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}

.highlight:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.highlight h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.highlight p {
  font-size: 13px;
  color: var(--text-3);
  margin: 0;
}

.about-skills h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.skill-category {
  margin-bottom: 24px;
}

.skill-category h5 {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(99,255,180,0.08);
  border: 1px solid rgba(99,255,180,0.2);
  border-radius: 100px;
  font-size: 12px;
  color: var(--accent);
  transition: var(--transition);
}

.skill-tag:hover {
  background: rgba(99,255,180,0.15);
  border-color: rgba(99,255,180,0.3);
}

/* ===== WHY SECTION ===== */
.why-section { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===== SERVICES DETAIL ===== */
.services-detail { background: var(--bg); }

.service-detail-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 32px;
  transition: var(--transition);
}

.service-detail-card:hover {
  border-color: var(--border-hover);
}

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}

.service-detail-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.service-badge {
  display: inline-block;
  background: rgba(99,255,180,0.1);
  border: 1px solid rgba(99,255,180,0.2);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-detail-header h2 {
  font-size: 28px;
  font-weight: 900;
}

.service-detail-desc {
  font-size: 14px;
  color: var(--text-2);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}

.detail-col h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  padding-left: 0;
  position: relative;
  padding-left: 20px;
}

.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.tech-item h5 {
  font-size: 12px;
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tech-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tech-item li {
  font-size: 13px;
  color: var(--text-2);
}

.pricing-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.pricing-mini-item {
  padding: 12px;
  background: var(--bg-2);
  border-radius: 8px;
}

.pricing-mini-item h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-mini-item .price {
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
  margin: 4px 0;
}

.pricing-mini-item p {
  font-size: 12px;
  color: var(--text-3);
  margin: 0;
}

.btn-service-cta {
  display: inline-block;
  background: var(--accent);
  color: #080808;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.btn-service-cta:hover {
  background: #fff;
  transform: translateY(-2px);
}

.custom-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.module {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.module h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.module p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
}

.uni-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.uni-tags span {
  padding: 4px 10px;
  background: rgba(99,255,180,0.08);
  border: 1px solid rgba(99,255,180,0.15);
  border-radius: 100px;
  font-size: 11px;
  color: var(--accent);
}

.process-list {
  list-style: none;
  counter-reset: step-counter;
}

.process-list li {
  counter-increment: step-counter;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.process-list li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  background: rgba(99,255,180,0.2);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}

/* ===== QUICK CONTACT ===== */
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.quick-contact-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.quick-contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(99,255,180,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.quick-contact-card:hover {
  border-color: rgba(99,255,180,0.3);
  transform: translateY(-8px);
}

.quick-contact-card:hover::before {
  opacity: 1;
}

.qc-icon {
  width: 56px;
  height: 56px;
  background: rgba(99,255,180,0.1);
  border: 1px solid rgba(99,255,180,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.quick-contact-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.quick-contact-card p {
  font-size: 13px;
  color: var(--text-2);
  position: relative;
  z-index: 1;
}

.qc-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s, right 0.3s;
}

.quick-contact-card:hover .qc-arrow {
  opacity: 1;
  right: 16px;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section { background: var(--bg-2); }

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 40px;
}

.form-intro h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}

.form-intro p {
  font-size: 15px;
  color: var(--text-2);
}

.contact-form-full {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.form-group.checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.form-group.checkbox label {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-display);
  cursor: pointer;
  margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--bg); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-2);
  transition: var(--transition);
  user-select: none;
}

.faq-item.open .faq-header {
  background: rgba(99,255,180,0.05);
  border-bottom: 1px solid var(--border);
}

.faq-header h4 {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 24px;
  color: var(--accent);
  font-weight: 700;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-body {
  padding: 20px;
  max-height: 500px;
}

.faq-body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(99,255,180,0.05) 100%);
  text-align: center;
  padding: 80px 32px;
}

.cta-section h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--large .work-card-inner { flex-direction: column; }
  .work-card--large .work-info { max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-extras { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-arrow { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
  .hero-stats { gap: 24px; }
  
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-content { grid-template-columns: 1fr; gap: 32px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-modules { grid-template-columns: 1fr; }
  .quick-contact-grid { grid-template-columns: 1fr; }
  
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  * { cursor: auto !important; }
}

@media (max-width: 600px) {
  .hero-title { letter-spacing: -2px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .extra-card { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .service-detail-card { padding: 24px; }
  .service-detail-header { flex-direction: column; }
  .cta-actions { flex-direction: column; }
  .btn-service-cta { width: 100%; text-align: center; display: block; }
}
