/* ========================================================
   OPUS STUDIOS — BESPOKE WEB DEVELOPMENT
   Original · Premium · Unique · Signature
   ======================================================== */

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --bg:       #04091a;
  --bg2:      #070d1f;
  --bg3:      #0b1228;
  --cyan:     #00d4ff;
  --cyan2:    #00a8cc;
  --purple:   #8b5cf6;
  --pink:     #f43f5e;
  --orange:   #f97316;
  --green:    #10b981;
  --text:     #e2e8f0;
  --text2:    #94a3b8;
  --text3:    #64748b;
  --glass:    rgba(255,255,255,0.04);
  --glass2:   rgba(255,255,255,0.07);
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.12);
  --radius:   16px;
  --radius-sm:10px;
  --shadow-cyan: 0 0 30px rgba(0,212,255,0.15);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  /* Soft copyright protection — disable text selection site-wide except in forms */
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
input, textarea, select {
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
img, svg { -webkit-user-drag: none; user-drag: none; pointer-events: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
::selection { background: rgba(0,212,255,0.25); color: var(--text); }

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--cyan2); border-radius: 4px; }

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor {
  width: 5px; height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  /* translate(-50%,-50%) stays; no other transitions — snaps to mouse instantly */
  transform: translate(-50%,-50%);
  display: none;
  box-shadow: 0 0 6px var(--cyan), 0 0 14px rgba(0,212,255,0.35);
  transition: width 0.12s, height 0.12s, background 0.12s;
}
.cursor.hovering {
  width: 8px; height: 8px;
  background: #fff;
}
.cursor-glow {
  width: 30px; height: 30px;
  border: 1.5px solid rgba(0,212,255,0.45);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  /* CSS handles the position lag — 60ms trailing effect, no JS loop needed */
  transition: left 0.06s linear, top 0.06s linear,
              transform 0.16s ease, border-color 0.16s, background 0.16s;
  transform: translate(-50%,-50%) scale(1);
  display: none;
  background: rgba(0,212,255,0.03);
}
.cursor-glow.hovering {
  transform: translate(-50%,-50%) scale(1.9);
  border-color: rgba(0,212,255,0.8);
  background: rgba(0,212,255,0.05);
}
@media (pointer: fine) {
  .cursor, .cursor-glow { display: block; }
  body { cursor: none; }
  a, button, [onclick] { cursor: none; }
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; }

/* ── GLOWING TEXT ───────────────────────────────────────── */
.glow-text {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0,212,255,0.4));
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  border: none; cursor: none;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 35px rgba(0,212,255,0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(0,212,255,0.15);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(4,9,26,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  color: var(--text);
  display: flex; align-items: center; gap: 6px;
}
.logo-mark { color: var(--cyan); }
.logo-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--text); margin-left: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.3s;
  pointer-events: none;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2)) !important;
  color: var(--bg) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  box-shadow: 0 0 20px rgba(0,212,255,0.35) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none;
  padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav {
  display: none;
  position: fixed; top: 62px; left: 0; right: 0; z-index: 99;
  background: rgba(4,9,26,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
}
.mobile-nav a {
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500; color: var(--text2);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--cyan); }
.mobile-nav.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
#particleCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 75%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 8rem 2rem 4rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--cyan); letter-spacing: 0.05em;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-title {
  animation: fadeUp 0.8s 0.1s ease both;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.typewriter-wrap {
  display: block;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-height: 1.2em;
}
.typewriter-text { }
.type-cursor {
  -webkit-text-fill-color: var(--cyan);
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-sub {
  color: var(--text2);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-tech-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-tech-tags span {
  padding: 5px 14px;
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text3);
  background: var(--glass);
}
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text3); font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  text-align: center; padding: 0 3rem;
}
.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  display: flex; align-items: flex-start; justify-content: center;
}
.stat-prefix { font-size: 1.4rem; padding-top: 4px; }
.stat-suffix { font-size: 1.4rem; padding-top: 4px; }
.stat-label {
  color: var(--text2); font-size: 0.85rem;
  margin-top: 6px;
}
.stat-sep {
  width: 1px; height: 50px;
  background: var(--border2);
  flex-shrink: 0;
}

