:root {
  --green: #009a44;
  --green-dark: #006b32;
  --green-soft: #e9f8ef;
  --text: #111111;
  --muted: #5e6661;
  --line: #dbe5df;
  --light: #f5f7f6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 40, 18, 0.12);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 72px 0; }
.section-light { background: var(--light); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(0, 154, 68, 0.28);
}

.brand-text {
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 750;
  font-size: 0.95rem;
}
.main-nav a:not(.btn):hover { color: var(--green-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(0, 154, 68, 0.22);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-outline { background: var(--white); color: var(--green-dark); box-shadow: none; }
.btn-small { min-height: 40px; padding: 0 16px; font-size: 0.9rem; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--green-soft);
  border-radius: 12px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green-dark);
  margin: 5px 0;
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, rgba(0,154,68,0.16), transparent 38%), linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
h3 { font-size: 1.15rem; line-height: 1.2; margin-bottom: 10px; }

.hero-subtitle {
  max-width: 680px;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: #34423a;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.service-note { color: var(--muted); font-weight: 700; margin: 0; }

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 10px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}
.card-title {
  margin: 6px 0 18px;
  color: var(--green-dark);
  font-size: 1.28rem;
  font-weight: 900;
}
.compact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.compact-list li {
  padding-left: 22px;
  position: relative;
  font-weight: 750;
}
.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p { color: var(--muted); font-size: 1.06rem; }

.service-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
}
.service-card.main-service {
  border-color: rgba(0,154,68,0.3);
  box-shadow: var(--shadow);
}
.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 15px;
}
.service-card ul {
  padding-left: 18px;
  margin: 0;
  color: #2f3b35;
}
.service-card li { margin-bottom: 7px; }

.process-box {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
  align-items: start;
}
.compact-heading { margin-bottom: 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 14px;
}
.steps p { color: var(--muted); margin: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}
.contact-grid p { color: var(--muted); }
.direct-contact {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.direct-contact a {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.direct-contact span { color: var(--muted); font-size: 0.9rem; }
.direct-contact strong { color: var(--green-dark); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: #26342d;
}
.contact-form .full,
.form-btn,
.form-note { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfdcd4;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,154,68,0.12);
}
textarea { resize: vertical; }
.form-note { margin: -6px 0 0; color: var(--muted); font-size: 0.9rem; }

.final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: calc(var(--radius) + 8px);
  background: var(--green-soft);
  border: 1px solid #ccefdc;
}
.final-box p { margin-bottom: 0; color: var(--muted); }

.site-footer {
  padding: 50px 0 22px;
  background: #0b160f;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
}
.footer-brand { margin-bottom: 14px; }
.site-footer p { color: rgba(255,255,255,0.68); max-width: 450px; }
.site-footer h3 { font-size: 1rem; margin-bottom: 14px; }
.site-footer a,
.site-footer span {
  display: block;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
}
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.58);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(0, 154, 68, 0.35);
}

@media (max-width: 1050px) {
  .service-groups { grid-template-columns: repeat(2, 1fr); }
  .hero-grid,
  .process-box,
  .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}

@media (max-width: 760px) {
  .section-pad { padding: 58px 0; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; border-radius: 14px; }
  .main-nav .btn { margin-top: 6px; }
  .brand-text { font-size: 0.78rem; letter-spacing: 0.06em; }
  .brand-mark { width: 38px; height: 38px; }
  .service-groups,
  .steps,
  .contact-form { grid-template-columns: 1fr; }
  .final-box,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 24px, 1120px); }
  h1 { font-size: 3.05rem; }
  .hero-card,
  .contact-form,
  .final-box { padding: 22px; }
  .btn { width: 100%; }
  .whatsapp-float { left: 12px; right: 12px; bottom: 12px; }
}
