/* ═══════════════════════════════════════════════════ */
/*  GROUNDWORK OPS — groundworkop.io                  */
/*  Production CSS — All Pages                        */
/* ═══════════════════════════════════════════════════ */

:root {
  --black: #0A0A0A;
  --off-black: #111111;
  --surface: #161616;
  --surface-2: #1E1E1E;
  --surface-3: #242424;
  --border: #282828;
  --border-light: #333;
  --text-muted: #666;
  --text-secondary: #999;
  --text-tertiary: #bbb;
  --white: #F5F4F0;
  --accent: #C8F04A;
  --accent-dim: rgba(200, 240, 74, 0.08);
  --accent-border: rgba(200, 240, 74, 0.25);
  --accent-glow: rgba(200, 240, 74, 0.05);
  --danger: #f04a4a;
  --warning: #f0a04a;
  --success: #4af06a;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 100px;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ─── TYPOGRAPHY ─── */
.syne { font-family: 'Syne', sans-serif; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  width: fit-content;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  max-width: 640px;
  margin-bottom: 24px;
}
.section-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-secondary);
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 48px; }
.section--bordered { border-bottom: 1px solid var(--border); }
.section--surface { background: var(--surface); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--white);
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent);
}

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav-dropdown-trigger::after { content: '▾'; font-size: 10px; opacity: 0.5; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--surface-2); }

.nav-cta {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Mobile nav */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 99;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu a:hover { color: var(--white); }
.nav-mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-primary--sm { padding: 10px 22px; font-size: 14px; }
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--white); border-color: #444; }
.btn-ghost--sm { padding: 10px 22px; font-size: 14px; }
.btn-link {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-link:hover { opacity: 0.8; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,240,74,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  max-width: 900px;
}
.hero-headline .accent { color: var(--accent); }
.hero-headline .ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 244, 240, 0.2);
}
.hero-sub {
  margin-top: 32px;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.5px;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 300;
}

/* ─── MARQUEE ─── */
.marquee-bar {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-dot { color: var(--accent); font-size: 18px; }

/* ─── CARDS ─── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.3s, transform 0.2s;
}
.card:hover { border-color: var(--border-light); }
.card--hover:hover { transform: translateY(-4px); }
.card--accent { border-color: var(--accent-border); background: linear-gradient(180deg, var(--accent-dim) 0%, var(--surface) 40%); }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: var(--surface-2); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--accent);
  transition: width 0.4s ease;
}
.service-card:hover::before { width: 100%; }
.service-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.service-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 24px;
}
.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.service-tag {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.pricing-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(200,240,74,0.04) 0%, var(--off-black) 40%);
}
.pricing-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}
.pricing-tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-tier-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.6;
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 4px;
}
.pricing-amount .currency { font-size: 24px; vertical-align: super; color: var(--text-secondary); }
.pricing-amount .period { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-amount-note { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; font-weight: 300; }
.pricing-features { margin-bottom: 40px; flex-grow: 1; }
.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid rgba(40,40,40,0.6);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 300;
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.pricing-features li.disabled { color: var(--text-muted); opacity: 0.5; }
.pricing-features li.disabled::before { content: '—'; color: var(--text-muted); }
.pricing-cta {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
  border: none;
  text-decoration: none;
  display: block;
}
.pricing-cta--primary { background: var(--accent); color: var(--black); }
.pricing-cta--ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.pricing-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Proof/Testimonials */
.proof-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.proof-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.proof-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px;
}
.proof-author { font-size: 14px; font-weight: 500; }
.proof-role { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 300; }

/* Process steps */
.process-steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  min-width: 32px;
  padding-top: 4px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,240,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  max-width: 700px;
  margin: 0 auto 24px;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── PAGE HEADER (for inner pages) ─── */
.page-header {
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,240,74,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  max-width: 700px;
  margin-bottom: 20px;
}
.page-header h1 .accent { color: var(--accent); }
.page-header-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--accent-border); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-message {
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-top: 16px;
}
.form-message--success { background: rgba(74,240,106,0.1); border: 1px solid rgba(74,240,106,0.2); color: var(--success); }
.form-message--error { background: rgba(240,74,74,0.1); border: 1px solid rgba(240,74,74,0.2); color: var(--danger); }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}
.blog-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  height: 200px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--border);
}
.blog-card-body { padding: 28px; }
.blog-card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--white);
  transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--accent); }
.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 20px;
}
.blog-card-meta { font-size: 13px; color: var(--text-muted); }

/* ─── CASE STUDIES ─── */
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.case-card:hover { border-color: var(--border-light); }
.case-card-meta {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.case-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.case-card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.case-stat {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.case-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.case-stat-label { font-size: 12px; color: var(--text-muted); font-weight: 300; }

/* ─── FOOTER ─── */
.footer {
  padding: 80px 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}
.footer-brand span { color: var(--accent); }
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ─── WAITLIST ─── */
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}
.waitlist-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
}
.waitlist-form input:focus { border-color: var(--accent-border); }
.waitlist-form input::placeholder { color: var(--text-muted); }
.waitlist-form button {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.waitlist-form button:hover { opacity: 0.88; }

/* ─── LEGAL PAGES ─── */
.legal-content { max-width: 720px; }
.legal-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 48px 0 16px;
  letter-spacing: -0.5px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}
.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}
.legal-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
  font-weight: 300;
  list-style: disc;
}
.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.about-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(10,10,10,0.8));
}
.about-bio h2 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.about-bio p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.about-value {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.about-value-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}
.about-value-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── SERVICE DETAIL PAGES ─── */
.service-detail-hero {
  padding: 160px 48px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-detail-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,240,74,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.service-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-detail-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.service-detail-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}
.service-detail-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  width: fit-content;
}
.service-detail-price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}
.service-detail-price-note {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}
.service-detail-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.service-detail-sidebar h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.service-detail-sidebar li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}
.service-detail-sidebar li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}
.service-section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.service-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
}
.service-section h2 em { font-style: italic; font-weight: 400; color: var(--text-secondary); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.anim-up { animation: fadeUp 0.6s ease both; }
.anim-up-1 { animation-delay: 0.1s; }
.anim-up-2 { animation-delay: 0.2s; }
.anim-up-3 { animation-delay: 0.3s; }
.anim-up-4 { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .case-card { grid-template-columns: 1fr; }
  .service-detail-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .section { padding: 80px 24px; }
  .page-header { padding: 120px 24px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-section { padding: 80px 24px; }
  .service-detail-hero { padding: 120px 24px 60px; }
  .service-section { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
}
