/* ==========================================================================
   BYOP Electric — Design System v3 · Backup Power Pivot
   Dark-light wave: cinematic steel + clean white + BYOP yellow punch.
   Section rhythm: dark → yellow → white → dark → white → dark → dark → white → dark
   ========================================================================== */

:root {
  /* === Dark palette === */
  --steel: #0F0F0E;
  --steel-soft: #161614;
  --slab: #1E1C19;

  /* === Light palette === */
  --white: #FFFFFF;
  --offwhite: #F7F6F3;
  --warm-grey: #EDEBE7;
  --light-border: #E0DDD8;

  /* === Text on dark === */
  --text-on-dark: #E8E6E2;
  --mute-on-dark: #A8A49E;
  --faint-on-dark: #706C66;

  /* === Text on light === */
  --text-on-light: #1A1917;
  --mute-on-light: #5C5955;
  --faint-on-light: #8A8680;

  /* === Accent === */
  --yellow: #FCCE08;
  --yellow-hover: #E5BA00;
  --yellow-soft: rgba(252, 206, 8, 0.10);
  --yellow-glow: rgba(252, 206, 8, 0.06);

  /* === Shared === */
  --dark-border: rgba(255,255,255,0.08);
  --dark-border-mid: rgba(255,255,255,0.12);
  --dark-border-hover: rgba(255,255,255,0.22);
  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 24px;

  --max-w: 1240px;
  --max-narrow: 780px;
  --gutter: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--steel);
  color: var(--mute-on-dark);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Inter Tight', 'Barlow', sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-weight: 800;
}
h1 { font-size: clamp(3rem, 9vw, 6.5rem); font-weight: 900; letter-spacing: -0.04em; text-transform: uppercase; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.15rem; letter-spacing: -0.01em; }
.accent { color: var(--yellow); }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--yellow);
  color: var(--steel);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(252, 206, 8, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.btn-dark {
  background: var(--steel);
  color: var(--white);
  border-color: var(--steel);
}
.btn-dark:hover { background: var(--slab); transform: translateY(-1px); }
.btn-outline-dark {
  background: transparent;
  color: var(--text-on-light);
  border-color: var(--light-border);
}
.btn-outline-dark:hover { background: var(--offwhite); border-color: var(--mute-on-light); }
.btn-lg { padding: 18px 30px; font-size: 1rem; }
.btn::after { content: '\2192'; transition: transform 0.2s ease; }
.btn:hover::after { transform: translateX(3px); }
.btn.btn-no-arrow::after { display: none; }

/* ============ HEADER — DARK ============ */
.header {
  background: var(--steel);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: border-color 0.2s, background 0.2s;
}
.header.scrolled {
  border-color: var(--dark-border-mid);
  background: var(--steel);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 36px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}
.nav a { color: var(--mute-on-dark); transition: color 0.15s; }
.nav a:hover { color: var(--white); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(6px);
  z-index: 60;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mute-on-light);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--yellow-soft);
  color: var(--text-on-light);
}

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { color: var(--text-on-dark); font-weight: 700; font-size: 0.92rem; }
.hamburger { display: none; }

