/* ===== DESIGN TOKENS ===== */
:root {
  --bg-dark: #0C0C0C;
  --bg-mid: #141414;
  --bg-light: #F5F4F0;
  --surface: #1C1C1C;
  --border: #2A2A2A;
  --border-light: #E0DFDB;
  --text-primary-dark: #F0EEE8;
  --text-primary-light: #111111;
  --text-muted-dark: #888888;
  --text-muted-light: #666666;
  --white: #FFFFFF;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-drama: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1160px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary-dark);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

h2.dark {
  color: var(--text-primary-light);
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}

h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted-dark);
  margin-bottom: 1rem;
}

.section-label.dark {
  color: var(--text-muted-light);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted-dark);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-primary.large {
  font-size: 1.1rem;
  padding: 1rem 2.25rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  height: 30px;
  width: auto;
  border-radius: 3px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  background: var(--white);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  transition: transform 0.2s ease;
}

.nav-cta:hover {
  transform: scale(1.02);
}

.nav-hamburger {
  display: none;
  color: var(--white);
}

.ham-close {
  display: none;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--text-muted-dark);
}

.mobile-cta {
  font-size: 1rem;
  margin-top: 1rem;
  background: var(--white);
  color: var(--bg-dark);
  padding: 0.75rem 2rem;
  border-radius: 100px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #0C0C0C 70%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
}

.hero-h1 {
  margin: 1.5rem 0 1.25rem;
}

.underline-accent {
  text-decoration: underline;
  text-decoration-color: var(--white);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.hero-sub {
  font-family: var(--font-drama);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-muted-dark);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.stat {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  padding: 0 1.5rem;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  color: var(--white);
  font-weight: 500;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-indicator svg {
  animation: bobDown 2s ease-in-out infinite;
}

@keyframes bobDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  letter-spacing: 0.1em;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== SERVICES ===== */
.service-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.service-section.bg-dark {
  background: var(--bg-dark);
}

.service-section.bg-mid {
  background: var(--bg-mid);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.service-grid.reverse {
  direction: rtl;
}

.service-grid.reverse>* {
  direction: ltr;
}

.service-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.service-text p {
  color: var(--text-muted-dark);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.service-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted-dark);
}

.service-link {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.service-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* ===== MOCKUP CARDS ===== */
.service-card-wrap {
  display: flex;
  justify-content: center;
}

.mockup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-card:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
}

.rotate-neg {
  transform: rotate(-1.5deg);
}

.rotate-pos {
  transform: rotate(1.5deg);
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.chrome-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted-dark);
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mockup-body {
  padding: 1.25rem;
}

/* Mock Greeting */
.mock-greeting {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 500;
}

.mock-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.mock-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted-dark);
}

.mock-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

.mock-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

/* Mock Project */
.mock-project-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary-dark);
  margin-bottom: 0.5rem;
}

.mock-progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.mock-progress-fill {
  height: 100%;
  width: 75%;
  background: var(--white);
  border-radius: 3px;
  transition: width 1s var(--ease-out);
}

.mock-progress-pct {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted-dark);
  text-align: right;
}

/* Mock Schedule */
.mock-schedule {
  display: flex;
  gap: 0;
}

.sched-day {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted-dark);
  padding: 0.5rem 0;
  border-radius: 0.35rem;
}

.sched-day.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.sched-day.dim {
  opacity: 0.3;
}

/* Mock Status Bar */
.mock-status-bar {
  position: relative;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.mock-status-fill {
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, #555, #888);
  border-radius: 3px;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.mock-status-text {
  position: absolute;
  top: 10px;
  right: 0;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted-dark);
}

/* Mock Checklist */
.mock-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  padding: 0.45rem 0.6rem;
  border-radius: 0.4rem;
}

.check-row.complete {
  color: var(--text-primary-dark);
}

.check-row.progress {
  background: rgba(255, 255, 255, 0.03);
  color: #ccc;
}

.check-icon {
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.check-row.complete .check-icon {
  color: #aaa;
}

.check-row.progress .check-icon {
  color: #f0c040;
}

.check-row.pending .check-icon {
  opacity: 0.4;
}

/* Mock Chart */
.mock-chart {
  margin-bottom: 1rem;
}

.chart-svg {
  width: 100%;
  height: auto;
}

.mock-insight {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.mock-insight-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  margin-bottom: 0.35rem;
}

.mock-insight-text {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

/* ===== PROCESS ===== */
.process-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.process-section.bg-light {
  background: var(--bg-light);
}

.process-section h2 {
  color: var(--text-primary-light);
}

.process-section h3 {
  color: var(--text-primary-light);
}

.process-section p {
  color: var(--text-muted-light);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  background: var(--white);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--border-light);
  display: block;
  margin-bottom: 0.5rem;
}

.step-anim {
  height: 32px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

/* Step 1 Scan Bar */
.scan-bar {
  width: 100%;
  height: 4px;
  background: #e0dfdb;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scan-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #aaa, transparent);
  animation: scanMove 2s ease-in-out infinite;
}

@keyframes scanMove {
  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }
}

/* Step 2 Pulse Dot */
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #888;
  margin-right: 0.5rem;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.pulse-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted-light);
}