/* ── SECTION COMMONS ─────────────────────────────────────── */
.section { padding: 7rem 0; }
.section-alt { background: var(--bg2); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; letter-spacing: -0.02em; }
.section-desc { color: var(--text2); font-size: 1.05rem; max-width: 560px; margin-bottom: 3.5rem; }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PROJECT CARDS ───────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.project-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.project-card:hover { transform: translateY(-6px); border-color: var(--border2); }
.card-cyan:hover  { box-shadow: 0 20px 60px rgba(0,212,255,0.12); }
.card-cyan:hover::before { background: radial-gradient(circle at 50% 0%, rgba(0,212,255,0.06) 0%, transparent 60%); opacity: 1; }
.card-red:hover   { box-shadow: 0 20px 60px rgba(244,63,94,0.12); }
.card-red:hover::before { background: radial-gradient(circle at 50% 0%, rgba(244,63,94,0.06) 0%, transparent 60%); opacity: 1; }
.card-orange:hover { box-shadow: 0 20px 60px rgba(249,115,22,0.12); }
.card-orange:hover::before { background: radial-gradient(circle at 50% 0%, rgba(249,115,22,0.06) 0%, transparent 60%); opacity: 1; }
.card-purple:hover { box-shadow: 0 20px 60px rgba(139,92,246,0.12); }
.card-purple:hover::before { background: radial-gradient(circle at 50% 0%, rgba(139,92,246,0.06) 0%, transparent 60%); opacity: 1; }

/* ── PROJECT PREVIEW BASE ────────────────────────────────── */
.project-preview {
  height: 220px; overflow: hidden; position: relative;
  border-bottom: 1px solid var(--border);
}
.project-info {
  padding: 1.5rem;
  position: relative; z-index: 1;
}
.project-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 0.8rem;
}
.project-tags span {
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  font-size: 0.72rem; font-weight: 600;
  color: var(--text3);
  background: var(--glass);
}
.project-info h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.project-info p { color: var(--text2); font-size: 0.88rem; line-height: 1.6; margin-bottom: 1.2rem; }
.project-footer { display: flex; align-items: center; justify-content: space-between; }
.project-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.8rem; font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s;
  cursor: none;
  background: none;
  outline: none;
}
.live-btn {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--cyan);
}
.live-btn:hover { background: rgba(0,212,255,0.2); }
.delivered-btn {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green);
}
.project-client { font-size: 0.78rem; color: var(--text3); }

/* ── EDUMATE PREVIEW ─────────────────────────────────────── */
.edumate-preview {
  background: #0f0b24;
  display: flex;
}
.ep-sidebar {
  width: 52px; flex-shrink: 0;
  background: #1a1040;
  border-right: 1px solid rgba(139,92,246,0.2);
  display: flex; flex-direction: column;
  align-items: center; padding: 14px 0; gap: 10px;
}
.ep-s-logo {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #8b5cf6, #00d4ff);
  border-radius: 7px; margin-bottom: 6px;
}
.ep-s-item {
  width: 26px; height: 7px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  transition: background 0.2s;
}
.ep-s-item.active {
  background: rgba(139,92,246,0.6);
  box-shadow: 0 0 8px rgba(139,92,246,0.4);
}
.ep-body { flex: 1; display: flex; flex-direction: column; padding: 12px; }
.ep-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.ep-tb-title { width: 80px; height: 8px; background: rgba(255,255,255,0.2); border-radius: 4px; }
.ep-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.ep-stats-row {
  display: flex; gap: 6px; margin-bottom: 10px;
}
.ep-stat {
  flex: 1; height: 38px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}
