:root {
  --green-900: #09261f;
  --green-800: #10392f;
  --green-700: #0e6f45;
  --green-500: #2aae68;
  --green-300: #8ce6ae;
  --mint-100: #effcf4;
  --mint-50: #f8fff9;
  --sand: #f4efe4;
  --ink: #14211d;
  --muted: #62736c;
  --white: #ffffff;
  --line: rgba(16, 57, 47, 0.12);
  --shadow: 0 24px 70px rgba(9, 38, 31, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(68, 208, 123, 0.14), transparent 32rem),
    linear-gradient(180deg, #fbfff8 0%, #f3f8f1 45%, #ffffff 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(60deg, rgba(14, 111, 69, 0.04) 1px, transparent 1px),
    linear-gradient(120deg, rgba(14, 111, 69, 0.04) 1px, transparent 1px);
  background-size: 34px 60px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 55px rgba(9, 38, 31, 0.12);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 10px 18px;
  border: 1px solid rgba(16, 57, 47, 0.08);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 36px rgba(9, 38, 31, 0.07);
  font-size: 0.92rem;
  backdrop-filter: blur(14px);
}

.topbar div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.topbar span {
  color: var(--green-700);
  font-weight: 900;
}

.topbar strong {
  color: var(--muted);
  font-weight: 700;
}

.topbar a {
  font-weight: 900;
}

.topbar a:last-child {
  color: var(--green-700);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--green-800);
  font-weight: 700;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav a:hover {
  color: var(--green-700);
  background: var(--mint-100);
}

.site-nav a[aria-current="page"] {
  color: var(--green-700);
  background: var(--mint-100);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 14px 32px rgba(14, 111, 69, 0.24);
}

.button--ghost {
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button--light {
  color: var(--green-900);
  background: var(--white);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--mint-100);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 1px;
  background: var(--green-800);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 54px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 110px);
  margin: 0 auto;
  padding: 74px 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--green-900);
  font-size: clamp(2.55rem, 7vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 16px;
  color: var(--green-900);
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  color: var(--green-900);
  font-size: 1.15rem;
}

.hero__lead,
.section__intro p,
.service-panel p,
.contact__info p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.hero__lead {
  max-width: 660px;
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 18px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(14, 111, 69, 0.13);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 850;
}

.hero__trust span::before {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  content: "";
  border-radius: 50%;
  background: var(--green-500);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 0;
}

.hero__stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 32px rgba(9, 38, 31, 0.08);
}

.hero__stats dt {
  color: var(--green-700);
  font-size: 1.3rem;
  font-weight: 900;
}

.hero__stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
}

.fence-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 48px;
  background:
    linear-gradient(180deg, rgba(168, 223, 255, 0.9) 0%, rgba(239, 252, 244, 0.92) 52%, rgba(244, 239, 228, 0.92) 100%),
    var(--mint-100);
  box-shadow: var(--shadow);
}

.fence-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(16, 57, 47, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 57, 47, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(500px) rotateX(58deg) rotateZ(-6deg) scale(1.45);
  transform-origin: 50% 72%;
  opacity: 0.48;
}

.sun {
  position: absolute;
  top: 64px;
  right: 76px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #ffd979;
  box-shadow: 0 0 0 18px rgba(255, 217, 121, 0.18);
}

