:root {
  --bg: #080b10;
  --surface: #0e1318;
  --surface2: #141b24;
  --accent: #00e5ff;
  --accent2: #ff3c6e;
  --accent3: #7fff6a;
  --text: #e8edf2;
  --muted: #6b7a8d;
  --border: rgba(0,229,255,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  overflow-x: hidden;
}

a, button, input { font-family: inherit; }

/* Focus styles for keyboard/accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.faq-q:focus-visible,
.page-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Canvas background */
#web-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.18;
  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.4rem 4rem;
  background: rgba(8,11,16,0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  width: 36px; height: 36px;
  position: relative;
}

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

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

nav ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--accent); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  padding: 0.55rem 1.4rem;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 42px; height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--accent);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===================== PAGE SECTIONS ===================== */

section { position: relative; z-index: 1; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.3s;
}

.hero-tag::before {
  content: '//';
  margin-right: 0.5rem;
  opacity: 0.5;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 14ch;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.5s;
}

.hero h1 .line2 { color: var(--accent); }
.hero h1 .line3 {
  -webkit-text-stroke: 1px rgba(232,237,242,0.3);
  color: transparent;
}

.hero-sub {
  margin-top: 2.5rem;
  max-width: 46ch;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.75s;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1s;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(232,237,242,0.2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.2s;
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* Floating badge */
.hero-badge {
  position: absolute;
  right: 6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 220px; height: 220px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  animation: rotateBadge 20s linear infinite, fadeIn 1s ease forwards 1.5s;
  opacity: 0;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px dashed rgba(0,229,255,0.3);
  animation: rotateBadge 8s linear infinite reverse;
}

.badge-icon { font-size: 2.8rem; }
.badge-text {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}
.badge-sub { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.1em; }

@keyframes rotateBadge {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

/* ===================== SERVICES ===================== */
.services {
  padding: 8rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label::before { content: '01 — '; opacity: 0.5; }

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 18ch;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

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

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s ease;
}

.service-card:hover { background: var(--surface2); }
.service-card:hover::after { width: 100%; }

.service-num {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0.7;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
  width: 42px;
  height: 42px;
  transition: filter 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
  filter: drop-shadow(0 0 8px rgba(0,229,255,0.7));
  transform: scale(1.08);
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--muted);
}

.service-price {
  margin-top: 1.8rem;
  font-size: 0.72rem;
  color: var(--accent3);
  letter-spacing: 0.05em;
}

/* ===================== INDUSTRIES ===================== */
.industries {
  padding: 8rem 4rem;
}

.industries-intro {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 52ch;
  margin: -2.5rem 0 3.5rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* Each card spans 2 of 6 columns = 3 per row.
   The 4th and 5th cards are nudged in by one column so the
   trailing row of two stays centered instead of leaving a gap. */
.industry-card { grid-column: span 2; }
.industry-card:nth-child(4) { grid-column: 2 / span 2; }
.industry-card:nth-child(5) { grid-column: 4 / span 2; }

.industry-card {
  background: var(--surface);
  padding: 2.6rem 2.2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s ease;
}

.industry-card:hover { background: var(--surface2); }
.industry-card:hover::after { width: 100%; }

.industry-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.4rem;
  transition: filter 0.3s, transform 0.3s;
}

.industry-card:hover .industry-icon {
  filter: drop-shadow(0 0 8px rgba(0,229,255,0.7));
  transform: scale(1.08);
}

.industry-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.industry-desc {
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.industry-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.industry-features li {
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  background: rgba(0,229,255,0.04);
}

.industry-link {
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s, gap 0.2s;
  text-align: left;
}

.industry-link:hover { color: var(--accent); gap: 0.85rem; }
.industry-link .arrow { transition: transform 0.2s; }
.industry-link:hover .arrow { transform: translateX(2px); }

.industries-note {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 2.5rem;
  letter-spacing: 0.03em;
}
.industries-note a { color: var(--accent); text-decoration: none; }
.industries-note a:hover { text-decoration: underline; }

/* ===================== PACKAGES ===================== */
.packages {
  padding: 8rem 4rem;
}

.industries .section-label::before { content: '02 — '; }
.packages .section-label::before { content: '03 — '; }

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

.pkg-card {
  border: 1px solid var(--border);
  padding: 2.8rem 2.4rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

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

.pkg-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(0,229,255,0.04), transparent);
}

.pkg-badge {
  position: absolute;
  top: -1px; right: 2rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
}

.pkg-tier {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.pkg-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pkg-best {
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.pkg-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin: 1.2rem 0 0.4rem;
}

.pkg-price span {
  font-size: 1rem;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
}

.pkg-timeline {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.3rem;
}
.pkg-timeline strong { color: var(--accent3); font-weight: 500; }

.pkg-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pkg-includes-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.pkg-features li {
  font-size: 0.76rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}

.pkg-features li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.pkg-card .btn-ghost,
.pkg-card .btn-primary { margin-top: auto; text-align: center; }

.pkg-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2.5rem;
  letter-spacing: 0.03em;
}
.pkg-note .accent { color: var(--accent3); }

.pkg-finefooter {
  font-size: 0.68rem;
  line-height: 1.6;
  color: var(--muted);
  opacity: 0.8;
  margin: 1.2rem 0 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ===================== SAMPLES ===================== */
.samples {
  padding: 8rem 4rem;
  border-top: 1px solid var(--border);
}

.samples .section-label::before { content: '04 — '; }

.samples-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 62ch;
  margin: -2.5rem 0 3.5rem;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.sample-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.sample-card:hover,
.sample-card:focus-visible {
  border-color: var(--accent);
  transform: translateY(-4px);
  outline: none;
}

.sample-thumb {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.sample-body {
  padding: 1.5rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sample-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.sample-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.sample-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex: 1;
}

.sample-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.samples-foot {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 3rem;
}

.samples-foot a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.samples-foot a:hover { border-color: var(--accent); }

/* ===================== ADDONS ===================== */
.addons {
  padding: 6rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.addons .section-label::before { content: '05 — '; }

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3.5rem;
}

.addon-item {
  background: var(--surface);
  padding: 1.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}

.addon-item:hover { background: var(--surface2); }

.addon-name {
  font-size: 0.82rem;
  color: var(--text);
}

.addon-price {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent3);
  white-space: nowrap;
}

/* ===================== RETAINER ===================== */
.retainer {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.retainer .section-label::before { content: '06 — '; }

.retainer-text .section-title { margin-bottom: 1.5rem; }

.retainer-text p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 2rem;
}

.retainer-plans {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.rplan {
  background: var(--surface);
  padding: 2rem 2.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  transition: background 0.2s;
}

.rplan:hover { background: var(--surface2); }

.rplan-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.rplan-desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.6;
}

.rplan-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}

.rplan-price small {
  display: block;
  font-size: 0.6rem;
  font-family: 'DM Mono', monospace;
  color: var(--muted);
  font-weight: 400;
}

/* ===================== FAQ ===================== */
.faq {
  padding: 8rem 4rem;
  border-top: 1px solid var(--border);
}

.faq .section-label::before { content: '07 — '; }

.faq-grid {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 900px;
}

.faq-item { background: var(--surface); }

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1.8rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.2s, background 0.2s;
}

.faq-q:hover { color: var(--accent); background: var(--surface2); }

.faq-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform 0.3s ease;
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 2.2rem 1.8rem;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
}
.faq-a-inner .accent { color: var(--accent); }