.ep-s1 { background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,212,255,0.05)); }
.ep-s2 { background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(139,92,246,0.05)); }
.ep-s3 { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05)); }
.ep-chart-area {
  flex: 1;
  display: flex; align-items: flex-end; gap: 5px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px; padding: 8px 8px 4px;
}
.ep-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(139,92,246,0.8), rgba(0,212,255,0.4));
  border-radius: 3px 3px 0 0;
  animation: barGrow 1.5s ease-out both;
}
@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}
.ep-bar:nth-child(1) { animation-delay: 0.1s; }
.ep-bar:nth-child(2) { animation-delay: 0.2s; }
.ep-bar:nth-child(3) { animation-delay: 0.3s; }
.ep-bar:nth-child(4) { animation-delay: 0.4s; }
.ep-bar:nth-child(5) { animation-delay: 0.5s; }
.ep-bar:nth-child(6) { animation-delay: 0.6s; }
.ep-bar:nth-child(7) { animation-delay: 0.7s; }

/* ── SAFECALL PREVIEW ────────────────────────────────────── */
.safecall-preview {
  background: linear-gradient(135deg, #1e1b4b 0%, #2d1b69 100%);
  display: flex; flex-direction: column;
  padding: 12px 14px; gap: 10px;
}
.sc-header {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 7px 10px;
}
.sc-logo-wrap { display: flex; align-items: center; gap: 7px; }
.sc-shield {
  width: 24px; height: 24px;
  background: #dc2626;
  border-radius: 50%;
}
.sc-title-block { display: flex; flex-direction: column; gap: 2px; }
.sc-app-name {
  width: 52px; height: 7px;
  background: rgba(255,255,255,0.7); border-radius: 4px;
}
.sc-app-sub {
  width: 80px; height: 5px;
  background: rgba(255,255,255,0.25); border-radius: 4px;
}
.sc-greeting-wrap { display: flex; align-items: center; gap: 6px; }
.sc-greeting { width: 40px; height: 7px; background: rgba(255,255,255,0.3); border-radius: 4px; }
.sc-avatar {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: white;
}
.sc-sos-wrap {
  display: flex; justify-content: center; align-items: center;
  padding: 4px 0;
}
.sc-sos-btn {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: white;
  position: relative;
  box-shadow: 0 0 20px rgba(220,38,38,0.5);
  animation: sosPulse 2s infinite;
}
@keyframes sosPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(220,38,38,0.5); }
  50% { box-shadow: 0 0 35px rgba(220,38,38,0.8), 0 0 50px rgba(220,38,38,0.3); }
}
.sc-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(220,38,38,0.4);
  animation: sosRing 2s infinite;
}
.sc-ring.r1 { width: 88px; height: 88px; animation-delay: 0s; }
.sc-ring.r2 { width: 108px; height: 108px; animation-delay: 0.5s; }
@keyframes sosRing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}
.sc-dial-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px;
}
.sc-dial {
  padding: 5px 4px;
  border-radius: 7px;
  font-size: 9px; font-weight: 800;
  text-align: center; color: white;
}
.sc-dial.police { background: #dc2626; }
.sc-dial.amb    { background: #dc2626; }
.sc-dial.women  { background: #7c3aed; }
.sc-dial.fire   { background: #ea580c; }

/* ── TRANSPORT PREVIEW ───────────────────────────────────── */
.transport-preview {
  background: #f8fafc;
  display: flex; flex-direction: column;
}
.tp-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  background: white;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.tp-logo { display: flex; align-items: center; gap: 5px; }
.tp-emoji { font-size: 16px; }
.tp-name { width: 70px; height: 7px; background: #1e293b; border-radius: 3px; margin-bottom: 3px; }
.tp-sub  { width: 50px; height: 5px; background: #94a3b8; border-radius: 3px; }
.tp-nav-right { display: flex; align-items: center; gap: 6px; }
.tp-nl { width: 30px; height: 6px; background: #94a3b8; border-radius: 3px; }
.tp-cta { width: 48px; height: 22px; background: #f97316; border-radius: 5px; }
.tp-hero-area {
  flex: 1;
  background: linear-gradient(135deg, #1e293b, #334155);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
}
.tp-hero-text { display: flex; flex-direction: column; gap: 5px; }
.tp-h1 { width: 100px; height: 10px; background: white; border-radius: 4px; }
.tp-h2 { width: 80px; height: 8px; background: rgba(255,255,255,0.6); border-radius: 4px; }
.tp-h3 { width: 120px; height: 6px; background: rgba(255,255,255,0.35); border-radius: 3px; }
.tp-hcta { width: 70px; height: 22px; background: #f97316; border-radius: 5px; margin-top: 4px; }
.tp-truck-graphic { font-size: 40px; opacity: 0.9; }
.tp-stats-bar {
  display: flex;
  background: white;
  border-top: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.tp-s { flex: 1; padding: 7px 8px; border-right: 1px solid #e2e8f0; }
.tp-s:last-child { border-right: none; }
.tp-sn { width: 40px; height: 8px; background: #f97316; border-radius: 3px; margin-bottom: 4px; }
.tp-sl { width: 55px; height: 5px; background: #e2e8f0; border-radius: 3px; }

/* ── OPUS STUDIOS PREVIEW (unused — kept for future case study) ───── */
.opus-preview {
  background: #04091a;
  display: flex; flex-direction: column;
}
.bfp-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0,212,255,0.1);
  flex-shrink: 0;
}
.bfp-brand { font-size: 11px; font-weight: 800; color: #00d4ff; letter-spacing: 0.02em; }
.bfp-nav-links { display: flex; align-items: center; gap: 6px; }
.bfp-nl { width: 24px; height: 5px; background: rgba(255,255,255,0.2); border-radius: 3px; }
.bfp-nl.cta { width: 40px; height: 18px; background: rgba(0,212,255,0.5); border-radius: 4px; }
.bfp-hero {
  flex: 1;
  padding: 14px 14px 8px;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,212,255,0.08), transparent 60%);
  display: flex; flex-direction: column; gap: 5px;
}
.bfp-badge { width: 80px; height: 14px; background: rgba(0,212,255,0.15); border: 1px solid rgba(0,212,255,0.3); border-radius: 100px; }
.bfp-h1 { height: 10px; background: rgba(255,255,255,0.8); border-radius: 4px; }
.bfp-h1.wide { width: 130px; }
.bfp-h1.medium { width: 100px; background: rgba(0,212,255,0.7); }
.bfp-p { width: 150px; height: 6px; background: rgba(255,255,255,0.25); border-radius: 3px; }
.bfp-btns { display: flex; gap: 6px; margin-top: 4px; }
.bfp-btn { height: 20px; border-radius: 5px; }
.bfp-btn.primary { width: 60px; background: #00d4ff; }
.bfp-btn.ghost { width: 60px; background: transparent; border: 1px solid rgba(255,255,255,0.2); }
.bfp-cards {
  display: flex; gap: 5px;
  padding: 0 14px 10px;
}
.bfp-card {
  flex: 1; padding: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  display: flex; flex-direction: column; gap: 4px;
}
.bfp-card.featured { border-color: rgba(0,212,255,0.3); background: rgba(0,212,255,0.05); }
.bfp-icon { width: 18px; height: 18px; border-radius: 5px; }
.bfp-icon.i1 { background: rgba(0,212,255,0.4); }
.bfp-icon.i2 { background: rgba(139,92,246,0.5); }
.bfp-icon.i3 { background: rgba(16,185,129,0.4); }
.bfp-ct { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.3); }
.bfp-ct.short { width: 60%; background: rgba(255,255,255,0.15); }

/* ── SERVICES ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,212,255,0.05), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow-cyan); }
.service-card:hover::after { opacity: 1; }
.service-card.featured {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.04);
}
.featured-badge {
  position: absolute; top: -1px; right: 20px;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: var(--bg);
  font-size: 0.72rem; font-weight: 700;
  border-radius: 0 0 8px 8px;
}
.service-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--icon-color, var(--cyan));
  margin-bottom: 1.2rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 20px rgba(0,212,255,0.1);
}
.service-card h3 { margin-bottom: 0.7rem; position: relative; z-index: 1; }
.service-card p { color: var(--text2); font-size: 0.9rem; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.service-features li {
  display: flex; align-items: center; gap: 8px;
  color: var(--text2); font-size: 0.88rem;
}
.service-features li i { color: var(--cyan); font-size: 0.7rem; }
.service-price-tag {
  color: var(--text2); font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.service-price-tag strong { color: var(--cyan); font-size: 1.1rem; }
.included-bar {
  background: var(--glass2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.included-label {
  font-size: 0.85rem; font-weight: 600;
  color: var(--text2); white-space: nowrap;
}
.included-items { display: flex; flex-wrap: wrap; gap: 10px; }
.included-items span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--text2);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--glass);
}
.included-items span i { color: var(--cyan); }

/* ── WHY US ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
  transition: all 0.4s ease;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.why-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  opacity: 0.6;
}
.why-icon {
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 1rem;
  display: block;
}
.why-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.why-card p { color: var(--text2); font-size: 0.88rem; line-height: 1.6; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-toggle-wrap {
  display: flex;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  width: fit-content;
  margin-bottom: 3rem;
}
.ptoggle {
  padding: 10px 28px;
  border: none;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  cursor: none;
  background: transparent;
  color: var(--text2);
  transition: all 0.3s;
}
.ptoggle.active {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
  animation: fadeUp 0.5s ease both;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.pricing-card.featured {
  border-color: rgba(0,212,255,0.4);
  background: rgba(0,212,255,0.05);
  box-shadow: 0 0 40px rgba(0,212,255,0.1);
}
.pricing-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  pointer-events: none;
}
.pc-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: var(--bg);
  border-radius: 100px;
  font-size: 0.7rem; font-weight: 700;
}
.pc-name { font-size: 0.85rem; font-weight: 600; color: var(--text2); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
.pc-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pc-price span { font-size: 1rem; font-weight: 400; color: var(--text3); }
.pc-desc { color: var(--text3); font-size: 0.82rem; margin-bottom: 1.5rem; }
.pc-features {
  display: flex; flex-direction: column; gap: 9px;
  margin-bottom: auto; padding-bottom: 1.5rem;
}
.pc-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.88rem; color: var(--text2);
}
.pc-features li i { color: var(--cyan); margin-top: 3px; font-size: 0.7rem; flex-shrink: 0; }
.pc-features li.disabled { color: var(--text3); }
.pc-features li.disabled i { color: var(--text3); }
.pc-cta {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  text-align: center;
  border: 1px solid var(--border2);
  color: var(--text);
  background: transparent;
  cursor: none;
  transition: all 0.3s;
  margin-top: 1.5rem;
}
.pc-cta:hover { border-color: var(--cyan); color: var(--cyan); }
.pc-cta.featured-cta {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: var(--bg); border: none;
}
.pc-cta.featured-cta:hover { box-shadow: 0 0 25px rgba(0,212,255,0.4); }
.pricing-footnote {
  color: var(--text2); font-size: 0.88rem;
  padding: 1rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.pricing-footnote a { color: var(--cyan); }
.pricing-footnote i { margin-right: 6px; }

/* ── SERVICE QUOTE LINK ──────────────────────────────────── */
.service-quote-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--cyan);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  transition: gap 0.2s;
}
.service-quote-link:hover { gap: 10px; }

/* ── QUOTE SECTION ───────────────────────────────────────── */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.quote-intro {
  color: var(--text2); margin-bottom: 2rem; line-height: 1.7;
}
.student-banner {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.8rem;
}
.sb-icon {
  font-size: 1.6rem;
  color: #a855f7;
  flex-shrink: 0;
  margin-top: 2px;
}
.sb-text strong {
  display: block; font-size: 0.95rem;
  color: var(--text); margin-bottom: 4px;
}
.sb-text p {
  font-size: 0.85rem; color: var(--text2); line-height: 1.6; margin: 0;
}
.quote-promises {
  display: flex; flex-direction: column; gap: 10px;
}
.qp-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text2);
}
.qp-item i { color: var(--cyan); width: 14px; }
.quote-form {
  background: var(--glass2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 2rem;
}
.quote-form h3 { margin-bottom: 1.5rem; }
.student-check-label {
  display: flex; align-items: center; gap: 10px;
  cursor: none; margin-top: 0.5rem;
  font-size: 0.88rem; color: var(--text2);
}
.student-check-label input[type="checkbox"] { display: none; }
.student-check-box {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1.5px solid var(--border2);
  border-radius: 5px;
  background: var(--glass);
  position: relative;
  transition: all 0.2s;
}
.student-check-label input:checked + .student-check-box {
  background: var(--purple);
  border-color: var(--purple);
}
.student-check-label input:checked + .student-check-box::after {
  content: '✓';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: white; font-weight: 700;
}

@media (max-width: 768px) {
  .quote-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── PROCESS ─────────────────────────────────────────────── */
.process-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0; margin-bottom: 2rem;
}
.process-step {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s;
}
.process-step:hover { border-color: rgba(0,212,255,0.3); box-shadow: var(--shadow-cyan); }
.ps-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem; font-weight: 900;
  color: rgba(0,212,255,0.2);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.ps-body h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.ps-body p { color: var(--text2); font-size: 0.82rem; line-height: 1.5; }
.process-connector {
  display: flex; align-items: flex-start;
  padding-top: 1.8rem;
  color: var(--cyan); opacity: 0.4;
  font-size: 0.9rem;
  margin: 0 0.5rem;
}
.process-note {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  color: var(--text2); font-size: 0.9rem;
}
.process-note i { color: var(--cyan); }
.process-note strong { color: var(--text); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  background: var(--bg2);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.06), transparent 70%);
  pointer-events: none;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-desc { color: var(--text2); margin-bottom: 2rem; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.channel-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.channel-card:hover { border-color: var(--border2); transform: translateX(4px); }
.channel-card.wa i { color: #25d366; font-size: 1.5rem; }
.channel-card.email i { color: var(--cyan); font-size: 1.3rem; }
.channel-card div { display: flex; flex-direction: column; }
.channel-card strong { font-size: 0.95rem; }
.channel-card span { font-size: 0.8rem; color: var(--text2); }
.response-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text3);
}
.response-badge i { color: var(--cyan); }
.enquiry-form {
  background: var(--glass2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 2rem;
}
.enquiry-form h3 { margin-bottom: 1.5rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fgroup { margin-bottom: 1rem; }
.fgroup label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.fgroup input, .fgroup select, .fgroup textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--glass);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.fgroup input::placeholder, .fgroup textarea::placeholder { color: var(--text3); }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  border-color: rgba(0,212,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.fgroup select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: none;
}
.fgroup textarea { resize: vertical; }

/* ── FORM FEEDBACK MESSAGES ──────────────────────────────── */
.form-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.form-msg-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green);
}
.form-msg-error {
  background: rgba(244,63,94,0.1);
  border: 1px solid rgba(244,63,94,0.3);
  color: var(--pink);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 1rem;
}
.footer-brand-col p { color: var(--text2); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text2);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-socials a:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,212,255,0.08); }
.footer-col h4 {
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--text2); font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-hours { color: var(--text3) !important; font-size: 0.78rem !important; margin-top: 0.5rem; }
.footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text3); font-size: 0.82rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: 1fr; }
  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .process-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { padding: 13px 22px; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 0 1.5rem; }
  .stat-sep { height: 30px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-preview { height: 180px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bar { flex-direction: column; gap: 0.5rem; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .section { padding: 5rem 0; }
  .included-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .stat-sep { display: none; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { width: 50%; padding: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-toggle-wrap { width: 100%; }
  .ptoggle { flex: 1; }
}