.cloud {
  position: absolute;
  width: 114px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.cloud::before,
.cloud::after {
  position: absolute;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background: inherit;
}

.cloud::before {
  left: 18px;
  width: 44px;
  height: 44px;
}

.cloud::after {
  right: 18px;
  width: 54px;
  height: 54px;
}

.cloud--one {
  top: 118px;
  left: 48px;
}

.cloud--two {
  top: 178px;
  right: 42px;
  transform: scale(0.72);
}

.fence-panel {
  position: absolute;
  right: -18px;
  bottom: 92px;
  left: 52px;
  height: 290px;
  border-bottom: 12px solid var(--green-800);
  transform: skewY(-6deg);
}

.fence-panel::before,
.fence-panel::after {
  position: absolute;
  content: "";
  border-radius: 18px;
  background: var(--green-700);
}

.fence-panel::before {
  inset: 28px 0 auto;
  height: 12px;
  box-shadow: 0 94px 0 var(--green-700), 0 184px 0 var(--green-700);
}

.fence-panel::after {
  inset: 0 auto 0 0;
  width: 12px;
  box-shadow:
    74px 0 0 var(--green-700),
    148px 0 0 var(--green-700),
    222px 0 0 var(--green-700),
    296px 0 0 var(--green-700),
    370px 0 0 var(--green-700),
    444px 0 0 var(--green-700);
}

.fence-panel span {
  position: absolute;
  top: 34px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: rgba(9, 38, 31, 0.34);
  transform: rotate(28deg);
}

.fence-panel span:nth-child(1) { left: 38px; }
.fence-panel span:nth-child(2) { left: 104px; }
.fence-panel span:nth-child(3) { left: 170px; }
.fence-panel span:nth-child(4) { left: 236px; }
.fence-panel span:nth-child(5) { left: 302px; }
.fence-panel span:nth-child(6) { left: 368px; }
.fence-panel span:nth-child(7) { left: 434px; }

.fence-ground {
  position: absolute;
  right: -40px;
  bottom: -28px;
  left: -40px;
  height: 165px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #7fc56f, #4c9b51);
}

.visual-badge {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 2px;
  min-width: 154px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 45px rgba(9, 38, 31, 0.16);
  backdrop-filter: blur(14px);
}

.visual-badge strong {
  font-size: 1.15rem;
}

.visual-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.strip span {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--green-800);
  background: var(--mint-100);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.section__intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 8px;
}

.page-hero h1 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.75;
}

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

.mini-card {
  display: grid;
  gap: 14px;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(16, 57, 47, 0.11);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 15%, rgba(140, 230, 174, 0.28), transparent 10rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(9, 38, 31, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(9, 38, 31, 0.12);
}

.mini-card span {
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-card strong {
  color: var(--green-900);
  font-size: 1.25rem;
  line-height: 1.35;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
}

.proof-card {
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(16, 57, 47, 0.11);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 255, 249, 0.72)),
    var(--white);
  box-shadow: 0 18px 45px rgba(9, 38, 31, 0.08);
}

.proof-card span,
.app-card span,
.spec-list span {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--green-900);
  font-size: 1.12rem;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 26px;
  border: 1px solid rgba(16, 57, 47, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(9, 38, 31, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card::after {
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 160px;
  height: 160px;
  content: "";
  border-radius: 50%;
  background: rgba(42, 174, 104, 0.12);
}

.product-card__media {
  position: relative;
  z-index: 1;
  height: 210px;
  margin: -10px -10px 20px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--mint-100);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 10px;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 174, 104, 0.28);
  box-shadow: 0 26px 58px rgba(9, 38, 31, 0.12);
}

.product-card:hover .product-card__media img {
  transform: scale(1.045);
}

.product-card p,
.product-card li,
.timeline p,
.faq p,
.site-footer p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.product-card p,
.product-card ul {
  position: relative;
  z-index: 1;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 22px;
}

.product-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--green-500);
}

.product-card__icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background-color: var(--mint-100);
  box-shadow: inset 0 0 0 1px rgba(14, 111, 69, 0.12);
}

.icon-panel {
  background-image:
    linear-gradient(90deg, transparent 14px, var(--green-700) 14px 18px, transparent 18px 30px),
    linear-gradient(0deg, transparent 18px, rgba(14, 111, 69, 0.7) 18px 22px, transparent 22px 38px);
  background-size: 28px 100%, 100% 28px;
}

.icon-mesh {
  background-image:
    linear-gradient(45deg, transparent 44%, var(--green-700) 46% 54%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, var(--green-500) 46% 54%, transparent 56%);
  background-size: 22px 22px;
}

.icon-razor {
  background:
    radial-gradient(circle at 16px 38px, transparent 12px, var(--green-700) 13px 15px, transparent 16px),
    radial-gradient(circle at 38px 38px, transparent 12px, var(--green-500) 13px 15px, transparent 16px),
    radial-gradient(circle at 60px 38px, transparent 12px, var(--green-700) 13px 15px, transparent 16px),
    var(--mint-100);
}

.icon-post {
  background:
    linear-gradient(90deg, transparent 31px, var(--green-700) 31px 45px, transparent 45px),
    linear-gradient(35deg, transparent 42%, rgba(42, 174, 104, 0.8) 43% 48%, transparent 49%),
    var(--mint-100);
}

