:root {
  --brand: #3f6b52;
  --brand-dark: #2c4d3a;
  --ink: #2c2a26;
  --cream: #f7f3ea;
  --sage: #e8f0e4;
  --blush: #f4e6e8;
  --gold: #e3a05a;
  --header-h: 72px;
  --page-max: 70rem;
  --page-gutter: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  padding-bottom: 5.5rem;
}

.max-w-7xl {
  max-width: var(--page-max) !important;
  padding-left: var(--page-gutter) !important;
  padding-right: var(--page-gutter) !important;
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 80;
  border-radius: 999px;
  background: #fff;
  padding: 0.6rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  isolation: isolate;
  background: rgba(247, 243, 234, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(63, 107, 82, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  padding: 0.55rem var(--page-gutter);
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1 1 auto;
  white-space: nowrap;
}

.logo-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  background: #3f6b52;
  box-shadow: 0 0 0 2px #f4efe4, 0 6px 16px -8px rgba(63, 107, 82, 0.55);
}

.header-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-mobile {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  pointer-events: auto;
}

.header-cta .btn-primary {
  padding: 0.58rem 1.05rem;
  font-size: 0.78rem;
}

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

  .header-brand {
    flex: 0 0 auto;
  }

  .header-mobile,
  .mobile-menu {
    display: none !important;
  }
}

.site-header .nav-link,
.site-header .brand-name,
.site-header .header-phone {
  color: var(--ink);
}

.site-header .brand-place {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px -22px rgba(26, 23, 20, 0.45);
}

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(63, 107, 82, 0.2);
}

.header-call,
.sticky-call,
.header-call-menu {
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(63, 107, 82, 0.25);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--brand);
  color: #f7f3ea;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-call i,
.icon-btn i,
.header-phone i,
.header-call-menu i {
  pointer-events: none;
}

.header-call-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #f7f3ea;
}

.nav-link {
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  transition: transform 0.2s ease;
}

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

.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-outline,
.btn-accent,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.62rem 1.05rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

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

.site-header.is-scrolled .btn-primary,
.btn-whatsapp {
  background: var(--brand);
  color: #f7f3ea;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  transform: translateY(-1px);
  background: #2c4d3a;
  color: #f7f3ea;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-accent {
  background: var(--gold);
  color: #1a1714;
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: #d48d45;
  transform: translateY(-1px);
}

.btn-ghost {
  background: #efe8dc;
  color: var(--ink);
  border: 1px solid transparent;
}

.lead-card .btn-ghost {
  color: var(--ink);
  border-color: transparent;
  background: #efe8dc;
}

.btn-outline {
  width: 100%;
  border: 1px solid #d7cfc2;
  color: var(--brand-dark);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #efe8dc;
  border-color: var(--brand);
}

.icon-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: #efe8dc;
  color: var(--brand);
  border: 1px solid transparent;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(63, 107, 82, 0.2);
}

.mobile-menu {
  border-top: 1px solid #e4ddd2;
  background: #f7f4ee;
}

.mobile-link {
  display: block;
  padding: 0.7rem 0.4rem;
  border-radius: 0.6rem;
  color: var(--ink);
}

