/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --steel:       #12181f;
  --steel-mid:   #1c2530;
  --iron:        #243040;
  --iron-light:  #2e3d50;
  --orange:      #e8510a;
  --orange-dark: #c44308;
  --orange-glow: rgba(232,81,10,0.15);
  --amber:       #f0a000;
  --light:       #f2f4f7;
  --mid:         #d8dde6;
  --border:      #c8d0dc;
  --text:        #111827;
  --body:        #374151;
  --muted:       #6b7280;
  --white:       #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --max-w: 1120px;
  --pad:   clamp(1.25rem, 5vw, 2.5rem);
  --radius: 5px;
  --radius-lg: 8px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.top-bar {
  background: var(--steel);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 200;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  gap: 1rem;
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar__location {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.top-bar__dot {
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}
.top-bar__phone:hover { color: var(--amber); }
.top-bar__phone svg {
  width: 14px; height: 14px;
  fill: var(--orange);
  flex-shrink: 0;
}
.top-bar__audit-link {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(240,160,0,0.3);
  padding: 5px 12px;
  border-radius: 2px;
  transition: all 0.2s;
  white-space: nowrap;
}
.top-bar__audit-link:hover {
  background: rgba(240,160,0,0.1);
  border-color: var(--amber);
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--mid);
  position: sticky;
  top: 48px;
  z-index: 190;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--steel);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    rgba(232,81,10,0.2) 4px,
    rgba(232,81,10,0.2) 5px
  );
}
.logo-mark span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--orange);
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--steel);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.logo-text__sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--steel); background: var(--light); }
.nav-links a.active { color: var(--orange); font-weight: 600; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,81,10,0.35); }
.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn--outline:hover { background: var(--orange); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--steel);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--steel); background: var(--light); }
.btn--lg { font-size: 15px; padding: 14px 32px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--steel);
  border-radius: 1px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 112px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 180;
  padding: 2rem var(--pad);
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--steel);
  padding: 14px 0;
  border-bottom: 1px solid var(--mid);
  display: block;
}
.mobile-nav .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--steel);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

/* Blueprint grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Orange accent bar */
.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--orange);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero__content {
  padding-bottom: 80px;
  animation: fadeUp 0.7s ease both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--orange);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__headline em {
  font-style: normal;
  color: var(--orange);
  display: block;
}

.hero__sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero__sub strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 48px;
}
.hero__scroll-hint::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.2);
}

/* Hero visual panel */
.hero__visual {
  position: relative;
  align-self: stretch;
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: flex-end; */
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero__stats-panel {
  background: var(--iron);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 32px 36px 36px;
  position: relative;
  overflow: hidden;
}
.hero__stats-panel::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(232,81,10,0.12), transparent 70%);
  pointer-events: none;
}

.stats-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.stat-item {}
.stat-item__value {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1.1px;
}
.stat-item__value span {
  color: var(--white);
}
.stat-item__label {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  line-height: 1.4;
}

.hero__cta-card {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.hero__cta-card:hover { background: var(--orange-dark); }
.hero__cta-card__text {
  color: var(--white);
}
.hero__cta-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero__cta-card__sub {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}
.hero__cta-card__arrow {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: white;
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: var(--light);
  border-bottom: 1px solid var(--mid);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 20px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item:first-child { padding-left: 0; }
.trust-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════ */
.section {
  padding: 96px 0;
}
.section--light { background: var(--light); }
.section--dark { background: var(--steel); }
.section--border-top { border-top: 1px solid var(--mid); }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--orange);
}

.section__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--steel);
  max-width: 640px;
  margin-bottom: 16px;
}
.section--dark .section__headline { color: var(--white); }

.section__sub {
  font-size: 17px;
  color: var(--body);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 56px;
}
.section--dark .section__sub { color: rgba(255,255,255,0.6); }

/* Problem cards */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.problem-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
}
.problem-card:hover { background: #fafbfc; }
.problem-card__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--light);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  letter-spacing: -2px;
  user-select: none;
}
.problem-card__icon {
  width: 44px; height: 44px;
  background: var(--orange-glow);
  border: 1px solid rgba(232,81,10,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.problem-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--steel);
  margin-bottom: 10px;
  line-height: 1.2;
}
.problem-card__body {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
}
.problem-card__consequence {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}
.problem-card__consequence::before {
  content: '→';
}