.icon-gate {
  background:
    linear-gradient(90deg, var(--green-700) 8px, transparent 8px 34px, var(--green-700) 34px 42px, transparent 42px 68px, var(--green-700) 68px),
    linear-gradient(0deg, transparent 17px, rgba(14, 111, 69, 0.75) 17px 22px, transparent 22px 52px, rgba(14, 111, 69, 0.75) 52px 57px, transparent 57px),
    var(--mint-100);
}

.icon-field {
  background:
    linear-gradient(90deg, transparent 12px, var(--green-700) 12px 16px, transparent 16px 60px, var(--green-700) 60px 64px, transparent 64px),
    linear-gradient(0deg, transparent 20px, rgba(14, 111, 69, 0.72) 20px 24px, transparent 24px 50px, rgba(14, 111, 69, 0.72) 50px 54px, transparent 54px),
    linear-gradient(135deg, transparent 48%, rgba(42, 174, 104, 0.55) 49% 52%, transparent 53%),
    var(--mint-100);
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 38, 31, 0.96), rgba(14, 111, 69, 0.94)),
    var(--green-800);
  box-shadow: var(--shadow);
}

.service-panel h2,
.service-panel h3,
.service-panel .eyebrow {
  color: var(--white);
}

.service-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.feature span,
.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--green-300);
  font-weight: 900;
}

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

.timeline article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
}

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

.app-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(9, 38, 31, 0.2), rgba(9, 38, 31, 0.86)),
    linear-gradient(135deg, #2aae68, #10392f);
  box-shadow: 0 22px 52px rgba(9, 38, 31, 0.13);
}

.app-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  opacity: 0.42;
}

.app-card > * {
  position: relative;
}

.app-card span {
  color: var(--green-300);
}

.app-card h3 {
  margin: 72px 0 10px;
  color: var(--white);
  font-size: 1.22rem;
}

.app-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.cta-band {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 0;
  padding: 36px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(140, 230, 174, 0.28), transparent 34rem),
    linear-gradient(135deg, var(--green-900), var(--green-700));
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band h2 {
  max-width: 740px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.spec-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(16, 57, 47, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 10%, rgba(140, 230, 174, 0.26), transparent 28rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.spec-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.spec-list li {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(16, 57, 47, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.spec-list strong {
  color: var(--green-900);
}

.region-card {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(140, 230, 174, 0.28), transparent 34rem),
    linear-gradient(135deg, var(--green-900), var(--green-700));
  box-shadow: var(--shadow);
}

.region-card h2,
.region-card .eyebrow {
  color: var(--white);
}

.region-card p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 30px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-card {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-card span {
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--green-900);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form h3 {
  margin-bottom: 2px;
  font-size: 1.6rem;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-weight: 800;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 57, 47, 0.16);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfefb;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(42, 174, 104, 0.13);
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

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

details {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
}

summary {
  color: var(--green-900);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.image-credits {
  padding-top: 28px;
}

.image-credits details {
  background: rgba(255, 255, 255, 0.62);
}

.image-credits a {
  color: var(--green-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr auto auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 24px;
  padding: 28px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--green-800);
  font-weight: 800;
}

.copyright {
  margin: 0;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 18px 42px rgba(18, 140, 74, 0.34);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(18, 140, 74, 0.42);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    border-radius: 24px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 4px;
    padding-top: 14px;
  }

  .site-header.is-open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
  }

  .hero,
  .service-panel,
  .contact,
  .spec-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .fence-card {
    min-height: 460px;
  }

  .product-grid,
  .timeline,
  .faq-grid,
  .proof,
  .app-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-card {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-header,
  .topbar,
  .page-hero,
  .hero,
  .strip,
  .section,
  .cta-band,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .topbar {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
  }

  .brand img {
    width: 152px;
  }

  .hero {
    gap: 34px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.4rem, 16vw, 4rem);
  }

  .hero__stats,
  .product-grid,
  .timeline,
  .contact-cards,
  .faq-grid,
  .proof,
  .app-grid,
  .mini-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .fence-card {
    min-height: 390px;
    border-radius: 32px;
  }

  .fence-panel {
    left: 28px;
    bottom: 70px;
    height: 220px;
    transform: skewY(-6deg) scale(0.8);
    transform-origin: left bottom;
  }

  .section {
    padding-top: 72px;
  }

  .service-panel,
  .cta-band,
  .spec-card,
  .region-card,
  .quote-form {
    padding: 24px;
    border-radius: 26px;
  }

  .cta-band {
    display: grid;
  }

  .button,
  .button--light {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0;
    width: 54px;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}
