/* ============================================
   SHREDDERS — Demolition & Junk Removal
   Logo palette: Black · Deep Navy · Construction Yellow
============================================ */

:root {
  --yellow:       #f7c400;   /* logo yellow — primary accent */
  --yellow-dark:  #d4a800;   /* hover state */
  --yellow-light: #fef3c7;   /* light tint */
  --yellow-dim:   rgba(247,196,0,0.12); /* subtle bg tint */

  --navy:         #0c1929;   /* deep navy from the wave */
  --navy-mid:     #152238;   /* mid navy */
  --navy-light:   #1e3a5f;   /* lighter navy / steel blue */
  --navy-glow:    rgba(30,58,95,0.6);

  --black:        #09090b;   /* logo background black */
  --dark:         #0f0f12;   /* near-black sections */

  --gray:         #f4f5f7;
  --text:         #1f2937;
  --text-muted:   #6b7280;
  --white:        #ffffff;

  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.28);
  --shadow-yellow: 0 6px 28px rgba(247,196,0,0.35);

  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--dark  { background: var(--navy); }
.section--black { background: var(--black); }
.section--gray  { background: var(--gray); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.btn--large { padding: 18px 36px; font-size: 1.1rem; }
.btn--full { width: 100%; justify-content: center; padding: 18px; font-size: 1.05rem; }

.pulse {
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247,196,0,0.55); }
  50%       { box-shadow: 0 0 0 16px rgba(247,196,0,0); }
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
  display: inline-block;
  background: var(--yellow-dim);
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(247,196,0,0.2);
}
.section-tag--light {
  background: rgba(247,196,0,0.15);
  color: var(--yellow);
  border-color: rgba(247,196,0,0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400; /* Bebas Neue is bold by nature */
  letter-spacing: 1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--black);
}
.section-title--light { color: var(--white); }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}
.header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.6); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 6px;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__shred {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--yellow);
  letter-spacing: 2px;
}
.logo__sub {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
}
.nav a:hover { color: var(--yellow); }
.nav__cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 9px 20px;
  border-radius: 5px;
  font-weight: 700 !important;
}
.nav__cta:hover { background: var(--yellow-dark) !important; color: var(--black) !important; }

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 1px;
  background: var(--yellow);
  padding: 11px 20px;
  border-radius: 6px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.header__phone:hover { background: var(--yellow-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(247,196,0,0.12);
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  color: rgba(255,255,255,0.8);
  padding: 13px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--yellow); }
.mobile-nav__phone {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  padding: 16px 0 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--black) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Large logo as atmospheric background element */
.hero__logo-bg {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  opacity: 0.18;
  pointer-events: none;
  filter: saturate(0.6) brightness(1.2);
  z-index: 1;
}
.hero__logo-bg img { width: 100%; }

/* Navy wave-like gradient overlays */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(30,58,95,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(9,9,11,0.7) 0%, transparent 60%);
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9,9,11,0.92) 45%, rgba(9,9,11,0.3) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,196,0,0.12);
  color: var(--yellow);
  border: 1px solid rgba(247,196,0,0.3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero__accent { color: var(--yellow); }
.hero__accent-blue { color: #7eb8e8; } /* navy-wave blue */

.hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__trust span {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll-down a {
  display: block;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(247,196,0,0.35);
  border-radius: 50%;
  position: relative;
}
.hero__scroll-down span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  animation: scrollBounce 1.6s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, -65%) rotate(45deg); }
  50%       { transform: translate(-50%, -30%) rotate(45deg); }
}

