/* ═══════════════════════════════════════════════════════════════════════════
   BOLD THEME — Angular, dark, dramatic. For contractors, roofers, HVAC, auto.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── NAV: transparent over hero ─────────────────────────────────────── */
.theme-bold .nav {
  position: fixed;
  width: 100%;
  background: transparent;
  border-bottom: none;
  z-index: 100;
}
.theme-bold .nav.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.theme-bold .nav__logo {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── HERO: full-bleed image ─────────────────────────────────────────── */
.hero-bold {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bold__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-bold__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, var(--color-bg) 100%);
}
.hero-bold__angle {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--color-bg);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-bold__inner {
  position: relative;
  z-index: 2;
  padding: 10rem 0 12rem;
  max-width: 800px;
  margin: 0 auto;
}
.hero-bold__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  border: 1px solid rgba(var(--color-primary-rgb), 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 0;
  margin-bottom: 1.5rem;
}
.hero-bold__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: var(--font-weight-heading);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-bold__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-bold__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Ghost button */
.theme-bold .btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.theme-bold .btn--ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* ─── FLOATING STATS BAR ─────────────────────────────────────────────── */
.stats-float {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 3;
}
.stats-float__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 768px) {
  .stats-float__inner { grid-template-columns: repeat(4, 1fr); }
}
.stats-float .stat {
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stats-float .stat:nth-child(2n) { border-right: none; }
@media (min-width: 768px) {
  .stats-float .stat { border-bottom: none; }
  .stats-float .stat:nth-child(2n) { border-right: 1px solid var(--color-border); }
  .stats-float .stat:last-child { border-right: none; }
}
.stats-float .stat__value {
  font-size: 2.25rem;
  font-weight: var(--font-weight-heading);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stats-float .stat__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

/* ─── TRUST BAR ──────────────────────────────────────────────────────── */
.trust-bar {
  padding: 2rem 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* ─── SERVICES: alternating rows with giant numbers ──────────────────── */
.services-bold {
  padding: calc(var(--space-unit) * 7) 0;
}
.service-row-bold {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}
.service-row-bold:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
@media (min-width: 768px) {
  .service-row-bold { grid-template-columns: 100px 1fr; gap: 3rem; }
}
.service-row-bold__num {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  color: rgba(var(--color-primary-rgb), 0.15);
  line-height: 1;
}
.service-row-bold__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.service-row-bold__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 0.75rem;
}
.service-row-bold__text {
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 1rem;
}
.service-row-bold__link {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}
.service-row-bold__link:hover { text-decoration: underline; }

/* ─── ANGLE DIVIDER ──────────────────────────────────────────────────── */
.angle-divider {
  height: 80px;
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
}
.angle-divider--primary { background: var(--color-surface); }

/* ─── ABOUT ──────────────────────────────────────────────────────────── */
.about-bold {
  padding: calc(var(--space-unit) * 6) 0;
  background: var(--color-surface);
}
.about-bold__inner {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .about-bold__inner { grid-template-columns: 1fr 1fr; align-items: start; }
}
.about-bold__text {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ─── TESTIMONIALS: patterned background ─────────────────────────────── */
.testimonials-bold {
  position: relative;
  padding: calc(var(--space-unit) * 7) 0;
  overflow: hidden;
}
.testimonials-bold__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    var(--color-primary) 0px,
    var(--color-primary) 1px,
    transparent 1px,
    transparent 20px
  );
}
.testimonials-bold__slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.theme-bold .testimonial-card {
  background: transparent;
  border: none;
  text-align: center;
  padding: 2rem 1rem;
}
.theme-bold .testimonial-card__stars {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.theme-bold .testimonial-card__quote {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.8;
  font-style: normal;
  position: relative;
  padding: 0 1rem;
}
.theme-bold .testimonial-card__quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(var(--color-primary-rgb), 0.2);
  position: absolute;
  top: -2rem;
  left: -0.5rem;
  line-height: 1;
}
.theme-bold .testimonial-card__author {
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}
.theme-bold .testimonial-card__detail {
  color: var(--color-primary);
}

/* ─── PROCESS: big numbered cards ────────────────────────────────────── */
.process-bold {
  padding: calc(var(--space-unit) * 7) 0;
  background: var(--color-surface);
}
.process-bold__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .process-bold__grid { grid-template-columns: repeat(4, 1fr); }
}
.theme-bold .process-step {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: 0;
  padding: 2rem 1.5rem;
  text-align: center;
}
.theme-bold .process-step__num {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 1.125rem;
  border-radius: 0;
  margin: 0 auto 1.25rem;
}

/* ─── CTA: gradient stripe ───────────────────────────────────────────── */
.cta-bold {
  position: relative;
  padding: calc(var(--space-unit) * 7) 0;
  text-align: center;
  overflow: hidden;
}
.cta-bold__stripe {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.15) 0%, transparent 50%);
}
.cta-bold__inner { position: relative; z-index: 1; }
.cta-bold__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-bold__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-bold__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