/* ═══════════════════════════════════════════
   DIFFERENTIATOR SECTION
═══════════════════════════════════════════ */
.diff-section {
  padding: 96px 0;
  background: var(--steel);
  position: relative;
  overflow: hidden;
}
.diff-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.diff-section::after {
  content: 'WHY ME';
  position: absolute;
  right: -40px; bottom: -20px;
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.diff-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: var(--white);
  max-width: 680px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.diff-headline em {
  font-style: normal;
  color: var(--orange);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.diff-card {
  background: var(--iron);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.diff-card:hover { background: var(--iron-light); }
.diff-card__accent {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.2s;
}
.diff-card:hover .diff-card__accent { opacity: 1; }
.diff-card__number {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 20px;
}
.diff-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.diff-card__body {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.diff-card__body strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════ */
.services-section {
  padding: 96px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.service-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
.service-card__header {
  background: var(--iron);
  padding: 24px 28px;
  position: relative;
}
.service-card--featured .service-card__header {
  background: var(--orange);
}
.service-card__tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.service-card--featured .service-card__tag { color: rgba(255,255,255,0.7); }
.service-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.1;
}
.service-card__price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.service-card--featured .service-card__price { color: rgba(255,255,255,0.85); }

.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 3px 8px;
  border-radius: 2px;
}

.service-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.service-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}
.service-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════
   PROCESS / HOW IT WORKS TEASER
═══════════════════════════════════════════ */
.process-section {
  padding: 96px 0;
  background: var(--light);
  border-top: 1px solid var(--mid);
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.process-step__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  background: var(--orange);
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.process-step__content {}
.process-step__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--steel);
  margin-bottom: 5px;
}
.process-step__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Monthly snapshot */
.monthly-snapshot {
  background: var(--steel);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.snapshot-header {
  background: var(--iron);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.snapshot-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}
.snapshot-period {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}
.snapshot-body { padding: 28px; }
.snapshot-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.snapshot-metric {
  background: var(--iron);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.05);
}
.snapshot-metric__val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.snapshot-metric__label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  line-height: 1.3;
}
.snapshot-tasks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.snapshot-task {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}
.snapshot-task__icon {
  width: 20px; height: 20px;
  background: var(--orange-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.snapshot-task__week {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.25);
  margin-left: auto;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PORTFOLIO TEASER
═══════════════════════════════════════════ */
.portfolio-section {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--mid);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.portfolio-card {
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.portfolio-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
.portfolio-card__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  height: 180px;
}
.before-panel {
  background: #c8cdd6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.before-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.05) 0px,
    rgba(0,0,0,0.05) 1px,
    transparent 1px,
    transparent 16px
  );
}
.after-panel {
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.after-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 48px,
    rgba(255,255,255,0.02) 48px,
    rgba(255,255,255,0.02) 49px
  );
}
.panel-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  position: absolute;
  top: 10px; left: 10px;
}
.before-panel .panel-label {
  background: rgba(0,0,0,0.2);
  color: rgba(0,0,0,0.5);
}
.after-panel .panel-label {
  background: var(--orange);
  color: white;
}

/* Mini site mockup in after panel */
.mini-site {
  width: 80%; height: 70%;
  background: var(--iron);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.mini-site__bar {
  height: 16px;
  background: var(--iron-light);
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 4px;
}
.mini-site__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mini-site__content {
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mini-line {
  height: 5px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
}
.mini-line--orange { background: rgba(232,81,10,0.5); width: 60%; }
.mini-line--wide { width: 90%; }
.mini-line--mid { width: 70%; }
.mini-line--short { width: 45%; }

/* Broken old site mockup */
.old-site {
  width: 80%; height: 70%;
  background: #e8e8e8;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.old-site__bar {
  height: 14px;
  background: #d0d0d0;
  display: flex;
  align-items: center;
  padding: 0 4px;
  gap: 3px;
}
.old-site__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #bbb;
}
.old-site__content {
  padding: 5px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.old-line {
  height: 4px;
  border-radius: 1px;
  background: #ccc;
}
.old-line--wide { width: 95%; }
.old-line--mid { width: 65%; }
.old-line--short { width: 40%; }
.old-line--xs { width: 25%; background: #bbb; }

.portfolio-card__body {
  padding: 22px 24px;
}
.portfolio-card__type {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.portfolio-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.portfolio-card__result {
  font-size: 13px;
  color: var(--body);
  line-height: 1.55;
}
.portfolio-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.portfolio-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--light);
  color: var(--muted);
  border: 1px solid var(--border);
}
.portfolio-note {
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
}

/* ═══════════════════════════════════════════
   AUDIT CTA SECTION
═══════════════════════════════════════════ */
.audit-section {
  background: var(--steel);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.audit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.audit-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.audit-content .section__eyebrow { margin-bottom: 14px; }
.audit-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 18px;
}
.audit-headline em {
  font-style: normal;
  color: var(--orange);
}
.audit-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}
.audit-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.audit-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.audit-bullets li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* Audit form */
.audit-form-card {
  background: var(--iron);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.audit-form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.audit-form-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  line-height: 1.5;
}
.form-group {
  margin-bottom: 14px;
}
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
}
.form-input--textarea {
  resize: vertical;
  min-height: 70px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 14px;
  padding: 14px;
  justify-content: center;
}
.form-promise {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--steel-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-main {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand {}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-nap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nap a,
.footer-nap span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-nap a:hover { color: var(--amber); }

.footer-nav-group h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-nav-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-group ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav-group ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom__copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}
.footer-bottom__right {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s 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; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual { order: -1; }
  .hero__stats-panel { border-radius: var(--radius-lg); }
  .diff-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-inner { grid-template-columns: 1fr; }
  .audit-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 48px 0 0; }
  .section { padding: 64px 0; }
  .trust-bar__inner { justify-content: flex-start; overflow-x: auto; }
  .trust-item { padding: 6px 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .top-bar__location { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .audit-form-card { padding: 24px 20px; }
  .snapshot-metrics { grid-template-columns: repeat(3, 1fr); }
}
