/* ============================================================
   ELEVATE WORKING — Global Stylesheet
   ============================================================ */

:root {
  --bg: #06060d;
  --surface: #0a0f1a;
  --surface2: #0f1525;
  --border: rgba(120,180,200,0.08);
  --accent: #2dd4bf;
  --accent-dim: rgba(45,212,191,0.12);
  --accent-glow: rgba(45,212,191,0.25);
  --text: #d8dee9;
  --muted: #6b7a8d;
  --muted2: #a3b4c8;
  --white: #edf2f7;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── SKIP TO CONTENT ── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--accent);
  color: #06060d;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 4px 4px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 0;
}

/* ── GRID BG ── */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120,180,200,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,180,200,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(6,6,13,0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: #06060d;
  padding: 0.6rem 1.4rem;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-active span:nth-child(2) { opacity: 0; }
.nav-toggle-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 10rem 4rem 6rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,212,191,0.1), transparent 70%);
  top: -100px; right: -100px;
}

.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero-sub { color: var(--muted2); font-size: 1.1rem; line-height: 1.7; max-width: 560px; }
.page-hero-title { font-size: clamp(2.8rem, 5vw, 5rem); margin: 1rem 0 1.5rem; }

/* ── SECTION BASICS ── */
section { position: relative; padding: 7rem 4rem; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

.section-label-center { justify-content: center; }

.section-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}

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

/* ── UTILITY LAYOUTS ── */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent);
  color: #06060d;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  box-shadow: 0 0 40px var(--accent-glow);
  display: inline-block;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px var(--accent-glow); }