/* ===================== CTA ===================== */
.cta-section {
  padding: 8rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  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;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-label { display: block; margin-bottom: 1.5rem; }
.cta-section .section-label::before { content: ''; }

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.cta-title .accent { color: var(--accent); }

.cta-sub {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.cta-email-line {
  font-size: 0.78rem;
  color: var(--muted);
  margin: -2rem auto 3rem;
  letter-spacing: 0.02em;
}

.cta-email-line a {
  color: var(--accent);
  text-decoration: none;
}

.cta-email-line a:hover { text-decoration: underline; }

/* Expanded, working quote form */
.quote-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

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

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--accent2); }
.label-hint {
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--muted);
  opacity: 0.7;
  font-size: 0.62rem;
}

/* Add-on checkboxes */
.addon-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.addon-check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.addon-check:hover { border-color: rgba(0,229,255,0.4); }

.addon-check input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.addon-check-box {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border: 1px solid var(--muted);
  border-radius: 2px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.addon-check-box::after {
  content: '';
  position: absolute;
  left: 4.5px; top: 1px;
  width: 4px; height: 9px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}
.addon-check input:checked ~ .addon-check-box {
  background: var(--accent);
  border-color: var(--accent);
}
.addon-check input:checked ~ .addon-check-box::after { transform: rotate(45deg) scale(1); }
.addon-check input:checked ~ .addon-check-text { color: var(--text); }
.addon-check:has(input:checked) { border-color: var(--accent); background: rgba(0,229,255,0.04); }

.addon-check input:focus-visible ~ .addon-check-box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.addon-check-text {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.4;
  transition: color 0.2s;
}
.addon-check-text em {
  font-style: normal;
  color: var(--accent3);
  font-size: 0.68rem;
  margin-left: 0.2rem;
  white-space: nowrap;
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  outline: none;
  padding: 0.9rem 1.1rem;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  transition: border-color 0.2s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: 0.6; }

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }

.field textarea { resize: vertical; min-height: 90px; }

.field select { cursor: pointer; appearance: none;
  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='%2300e5ff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.4rem;
}

.field.error input,
.field.error select,
.field.error textarea { border-color: var(--accent2); }

.field-flash select {
  animation: fieldFlash 1.4s ease;
}
@keyframes fieldFlash {
  0%, 100% { border-color: var(--border); box-shadow: none; }
  20%, 60% { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,229,255,0.15); }
}

.field-error {
  font-size: 0.66rem;
  color: var(--accent2);
  letter-spacing: 0.04em;
  min-height: 0.8rem;
}