/* ============ MOBILE NAV ============ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--steel);
  z-index: 100;
  padding: 80px var(--gutter) var(--gutter);
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  border-bottom: 1px solid var(--dark-border);
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav .sub-link {
  padding-left: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--mute-on-dark);
  border-bottom-color: rgba(255,255,255,0.04);
}
.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: var(--gutter);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-on-dark);
}

/* ============ HERO — DARK ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--steel);
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0.62;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15,15,14,0.88) 0%, rgba(15,15,14,0.45) 55%, rgba(15,15,14,0) 100%),
    linear-gradient(to top, rgba(15,15,14,0.70) 0%, rgba(15,15,14,0.15) 50%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(60px, 10vw, 120px);
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--yellow);
}
.hero h1 {
  color: var(--white);
  max-width: 14ch;
  line-height: 0.92;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 500;
  color: var(--mute-on-dark);
  max-width: 38ch;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 44px;
}
.hero-ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; }

/* ============ STATS BAR — YELLOW PUNCH ============ */
.stats {
  background: var(--yellow);
  padding: 52px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--steel);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(15, 15, 14, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

/* ============ MANIFESTO — WHITE ============ */
.manifesto {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--white);
}
.manifesto .narrow { text-align: left; }
.manifesto .lead {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 800;
  color: var(--text-on-light);
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin-bottom: 36px;
}
.manifesto p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--mute-on-light);
  line-height: 1.65;
  margin-bottom: 18px;
}
.manifesto p.closer {
  font-weight: 800;
  color: var(--text-on-light);
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  letter-spacing: -0.02em;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ============ SERVICES — DARK ============ */
.services-section {
  padding: clamp(80px, 12vw, 150px) 0;
  background: var(--steel);
}
.services-section .section-head { margin-bottom: 60px; max-width: 720px; }
.services-section .section-head h2 { margin-bottom: 18px; color: var(--white); }
.services-section .section-head p { color: var(--mute-on-dark); font-size: 1.1rem; max-width: 56ch; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--slab);
  border: 1px solid var(--dark-border-mid);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--dark-border-hover);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.service-card:hover img { opacity: 0.9; transform: scale(1.04); }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,14,0) 30%, rgba(15,15,14,0.88) 100%);
  z-index: 1;
}
.service-card .label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  letter-spacing: -0.02em;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.1;
}
.service-card .arrow {
  color: var(--yellow);
  font-size: 1.4em;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.service-card:hover .arrow { transform: translateX(4px); }

/* ============ BRAND RIBBON — LIGHT ============ */
.ribbon {
  padding: clamp(50px, 8vw, 90px) 0;
  background: var(--offwhite);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  overflow: hidden;
}
.ribbon-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint-on-light);
  margin-bottom: 38px;
}
.ribbon-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-left 48s linear infinite;
  will-change: transform;
  gap: 0;
}
.ribbon:hover .ribbon-track { animation-play-state: paused; }
.ribbon-item {
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(36px, 4.5vw, 64px);
  white-space: nowrap;
  flex-shrink: 0;
}
.ribbon-item img {
  height: clamp(26px, 3.4vw, 44px);
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ribbon-item:hover img { opacity: 0.9; transform: scale(1.06); }
.ribbon-item[data-brand="tesla"] img      { height: clamp(22px, 2.6vw, 32px); }
.ribbon-item[data-brand="caterpillar"] img { height: clamp(22px, 2.8vw, 36px); }
.ribbon-item[data-brand="generac"] img    { height: clamp(24px, 3.1vw, 40px); }
.ribbon-item[data-brand="kohler"] img     { height: clamp(24px, 3.1vw, 40px); }
.ribbon-item[data-brand="anker"] img      { height: clamp(26px, 3.3vw, 42px); }
.ribbon-item[data-brand="sigenergy"] img  { height: clamp(30px, 3.8vw, 48px); }
.ribbon-item[data-brand="solark"] img     { height: clamp(32px, 4.1vw, 52px); }
.ribbon-item[data-brand="eg4"] img        { height: clamp(26px, 3.3vw, 42px); }
.ribbon-dot {
  display: inline-flex;
  align-items: center;
  color: var(--yellow-hover);
  font-size: 0.8rem;
  padding: 0 2px;
  opacity: 0.4;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ WHY BYOP — DARK ============ */
.why-section {
  padding: clamp(90px, 13vw, 160px) 0;
  background: var(--steel);
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, var(--yellow-glow) 0%, transparent 55%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 48px;
  border-top: 1px solid var(--dark-border-mid);
  padding-top: 72px;
  position: relative;
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.why-num span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--steel);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0;
}
.why-item h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--white);
}
.why-item p {
  color: var(--mute-on-dark);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 34ch;
}

/* ============ SOCIAL PROOF — DARK ============ */
.proof {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--steel-soft);
  color: var(--white);
  overflow: hidden;
}
.proof-header {
  max-width: 780px;
  margin: 0 auto clamp(44px, 6vw, 68px);
  text-align: center;
  padding: 0 20px;
}
.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  margin-bottom: 28px;
}
.proof-google-logo { width: 24px; height: 24px; flex-shrink: 0; }
.proof-rating-block { display: flex; align-items: baseline; gap: 10px; }
.proof-rating-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.proof-rating-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; line-height: 1; }
.proof-rating-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.proof-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.proof-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto;
}
.proof-note {
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  font-style: italic;
  line-height: 1.55;
}

