:root {
  --pine: #111111;
  --pine-2: #050505;
  --leaf: #e50918;
  --mint: #fff0f1;
  --cream: #f8f8f8;
  --sand: #f1eeee;
  --clay: #d71920;
  --red: #e50918;
  --red-dark: #b80612;
  --garden: #4f8f2f;
  --garden-2: #83b94a;
  --garden-soft: #eef7e8;
  --garden-line: #dceccb;
  --ink: #111111;
  --text: #343434;
  --muted: #696969;
  --line: #e2dfd6;
  --paper: #ffffff;
  --soft: #f3f1ea;
  --whatsapp: #25d366;
  --shadow: 0 24px 70px rgba(21, 25, 22, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fbfff7;
  line-height: 1.55;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softScale {
  from {
    opacity: 0;
    transform: scale(0.96) rotate(-1deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  color: #ffffff;
  background: #111111;
  font-size: 14px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  min-width: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
}

.brand span {
  display: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(21, 25, 22, 0.14);
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu a,
.nav-dropbtn {
  padding: 10px 13px;
  border-radius: 999px;
  color: #222222;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 850;
  font-family: inherit;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu a:hover,
.menu a.active,
.nav-dropdown:hover .nav-dropbtn,
.nav-dropbtn:focus-visible {
  color: #ffffff;
  background: #111111;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropbtn::after {
  content: "▾";
  margin-left: 7px;
  color: var(--red);
  font-size: 11px;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 6px;
  min-width: 430px;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.18);
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel a {
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border-radius: 12px;
}

.nav-dropdown-panel a:hover {
  color: #ffffff;
  background: var(--red);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(21, 25, 22, 0.16);
}

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

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

.btn-red {
  color: #ffffff;
  background: var(--red);
}

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

.btn-whatsapp {
  color: #ffffff;
  background: var(--whatsapp);
}

.btn-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 92px;
  background: var(--paper);
  clip-path: polygon(0 44%, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  gap: 56px;
  padding: 56px 0 98px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--garden);
  border-radius: 99px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero .eyebrow,
.page-hero .eyebrow {
  animation: fadeUp 650ms ease both;
}

.hero h1,
.page-hero h1 {
  animation: fadeUp 780ms ease 90ms both;
}

.hero .lead,
.page-hero p {
  animation: fadeUp 780ms ease 170ms both;
}

.hero-actions {
  animation: fadeUp 780ms ease 250ms both;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-glass-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.people-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.people-strip img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16);
}

.people-strip img:nth-child(2) {
  width: 104px;
  height: 104px;
}

.glass-stat,
.glass-panel,
.hero-badge {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.11);
  backdrop-filter: blur(18px);
}

.glass-stat {
  padding: 14px;
  border-radius: 18px;
}

.glass-stat strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.glass-stat span {
  color: var(--muted);
  font-size: 13px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.point {
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 55, 42, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(21, 25, 22, 0.06);
}

.point strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.point span {
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
  min-height: 540px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 34px -18px -22px 42px;
  background: #111111;
  border-radius: 28px 8px 28px 8px;
  transform: rotate(3deg);
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: var(--pine);
  border: 8px solid #ffffff;
  border-radius: 32px 8px 32px 8px;
  box-shadow: var(--shadow);
  animation: softScale 900ms ease 180ms both;
}

.hero-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.people-orbit {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 54px rgba(17, 17, 17, 0.22);
  backdrop-filter: blur(14px);
}

.people-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-one {
  left: -38px;
  bottom: -22px;
  width: 176px;
  height: 214px;
  border-radius: 28px 8px 28px 8px;
}

.people-two {
  right: -22px;
  top: 42px;
  width: 158px;
  height: 158px;
  border-radius: 50%;
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(350px, calc(100% - 36px));
  padding: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.17);
  animation: fadeUp 820ms ease 420ms both;
}

.hero-badge strong {
  display: block;
  color: var(--ink);
}

.hero-badge span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 90px 0;
  background: rgba(255, 255, 255, 0.92);
}

.intro-section {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 82px;
  background: var(--garden-soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.intro-copy,
.glass-panel {
  border-radius: 24px;
}

.intro-copy {
  padding: 34px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(79, 143, 47, 0.14);
  box-shadow: 0 22px 60px rgba(58, 92, 44, 0.10);
  backdrop-filter: blur(18px);
}

.intro-copy h2 {
  color: var(--ink);
  font-size: clamp(29px, 3.4vw, 46px);
  line-height: 1.08;
}

.intro-copy p {
  color: #4d5548;
  font-size: 16px;
}

.intro-side {
  display: grid;
  gap: 16px;
}

.intro-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 420px;
  border: 8px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(58, 92, 44, 0.18);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.intro-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 13px 15px;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.glass-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.glass-item {
  min-height: 126px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(79, 143, 47, 0.16);
  box-shadow: 0 14px 34px rgba(58, 92, 44, 0.08);
  backdrop-filter: blur(14px);
}

.glass-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}

.glass-item span {
  color: var(--muted);
  font-size: 14px;
}

.stats-band {
  padding: 52px 0;
  color: var(--ink);
  background: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-tile {
  text-align: center;
  padding: 24px 18px;
  background: #fbfff7;
  border: 1px solid var(--garden-line);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(58, 92, 44, 0.08);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  color: var(--garden);
  background: #ffffff;
  border: 1px solid var(--garden-line);
  border-radius: 50%;
}

.stat-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.stat-tile strong {
  display: block;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.stat-tile span:last-child {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 900;
}

.section-soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 780px;
  font-size: clamp(31px, 4.4vw, 56px);
  line-height: 1.02;
}

.section-head p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px 8px 20px 8px;
  box-shadow: 0 14px 36px rgba(21, 25, 22, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(229, 9, 24, 0.34);
  box-shadow: 0 28px 64px rgba(21, 25, 22, 0.14);
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 21px;
}

.service-card h3 {
  font-size: 22px;
  line-height: 1.15;
}

.service-card p {
  margin: 10px 0 18px;
  color: var(--muted);
}

.text-link {
  width: fit-content;
  margin-top: auto;
  color: var(--pine);
  font-weight: 950;
}

.text-link::after {
  content: " →";
  color: var(--red);
}

.section-showcase {
  background: #f4faee;
}

.section-showcase h2,
.section-showcase .section-head p {
  color: var(--ink);
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, 230px);
  gap: 16px;
}

.image-mosaic figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(79, 143, 47, 0.16);
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(58, 92, 44, 0.14);
}

.image-mosaic .mosaic-large {
  grid-row: span 2;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.image-mosaic figure:hover img {
  transform: scale(1.05);
}

.image-mosaic figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 12px;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.split img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px 28px 8px 28px;
  box-shadow: var(--shadow);
}

.split h2 {
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.04;
}

.split p {
  color: var(--muted);
  font-size: 17px;
}

.checks {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 750;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--red);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px 24px 8px 24px;
  box-shadow: 0 14px 34px rgba(21, 25, 22, 0.06);
}

.step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 950;
}

.step p {
  color: var(--muted);
}

.contact-band {
  color: var(--text);
  background: #fbfff7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: start;
}

.contact-copy h1,
.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.04;
}

