/* =========================================================
   Accurate Striping & Painting — Global Styles (v2)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- Custom Properties ---------------------------------- */
:root {
  --yellow:       #f9c80e;
  --yellow-dark:  #d9a800;
  --black:        #0a0a0a;
  --dark:         #111111;
  --dark-card:    #1a1a1a;
  --mid:          #2a2a2a;
  --gray:         #f5f5f5;
  --text:         #1a1a1a;
  --text-muted:   #666666;
  --white:        #ffffff;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.16);
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   all 0.25s var(--ease);
}

/* --- Reset ---------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* --- Typography ----------------------------------------- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(249,200,14,0.12);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* --- Layout --------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
.section-gray { background: var(--gray); }
.section-dark { background: var(--dark); }

/* --- Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,200,14,0.35);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--mid);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* --- Header / Nav --------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo { display: flex; align-items: center; }
.logo img { height: 46px; width: auto; }

nav { display: flex; align-items: center; gap: 8px; }
nav ul { display: flex; align-items: center; gap: 4px; }
nav ul li a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 6px;
}
nav ul li a:hover { color: var(--yellow); background: rgba(255,255,255,0.05); }
nav ul li a.active { color: var(--yellow); }

.btn-nav {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
}
.btn-nav:hover {
  background: var(--yellow-dark) !important;
  color: var(--black) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249,200,14,0.4);
}

.btn-nav-estimate {
  background: transparent;
  border: 1.5px solid var(--yellow);
  color: var(--yellow) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
}
.btn-nav-estimate:hover {
  background: var(--yellow) !important;
  color: var(--black) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--dark-card);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { flex-direction: column; gap: 0; }
.mobile-nav ul li a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-nav .mobile-ctas {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* --- Hero ----------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(0,0,0,0.88) 55%, rgba(0,0,0,0.5) 100%),
    url('./images/hero.webp') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(0,0,0,0.15));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-tagline {
  font-size: 0.65em;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-trust-item .check {
  width: 18px;
  height: 18px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--black);
  flex-shrink: 0;
}

/* --- Stats Strip ---------------------------------------- */
.stats-strip {
  background: var(--yellow);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-top: 4px;
}

