/* ==========================================================================
   Core Diesel Services — Main Stylesheet
   Author: Core Diesel / Hedgehog Marketing
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  --cd-red:        #E8001C;
  --cd-black:      #000000;
  --cd-dark:       #0a0a0a;
  --cd-dark-2:     #111111;
  --cd-dark-3:     #141414;
  --cd-white:      #FFFFFF;
  --cd-warm-white: #F5F5F5;
  --cd-text-muted: rgba(255, 255, 255, 0.55);
  --cd-text-dim:   rgba(255, 255, 255, 0.35);

  /* Spacing scale */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cd-white);
  background-color: var(--cd-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* No rounded corners — strict */
* {
  border-radius: 0 !important;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

/* Heading font family helper */
h1, h2, h3, h4,
.font-heading {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 {
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

h4 {
  font-size: 22px;
  font-weight: 700;
}

.body-large {
  font-size: 18px;
  font-weight: 400;
}

.label-tag {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.section-inner {
  padding: var(--sp-7) 0;
}

/* --------------------------------------------------------------------------
   HEADER — Sticky, every page
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cd-black);
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
}

.logo-core {
  color: var(--cd-white);
}

.logo-diesel {
  color: var(--cd-red);
  margin-left: 4px;
}

/* Header right CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.header-help-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cd-text-muted);
}

.header-phone {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--cd-white);
  text-decoration: none;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 13px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.88;
}

.btn-red {
  background: var(--cd-red);
  color: var(--cd-white);
  border-color: var(--cd-red);
}

.btn-outline-white {
  background: transparent;
  color: var(--cd-white);
  border-color: var(--cd-white);
}

.btn-black {
  background: var(--cd-black);
  color: var(--cd-white);
  border-color: var(--cd-black);
}

.btn-outline-black {
  background: transparent;
  color: var(--cd-black);
  border-color: var(--cd-black);
}

.btn-sm {
  font-size: 13px;
  padding: 10px 20px;
}

.btn-full {
  display: block;
  width: 100%;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cd-dark);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark overlay */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.88) 55%, rgba(0, 0, 0, 0.4));
}

/* Placeholder for stock images */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: var(--cd-dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cd-text-dim);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.img-placeholder::before {
  content: 'IMAGE COMING SOON';
}

/* Overlay also appears on placeholder */
.hero-image-wrap:has(.img-placeholder)::after {
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--sp-7) 0;
  max-width: 640px;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cd-red);
  margin-bottom: var(--sp-2);
}

.hero h1 {
  color: var(--cd-white);
  margin-bottom: var(--sp-2);
}

.hero-sub {
  font-size: 18px;
  color: var(--cd-text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.55;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.hero-phone-line {
  font-size: 15px;
  color: var(--cd-text-muted);
}

.hero-phone-line a {
  color: var(--cd-white);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   STATS BAR
   -------------------------------------------------------------------------- */
.stats-bar {
  background: var(--cd-red);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: var(--sp-3) var(--sp-3);
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--cd-black);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.65);
}

/* --------------------------------------------------------------------------
   TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.trust-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cd-text-dim);
  white-space: nowrap;
}

.trust-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.trust-brand {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cd-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   SERVICES GRID (Homepage only)
   -------------------------------------------------------------------------- */
.services-section {
  background: var(--cd-warm-white);
}

.services-section .section-inner {
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cd-red);
  display: block;
  margin-bottom: var(--sp-1);
}

.services-section .section-label {
  color: var(--cd-red);
}

.services-section h2 {
  color: var(--cd-black);
  margin-bottom: var(--sp-2);
}

.services-intro {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: var(--sp-5);
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Service card */
.service-card {
  background: var(--cd-white);
  padding: var(--sp-4);
  text-decoration: none;
  display: block;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s;
}

.service-card:hover {
  border-bottom-color: var(--cd-red);
}

.service-card-number {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--cd-red);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: var(--sp-2);
}

.service-card h3 {
  font-size: 22px;
  color: var(--cd-black);
  margin-bottom: var(--sp-1);
  line-height: 1.1;
}

.service-card p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.55;
}

.service-card-arrow {
  display: block;
  margin-top: var(--sp-2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cd-red);
}

/* --------------------------------------------------------------------------
   WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-section {
  background: var(--cd-dark);
}

.why-section .section-label {
  color: var(--cd-red);
}

.why-section h2 {
  color: var(--cd-white);
  margin-bottom: var(--sp-5);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.why-card {
  background: var(--cd-dark-3);
  padding: var(--sp-3);
}

.why-bullet {
  width: 6px;
  height: 6px;
  background: var(--cd-red);
  display: block;
  margin-bottom: var(--sp-2);
  flex-shrink: 0;
}

.why-card h4 {
  color: var(--cd-white);
  text-transform: uppercase;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--sp-1);
  letter-spacing: 0.01em;
}

.why-card p {
  font-size: 15px;
  color: var(--cd-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   PHOTO + TEXT SPLIT (About section)
   -------------------------------------------------------------------------- */
.about-section {
  background: var(--cd-dark-2);
}

.about-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 460px;
  align-items: center;
}

.about-text {
  padding: var(--sp-7) var(--sp-6) var(--sp-7) 0;
}

.about-text .section-label {
  color: var(--cd-red);
}

.about-text h2 {
  color: var(--cd-white);
  margin-bottom: var(--sp-3);
}

.about-text p {
  font-size: 17px;
  color: var(--cd-text-muted);
  line-height: 1.65;
}

.about-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   REVIEW STRIP
   -------------------------------------------------------------------------- */
.reviews-section {
  background: var(--cd-black);
}

