:root {
  --primary: #2e7d32;
  --primary-dark: #1f5f25;
  --slate-900: #f5f7fa;
  --slate-700: #d1d5db;
  --slate-500: #9ca3af;
  --surface: #1a1a1a;
  --white: #2d2d2d;
  --line: #3f3f46;
  --radius: 14px;
  --shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--slate-700);
  background: var(--surface);
  line-height: 1.6;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.emergency-banner {
  background: linear-gradient(90deg, #151515, #232323);
  color: #f8fafc;
  padding: 0.6rem 0;
}

.emergency-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.emergency-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.site-header {
  background: rgba(26, 26, 26, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.header-nav {
  display: none;
  gap: 1rem;
}

.header-nav a {
  color: #e5e7eb;
  font-weight: 600;
}

.header-nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.logo {
  width: 220px;
  height: auto;
}

.hero {
  padding: 2.1rem 0 1.35rem;
  background: linear-gradient(180deg, #202020 0%, #1a1a1a 72%);
}

.hero-grid {
  display: grid;
  gap: 1.2rem;
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.55rem;
}

h1,
h2,
h3 {
  color: var(--slate-900);
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.95rem, 4vw, 3.2rem);
  margin: 0.2rem 0 0.9rem;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.hero-copy,
.section-intro {
  max-width: 67ch;
  color: #cbd5e1;
}

.hero-copy {
  margin: 0 0 0.7rem;
}

.service-area {
  margin: 0.25rem 0 0;
  font-weight: 600;
}

.rating-row {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #f3f4f6;
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0.72rem 1.18rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ea952;
}

.btn-secondary {
  border-color: #a3a3a3;
  color: #f5f5f5;
  background: transparent;
}

.btn-secondary:hover {
  background: #3a3a3a;
}

.btn-light {
  background: #f3f4f6;
  color: #111827;
}

.btn-small {
  padding: 0.52rem 0.9rem;
  font-size: 0.9rem;
}

.trust-panel {
  background: #2d2d2d;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.trust-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0 0 0.9rem;
}

.trust-list li {
  border: 1px solid #3f5d42;
  border-left: 4px solid var(--primary);
  background: #1f2a1f;
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  font-size: 0.93rem;
  color: #f1f5f9;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cert-badge {
  background: #1f3d22;
  color: #d3f6d7;
  border: 1px solid #3f6c43;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: #222;
}

.section-process {
  background: #242424;
}

.process-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #2d2d2d;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

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

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.services-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr;
  margin-top: 1.2rem;
}

.card {
  border: 1px solid var(--line);
  background: #2d2d2d;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f3d22;
  color: #b8f0be;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.55rem;
}

.learn-link {
  display: inline-block;
  margin-top: 0.55rem;
  font-weight: 700;
}

.about-grid {
  display: grid;
  gap: 1rem;
}

.why-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #2d2d2d;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}

.qualifications {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.qualifications li {
  padding: 0.45rem 0.62rem;
  border: 1px solid #40454d;
  border-radius: 9px;
  background: #242424;
}

.testimonials-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.9rem;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #2d2d2d;
  padding: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.testimonial-card p {
  margin: 0.35rem 0;
}

.muted {
  color: var(--slate-500);
  font-weight: 600;
}

.section-callback {
  background: linear-gradient(180deg, #232323 0%, #1a1a1a 100%);
}

.contact-grid {
  display: grid;
  gap: 1.3rem;
}

.contact-form {
  background: #2d2d2d;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-form input {
  width: 100%;
  border: 1px solid #4b5563;
  background: #1f1f1f;
  color: #f5f7fa;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  margin-bottom: 0.8rem;
}

.contact-form input:focus {
  outline: 2px solid rgba(46, 125, 50, 0.28);
  border-color: var(--primary);
}

.site-footer {
  background: #141414;
  color: #e5e7eb;
  padding: 1.35rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer a {
  color: #c2f0c8;
}

.section p,
.card p,
.process-card p,
.why-card p,
.testimonial-card p,
.contact-form p {
  color: #d1d5db;
}

.contact-form a,
.learn-link {
  color: #86efac;
}

@media (min-width: 980px) {
  .hero {
    padding: 1.45rem 0 0.95rem;
  }

  h1 {
    margin-bottom: 0.65rem;
  }

  .hero-actions {
    margin: 0.72rem 0 0.45rem;
  }
}

@media (max-width: 760px) {
  .emergency-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    width: 178px;
  }
}

@media (min-width: 700px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 980px) {
  .header-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 1.6rem;
  }

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

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

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

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