/* Step 3 Pill Tags */
.pill-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  color: var(--text-muted-light);
  transition: transform 0.6s var(--ease-out);
}

.pill-tag.t2 {
  margin-left: -8px;
  background: var(--bg-light);
  z-index: 1;
  position: relative;
}

.is-visible .pill-tag.t1 {
  transform: translateX(4px);
}

.is-visible .pill-tag.t2 {
  transform: translateX(-4px);
}

/* Step 4 Mini Bars */
.step-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
}

.mini-bar {
  width: 12px;
  border-radius: 2px;
  background: #ddd;
  transition: height 0.8s var(--ease-out);
}

.mini-bar.mb1 {
  height: 8px;
}

.mini-bar.mb2 {
  height: 8px;
}

.mini-bar.mb3 {
  height: 8px;
}

.mini-bar.mb4 {
  height: 8px;
}

.is-visible .mini-bar.mb1 {
  height: 12px;
  background: #bbb;
}

.is-visible .mini-bar.mb2 {
  height: 18px;
  background: #999;
}

.is-visible .mini-bar.mb3 {
  height: 24px;
  background: #777;
}

.is-visible .mini-bar.mb4 {
  height: 32px;
  background: #555;
}

/* ===== BENEFITS ===== */
.benefits-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.benefits-section.bg-dark {
  background: var(--bg-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: #3a3a3a;
}

.benefit-card svg {
  color: var(--white);
  margin-bottom: 1rem;
}

.benefit-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
}

.benefit-card.inverted {
  background: var(--white);
  border-color: var(--border-light);
}

.benefit-card.inverted svg {
  color: var(--text-primary-light);
}

.benefit-card.inverted h4 {
  color: var(--text-primary-light);
}

.benefit-card.inverted p {
  color: var(--text-muted-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.testimonials-section.bg-mid {
  background: var(--bg-mid);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  border-top: 2px solid var(--text-muted-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.quote {
  font-family: var(--font-drama);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-primary-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.attribution {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted-dark);
}

.attribution span {
  display: block;
  margin-top: 0.15rem;
}

/* ===== FAQ ===== */
.faq-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.faq-section.bg-light {
  background: var(--bg-light);
}

.faq-section h2 {
  color: var(--text-primary-light);
}

.faq-list {
  margin-top: 3rem;
  max-width: 740px;
}

.faq-item {
  border-top: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border-light);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary-light);
  cursor: pointer;
}

.faq-q:focus-visible {
  outline: 2px solid var(--text-primary-light);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-chev {
  flex-shrink: 0;
  color: var(--text-muted-light);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chev {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-a p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  line-height: 1.65;
}

.faq-contact {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-muted-light);
}

.faq-contact span {
  color: var(--text-primary-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.faq-contact:hover span {
  border-bottom-color: var(--text-primary-light);
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--bg-dark);
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #2a2a2a 0%, #0C0C0C 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  margin-top: 1rem;
}

.trust-signals {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted-dark);
}

.trust-signals .sep {
  opacity: 0.4;
}

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.footer-brand p {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

.footer-grid {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted-dark);
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-primary-dark);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted-dark);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted-dark);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: greenPulse 2s ease-in-out infinite;
}

@keyframes greenPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-muted-dark);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--white);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal:nth-child(5) {
  transition-delay: 0.4s;
}

.reveal:nth-child(6) {
  transition-delay: 0.5s;
}

/* Hero stagger */
.hero-content .reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.hero-content .reveal:nth-child(2) {
  transition-delay: 0.25s;
}

.hero-content .reveal:nth-child(3) {
  transition-delay: 0.4s;
}

.hero-content .reveal:nth-child(4) {
  transition-delay: 0.55s;
}

.hero-content .reveal:nth-child(5) {
  transition-delay: 0.7s;
}

.hero-content .reveal:nth-child(6) {
  transition-delay: 0.85s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-grid.reverse {
    direction: ltr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }

  .hero-h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat {
    border-right: none;
    padding: 0.25rem 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-grid {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}