:root {
  --forest-950: #0b1f15;
  --forest-900: #113022;
  --forest-800: #17412f;
  --mint-600: #4e9a57;
  --mint-500: #6ab86c;
  --sand-100: #f4f4ef;
  --sand-200: #e8ebdf;
  --white: #ffffff;
  --ink: #132019;
  --muted: #506156;
  --line: #cdd7c9;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-soft: 0 20px 40px rgba(11, 31, 21, 0.12);
  --shadow-card: 0 10px 24px rgba(11, 31, 21, 0.1);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 100% 0%, rgba(106, 184, 108, 0.2), transparent 30%),
    radial-gradient(circle at 0% 20%, rgba(17, 48, 34, 0.08), transparent 24%),
    var(--sand-100);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 4.25rem);
  color: var(--forest-950);
}

h2 {
  font-size: clamp(1.7rem, 3.9vw, 3rem);
  color: var(--forest-950);
}

h3 {
  font-size: 1.1rem;
  color: var(--forest-900);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 1000;
  background: var(--white);
  color: var(--forest-950);
  border-radius: 10px;
  padding: 8px 12px;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 244, 239, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 48, 34, 0.12);
}

.top-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--forest-900);
  font-weight: 700;
}

.top-strip a {
  color: var(--forest-800);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
}

.brand img {
  display: block;
}

.header-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
}

.header-brand img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(17, 48, 34, 0.18);
  box-shadow: 0 6px 12px rgba(11, 31, 21, 0.16);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 2px;
  font-weight: 800;
  color: var(--forest-900);
}

.nav-menu a {
  position: relative;
  font-size: 0.95rem;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--mint-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: auto;
  background: linear-gradient(140deg, var(--forest-800), var(--forest-900));
  color: var(--white);
  font-weight: 800;
  border-radius: 999px;
  padding: 11px 16px;
  box-shadow: 0 10px 20px rgba(11, 31, 21, 0.22);
}

.nav-toggle {
  display: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 20px;
}

section[id] {
  scroll-margin-top: 96px;
}

.section-heading {
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--forest-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  display: block;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-soft);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(244, 244, 239, 0.76), rgba(244, 244, 239, 0.66));
}

.hero-content > :not(.hero-video) {
  position: relative;
  z-index: 2;
}

.hero-text,
.split p,
.service-area-map-card p,
.quote-copy p,
.faq-intro,
.price-card p {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.btn {
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(140deg, var(--mint-500), var(--mint-600));
  color: #102517;
  box-shadow: 0 14px 28px rgba(106, 184, 108, 0.28);
}

.btn-secondary {
  background: var(--forest-900);
  color: var(--white);
}

.cta-break {
  padding-top: 24px;
  padding-bottom: 24px;
}

.cta-break-card {
  background: linear-gradient(145deg, var(--forest-900), var(--forest-950));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-soft);
}

.cta-break-card .eyebrow,
.cta-break-card h2 {
  color: var(--white);
}

.cta-break-card h2 {
  margin-bottom: 18px;
}

.cta-break-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cta-break-actions .btn {
  min-height: 56px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-row span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest-900);
}

.why-choose-section {
  padding-top: 18px;
}

.why-choose-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.why-choose-card h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin-bottom: 12px;
}

.why-choose-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.why-choose-list li {
  color: var(--forest-900);
  font-weight: 700;
}

.stats {
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  background: linear-gradient(160deg, var(--forest-900), var(--forest-950));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.stat-card strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.stat-card span {
  color: #d2e5d8;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.service-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(140deg, var(--forest-800), var(--forest-900));
  font-weight: 800;
  margin-bottom: 14px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.services-slider {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.services-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.services-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.service-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: clamp(300px, 44vw, 390px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  background-position: center;
  background-size: cover;
}

.service-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(11, 31, 21, 0.2), rgba(11, 31, 21, 0.8));
}

.service-slide h3,
.service-slide p {
  position: relative;
  z-index: 1;
}

.service-slide h3 {
  color: #ffffff;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.service-slide p {
  margin-top: 10px;
  color: #e7efe8;
  max-width: 36ch;
}

.service-slide-home-cleanouts {
  background-image: url("assets/Home Cleanouts.jpeg");
}

.service-slide-construction-projects {
  background-image: url("assets/Construction Projects.jpeg");
}

.service-slide-remodeling-jobs {
  background-image: url("assets/Remodeling Jobs.jpeg");
}

.service-slide-junk-removal {
  background-image: url("assets/Junk Removal.jpeg");
}

.about-values-slider .service-slide-image {
  min-height: auto;
  padding: 0;
  background: #ffffff;
}

.about-values-slider .service-slide-image::before {
  display: none;
}

.about-values-slider .service-slide-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

#about .about-values-slider {
  align-self: center;
  justify-self: center;
  width: min(100%, 640px);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--forest-900);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.slider-btn:hover {
  transform: translateY(-1px);
  background: var(--forest-800);
}

.slider-btn:focus-visible,
.services-dot:focus-visible {
  outline: 3px solid rgba(106, 184, 108, 0.4);
  outline-offset: 2px;
}

.services-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.services-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 48, 34, 0.26);
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.services-dot.is-active {
  background: var(--forest-900);
  transform: scale(1.16);
}

.pricing-section {
  padding-top: 28px;
}

.pricing-section .section-heading {
  text-align: center;
}

.pricing-section .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.price-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.price-media {
  margin: 0 0 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.price-media img {
  width: 100%;
  height: auto;
  display: block;
}

.price-card.featured {
  border-color: rgba(78, 154, 87, 0.55);
  box-shadow: 0 14px 30px rgba(78, 154, 87, 0.2);
}

.price-card .plan {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-800);
  font-weight: 800;
}