.quote-form .btn-primary {
  width: 100%;
  padding: 1.1rem;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.form-privacy {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1.2rem;
  line-height: 1.6;
}
.form-privacy a { color: var(--accent); text-decoration: none; }
.form-privacy a:hover { text-decoration: underline; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, rgba(0,229,255,0.05), transparent);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.form-success.show { display: block; animation: fadeUp 0.5s ease; }

.form-success .check-circle {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.form-success p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 38ch;
  margin: 0 auto;
}

/* ===================== FOOTER ===================== */
footer {
  padding: 3rem 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer .logo { font-size: 1rem; }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.7rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-email {
  font-size: 0.82rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover { color: var(--accent); }

.footer-linkedin {
  font-size: 0.7rem;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: 0.6rem;
  letter-spacing: 0.02em;
}

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

.footer-hours {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* PAGE NAV */
.page-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.page-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}

.page-dot.active {
  background: var(--accent);
  transform: scale(1.5);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  background: var(--accent);
  padding: 0.6rem 0;
  position: relative;
  z-index: 2;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker-item {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 0 2.5rem;
  white-space: nowrap;
}

.ticker-item::after {
  content: '◆';
  margin-left: 2.5rem;
  opacity: 0.5;
}

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

/* ===================== OVERLAY PAGES ===================== */
.page-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,11,16,0.92);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  animation: overlayIn 0.35s ease;
}

.page-overlay.open { display: block; }

@keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.page-overlay-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 4rem 5rem;
  position: relative;
  min-height: 100vh;
}

.overlay-close {
  position: fixed;
  top: 2rem;
  right: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 210;
  transition: border-color 0.2s, background 0.2s;
}

.overlay-close:hover {
  border-color: var(--accent);
  background: var(--surface2);
}

.overlay-page { animation: fadeUp 0.4s ease; }

.overlay-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.overlay-label::before { content: '// '; opacity: 0.5; }

.overlay-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.overlay-date {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 1rem;
}

.overlay-header {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3.5rem;
}

.overlay-body p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* About page layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}

.about-main p {
  font-size: 0.87rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.founder-link,
.founder-link:link,
.founder-link:visited,
.founder-link:hover,
.founder-link:active {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
}
.founder-link:hover { border-bottom-color: var(--accent); }
.founder-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.about-value {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.value-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.value-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.about-stat-card {
  background: var(--surface);
  padding: 1.8rem 2rem;
  transition: background 0.2s;
}

.about-stat-card:hover { background: var(--surface2); }

.about-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.about-process {
  background: var(--surface);
  padding: 2rem;
}

.process-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.4rem;
  color: var(--text);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child { border-bottom: none; }

.step-num {
  color: var(--accent);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* Legal pages */
.legal-body {
  max-width: 760px;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type { border-bottom: none; }

.legal-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.9rem;
  letter-spacing: 0.01em;
}

.legal-section p {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}

.legal-contact {
  margin-top: 2rem;
  padding: 1.8rem 2rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.legal-contact p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  nav { padding: 1.1rem 1.5rem; gap: 1rem; }
  nav .logo {
    font-size: 1.1rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  nav .logo-icon { flex-shrink: 0; }
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 120;
    margin-left: 0.5rem;
    flex-shrink: 0;
  }
  nav ul {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    z-index: 110;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: 5rem 2.4rem 2rem;
    background: rgba(8,11,16,0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  nav ul.open { transform: translateX(0); }
  nav ul a { font-size: 0.95rem; }

  .hero {
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
    justify-content: flex-start;
  }
  .hero-badge { display: none; }
  .hero-stats { gap: 2rem; }

  .services, .packages, .samples, .addons, .retainer, .faq, .cta-section { padding: 5rem 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .industry-card,
  .industry-card:nth-child(4),
  .industry-card:nth-child(5) { grid-column: auto; }
  .packages-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }

  .retainer { grid-template-columns: 1fr; gap: 3rem; }

  .page-nav { display: none; }

  .page-overlay-inner { padding: 5rem 1.5rem 4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .overlay-close { top: 1rem; right: 1rem; }

  .form-row { grid-template-columns: 1fr; }
  .addon-checks { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .addons-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem 2rem; }
  .stat-num { font-size: 1.8rem; }
  nav .logo { font-size: 0.92rem; gap: 0.45rem; letter-spacing: -0.03em; }
  nav .logo-icon { width: 28px; height: 28px; }
  nav { padding: 1rem 1.1rem; gap: 0.6rem; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 3.6rem); }
  .hero-sub { margin-top: 1.8rem; }
  .hero-actions { margin-top: 2rem; }
  .hero-stats { margin-top: 3rem; padding-top: 2rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { flex: 1 1 auto; text-align: center; }
}

@media (max-width: 380px) {
  nav .logo { font-size: 0.82rem; gap: 0.4rem; }
  nav .logo-icon { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-tag, .hero h1, .hero-sub, .hero-actions, .hero-stats, .hero-badge { opacity: 1; animation: none; }
}