.contact-copy p {
  color: var(--muted);
}

.contact-box {
  padding: 28px;
  color: var(--text);
  background: #ffffff;
  border-radius: 8px 28px 8px 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8d4c9;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf5;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--red);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(229, 9, 24, 0.13);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #111111;
  padding: 78px 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: var(--soft);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(34px, 5.2vw, 62px);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.page-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 7px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
  animation: softScale 900ms ease 180ms both;
}

.service-hero {
  background: #111111;
}

.service-hero .page-hero-grid {
  gap: 52px;
}

.service-hero img {
  height: 470px;
  border-radius: 24px;
}

.service-intro-section {
  background: #fbfff7;
}

.service-content-panel {
  border-color: rgba(79, 143, 47, 0.16);
  border-radius: 24px;
}

.service-content-panel h2 {
  margin-top: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.mini-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-info-grid div {
  min-height: 132px;
  padding: 18px;
  background: var(--garden-soft);
  border: 1px solid var(--garden-line);
  border-radius: 18px;
}

.mini-info-grid strong {
  display: block;
  color: var(--ink);
  margin-bottom: 7px;
}

.mini-info-grid span {
  color: var(--muted);
  font-size: 14px;
}

.service-sidebar {
  border-radius: 24px;
}

.service-module-section {
  background: #ffffff;
}

.service-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-module-grid article {
  min-height: 210px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--garden-line);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(58, 92, 44, 0.08);
}

.service-module-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 18px;
  background: var(--garden);
  border-radius: 99px;
}

.service-module-grid h3 {
  font-size: 24px;
  line-height: 1.12;
}

.service-module-grid p {
  color: var(--muted);
}

.service-proof-section {
  background: var(--garden-soft);
}

.service-proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.proof-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 480px;
  border: 8px solid rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  box-shadow: 0 24px 64px rgba(58, 92, 44, 0.15);
}

.proof-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.proof-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 13px;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.58);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.service-process {
  background: #ffffff;
}

.paving-page {
  background: #ffffff;
}

.paving-hero {
  padding: 78px 0;
  background: #fbfff7;
}

.paving-hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
}

.paving-hero-copy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--garden-line);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(58, 92, 44, 0.08);
}