.price-card h3 {
  font-size: 2rem;
  margin: 6px 0 10px;
}

.work-section {
  padding-top: 24px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.testimonials-section {
  padding-top: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: var(--forest-800);
}

.testimonial-stars {
  margin-top: 8px;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.testimonial-quote {
  margin-top: 10px;
  font-weight: 700;
}

.testimonial-author {
  margin-top: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--forest-900);
}

.process {
  max-width: none;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(11, 31, 21, 0.94), rgba(17, 48, 34, 0.96)),
    url("assets/Truck3.jpeg") center / cover;
  padding-left: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  padding-right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
}

.process .eyebrow,
.process h2 {
  color: var(--white);
}

.steps {
  max-width: var(--max);
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.steps article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 18px;
}

.steps span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #95d67c;
  color: #0b1f15;
  font-weight: 800;
  margin-bottom: 12px;
}

.steps h3 {
  color: var(--white);
}

.steps p {
  color: #d4e8d9;
  margin-bottom: 0;
}

.faq {
  padding-top: 26px;
}

.prohibited {
  padding-top: 42px;
}

.prohibited-intro {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 72ch;
}

.prohibited-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.prohibited-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.prohibited-card h3 {
  margin-bottom: 12px;
}

.prohibited-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.prohibited-card li strong {
  color: var(--forest-900);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  cursor: pointer;
  color: var(--forest-900);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--mint-600);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-area-map {
  padding-bottom: 30px;
}

.service-area-map-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 235, 223, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.service-area-map-card p {
  margin-left: auto;
  margin-right: auto;
  max-width: 72ch;
}

#coverageMap {
  width: 100%;
  min-height: 480px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(11, 31, 21, 0.14);
  margin-top: 26px;
}

#coverageMap.leaflet-container {
  font-family: "Manrope", "Segoe UI", sans-serif;
}

#coverageMap .leaflet-interactive {
  cursor: pointer;
}

.map-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.96rem;
}

.coverage-btn {
  margin-top: 8px;
}

.quote {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: start;
  background:
    radial-gradient(circle at 92% 12%, rgba(106, 184, 108, 0.24), transparent 34%),
    linear-gradient(145deg, #09150f, #0f281d 64%, #133524);
  border: 1px solid rgba(106, 184, 108, 0.26);
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 55px rgba(7, 18, 12, 0.44);
  color: var(--white);
}

.quote .eyebrow {
  color: #b8dc9f;
}

.quote-copy h2 {
  color: var(--white);
}

.quote-copy > p {
  color: rgba(255, 255, 255, 0.84);
}

.quote-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 14px;
}

.quote-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: rgba(168, 219, 144, 0.18);
  border: 1px solid rgba(168, 219, 144, 0.45);
  color: #dcf4c8;
}

.quote-features {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.quote-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.quote-feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(106, 184, 108, 0.2);
  border: 1px solid rgba(106, 184, 108, 0.35);
  flex: 0 0 30px;
}

.phone-block {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(24, 68, 48, 0.96), rgba(16, 40, 30, 0.96));
  color: var(--white);
  box-shadow: 0 15px 26px rgba(4, 10, 7, 0.34);
  border: 1px solid rgba(168, 219, 144, 0.2);
}

.phone-block span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8db90;
}

.phone-block a {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}

.quote-form {
  background: rgba(5, 14, 10, 0.62);
  border: 1px solid rgba(168, 219, 144, 0.24);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 20px 42px rgba(5, 14, 10, 0.38);
  backdrop-filter: blur(4px);
}

.quote-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(168, 219, 144, 0.24);
  border-radius: 11px;
  padding: 12px 13px;
  font: inherit;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(168, 219, 144, 0.28);
  border-color: var(--mint-600);
}

.quote-form select option {
  color: var(--ink);
}

.form-note {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.quote-lite {
  padding-top: 30px;
}

.quote-lite-form {
  max-width: 650px;
}

.llc-signoff {
  margin: 12px 0 0;
  color: var(--forest-900);
  font-weight: 800;
}

.footer {
  margin-top: 30px;
  background: #0b1f15;
  color: var(--white);
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.footer > div {
  max-width: var(--max);
}

.footer img {
  width: 112px;
  margin-bottom: 12px;
}

.footer p {
  margin: 0;
  color: #c8dbcd;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

.footer-links a {
  color: #9fda84;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section,
.footer {
  animation: rise 0.45s ease both;
}

@media (max-width: 1050px) {
  .service-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .top-strip {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    background: var(--forest-900);
    color: var(--white);
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 0 2px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .split,
  .quote {
    grid-template-columns: 1fr;
  }

  .trust-row,
  .why-choose-list,
  .stats,
  .cta-break-actions,
  .pricing-grid,
  .work-grid,
  .testimonials-grid,
  .prohibited-grid,
  .steps,
  .service-grid,
  .service-grid-three {
    grid-template-columns: 1fr;
  }

  .services-slider {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-viewport {
    order: 1;
  }

  .slider-btn {
    width: 100%;
    border-radius: 12px;
    min-height: 42px;
  }

  .slider-btn-prev {
    order: 2;
  }

  .slider-btn-next {
    order: 3;
  }

  .services-dots {
    order: 4;
    margin-top: 0;
  }

  .section {
    padding: 64px 18px;
  }

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

  #coverageMap {
    min-height: 380px;
  }
}

@media (max-width: 520px) {
  .header-brand img {
    width: 74px;
    height: 74px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-break-actions .btn {
    width: 100%;
  }

  .quote-form {
    padding: 20px;
  }

  #coverageMap {
    min-height: 320px;
  }
}
