:root {
  --green-950: #263327;
  --green-900: #445844;
  --green-700: #4f7f59;
  --green-500: #60a36e;
  --green-100: #dbf9d9;
  --accent: #05ff8a;
  --ink: #162017;
  --muted: #5e6c61;
  --line: #dae8db;
  --paper: #ffffff;
  --soft: #f5fbf3;
  --shadow: 0 24px 70px rgba(22, 32, 23, 0.17);
  --shadow-soft: 0 14px 34px rgba(22, 32, 23, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(219, 249, 217, 0.72), transparent 34rem),
    var(--soft);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(5, 255, 138, 0.7);
  outline-offset: 4px;
}

p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.64;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(32px, 4.7vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.018em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.012em;
}

h3 {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.28;
  letter-spacing: -0.006em;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 9px clamp(20px, 5vw, 74px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.topbar span,
.topbar a {
  position: relative;
}

.topbar span + span::before,
.topbar a::before {
  position: absolute;
  top: 0.45em;
  left: -13px;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--accent);
  border-radius: 999px;
}

.topbar a {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 74px);
  color: var(--green-950);
  background: #dbf9d9;
  border-bottom: 1px solid rgba(68, 88, 68, 0.18);
  backdrop-filter: blur(16px);
}

.site-header::after {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: -1px;
  left: clamp(20px, 5vw, 74px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(68, 88, 68, 0.3), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  transition: opacity 180ms ease;
}

.brand:hover {
  opacity: 0.9;
}

.brand-logo-wrap {
  display: flex;
  width: 222px;
  height: 76px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brand-logo {
  display: block;
  width: 198px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.22));
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.main-nav {
  display: flex;
  gap: 20px;
  color: rgba(38, 51, 39, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--green-950);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-700);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.42);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: rgba(38, 51, 39, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn span,
.header-cta span {
  display: inline-flex;
  transition: transform 180ms ease;
}

.btn:hover span,
.header-cta:hover span {
  transform: translateX(2px);
}

.btn-primary {
  color: #fff;
  background: var(--green-900);
  box-shadow: 0 14px 36px rgba(38, 51, 39, 0.16);
}

.header-cta {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 36px rgba(38, 51, 39, 0.16);
}

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

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.btn-outline {
  color: var(--green-900);
  border: 1px solid rgba(68, 88, 68, 0.24);
  background: #fff;
}

.btn-outline:hover {
  border-color: rgba(68, 88, 68, 0.42);
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  overflow: hidden;
  background: var(--green-950);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 34, 25, 0.96) 0%, rgba(35, 49, 36, 0.88) 43%, rgba(35, 49, 36, 0.28) 100%),
    linear-gradient(180deg, rgba(38, 51, 39, 0.12), rgba(38, 51, 39, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: 96px clamp(20px, 6vw, 88px) 122px;
  color: #fff;
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.hero-badges span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.hero-card::before {
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 18px;
  content: "";
  background: var(--accent);
  border-radius: 999px;
}

.hero-card-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: var(--green-950);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 20px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 19px;
  line-height: 1.32;
  letter-spacing: -0.006em;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.hero-card-grid span {
  padding: 14px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
}

.hero-card-grid b {
  display: block;
  color: #fff;
  font-size: 19px;
}

.hero-card-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -72px clamp(20px, 5vw, 74px) 0;
  overflow: hidden;
  background: var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip article {
  position: relative;
  padding: 30px 30px 30px 86px;
  background: var(--paper);
}

.trust-strip article::before {
  position: absolute;
  top: 30px;
  left: 0;
  width: 3px;
  height: 34px;
  content: "";
  background: var(--green-500);
  border-radius: 0 999px 999px 0;
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid rgba(96, 163, 110, 0.22);
  border-radius: 8px;
}

.trust-strip .card-icon {
  position: absolute;
  top: 28px;
  left: 28px;
}

.card-icon.large {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
}

.card-icon svg,
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.card-icon.large svg {
  width: 27px;
  height: 27px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 7px;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 17px;
  letter-spacing: -0.015em;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section {
  padding: 112px clamp(20px, 5vw, 74px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading p {
  max-width: 720px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
}

.solution-card,
.service-card,
.about-card,
.region-card,
.faq article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.solution-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card::after,
.service-card::after,
.faq article::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 30px;
  height: 2px;
  content: "";
  background: rgba(96, 163, 110, 0.42);
  border-radius: 999px;
}

.solution-card.featured {
  grid-row: span 2;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(68, 88, 68, 0.96), rgba(38, 51, 39, 0.98)),
    var(--green-900);
}

.solution-card.featured .card-icon {
  color: var(--green-950);
  background: var(--accent);
  border-color: rgba(5, 255, 138, 0.48);
}

.solution-card.featured::after {
  background: var(--accent);
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 163, 110, 0.48);
  box-shadow: var(--shadow-soft);
}

.solution-card p {
  flex: 1;
}

.solution-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.solution-card small {
  color: var(--green-700);
  font-weight: 900;
}

.solution-card small span {
  display: inline-block;
  transition: transform 180ms ease;
}

.solution-card:hover small span {
  transform: translateX(4px);
}

.solution-card.featured small,
.solution-card.featured .number {
  color: var(--accent);
}

.number {
  margin-bottom: 14px;
  color: var(--green-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  padding: 25px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 163, 110, 0.44);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: 8px;
  font-weight: 900;
}

.service-meta {
  display: inline-flex;
  margin-top: 8px;
  padding: 7px 10px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.process-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: 48px;
  padding: 94px clamp(20px, 5vw, 74px);
  color: #fff;
  background: var(--green-900);
}

.process-intro {
  position: relative;
}

.process-intro::after {
  display: block;
  width: 74px;
  height: 4px;
  margin-top: 24px;
  content: "";
  background: var(--accent);
  border-radius: 999px;
}

.process-band h2 {
  margin-bottom: 0;
}

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

.process-steps article {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.process-steps article + article::before {
  position: absolute;
  top: 42px;
  left: -18px;
  width: 18px;
  height: 1px;
  content: "";
  background: rgba(5, 255, 138, 0.36);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--green-900);
  background: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.step-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-steps p {
  color: rgba(255, 255, 255, 0.76);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  padding: 112px clamp(20px, 5vw, 74px);
}

.about-card,
.region-card,
.faq article,
.contact-card {
  padding: 34px;
}

.about-card,
.region-card {
  box-shadow: 0 1px 0 rgba(68, 88, 68, 0.04);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tags span {
  padding: 10px 14px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

.tags span:hover {
  transform: translateY(-2px);
  background: #cdf3c9;
}

.faq {
  background: #fff;
}

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

.faq article {
  position: relative;
  background: var(--soft);
}

.faq article h3::before {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: var(--green-900);
  content: "?";
  background: var(--green-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  vertical-align: 2px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start;
  padding: 92px clamp(20px, 5vw, 74px);
  background:
    linear-gradient(180deg, rgba(219, 249, 217, 0.36), rgba(245, 251, 243, 0.96)),
    var(--soft);
  border-top: 1px solid var(--line);
}

.proof-copy h2 {
  margin-bottom: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-grid article {
  position: relative;
  min-height: 168px;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(22, 32, 23, 0.06);
}

.proof-grid article::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 20px;
  content: "";
  background: var(--green-500);
  border-radius: 999px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 9px;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.proof-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: center;
  padding: 100px clamp(20px, 5vw, 74px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(38, 51, 39, 0.98), rgba(68, 88, 68, 0.94)),
    var(--green-900);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.contact-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-summary span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.final-cta .contact-card {
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.email-note {
  margin: 0 0 16px;
  color: var(--green-900);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.btn.full {
  width: 100%;
  margin-bottom: 12px;
}

.email-form {
  display: grid;
  gap: 12px;
  margin: 14px 0 18px;
}

.email-form label {
  display: grid;
  gap: 7px;
}

.email-form label span {
  color: var(--green-900);
  font-size: 13px;
  font-weight: 900;
}

.email-form input,
.email-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(68, 88, 68, 0.22);
  border-radius: 8px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.email-form textarea {
  min-height: 108px;
  resize: vertical;
}

.email-form input:focus,
.email-form textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(96, 163, 110, 0.14);
}

.email-form input::placeholder,
.email-form textarea::placeholder {
  color: rgba(94, 108, 97, 0.72);
}

.email-form .btn {
  border: 0;
  cursor: pointer;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-lines span {
  position: relative;
  padding-left: 16px;
}

.contact-lines span::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--green-500);
  border-radius: 999px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--green-950);
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(22, 32, 23, 0.24);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(22, 32, 23, 0.28);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 26px clamp(20px, 5vw, 74px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--green-950);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.24));
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.site-footer div span {
  display: block;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: #fff;
}

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

  .service-list,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .hero-content,
  .process-band,
  .about-section,
  .proof-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: start;
  }

  .trust-strip,
  .process-steps,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .process-steps article + article::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .topbar span + span::before,
  .topbar a::before {
    display: none;
  }

  .brand-logo-wrap {
    width: min(250px, 72vw);
    height: 70px;
  }

  .brand-logo {
    width: min(226px, 66vw);
  }

  .header-actions,
  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .phone-link {
    display: none;
  }

  .header-cta,
  .btn {
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(24, 34, 25, 0.96), rgba(24, 34, 25, 0.74));
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    font-size: 12px;
  }

  .trust-strip {
    margin: 0;
    border-radius: 0;
  }

  .solution-grid,
  .service-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    padding-left: 82px;
  }

  .solution-card.featured {
    grid-row: auto;
  }

  .section,
  .about-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .process-band,
  .proof-section,
  .final-cta {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