.paving-hero-copy h1 {
  font-size: clamp(34px, 4.7vw, 62px);
  line-height: 1.02;
}

.paving-hero-copy p {
  color: var(--muted);
  font-size: 18px;
}

.paving-hero-photo,
.paving-side-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  box-shadow: 0 24px 64px rgba(58, 92, 44, 0.14);
}

.paving-hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.paving-hero-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.58);
  border-radius: 14px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.paving-scope {
  background: #ffffff;
}

.paving-scope-grid,
.paving-material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.paving-scope-grid article,
.paving-material-grid div {
  min-height: 220px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--garden-line);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(58, 92, 44, 0.08);
}

.paving-scope-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--garden-soft);
  border: 1px solid var(--garden-line);
  border-radius: 50%;
  font-weight: 950;
}

.paving-scope-grid h3,
.paving-material-grid strong {
  display: block;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.paving-scope-grid p,
.paving-material-grid span {
  color: var(--muted);
}

.paving-detail-section,
.paving-material-section,
.paving-contact-section {
  background: #fbfff7;
}

.paving-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.paving-side-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.paving-material-grid div {
  min-height: 170px;
  background: #ffffff;
}

.paving-material-grid strong {
  margin-bottom: 8px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: start;
}

.content-panel,
.sidebar-card,
.legal-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px 24px 8px 24px;
  box-shadow: 0 14px 36px rgba(21, 25, 22, 0.07);
}

.content-panel h2,
.legal-card h2 {
  margin-top: 28px;
  font-size: 30px;
}

.content-panel h2:first-child,
.legal-card h2:first-child {
  margin-top: 0;
}

.content-panel p,
.legal-card p {
  color: var(--muted);
}

.sidebar-card {
  position: sticky;
  top: 110px;
}

.sidebar-card .btn {
  width: 100%;
  margin-top: 10px;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: #111512;
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 16px;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 850;
}

.form-status.is-success {
  display: block;
  color: #0f5132;
  background: #d1e7dd;
}

.form-status.is-error {
  display: block;
  color: #842029;
  background: #f8d7da;
}

.floating-whatsapp {
  display: none;
}

.bottom-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  grid-template-columns: 54px;
  grid-template-rows: repeat(2, 54px);
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 17, 17, 0.10);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(18px);
}

.bottom-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 950;
}

.bottom-cta svg,
.icon-btn svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.bottom-cta a:first-child {
  background: var(--red);
}

.bottom-cta a:last-child {
  background: var(--whatsapp);
}

.garden-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #ffffff;
  background: #10140f;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 10, 0.42);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.garden-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 70px 0;
}