.btn-ghost {
  color: var(--muted2);
  padding: 0.9rem 2rem;
  border-radius: 3px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(120,180,200,0.2);
  background: rgba(120,180,200,0.04);
}

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(45,212,191,0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

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

/* ── MARQUEE ── */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
  background: var(--surface);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-item::after {
  content: '\25C6';
  color: var(--accent);
  font-size: 0.5rem;
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,212,191,0.08), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.cta-section .section-title {
  margin: 1rem 0 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.cta-section p {
  color: var(--muted2);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.cta-form input {
  flex: 1;
  background: var(--surface);
  border: none;
  padding: 1rem 1.25rem;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.cta-form input::placeholder { color: var(--muted); }

.cta-form button {
  background: var(--accent);
  color: #06060d;
  border: none;
  padding: 1rem 1.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.cta-form button:hover { opacity: 0.88; }
.cta-note { margin-top: 1rem; font-size: 0.75rem; color: var(--muted); font-family: 'JetBrains Mono', monospace; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
  background: var(--bg);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand { max-width: 360px; }

.footer-logo { font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 1.15rem; letter-spacing: 0.04em; color: var(--white); margin-bottom: 1.25rem; }
.footer-logo span { color: var(--accent); }

.footer-subscribe-label { font-size: 0.82rem; color: var(--muted2); margin-bottom: 0.5rem; }

.footer-subscribe-form {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 320px;
}

.footer-subscribe-form input {
  flex: 1;
  background: var(--surface);
  border: none;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  outline: none;
  min-width: 0;
}

.footer-subscribe-form input::placeholder { color: var(--muted); }

.footer-subscribe-form button {
  background: var(--accent);
  color: #06060d;
  border: none;
  padding: 0.65rem 1rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.footer-subscribe-form button:hover { opacity: 0.88; }

.footer-subscribe-note {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
}

.footer-subscribe-note a { color: var(--muted2); text-decoration: underline; transition: color 0.2s; }
.footer-subscribe-note a:hover { color: var(--accent); }

.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--muted2); }

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ── PRIVACY NOTE ── */
.privacy-note {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 0.5rem;
}

.privacy-note a { color: var(--muted2); text-decoration: underline; transition: color 0.2s; }
.privacy-note a:hover { color: var(--accent); }

/* ── PRIVACY PAGE ── */
.privacy-content { max-width: 720px; }
.privacy-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin: 2.5rem 0 0.75rem; }
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p { font-size: 0.9rem; color: var(--muted2); line-height: 1.8; margin-bottom: 0.75rem; }
.privacy-content ul { list-style: none; margin-bottom: 1rem; padding-left: 0; }
.privacy-content ul li { font-size: 0.9rem; color: var(--muted2); line-height: 1.8; padding-left: 1.25rem; position: relative; }
.privacy-content ul li::before { content: '\2192'; position: absolute; left: 0; color: var(--accent); font-family: 'JetBrains Mono', monospace; }
.privacy-content a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
.privacy-content a:hover { opacity: 0.75; }

/* ── FAQ SECTION ── */
.faq-list { max-width: 720px; margin-top: 3rem; }

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

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Syne', sans-serif;
  padding: 0;
}

.faq-question::after {
  content: '+';
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 1rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted2);
  line-height: 1.7;
}

/* ── ARIA LIVE REGION ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

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

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── SURFACE ── */
.bg-surface { background: var(--surface); }

/* ── TERMINAL ── */
.terminal {
  background: #08081a;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
}

.terminal-bar {
  padding: 0.75rem 1rem;
  background: #0d0d22;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.terminal-body { padding: 1.5rem; line-height: 2; color: var(--muted2); }
.t-accent { color: var(--accent); }
.t-purple { color: #a78bfa; }
.t-orange { color: #fb923c; }
.t-white { color: var(--white); }
.t-dim { color: var(--muted); }

.cursor {
  display: inline-block;
  width: 8px; height: 1.1em;
  background: var(--accent);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

/* ── ICON (emoji accessibility wrapper) ── */
.icon { display: inline-block; }

/* ============================================================
   HOME PAGE
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 4rem 6rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,212,191,0.12), transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,80,255,0.1), transparent 70%);
  bottom: 0; left: 20%;
  animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}

.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero-headline {
  font-family: 'Cormorant', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero-headline em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 400;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-stats {
  position: absolute;
  right: 4rem; bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1;
  animation: fadeUp 0.6s ease 0.4s both;
}

.stat { text-align: right; }

.stat-num {
  font-family: 'Cormorant', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.stat-num span { color: var(--accent); }

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

/* Problem section */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.problem-items { display: flex; flex-direction: column; gap: 1.5rem; }

.problem-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(120,180,200,0.02);
  transition: border-color 0.3s, background 0.3s;
}

.problem-item:hover {
  border-color: rgba(45,212,191,0.15);
  background: rgba(45,212,191,0.03);
}

.problem-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.problem-item h3 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.problem-item p { font-size: 0.875rem; color: var(--muted2); line-height: 1.6; }

.problem-visual { position: relative; height: 420px; }
.problem-visual .terminal { height: 100%; }

/* Services preview (home page) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover { background: var(--surface2); }
.service-card:hover::before { transform: scaleX(1); }

.service-num { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.service-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.service-card p { font-size: 0.875rem; color: var(--muted2); line-height: 1.7; }
.service-tag { display: inline-block; margin-top: 1.5rem; font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.08em; color: var(--accent); background: var(--accent-dim); padding: 0.25rem 0.6rem; border-radius: 2px; }

/* Results */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.result-card { background: var(--bg); padding: 3rem 2rem; text-align: center; transition: background 0.3s; }
.result-card:hover { background: var(--surface2); }
.result-num { font-family: 'Cormorant', serif; font-size: 3.5rem; font-weight: 300; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.result-label { font-size: 0.8rem; color: var(--muted2); letter-spacing: 0.04em; line-height: 1.5; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }

.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.3s;
}

.testi-card:hover { border-color: rgba(45,212,191,0.15); }
.testi-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
.testi-quote { font-family: 'Cormorant', serif; font-size: 1.1rem; font-style: italic; font-weight: 300; color: var(--white); line-height: 1.6; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--accent); font-weight: 700; }
.testi-name { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.testi-role { font-size: 0.75rem; color: var(--muted2); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

.about-body p {
  font-size: 1rem;
  color: var(--muted2);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-body p strong { color: var(--white); font-weight: 600; }

.about-accent {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

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

.value-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(120,180,200,0.02);
}

.vi-num { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.vi-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.vi-body { font-size: 0.82rem; color: var(--muted2); line-height: 1.6; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s;
}

.team-card:hover { border-color: rgba(45,212,191,0.15); }

.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 1rem;
  font-family: 'Syne', sans-serif;
}

.team-name { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.team-role { font-size: 0.78rem; color: var(--accent); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.82rem; color: var(--muted2); line-height: 1.6; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-full-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-full-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-full-card:hover { border-color: rgba(45,212,191,0.15); background: var(--surface2); }
.service-full-card:hover::after { transform: scaleX(1); }

.sfc-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.sfc-icon { font-size: 2rem; flex-shrink: 0; }

.sfc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.sfc-title { font-size: 1.2rem; font-weight: 700; color: var(--white); margin: 0.25rem 0 0; letter-spacing: -0.01em; }

.sfc-body p { font-size: 0.9rem; color: var(--muted2); line-height: 1.7; margin-bottom: 1.5rem; }

.sfc-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.sfc-features li {
  font-size: 0.82rem;
  color: var(--muted2);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.sfc-features li::before { content: '\2192'; color: var(--accent); flex-shrink: 0; font-family: 'JetBrains Mono', monospace; }

.sfc-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.integrations {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.integrations h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.int-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.int-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted2);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}

.int-chip:hover { border-color: rgba(45,212,191,0.2); color: var(--white); }

/* ============================================================
   PROCESS PAGE
   ============================================================ */

.process-timeline { margin-top: 5rem; position: relative; }

.process-timeline::before {
  content: '';
  position: absolute;
  left: 2.5rem;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.3;
}

.timeline-step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.ts-marker {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.ts-content {
  padding-top: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 2rem 2.5rem;
  transition: border-color 0.3s;
}

.ts-content:hover { border-color: rgba(45,212,191,0.15); }

.ts-week {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.ts-title { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.01em; }
.ts-body { font-size: 0.9rem; color: var(--muted2); line-height: 1.7; margin-bottom: 1.5rem; }

.ts-deliverables { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }

.ts-deliverables li {
  font-size: 0.82rem;
  color: var(--muted2);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.ts-deliverables li::before {
  content: '\2713';
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.principle-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.pc-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.pc-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.pc-body { font-size: 0.875rem; color: var(--muted2); line-height: 1.6; }

/* ============================================================
   CASE STUDIES PAGE
   ============================================================ */

.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.cs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.cs-card:hover { border-color: rgba(45,212,191,0.2); }

.cs-card-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.cs-industry {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cs-company { font-size: 1.1rem; font-weight: 700; color: var(--white); }

.cs-service-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--muted2);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
}

.cs-card-body { padding: 2rem 2.5rem; }

.cs-challenge { font-size: 0.875rem; color: var(--muted2); line-height: 1.7; margin-bottom: 1.5rem; }

.cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cs-metric { text-align: center; }

.cs-metric-num {
  font-family: 'Cormorant', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.cs-metric-label { font-size: 0.7rem; color: var(--muted2); line-height: 1.4; margin-top: 0.25rem; }

.cs-quote {
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.cs-quote-attr { font-family: 'Syne', sans-serif; font-style: normal; font-size: 0.78rem; color: var(--muted2); margin-top: 0.75rem; }

.cs-card-featured {
  grid-column: span 2;
}

.cs-card-featured .cs-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.cs-card-featured .cs-metrics {
  grid-template-columns: repeat(2, 1fr);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 4rem;
  align-items: start;
}

.contact-info { position: sticky; top: 8rem; }

.contact-info h3 {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.contact-info h3 em { font-style: italic; color: var(--accent); }

.contact-info p {
  font-size: 0.9rem;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.what-to-expect { margin-top: 2rem; }

.wte-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.wte-items { display: flex; flex-direction: column; gap: 0.75rem; }

.wte-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted2);
  line-height: 1.5;
}

.wte-item::before {
  content: '\2192';
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(45,212,191,0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9bae' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-group textarea { resize: vertical; min-height: 120px; }

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

.form-submit {
  width: 100%;
  background: var(--accent);
  color: #06060d;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  box-shadow: 0 0 30px var(--accent-glow);
}

.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }

.form-submit:disabled {
  cursor: default;
  transform: none;
  box-shadow: none;
}

.form-note {
  margin-top: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
}

/* Direct contact */
.direct-contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.dc-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.dc-email {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.dc-email:hover { opacity: 0.75; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes orbFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,-30px) scale(1.05); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  /* Nav */
  nav { padding: 1.25rem 2rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(6,6,13,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
  .nav-cta { font-size: 0.78rem; padding: 0.5rem 1rem; }

  /* Layout */
  section { padding: 5rem 2rem; }
  .page-hero { padding: 8rem 2rem 4rem; }
  .footer-top { flex-direction: column; gap: 2rem; align-items: center; text-align: center; }
  .footer-brand { max-width: 100%; }
  .footer-subscribe-form { margin: 0 auto; }
  .footer-subscribe-note { text-align: center; }
  .footer-links { justify-content: center; }
  .footer-copy { text-align: center; }

  /* Home */
  .hero { padding: 7rem 2rem 4rem; }
  .hero-stats { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-visual { height: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-full { grid-template-columns: 1fr; }

  /* Process */
  .process-timeline::before { display: none; }
  .timeline-step { grid-template-columns: 1fr; gap: 1rem; }
  .ts-marker { width: 3.5rem; height: 3.5rem; font-size: 1.2rem; }
  .principles-grid { grid-template-columns: 1fr; }

  /* Case studies */
  .cs-grid { grid-template-columns: 1fr; }
  .cs-card-featured { grid-column: span 1; }
  .cs-card-featured .cs-card-body { grid-template-columns: 1fr; gap: 1.5rem; }
  .cs-metrics { grid-template-columns: repeat(3, 1fr); }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
}