.hero {
  background: linear-gradient(180deg, var(--cream) 0%, #f4f0e6 72%, #eef3ea 100%);
  padding: 0.65rem 0 0.85rem;
}

.hero-layout {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
  align-items: stretch;
  padding: 0 var(--page-gutter);
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-copy,
.lead-card {
  background: #fff;
  border-radius: 1.15rem;
  box-shadow: 0 18px 40px -28px rgba(26, 23, 20, 0.28);
}

.hero-copy {
  color: var(--ink);
  padding: 0.95rem 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.hero-badge {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  max-width: 100%;
  border-radius: 999px;
  background: #e4f0e6;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
}

.hero-copy h1 {
  margin-top: 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin-top: 0.5rem;
  max-width: 36rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #5c564e;
}

.hero-lead--sub {
  margin-top: 0.35rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.hero-chips li {
  border-radius: 999px;
  background: #f3eee4;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3f3a33;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.7rem;
}

.hero-note {
  margin-top: 0.45rem;
  font-size: 0.72rem;
  color: #8a8378;
}

.lead-card {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.9rem 1rem 0.85rem;
  color: var(--ink);
  align-self: stretch;
}

.lead-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.55rem;
}

.lead-fields .schedule-row {
  grid-column: 1 / -1;
}

.lead-card .consent {
  margin-top: auto;
  padding-top: 0.2rem;
}

.lead-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.15;
}

.lead-card > p {
  font-size: 0.78rem;
  color: #5c564e;
  line-height: 1.35;
}

.consent {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b645b;
}

.consent input {
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--brand);
}

.consent a {
  color: var(--brand);
  text-decoration: underline;
}

.legal-note {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.45;
  font-weight: 500;
  color: #8a8378;
}

.schedule-row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 420px) {
  .schedule-row {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.benefits-section {
  background: linear-gradient(180deg, #eef3ea 0%, var(--sage) 55%, #eaf3e7 100%);
  padding: 0.55rem 0 1.35rem;
}

.benefits-grid {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 0 var(--page-gutter);
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.map-section {
  background: linear-gradient(180deg, #f3e9ea 0%, #f6f0e8 48%, #efe8dc 100%);
  padding: 2.05rem 0;
}

.section-reasons {
  background: linear-gradient(180deg, #f5ebe6 0%, var(--blush) 42%, #f6eee8 100%);
}

.section-how {
  background: linear-gradient(180deg, #f5ece8 0%, #f7f3ea 45%, #eef3ea 100%);
}

.section-services {
  background: linear-gradient(180deg, #eef3ea 0%, #f4ece8 52%, var(--blush) 100%);
}

.section-pad {
  padding: 1.85rem 0;
}

@media (min-width: 1024px) {
  .section-pad {
    padding: 2.1rem 0;
  }
}

.faq-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.faq-sub {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: #6b6560;
}

.faq-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

@media (min-width: 800px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.section-faq {
  background: linear-gradient(180deg, #efe8dc 0%, #f3e9ea 38%, #eaf0e6 100%);
}

.seo-guide {
  background: linear-gradient(180deg, #eaf0e6 0%, #f4ece8 48%, #efe8dc 100%);
}

.seo-articles {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.seo-article {
  background: #fff;
  border-radius: 1rem;
  padding: 1.05rem 1.15rem 1.1rem;
}

.seo-article h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
}

.seo-article p {
  margin: 0.55rem 0 0;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.65;
}

.seo-acc-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  overflow: hidden;
}

.seo-acc-item h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.seo-acc-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
}

.seo-acc-trigger i {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eef6ef;
  color: var(--brand);
  font-size: 0.72rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

.seo-acc-item.is-open .seo-acc-trigger i {
  transform: rotate(180deg);
  background: #dcefe0;
}

.seo-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-acc-item.is-open .seo-acc-panel {
  grid-template-rows: 1fr;
}

.seo-acc-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.seo-acc-panel-inner p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .seo-acc-trigger {
    font-size: 0.9rem;
    padding: 0.95rem 1rem;
  }
}

.block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}

.block-title {
  max-width: 40rem;
  font-family: Manrope, system-ui, sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: #111827;
}

.block-lead {
  margin-top: 0.55rem;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748b;
}

.reason-grid,
.offer-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .reason-grid,
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-card,
.offer-card,
.process-card,
.process-wide {
  background: #fff;
  border-radius: 1.15rem;
  box-shadow: 0 10px 28px -22px rgba(26, 23, 20, 0.55);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.reason-card,
.offer-card {
  padding: 1.35rem 1.3rem 1.25rem;
}

.reason-card h3,
.offer-card h3,
.process-card h3,
.process-wide h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: #111827;
}

.reason-card p,
.offer-card p,
.process-card p,
.process-wide p {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #64748b;
}

.offer-ico {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  margin-bottom: 0.7rem;
  background: none;
  color: inherit;
}

.offer-ico svg {
  width: 2.45rem;
  height: 2.45rem;
  display: block;
}

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

@media (min-width: 800px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1.25rem 1.3rem;
}

.process-card span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 999px;
  background: #3f9a55;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 6px 14px -8px rgba(63, 154, 85, 0.85);
}

.process-wide {
  padding: 1.2rem 1.4rem;
}

@media (min-width: 800px) {
  .process-wide {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.85rem;
  }

  .process-wide p {
    margin-top: 0;
  }
}

.map-shell {
  margin-top: 1.75rem;
  overflow: hidden;
  border-radius: 1.5rem;
  min-height: 420px;
  background: #d7cfc2;
}

.map-shell iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.district-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 900px) {
  .district-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.district-card {
  background: #fff;
  border-radius: 1.35rem;
  padding: 1.25rem 1.2rem;
}

.district-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.district-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.district-card a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.district-card li a {
  text-decoration: none;
}

.geo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.geo-links a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d5e4d4;
  background: #fff;
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.geo-links a:hover {
  border-color: var(--brand);
  background: #f0fdf4;
}

.geo-copy {
  margin-top: 2rem;
}

.geo-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
}

.geo-copy p {
  margin-top: 0.75rem;
  max-width: 46rem;
  color: #57534e;
  line-height: 1.65;
}

.geo-crumbs {
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #78716c;
}

.geo-crumbs a {
  color: var(--brand-dark);
}

.geo-settlements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.geo-settlements span {
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7e0d4;
  padding: 0.32rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.map-hint {
  margin-top: 1.1rem;
  text-align: center;
  font-size: 0.88rem;
  color: #6b645b;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.45);
}

.service-block {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .service-block {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .service-block--flip {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .service-block--flip .service-copy {
    order: 2;
  }
}

.service-media {
  border-radius: 1.5rem;
  min-height: 280px;
  padding: 1.75rem;
  color: #ecfdf5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.service-media--tractor {
  background:
    radial-gradient(circle at 80% 10%, rgba(134, 239, 172, 0.28), transparent 36%),
    linear-gradient(160deg, #14532d, #052e16);
}

.service-media--b2b {
  background:
    radial-gradient(circle at 12% 20%, rgba(253, 224, 71, 0.18), transparent 40%),
    linear-gradient(160deg, #1f2937, #111827);
}

.service-media i.service-media-icon {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-size: 3.2rem;
  opacity: 0.18;
}

.service-media p {
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-price {
  margin-top: 1rem;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 1.5rem;
  color: #475569;
  font-size: 0.95rem;
}

.service-list li {
  display: flex;
  gap: 0.6rem;
}

.service-list i {
  margin-top: 0.2rem;
  color: var(--brand);
}

.benefit-card {
  border: 1px solid #e4ddd2;
  border-radius: 1.25rem;
  padding: 1.25rem;
  background: #f7f3ea;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(36, 51, 38, 0.22);
}

.benefit-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 999px;
  background: #efe8dc;
  color: var(--brand);
  font-size: 1.1rem;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-title {
  margin-top: 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

.section-alt {
  background: linear-gradient(180deg, #f6eee8 0%, #f7f4ee 50%, #f4ece8 100%);
}

.services-section {
  padding: 4.5rem 0;
}

.calc-panel,
.pack-card,
.ba-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.4rem;
}

.faq-item {
  background: #fff;
  border-radius: 0.9rem;
  box-shadow: 0 10px 28px -18px rgba(26, 23, 20, 0.45);
}

.calc-panel {
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .calc-panel {
    padding: 1.15rem 1.25rem;
  }
}

.calc-section {
  background: linear-gradient(180deg, #eaf3e7 0%, #f0eee8 48%, #f5ebe6 100%);
  padding: 2.2rem 0 2.4rem;
}

.calc-layout {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 1024px) {
  .calc-layout {
    grid-template-columns: 1.45fr 0.85fr;
    align-items: stretch;
  }
}

.calc-step + .calc-step {
  margin-top: 0.85rem;
}

.calc-step h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.calc-step h3 span {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 999px;
  background: #dcfce7;
  color: var(--brand-dark);
  font-size: 0.72rem;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

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

.option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.85rem;
  background: #fff;
  color: var(--ink);
  padding: 0.55rem 0.5rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.option-btn:hover {
  border-color: #86efac;
}

.option-btn.is-active {
  border-color: var(--brand);
  background: #f0fdf4;
  box-shadow: inset 0 0 0 1px var(--brand);
}

.extra-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

@media (min-width: 640px) {
  .extra-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.extra-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  padding: 0.55rem 0.7rem;
  background: #fff;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.extra-item.is-active {
  border-color: var(--brand);
  background: #f0fdf4;
  box-shadow: inset 0 0 0 1px var(--brand);
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 1.25rem;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(165deg, #3a4f32, #243326 55%, #1a1714);
  color: #fff;
  box-shadow: 0 24px 40px -20px rgba(26, 23, 20, 0.55);
}

.price-card-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbf7d0;
}

.price-value {
  margin-top: 0.2rem;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.calc-breakdown {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #d1fae5;
}

.pricing-section {
  background: linear-gradient(180deg, #eaf3e7 0%, var(--sage) 55%, #eaf3e7 100%);
  padding: 2.05rem 0;
}

.pack-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

@media (min-width: 960px) {
  .pack-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.price-table-wrap {
  margin-top: 1.25rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.1rem 1.05rem;
}

.price-table-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.price-table-lead {
  margin: 0.4rem 0 0.7rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #57534e;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.5rem 0.35rem;
  border-bottom: 1px solid #eee8dc;
}

.price-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8a8378;
}

.price-table td:last-child {
  font-weight: 800;
  white-space: nowrap;
}

.price-table-note {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
}

.pack-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.55rem 1.4rem 1.3rem;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 1.35rem;
  box-shadow: 0 16px 40px -24px rgba(26, 23, 20, 0.28);
}

.pack-card h3 {
  margin-top: 0.85rem;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #111827;
}

.pack-price {
  margin: 0.45rem 0 0.95rem;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #111827;
}

.pack-card ul {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.95rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
}

.pack-card li {
  padding-left: 0.95rem;
  position: relative;
}

.pack-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #111827;
}

.pack-note {
  margin-bottom: 1.2rem;
  font-size: 0.84rem;
  line-height: 1.5;
  font-weight: 500;
  color: #9ca3af;
}

.pack-btn {
  margin-top: auto;
  width: 100%;
  border-radius: 999px;
  background: #4f9d57;
  color: #fff;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.pack-btn:hover,
.pack-btn:focus-visible {
  background: #3f8646;
}

.pack-card--featured {
  background: #f3faf4;
  border-color: #b7e0bc;
  box-shadow: 0 22px 44px -22px rgba(79, 157, 87, 0.35);
}

.pack-badge {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  background: #efe8dc;
  color: #3f3a33;
  padding: 0.28rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.pack-card--featured .pack-badge {
  background: #d8f0dc;
  color: #245c32;
}

.service-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}

@media (min-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.05rem 1.15rem 1.1rem;
  background: #fff;
  border-radius: 1.35rem;
  box-shadow: 0 16px 40px -24px rgba(26, 23, 20, 0.28);
}

.service-icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  background: #eef7ef;
  color: #4f9d57;
  font-size: 1.15rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1f2937;
}

.service-card p {
  margin: 0.5rem 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7280;
}

.service-card .btn-outline {
  margin-top: auto;
  border-color: transparent;
  background: #4f9d57;
  color: #fff;
}

.service-card .btn-outline:hover {
  background: #3f8646;
}

.ba-card {
  overflow: hidden;
}

.ba-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f1f5f9;
}

.ba-tabs button {
  padding: 0.7rem;
  font-weight: 800;
  color: #64748b;
}

.ba-tabs button.is-active {
  background: #fff;
  color: var(--brand-dark);
}

.ba-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
}

.ba-pane {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.ba-pane.is-active {
  opacity: 1;
  pointer-events: auto;
}

.photo-placeholder,
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder--before {
  background:
    linear-gradient(160deg, rgba(63, 74, 58, 0.35), rgba(21, 32, 18, 0.2)),
    repeating-linear-gradient(125deg, #4b5a3d 0 12px, #3f4c34 12px 24px);
}

.photo-placeholder--after {
  background:
    linear-gradient(160deg, rgba(34, 197, 94, 0.2), rgba(21, 128, 61, 0.15)),
    repeating-linear-gradient(90deg, #22c55e 0 8px, #16a34a 8px 16px);
}

.ba-card h3 {
  padding: 1rem 1.1rem 1.15rem;
  font-size: 0.98rem;
  font-weight: 800;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.area-list li {
  border-radius: 999px;
  background: #efe8dc;
  color: var(--brand-dark);
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.map-placeholder {
  display: none;
}

.map-placeholder i {
  font-size: 2rem;
}

.map-placeholder p {
  max-width: 18rem;
  font-weight: 700;
}

#map-frame,
#map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.faq-ico {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  color: #1f2937;
}

.faq-ico::before {
  content: "+";
}

.faq-item.is-open .faq-ico::before {
  content: "−";
}

.faq-panel {
  display: none;
  padding: 0 1.15rem 1.05rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.reviews-section {
  background: linear-gradient(180deg, #f4ece8 0%, #f7f3ea 45%, #eef3ea 100%);
}

.reviews-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.reviews-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: 0.85rem;
}

.review-card {
  position: relative;
  flex: 0 0 min(100%, 22rem);
  scroll-snap-align: start;
  margin-top: 1.35rem;
  padding: 2.15rem 1.1rem 1rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 28px -22px rgba(26, 23, 20, 0.45);
}

.review-ava {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 3px solid #fff;
  background: #3f6b52;
  color: #f7f3ea;
  font-size: 0.72rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.review-card:nth-child(2) .review-ava { background: #5d8f6a; }
.review-card:nth-child(3) .review-ava { background: #2c4d3a; }
.review-card:nth-child(4) .review-ava { background: #6b8f62; }
.review-card:nth-child(5) .review-ava { background: #3a5c44; }
.review-card:nth-child(6) .review-ava { background: #4f7a58; }

.review-card > p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #57534e;
}

.review-name {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #111827;
}

.review-meta {
  margin-top: 0.1rem;
  font-size: 0.76rem;
  color: #64748b;
}

.reviews-nav {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: #5d8f6a;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  border: 0;
}

.reviews-nav:hover,
.reviews-nav:focus-visible {
  background: #3f6b52;
}

@media (max-width: 640px) {
  .reviews-wrap {
    grid-template-columns: 1fr;
  }

  .reviews-nav {
    display: none;
  }
}

.site-footer a[href^="tel:"] {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  touch-action: manipulation;
  cursor: pointer;
}

.footer-lawn {
  display: none;
  height: 4.5rem;
  position: relative;
  background:
    repeating-linear-gradient(
      90deg,
      #3a6b32 0 22px,
      #4e8a3f 22px 44px,
      #355f2d 44px 66px,
      #4a7d38 66px 88px
    );
  box-shadow: inset 0 16px 22px rgba(22, 32, 22, 0.28);
}

.footer-lawn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07) 0 2px,
    transparent 2px 11px
  );
}

.footer-lawn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  background: linear-gradient(180deg, transparent, #162016);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.modal-dialog {
  position: relative;
  width: min(100%, 420px);
  border-radius: 1.4rem;
  background: #fff;
  padding: 1.15rem 1.2rem 1.1rem;
  box-shadow: 0 30px 60px -24px rgba(15, 23, 42, 0.55);
  animation: modal-in 0.22s ease;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: min(92vw, 560px);
  }
}

.modal-lead {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #64748b;
}

.order-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

@media (min-width: 768px) {
  .order-form {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 0.75rem;
  }

  .order-form .field-wide {
    grid-column: 1 / -1;
  }
}

.modal-dialog h2 {
  font-size: 1.35rem;
  font-weight: 800;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
}

.field {
  display: grid;
  gap: 0.28rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.65rem;
  padding: 0.38rem 0.65rem;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  min-height: 2.05rem;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: flex;
  max-width: min(92vw, 420px);
  align-items: flex-start;
  gap: 0.7rem;
  border-radius: 1rem;
  background: #14532d;
  color: #fff;
  padding: 0.95rem 1.05rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 18px 40px -16px rgba(20, 83, 45, 0.8);
  animation: toast-in 0.25s ease;
}

.toast i {
  margin-top: 0.15rem;
  color: #86efac;
}

.toast[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal-up 0.7s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .modal-dialog,
  .toast {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.step-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.25rem;
}

.step-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
}

.step-card p {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.step-card span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  background: #dcfce7;
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 800;
}

.b2b-panel {
  border-radius: 1.6rem;
  padding: 1.75rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(187, 247, 208, 0.55), transparent 40%),
    linear-gradient(180deg, #f8fafc, #fff);
  border: 1px solid #dcfce7;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.seo-tags a {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  padding: 0.28rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.seo-tags a:hover {
  color: #bbf7d0;
  border-color: rgba(187, 247, 208, 0.35);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 45;
  display: flex;
  width: min(calc(100% - 1.5rem), 820px);
  transform: translateX(-50%) translateY(12px);
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 1.1rem;
  background: rgba(247, 243, 234, 0.96);
  border: 1px solid #e4ddd2;
  padding: 0.7rem 0.85rem;
  box-shadow: 0 18px 40px -18px rgba(26, 23, 20, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sticky-cta p {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
}

.sticky-cta-actions {
  display: flex;
  gap: 0.45rem;
}

.sticky-cta .btn-whatsapp,
.sticky-cta .btn-accent,
.sticky-cta .sticky-call {
  padding: 0.65rem 0.95rem;
  font-size: 0.8rem;
  white-space: nowrap;
  pointer-events: auto;
  touch-action: manipulation;
}

.sticky-cta .btn-whatsapp {
  background: var(--brand-dark);
  color: #f7f3ea;
}

.messenger-grid {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.messenger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  font-weight: 800;
  color: #fff;
}

.messenger-btn--max {
  background: #4f46e5;
}

.messenger-btn--tg {
  background: #229ed9;
}

.messenger-btn--wa {
  background: #22c55e;
}

.messenger-ico {
  display: grid;
  place-items: center;
  min-width: 2.4rem;
  height: 1.5rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.hero .btn-whatsapp {
  white-space: normal;
  text-align: center;
}

.toast {
  bottom: 5.5rem;
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0.45rem var(--page-gutter);
  }

  .logo-img {
    width: 2.2rem;
    height: 2.2rem;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-place {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .hero {
    padding: 0.9rem 0 0.25rem;
  }

  .hero-copy,
  .lead-card {
    padding: 1.15rem 1rem 1.05rem;
    border-radius: 1.25rem;
  }

  .lead-fields {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    border-radius: 0.9rem;
    line-height: 1.4;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

  .option-grid--3 {
    grid-template-columns: 1fr;
  }

  .pack-card--featured {
    transform: none;
  }

  .pricing-section {
    padding: 3rem 0;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 280px;
    height: 280px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    width: calc(100% - 1rem);
    bottom: 0.55rem;
    padding: 0.65rem 0.7rem;
  }

  .sticky-cta p {
    font-size: 0.78rem;
  }

  .sticky-cta-actions {
    justify-content: stretch;
  }

  .sticky-cta-actions .btn-whatsapp,
  .sticky-cta-actions .btn-accent,
  .sticky-cta-actions .sticky-call {
    flex: 1;
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 0.7rem 0.45rem;
  }
}