/* --- Service Cards (homepage) --------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-bg {
  transform: scale(1.06);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.2) 100%);
}
.service-card-body {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: var(--white);
}
.service-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.service-card-body h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}
.service-card-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Service card background images */
.sc-striping  .service-card-bg { background-image: url('https://images.unsplash.com/photo-1772369612500-e1643da23e8e?auto=format&fit=crop&w=800&q=80'), linear-gradient(135deg, #1a1a1a, #333); }
.sc-ada       .service-card-bg { background-image: url('./images/ADA_image.jpg'), linear-gradient(135deg, #1a2a1a, #334433); }
.sc-fire      .service-card-bg { background-image: url('./images/firelane.jpg'), linear-gradient(135deg, #2a1a1a, #443333); }
.sc-crack     .service-card-bg { background-image: url('./images/crack-filling.jpg'), linear-gradient(135deg, #1a1a2a, #333344); }
.sc-stencil   .service-card-bg { background-image: url('./images/custom-stencil.jpg'), linear-gradient(135deg, #2a2a1a, #444433); }
.sc-warehouse .service-card-bg { background-image: url('./images/warehouse-striping.jpg'), linear-gradient(135deg, #1a1a1a, #2a2a2a); }

/* --- Why Choose Us -------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-badge .num { font-size: 2.5rem; font-weight: 900; color: var(--black); line-height: 1; }
.why-badge .lbl { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(0,0,0,0.6); margin-top: 4px; }

.why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-icon {
  width: 44px;
  height: 44px;
  background: rgba(249,200,14,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(249,200,14,0.2);
}
.why-point-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.why-point-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Testimonials --------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars { color: var(--yellow); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray);
  padding-top: 16px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* --- CTA Banner ----------------------------------------- */
.cta-banner {
  background:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
    url('https://images.unsplash.com/photo-1621618797468-2ab8e2e54dbd?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-banner .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Service Areas -------------------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.area-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.area-card-header {
  padding: 24px 28px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}
.area-card-header .flag { font-size: 1.5rem; }
.area-card-header h3 { font-size: 1rem; color: var(--white); margin: 0; }
.area-card-header .license { font-size: 0.75rem; color: rgba(255,255,255,0.45); font-weight: 400; margin-top: 2px; }
.area-card-body { padding: 24px 28px; background: var(--white); }
.city-list { display: flex; flex-direction: column; gap: 8px; }
.city-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.city-list li::before { content: '→'; color: var(--yellow); font-weight: 700; }
.city-list li:last-child { border-bottom: none; }

/* --- Page Hero (inner pages) ---------------------------- */
.page-hero .section-label { font-size: 1rem; padding: 6px 16px; }
.page-hero {
  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)),
    url('./images/hero.webp') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* --- Services Page Cards -------------------------------- */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-list-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition);
}
.service-list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.slc-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.slc-body { padding: 28px; }
.slc-body h3 { color: var(--text); margin-bottom: 10px; }
.slc-body p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* --- Estimate Wizard ------------------------------------ */
.estimate-page {
  background: var(--gray);
  min-height: 80vh;
  padding: 60px 0;
}
.wizard-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.wizard-header {
  background: var(--dark);
  padding: 32px 40px;
  color: var(--white);
}
.wizard-header h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.wizard-header p  { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* Progress bar */
.wizard-progress {
  display: flex;
  gap: 0;
  margin-top: 24px;
}
.wizard-step-dot {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-right: 6px;
  transition: background 0.3s;
}
.wizard-step-dot.active { background: var(--yellow); }
.wizard-step-dot:last-child { margin-right: 0; }

.step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0.7;
  margin-top: 8px;
}

/* Wizard body */
.wizard-body { padding: 40px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; }

.wizard-step h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 6px;
}
.wizard-step > p {
  font-size: 0.88rem;
  margin-bottom: 28px;
  color: var(--text-muted);
}

/* Service checkboxes */
.service-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.svc-check {
  position: relative;
}
.svc-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.svc-check label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid rgba(0,0,0,0.10);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.svc-check label:hover { border-color: var(--yellow); background: rgba(249,200,14,0.05); }
.svc-check input:checked + label {
  border-color: var(--yellow);
  background: rgba(249,200,14,0.08);
  color: var(--black);
}
.svc-check-icon { font-size: 1.2rem; }
.svc-check-box {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.svc-check input:checked + label .svc-check-box {
  background: var(--yellow);
  border-color: var(--yellow);
}
.svc-check input:checked + label .svc-check-box::after {
  content: '✓';
  font-size: 11px;
  font-weight: 800;
  color: var(--black);
}

/* Form fields */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(0,0,0,0.10);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(249,200,14,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* Radio pills */
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-pill { position: relative; }
.radio-pill input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pill label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  border: 2px solid rgba(0,0,0,0.10);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.radio-pill label:hover { border-color: var(--yellow); background: rgba(249,200,14,0.04); }
.radio-pill input:checked + label {
  border-color: var(--yellow);
  background: rgba(249,200,14,0.08);
  font-weight: 700;
}
.radio-dot {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  transition: var(--transition);
}
.radio-pill input:checked + label .radio-dot {
  border-color: var(--yellow);
  background: var(--yellow);
  box-shadow: inset 0 0 0 3px var(--white);
}

/* Wizard nav */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 8px;
}
.wizard-back {
  background: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wizard-back:hover { color: var(--text); }

/* Success screen */
.wizard-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}
.wizard-success.active { display: block; }
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(249,200,14,0.15);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}
.wizard-success h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 12px; }
.wizard-success p  { color: var(--text-muted); max-width: 400px; margin: 0 auto 28px; line-height: 1.6; }

/* --- About Page ----------------------------------------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.cred-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--gray);
  border-radius: var(--radius);
}
.cred-item .num { font-size: 1.8rem; font-weight: 900; color: var(--text); }
.cred-item .lbl { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-top: 4px; }

/* --- Footer -------------------------------------------- */
footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
}
.footer-logo-img { height: 42px; width: auto; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-licenses {
  margin-top: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* --- Animations ----------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s var(--ease) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* --- Responsive ----------------------------------------- */
@media (max-width: 1024px) {
  .why-grid       { grid-template-columns: 1fr; gap: 48px; }
  .story-grid     { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hamburger { display: flex; }
  nav > ul, nav > .btn-nav-estimate { display: none; }
  .hero { min-height: 85vh; }
  .hero-tagline { white-space: normal; font-size: 0.6em; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .service-checks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .wizard-body { padding: 28px 24px; }
  .wizard-header { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-badge { position: static; margin-top: 16px; display: inline-flex; gap: 16px; align-items: center; width: auto; }
  .story-image { height: 280px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner .cta-btns { flex-direction: column; align-items: center; }
}