.proof-ribbon {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.proof-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: proof-marquee 95s linear infinite;
  will-change: transform;
}
.proof-track:hover,
.proof-ribbon:hover .proof-track { animation-play-state: paused; }
@keyframes proof-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .proof-track { animation: none; }
}

.review-card {
  flex-shrink: 0;
  width: 360px;
  padding: 28px 28px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.review-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(252,206,8,0.3);
  transform: translateY(-2px);
}
.review-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 3px; line-height: 1; }
.review-text { font-size: 0.97rem; line-height: 1.55; color: rgba(255,255,255,0.85); flex: 1; margin: 0; }
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.review-date { font-size: 0.76rem; color: rgba(255,255,255,0.4); white-space: nowrap; }

.proof-footer { text-align: center; margin-top: clamp(36px, 5vw, 60px); }
.proof-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.proof-link:hover { background: rgba(255,255,255,0.06); border-color: rgba(252,206,8,0.4); }
.proof-link svg { width: 16px; height: 16px; }

/* ============ FINAL CTA — WHITE ============ */
.final {
  padding: clamp(80px, 12vw, 150px) 0;
  background: var(--white);
}
.final-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.final-photo {
  width: clamp(160px, 18vw, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--warm-grey);
}
.final-photo img { width: 100%; height: 100%; object-fit: cover; }
.final-content h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  max-width: 16ch;
  line-height: 1;
  letter-spacing: -0.032em;
  margin-bottom: 20px;
  color: var(--text-on-light);
}
.final-content p {
  max-width: 44ch;
  color: var(--mute-on-light);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.55;
}
.final-ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; }

/* ============ FOOTER — DARK ============ */
.footer {
  background: var(--steel);
  color: var(--mute-on-dark);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--dark-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-col h5 {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--faint-on-dark);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--mute-on-dark);
  font-size: 0.92rem;
  padding: 6px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-brand p {
  color: var(--faint-on-dark);
  font-size: 0.93rem;
  max-width: 38ch;
  margin-top: 18px;
}
.footer-brand img {
  height: 40px;
}

.footer-areas {
  padding: 28px 0;
  border-top: 1px solid var(--dark-border);
  font-size: 0.84rem;
  color: var(--faint-on-dark);
  line-height: 1.8;
}
.footer-areas strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--faint-on-dark);
  margin-bottom: 10px;
}
.footer-areas a {
  color: var(--mute-on-dark);
  padding: 0 2px;
  transition: color 0.15s;
}
.footer-areas a:hover { color: var(--white); }
.footer-areas .sep { color: var(--faint-on-dark); margin: 0 6px; }

.wordmark-wrap {
  position: relative;
  height: clamp(110px, 20vw, 300px);
  margin-top: 32px;
  overflow: hidden;
}
.wordmark {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(7rem, 23vw, 26rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.035);
  text-align: center;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  bottom: -0.14em;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
}
.footer-base {
  border-top: 1px solid var(--dark-border);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--faint-on-dark);
}
.footer-base a { color: var(--mute-on-dark); }
.footer-base a:hover { color: var(--white); }

/* ============ KICKER ============ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint-on-dark);
  margin-bottom: 20px;
}
.kicker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
}

/* ============ CONTENT HEADERS ============ */
.content-area h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 1.8em;
  margin-bottom: 0.5em;
}
.content-area h3,
.content-area h4 {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-top: 1.4em;
  margin-bottom: 0.4em;
}