/* ===== PHONE BANNER ===== */
.phone-banner {
  background: var(--yellow);
  padding: 18px 0;
}
.phone-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.phone-banner__text {
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
}
.phone-banner .btn--white {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.phone-banner .btn--white:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--yellow);
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: rgba(247,196,0,0.4);
  box-shadow: 0 8px 40px rgba(247,196,0,0.12);
  transform: translateY(-5px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
  letter-spacing: 0.3px;
}
.service-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how-it-works.section--dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
/* Subtle wave texture behind */
.how-it-works.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 120%, rgba(30,58,95,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% -10%, rgba(247,196,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.step {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  max-width: 300px;
}
.step__number {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 4px rgba(247,196,0,0.2);
}
.step h3 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.step p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.65; }

.step__arrow {
  font-size: 2rem;
  color: rgba(247,196,0,0.45);
  align-self: center;
  padding: 0 4px;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}
.how-it-works__cta { text-align: center; position: relative; z-index: 1; }

/* ===== WHY US ===== */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  transition: all var(--transition);
}
.why-card:hover {
  box-shadow: 0 8px 40px rgba(247,196,0,0.12);
  border-color: rgba(247,196,0,0.4);
  transform: translateY(-4px);
}
.why-card__icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}
.why-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ===== AREAS ===== */
.areas { background: var(--black); }
.areas .section-tag { color: var(--yellow); background: rgba(247,196,0,0.1); border-color: rgba(247,196,0,0.2); }
.areas .section-title { color: var(--white); }
.areas .section-sub { color: rgba(255,255,255,0.55); }

.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.area-chip {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
  cursor: default;
}
.area-chip:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  font-weight: 700;
  transform: translateY(-2px);
}
.areas__note { text-align: center; color: rgba(255,255,255,0.45); font-size: 0.9rem; }
.areas__note a { color: var(--yellow); font-weight: 600; }
.areas__note a:hover { text-decoration: underline; }

/* ===== REVIEWS ===== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1.5px solid #e5e7eb;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover {
  box-shadow: 0 8px 40px rgba(247,196,0,0.12);
  transform: translateY(-4px);
  border-color: rgba(247,196,0,0.35);
}
.review-card__stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; }
.review-card__text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 2px solid var(--yellow);
}
.review-card__author strong { display: block; font-size: 0.92rem; color: var(--black); }
.review-card__author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--navy-light) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(247,196,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.cta-strip__text p { color: rgba(255,255,255,0.65); font-size: 1rem; }
.cta-strip .btn--white {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.cta-strip .btn--white:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--black);
}

/* ===== QUOTE FORM ===== */
.quote { background: var(--gray); }
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.quote__left .section-title { text-align: left; }
.quote__left p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.75; }
.quote__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.quote__phone:hover { color: var(--yellow-dark); }
.quote__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid #e5e7eb;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(247,196,0,0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 10px;
}
.form-success {
  display: none;
  margin-top: 16px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-success a { color: #065f46; text-decoration: underline; }
.form-success.show { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding-top: 64px;
  border-top: 3px solid var(--yellow);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.05);
}
.footer__tagline { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links h4,
.footer__contact h4 {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.footer__links a { font-size: 0.86rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--yellow); }
.footer__contact a,
.footer__contact span { font-size: 0.86rem; display: flex; align-items: center; gap: 8px; }
.footer__contact a { transition: color var(--transition); }
.footer__contact a:hover { color: var(--yellow); }
.footer__btn { margin-top: 10px; }

.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== FLOATING CALL BUTTON (mobile) ===== */
.float-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(247,196,0,0.5);
  animation: pulse 2.4s infinite;
  transition: background var(--transition), transform var(--transition);
}
.float-call:hover { background: var(--yellow-dark); transform: scale(1.08); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1020px) {
  .hero__logo-bg { width: 480px; opacity: 0.14; }
}

@media (max-width: 960px) {
  .services__grid,
  .why-us__grid,
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }

  .steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); padding: 0; }

  .quote__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .section { padding: 64px 0; }

  .nav { display: none; }
  .header__phone { display: none; }
  .hamburger { display: flex; }

  .hero__logo-bg { width: 340px; right: -60px; opacity: 0.10; }

  .services__grid,
  .why-us__grid,
  .reviews__grid { grid-template-columns: 1fr; }

  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; justify-content: center; }

  .phone-banner__inner { justify-content: center; text-align: center; }

  .cta-strip__inner { flex-direction: column; text-align: center; }

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

  .float-call { display: flex; }

  .quote-form { padding: 28px 20px; }

  .footer__bottom .container { justify-content: center; text-align: center; }
}