.garden-hero-card {
  width: min(650px, 100%);
  padding: clamp(22px, 4vw, 38px);
  color: #ffffff;
  background: rgba(17, 17, 17, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 24px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.garden-hero-card h1,
.garden-hero-card .lead {
  color: #ffffff;
}

.garden-hero-card .lead {
  color: rgba(255, 255, 255, 0.82);
}

.garden-hero-card .glass-stat {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.garden-hero-card .glass-stat strong {
  color: #ffffff;
}

.garden-hero-card .glass-stat span {
  color: rgba(255, 255, 255, 0.75);
}

.why-section {
  background: #ffffff;
}

.why-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.why-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.garden-focus-section {
  background: var(--garden-soft);
}

.garden-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.garden-feature-grid article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(79, 143, 47, 0.15);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(58, 92, 44, 0.10);
}

.garden-feature-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.garden-feature-grid div {
  padding: 22px;
}

.garden-feature-grid strong {
  display: block;
  color: var(--ink);
  margin-bottom: 7px;
  font-size: 21px;
}

.garden-feature-grid span {
  color: var(--muted);
}

.garden-services {
  background: #fbfff7;
}

.garden-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.garden-card {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(79, 143, 47, 0.14);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(58, 92, 44, 0.08);
  backdrop-filter: blur(16px);
}

.garden-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 950;
}

.garden-card h3 {
  font-size: 23px;
}

.garden-card p {
  color: var(--muted);
}

.experience-section {
  color: var(--text);
  background: #fbfff7;
}

.experience-section h2,
.experience-section p {
  color: var(--ink);
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.experience-grid p {
  margin-top: 0;
  color: var(--muted);
  font-size: 17px;
}

.areas-section {
  background: #ffffff;
}

.area-list,
.compact-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span,
.compact-services a {
  padding: 11px 14px;
  color: #111111;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.10);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
  font-weight: 850;
}

.area-list span:nth-child(3n),
.compact-services a:hover {
  color: var(--ink);
  background: var(--garden-soft);
  border-color: var(--garden-line);
}

.process-section {
  background: #f8f8f8;
}

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

.faq-section {
  background: #ffffff;
  color: var(--text);
}

.faq-section h2,
.faq-section p {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  background: #fbfff7;
  border: 1px solid var(--garden-line);
  border-radius: 18px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.before-after-section {
  background: #ffffff;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 38px;
  align-items: center;
}

.comparison {
  --pos: 50%;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 8px solid #ffffff;
  border-radius: 32px 8px 32px 8px;
  box-shadow: var(--shadow);
  background: #111111;
}

.comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after-wrap {
  position: absolute;
  inset: 0;
  width: var(--pos);
  overflow: hidden;
  border-right: 4px solid #ffffff;
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.comparison::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--pos);
  z-index: 4;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.compare-label {
  position: absolute;
  z-index: 6;
  top: 16px;
  padding: 9px 12px;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.66);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.compare-before {
  left: 16px;
}

.compare-after-label {
  right: 16px;
}

.references-section {
  background: #f8f8f8;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reference-grid article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.09);
}

.reference-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.reference-grid article div {
  padding: 18px;
}

.reference-grid strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.reference-grid span {
  color: var(--muted);
  font-size: 14px;
}

.extra-services {
  background: #ffffff;
}

.small-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    max-height: min(72vh, 620px);
    overflow: auto;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-dropdown-panel {
    position: static;
    display: grid;
    min-width: 0;
    grid-template-columns: 1fr;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(247, 245, 238, 0.8);
  }

  .nav-dropbtn {
    width: 100%;
    text-align: left;
    border-radius: var(--radius);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 13px 14px;
    border-radius: var(--radius);
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .contact-grid,
  .content-grid,
  .intro-grid,
  .why-grid,
  .faq-grid,
  .paving-hero-grid,
  .paving-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .sidebar-card {
    position: static;
  }

  .footer-grid,
  .cards,
  .steps,
  .glass-panel,
  .garden-feature-grid,
  .mini-info-grid,
  .service-module-grid,
  .service-proof-grid,
  .paving-scope-grid,
  .paving-material-grid,
  .garden-card-grid,
  .process-section .steps,
  .stats-grid,
  .experience-grid,
  .before-after-grid,
  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .hero-grid {
    gap: 30px;
    padding: 32px 0 66px;
  }

  h1 {
    font-size: clamp(30px, 9.4vw, 38px);
    line-height: 1.04;
  }

  .lead {
    font-size: 16px;
  }

  .hero-card img,
  .page-hero img,
  .split img {
    height: 300px;
    min-height: 0;
  }

  .service-hero img {
    height: 320px;
  }

  .paving-hero {
    padding: 44px 0;
  }

  .paving-hero-copy {
    padding: 22px;
  }

  .paving-hero-photo img,
  .paving-side-photo img {
    height: 320px;
  }

  .hero-points,
  .hero-glass-row,
  .cards,
  .steps,
  .footer-grid,
  .form-grid,
  .glass-panel,
  .garden-feature-grid,
  .mini-info-grid,
  .service-module-grid,
  .service-proof-grid,
  .paving-scope-grid,
  .paving-material-grid,
  .garden-card-grid,
  .process-section .steps,
  .stats-grid,
  .experience-grid,
  .before-after-grid,
  .reference-grid,
  .image-mosaic {
    grid-template-columns: 1fr;
  }

  .garden-hero,
  .garden-hero-inner {
    min-height: 640px;
  }

  .garden-hero-inner {
    padding: 28px 0 54px;
  }

  .garden-hero-card {
    border-radius: 20px;
  }

  .intro-section {
    padding-top: 58px;
  }

  .intro-copy {
    padding: 24px;
  }

  .intro-photo,
  .intro-photo img {
    min-height: 320px;
  }

  .garden-feature-grid img {
    height: 250px;
  }

  .proof-photo,
  .proof-photo img {
    min-height: 320px;
  }

  .why-media img {
    min-height: 320px;
  }

  .comparison {
    min-height: 360px;
  }

  .hero-media {
    min-height: 300px;
  }

  .people-orbit {
    display: none;
  }

  .people-strip {
    justify-content: center;
  }

  .people-strip img {
    width: 72px;
    height: 72px;
  }

  .people-strip img:nth-child(2) {
    width: 88px;
    height: 88px;
  }

  .image-mosaic {
    grid-template-rows: none;
  }

  .image-mosaic figure {
    min-height: 260px;
  }

  .section {
    padding: 60px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .btn,
  .hero-actions a,
  .section-actions a {
    width: 100%;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
  }

  .bottom-cta {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 46px;
    padding: 10px max(12px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: 0 -16px 40px rgba(17, 17, 17, 0.12);
  }

  .bottom-cta a {
    width: auto;
    height: 46px;
    border-radius: var(--radius);
  }
}