/* ============ INNER-PAGE HERO ============ */
.hero--inner {
  min-height: auto;
  align-items: flex-end;
  padding: 140px 0 60px;
}
.hero--inner .hero-inner {
  padding-bottom: 0;
}
.hero--inner .hero-sub {
  margin-bottom: 0;
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  background: var(--steel);
  border-bottom: 1px solid var(--dark-border);
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--faint-on-dark);
}
.breadcrumbs a { color: var(--mute-on-dark); transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs .sep { margin: 0 8px; }

/* ============ LIGHT SECTIONS ============ */
.section-light {
  background: var(--white);
  padding: clamp(60px, 10vw, 120px) 0;
}
.section-light h2 { color: var(--text-on-light); }
.section-light p { color: var(--mute-on-light); }

.section-offwhite {
  background: var(--offwhite);
  padding: clamp(60px, 10vw, 120px) 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}
.section-offwhite h2 { color: var(--text-on-light); }
.section-offwhite p { color: var(--mute-on-light); }

.section-dark {
  background: var(--steel);
  padding: clamp(60px, 10vw, 120px) 0;
}
.section-dark h2 { color: var(--white); }
.section-dark p { color: var(--mute-on-dark); }

.section-head-center { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head-center h2 { margin-bottom: 14px; }
.section-head-center p { font-size: 1.05rem; line-height: 1.6; }

/* ============ TWO-COL LAYOUT ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.two-col--center { align-items: center; }
.two-col img { border-radius: var(--radius-lg); width: 100%; }

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.card--dark {
  background: var(--slab);
  border-color: var(--dark-border-mid);
}
.card h4 {
  color: var(--text-on-light);
  margin-bottom: 8px;
}
.card--dark h4 { color: var(--white); }
.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--mute-on-light);
}
.card--dark p { color: var(--mute-on-dark); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--yellow);
}
.card--dark .card-icon {
  background: rgba(252,206,8,0.08);
}

/* ============ FORM ELEMENTS ============ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 6px;
}
.form-group .required { color: #EF4444; }
.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-on-light);
  background: var(--white);
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-soft);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--faint-on-light);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.ohnohoney { position: absolute; left: -9999px; }

.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
}
.form-message--success {
  background: rgba(52, 168, 83, 0.1);
  color: #166534;
  border: 1px solid rgba(52, 168, 83, 0.2);
}
.form-message--error {
  background: rgba(239, 68, 68, 0.08);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

/* ============ STEPS ============ */
.steps { display: flex; flex-direction: column; gap: 0; counter-reset: step-counter; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--light-border);
  counter-increment: step-counter;
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--steel);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-num::before { content: counter(step-counter); }
.step h4 {
  color: var(--text-on-light);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.step p {
  color: var(--mute-on-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============ COMPARISON ============ */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comparison-col {
  border-radius: var(--radius-lg);
  padding: 36px;
}
.comparison-col--them {
  background: var(--offwhite);
  border: 1px solid var(--light-border);
}
.comparison-col--us {
  background: var(--steel);
  border: 1px solid var(--dark-border-mid);
}
.comparison-col h3 {
  font-size: 1.15rem;
  margin-bottom: 24px;
}
.comparison-col--them h3 { color: var(--text-on-light); }
.comparison-col--us h3 { color: var(--white); }
.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}
.comparison-item span { font-size: 0.95rem; line-height: 1.5; }
.comparison-col--them .comparison-item span { color: var(--mute-on-light); }
.comparison-col--us .comparison-item span { color: var(--mute-on-dark); }
.x-icon, .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 2px;
}
.x-icon { background: rgba(239,68,68,0.12); color: #EF4444; }
.check-icon { background: rgba(252,206,8,0.15); color: var(--yellow); }

/* ============ STATS (ABOUT) ============ */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.about-stat-num {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ============ SERVICE DETAIL ============ */
.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--offwhite);
  border-radius: var(--radius);
  border: 1px solid var(--light-border);
}
.feature-item .check {
  color: var(--yellow-hover);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-on-light);
  line-height: 1.4;
}

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============ GALLERY ============ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.gallery-filter {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mute-on-dark);
  background: var(--slab);
  border: 1px solid var(--dark-border-mid);
  transition: all 0.2s;
}
.gallery-filter:hover,
.gallery-filter.active {
  background: var(--yellow);
  color: var(--steel);
  border-color: var(--yellow);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--dark-border-mid);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); opacity: 0.85; }
.gallery-item__overlay,
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(15,15,14,0.85));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__overlay,
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; flex-direction: column; gap: 16px; }
.lightbox img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--white);
  z-index: 201;
}
.lightbox__caption { color: var(--mute-on-dark); font-size: 0.92rem; text-align: center; }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--light-border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-on-light);
  text-align: left;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p {
  padding: 0 0 20px;
  color: var(--mute-on-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============ PRICING TABLE ============ */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--light-border);
}
.pricing-table thead th {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--faint-on-light);
}
.pricing-table td { color: var(--mute-on-light); }
.pricing-table .highlight {
  color: var(--text-on-light);
  font-weight: 700;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--yellow);
  padding: 18px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--steel);
}