.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.reviews-header-left .section-label {
  color: var(--cd-red);
}

.reviews-header-left h2 {
  color: var(--cd-white);
}

.reviews-rating-block {
  text-align: right;
}

.rating-number {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--cd-red);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}

.rating-stars {
  font-size: 20px;
  color: var(--cd-red);
  letter-spacing: 2px;
  display: block;
  margin-top: 4px;
}

.rating-count {
  font-size: 13px;
  color: var(--cd-text-muted);
  display: block;
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.review-card {
  background: var(--cd-dark-3);
  padding: var(--sp-3);
}

.review-stars {
  font-size: 14px;
  color: var(--cd-red);
  letter-spacing: 2px;
  display: block;
  margin-bottom: var(--sp-2);
}

.review-quote {
  font-size: 15px;
  color: var(--cd-text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--cd-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   CTA STRIP
   -------------------------------------------------------------------------- */
.cta-strip {
  background: var(--cd-red);
}

.cta-strip-inner {
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.cta-strip-text h2 {
  color: var(--cd-black);
  font-size: 42px;
  margin-bottom: var(--sp-1);
}

.cta-strip-text p {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.7);
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
}

.cta-strip-phone {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--cd-black);
  letter-spacing: -0.02em;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   QUOTE FORM
   -------------------------------------------------------------------------- */
.quote-section {
  background: var(--cd-dark-2);
}

.quote-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.quote-form-wrap h3 {
  color: var(--cd-white);
  font-size: 36px;
  margin-bottom: var(--sp-1);
}

.quote-intro {
  font-size: 16px;
  color: var(--cd-text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.55;
}

.form-group {
  margin-bottom: var(--sp-3);
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cd-text-muted);
  margin-bottom: var(--sp-1);
}

.form-control {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 16px;
  color: var(--cd-white);
  background: var(--cd-dark-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--cd-red);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

select.form-control option {
  background: var(--cd-dark-3);
  color: var(--cd-white);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Form validation error */
.field-error {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--cd-red);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control.is-invalid {
  border-color: var(--cd-red);
}

/* --------------------------------------------------------------------------
   SERVICE DETAIL SECTION (service pages)
   -------------------------------------------------------------------------- */
.service-detail {
  background: var(--cd-dark);
}

.service-detail-inner {
  padding: var(--sp-7) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.service-detail-text {
  max-width: 760px;
}

.service-detail-text .section-label {
  color: var(--cd-red);
}

.service-detail-text h2 {
  color: var(--cd-white);
  margin-bottom: var(--sp-3);
  font-size: 42px;
}

.service-detail-text p {
  font-size: 17px;
  color: var(--cd-text-muted);
  line-height: 1.65;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.service-item {
  background: var(--cd-dark-3);
  padding: var(--sp-3);
  border-top: 3px solid var(--cd-red);
}

.service-item h4 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--cd-white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: var(--sp-1);
}

.service-item p {
  font-size: 15px;
  color: var(--cd-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--cd-black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer-logo {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.footer-address {
  font-size: 14px;
  color: var(--cd-text-muted);
  margin-top: 6px;
}

.footer-phone {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--cd-red);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 13px;
  color: var(--cd-text-dim);
}

.footer-links {
  display: flex;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: 13px;
  color: var(--cd-text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--cd-white);
}

/* --------------------------------------------------------------------------
   MOBILE CTA BAR (JS-controlled)
   -------------------------------------------------------------------------- */
#mobile-cta {
  display: none; /* shown by JS */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--cd-red);
  text-align: center;
}

#mobile-cta a {
  display: block;
  padding: 16px var(--sp-3);
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--cd-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   THANK YOU PAGE
   -------------------------------------------------------------------------- */
.thankyou-section {
  background: var(--cd-dark);
  min-height: calc(100vh - 128px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-inner {
  max-width: 560px;
  padding: var(--sp-7) var(--sp-3);
}

.thankyou-inner h2 {
  color: var(--cd-red);
  margin-bottom: var(--sp-3);
  font-size: 48px;
}

.thankyou-inner p {
  font-size: 18px;
  color: var(--cd-text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

/* --------------------------------------------------------------------------
   RESPONSIVE — Tablet (max 960px)
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-text {
    padding: var(--sp-5) 0 var(--sp-3);
    order: 2;
  }

  .about-image {
    order: 1;
    min-height: 320px;
  }

  .service-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — Mobile (max 640px)
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  h3 { font-size: 24px; }
  h4 { font-size: 18px; }

  .body-large,
  .hero-sub { font-size: 16px; }

  body { font-size: 15px; }

  /* Header */
  .header-help-label { display: none; }

  .header-cta {
    gap: var(--sp-1);
  }

  .header-phone {
    font-size: 18px;
  }

  /* Hero */
  .hero {
    min-height: 380px;
  }

  .hero-content {
    padding: var(--sp-5) 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Stats bar: 2x2 grid */
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(2) {
    border-right: none;
  }

  .stat-cell:nth-child(1),
  .stat-cell:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .stat-number { font-size: 36px; }

  /* Trust bar */
  .trust-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .reviews-header {
    flex-direction: column;
  }

  .reviews-rating-block {
    text-align: left;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* CTA strip */
  .cta-strip-text h2 { font-size: 32px; }
  .cta-strip-phone { font-size: 24px; }

  /* Service items */
  .service-items {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* About text */
  .about-text {
    padding-right: 0;
  }

  /* Section padding */
  .section-inner {
    padding: var(--sp-6) 0;
  }

  /* Mobile body padding so CTA bar doesn't cover content */
  body {
    padding-bottom: 60px;
  }
}
