/* ================================
   DESIGN TOKENS
================================ */
:root {
  --green-dark:    #182F18;
  --green-mid:     #2C5827;
  --green-light:   #4A8B3E;
  --green-accent:  #5EA34F;
  --orange:        #D45E08;
  --orange-hover:  #B84F06;
  --orange-glow:   rgba(212, 94, 8, 0.38);
  --orange-subtle: rgba(212, 94, 8, 0.10);
  --cream:         #F6F4EF;
  --cream-dark:    #EDE9E1;
  --white:         #FFFFFF;
  --text-dark:     #161616;
  --text-mid:      #464646;
  --text-light:    #737373;
  --border:        #E0DAD0;
  --border-dark:   #CEC7BB;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.07);
  --shadow-btn:    0 4px 14px rgba(212, 94, 8, 0.38);
  --shadow-btn-hover: 0 6px 22px rgba(212, 94, 8, 0.52);
  --radius:        6px;
  --radius-lg:     14px;
  --radius-xl:     20px;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --max-width:     1120px;
  --nav-height:    76px;
}

/* ================================
   RESET
================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ================================
   TYPOGRAPHY
================================ */
h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--text-mid); }

/* ================================
   LAYOUT UTILITIES
================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section         { padding: 88px 0; }
.section--sm     { padding: 52px 0; }
.section--dark   { background: var(--green-dark); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.78); }
.section--cream  { background: var(--cream); }
.text-center     { text-align: center; }
.text-white      { color: var(--white) !important; }

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

/* ================================
   ANIMATIONS
================================ */
@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--shadow-btn); }
  50%       { box-shadow: var(--shadow-btn-hover); }
}
@keyframes ring {
  0%   { transform: rotate(-8deg); }
  15%  { transform: rotate(8deg); }
  30%  { transform: rotate(-8deg); }
  45%  { transform: rotate(8deg); }
  60%  { transform: rotate(0); }
  100% { transform: rotate(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-btn);
}
.btn--orange:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}
.btn--orange:active { transform: translateY(0); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-green {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn--outline-green:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 38px;
  font-size: 1.1rem;
  border-radius: 8px;
}
.btn--phone {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.btn--phone:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn--pulse {
  animation: pulse-glow 2.2s ease-in-out infinite;
}

/* ================================
   NAVIGATION
================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--green-dark);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.30);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.18));
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
}
.nav__logo-tag {
  font-size: 0.63rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.15s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav__links a:hover       { color: var(--white); }
.nav__links a.active      { color: var(--white); border-bottom-color: var(--orange); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__phone {
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  opacity: 0.95;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.nav__phone:hover { opacity: 1; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ================================
   HERO
================================ */
.hero {
  padding: 108px 0 96px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(24,47,24,0.22));
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  animation: fadeInUp 0.55s ease both;
}
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.hero__proof-stars {
  color: #FBBF24;
  font-size: 0.88rem;
  letter-spacing: 1px;
}
.hero__proof-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  line-height: 1.12;
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: rgba(255,255,255,0.88) !important;
  margin-bottom: 38px;
  max-width: 600px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.hero__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.52);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__note span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero__note span::before {
  content: '✓';
  color: var(--green-accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ================================
   TRUST BAR
================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.trust-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  border-right: 1px solid var(--border);
  flex: 1;
  transition: background 0.15s;
}
.trust-bar__item:hover { background: var(--cream); }
.trust-bar__item:last-child { border-right: none; }
.trust-bar__icon {
  width: 42px;
  height: 42px;
  background: var(--orange-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.trust-bar__item:not(:first-child) .trust-bar__icon {
  background: rgba(44, 88, 39, 0.1);
  color: var(--green-mid);
}
.trust-bar__icon--emoji {
  font-size: 1.45rem;
  line-height: 1;
  background: transparent;
  color: inherit;
}
.trust-bar__text strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}
.trust-bar__text span {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.3;
}

/* ================================
   SECTION HEADER
================================ */
.section-header { margin-bottom: 52px; }
.section-header__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-header__label--white { color: rgba(255,255,255,0.55); }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.06rem;
  max-width: 580px;
  line-height: 1.7;
}
.section-header.text-center p { margin: 0 auto; }

/* ================================
   SERVICE CARDS
================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  width: 54px;
  height: 54px;
  background: rgba(44, 88, 39, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-mid);
  transition: background 0.2s;
}
.service-card:hover .service-card__icon {
  background: rgba(44, 88, 39, 0.18);
}
.service-card__icon--emoji {
  font-size: 2rem;
  line-height: 1;
  background: transparent;
  color: inherit;
}
.service-card h3 { color: var(--green-dark); margin-bottom: 10px; }
.service-card p  { font-size: 0.93rem; flex: 1; line-height: 1.65; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 18px;
  transition: gap 0.15s;
}
.service-card__link:hover { gap: 10px; }

/* ================================
   EMERGENCY BAND
================================ */
.emergency-band {
  background: linear-gradient(135deg, #B84F06 0%, var(--orange) 60%, #E07010 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.emergency-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.emergency-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.emergency-band h2 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.emergency-band p  { color: rgba(255,255,255,0.9) !important; font-size: 1.05rem; }
.emergency-band__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.emergency-band__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.15s;
}
.emergency-band__number:hover {
  transform: scale(1.03);
}
.emergency-band__number .phone-icon {
  display: inline-block;
  animation: ring 4s ease-in-out infinite;
  transform-origin: top center;
}

/* ================================
   WHY-US LIST
================================ */
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-item__icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
}
.why-item__icon--emoji {
  font-size: 1.75rem;
  line-height: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}
.why-item h3 { color: var(--white); margin-bottom: 6px; }
.why-item p  { font-size: 0.93rem; line-height: 1.65; }

/* ================================
   TESTIMONIALS
================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -16px;
  left: 20px;
  font-size: 8rem;
  line-height: 1;
  color: var(--green-light);
  opacity: 0.10;
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
}
.testimonial-card__stars {
  color: #F5A623;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 700;
}
.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ================================
   STATS ROW
================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  background: var(--white);
  transition: background 0.18s;
}
.stat-item:hover { background: var(--cream); }
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-accent));
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.stat-item__label {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.4;
}

/* ================================
   SERVICE AREA BAND
================================ */
.area-band {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.area-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.area-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  transition: all 0.15s;
}
.area-tag:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

/* ================================
   CONTACT FORM
================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group--full { grid-column: 1 / -1; }
label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}
input, select, textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 15px;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(44, 88, 39, 0.12);
}
textarea { resize: vertical; min-height: 120px; }

/* ================================
   PAGE HERO (inner pages)
================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #243F24 50%, var(--green-mid) 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,0.78) !important;
  font-size: 1.12rem;
  max-width: 600px;
  position: relative;
}

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.72);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 28px;
}
.footer__brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.58);
}
.footer__phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.footer__phone:hover { color: #FBBF24; }
.footer__phone-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer__contact-line span:first-child { margin-top: 1px; flex-shrink: 0; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ================================
   DIVIDER
================================ */
.divider { height: 1px; background: var(--border); }

/* ================================
   MOBILE STICKY CTA BAR
================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green-dark);
  border-top: 3px solid var(--orange);
  padding: 12px 16px 16px;
  z-index: 300;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.32);
}
.mobile-cta-bar__call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-btn);
  transition: background 0.15s;
}
.mobile-cta-bar__call:hover { background: var(--orange-hover); }
.mobile-cta-bar__estimate {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.35);
  transition: background 0.15s, border-color 0.15s;
}
.mobile-cta-bar__estimate:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 960px) {
  .grid-4         { grid-template-columns: repeat(2, 1fr); }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .trust-bar__inner { flex-wrap: wrap; }
  .trust-bar__item  { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .trust-bar__item:nth-child(odd) { border-right: 1px solid var(--border); }
}

@media (max-width: 720px) {
  .section          { padding: 60px 0; }
  .grid-2, .grid-3  { grid-template-columns: 1fr; }
  .grid-4           { grid-template-columns: 1fr; }
  .form-grid        { grid-template-columns: 1fr; }
  body              { padding-bottom: 78px; }

  /* Nav */
  .nav__links       { display: none; }
  .nav__phone       { display: none; }
  .nav__cta .btn    { display: none; }
  .nav__toggle      { display: flex; }
  .nav__logo-img    { height: 38px; }
  .nav__logo-name   { font-size: 1.2rem; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--green-dark);
    padding: 20px 24px 28px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 199;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav__links.open a { font-size: 1rem; }

  /* Hero */
  .hero             { padding: 70px 0 60px; }
  .hero__actions    { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  /* Mobile CTA bar */
  .mobile-cta-bar   { display: flex; }

  /* Other sections */
  .emergency-band__inner { flex-direction: column; }
  .emergency-band__actions { align-items: flex-start; }
  .area-band__inner { flex-direction: column; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .trust-bar__item  { min-width: 100%; border-right: none; }
  .footer__grid     { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom   { flex-direction: column; gap: 8px; text-align: center; }
}