/* ============ CHECKLIST ============ */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.checklist li::before {
  content: '\2713';
  color: var(--yellow);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--slab);
  border: 1px solid var(--dark-border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--dark-border-hover);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-body h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.blog-card-body p {
  font-size: 0.9rem;
  color: var(--mute-on-dark);
  line-height: 1.55;
}
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--faint-on-dark);
  margin-top: 14px;
}

/* Blog article */
.article-content {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.article-content p {
  color: var(--mute-on-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2em;
}
.article-content h2 {
  color: var(--text-on-light);
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.article-content h3 {
  color: var(--text-on-light);
  margin-top: 1.5em;
  margin-bottom: 0.4em;
}
.article-content ul,
.article-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
.article-content li {
  color: var(--mute-on-light);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 0.5em;
}
.article-content a {
  color: var(--yellow-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-content blockquote {
  border-left: 3px solid var(--yellow);
  padding: 16px 24px;
  margin: 1.5em 0;
  background: var(--offwhite);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-content blockquote p {
  color: var(--text-on-light);
  font-style: italic;
  margin-bottom: 0;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.article-content th,
.article-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--light-border);
  font-size: 0.95rem;
}
.article-content th {
  font-weight: 700;
  color: var(--text-on-light);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article-content td { color: var(--mute-on-light); }

/* Author bar */
.author-bar {
  background: var(--offwhite);
  border-bottom: 1px solid var(--light-border);
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--faint-on-light);
}
.author-bar .container {
  line-height: 1.55;
}

/* ============ PRICING CARDS ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border-top: 3px solid var(--yellow);
}
.pricing-card-tier {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--faint-on-light);
}
.pricing-card-price {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-on-light);
  letter-spacing: -0.03em;
  margin: 12px 0;
}
.pricing-card-desc {
  color: var(--mute-on-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.pricing-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ============ INFO BANNER ============ */
.info-banner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--steel);
  border: 1px solid var(--dark-border-mid);
  border-radius: var(--radius-lg);
  margin-top: 32px;
}
.info-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(252,206,8,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--yellow);
}
.info-banner h4 { color: var(--white); margin-bottom: 6px; }
.info-banner p { color: var(--mute-on-dark); font-size: 0.95rem; line-height: 1.6; }

/* ============ SERVICE PHOTO CARDS ============ */
.service-photo-card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--slab);
  border: 1px solid var(--dark-border-mid);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-photo-card:hover {
  transform: translateY(-5px);
  border-color: var(--dark-border-hover);
}
.service-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.service-photo-card:hover img { opacity: 0.9; transform: scale(1.04); }
.service-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,14,0) 30%, rgba(15,15,14,0.88) 100%);
  z-index: 1;
}
.service-photo-card .label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.service-photo-card .arrow {
  color: var(--yellow);
  font-size: 1.4em;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.service-photo-card:hover .arrow { transform: translateX(4px); }

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-lg { margin-top: 32px; }
.mb-lg { margin-bottom: 48px; }
.btn-group { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.btn-outline {
  background: transparent;
  color: var(--text-on-light);
  border-color: var(--light-border);
}
.btn-outline:hover { background: var(--offwhite); border-color: var(--mute-on-light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav { display: none; }
  .hamburger { display: block; width: 44px; height: 44px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px auto; transition: 0.2s; }
  .header-phone { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .review-card { width: 320px; padding: 24px 24px 20px; }
  .final-grid { grid-template-columns: 1fr; text-align: center; }
  .final-photo { margin: 0 auto; }
  .final-ctas { justify-content: center; }
  .two-col { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { min-height: 75vh; }
  .hero--inner { min-height: auto; padding: 110px 0 40px; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-ctas .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-photo-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 5/3; }
  .trust-items { gap: 16px; }
  .trust-item { font-size: 0.78rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-ctas { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .final-ctas .btn { justify-content: center; }
  .review-card { width: 280px; padding: 22px 22px 18px; }
  .review-text { font-size: 0.92rem; }
  .proof-badge { gap: 12px; padding: 11px 18px; }
  .proof-rating-num { font-size: 1.3rem; }
  .proof-track { gap: 16px; animation-duration: 80s; }
  .card-grid { grid-template-columns: 1fr; }
}
