:root {
  color-scheme: light;
  --green-950: #213b12;
  --green-900: #213b12;
  --green-800: #416c20;
  --green-700: #6cad35;
  --green-100: #f2f7ea;
  --green-50: #f4faee;
  --gold-500: #c9a24b;
  --gold-300: #e2c87e;
  --gold-100: #faf4e3;
  --slate-900: #24331b;
  --slate-700: #3e4a34;
  --slate-500: #6d7865;
  --line: #e0e6d8;
  --surface: #ffffff;
  --surface-soft: #f2f7ea;
  --shadow: 0 22px 58px rgba(33, 59, 18, 0.14);
  --radius: 8px;
  --max: 1200px;
  --font-heading: "Arial Rounded MT Bold", "Nunito Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-body: Inter, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8faf5;
  color: var(--slate-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
.brand strong,
.button,
.text-button,
.site-nav,
dt,
strong {
  font-family: var(--font-heading);
}

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

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

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

a:hover {
  color: var(--green-700);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--green-900);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(224, 230, 216, 0.95);
  backdrop-filter: blur(10px);
}

.header-inner,
.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong {
  display: block;
  color: var(--green-900);
  font-size: 1.08rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand span {
  display: block;
  color: var(--slate-500);
  font-size: 0.8rem;
  line-height: 1.25;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--green-900);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-weight: 800;
  font-size: 0.9rem;
}

.site-nav a {
  color: var(--slate-900);
}

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

.site-nav .button,
.site-nav .button:hover {
  color: #fff;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-500);
}

.language-switch a {
  color: var(--slate-700);
}

.language-switch a[aria-current="true"] {
  color: var(--green-800);
  font-weight: 800;
}

.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1;
}

.button {
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 13px 28px rgba(65, 108, 32, 0.28);
}

.button:hover {
  background: var(--green-950);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

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

.button.whatsapp-button {
  background: #fff;
  border-color: rgba(65, 108, 32, 0.28);
  color: var(--green-900);
  box-shadow: none;
}

.button.whatsapp-button:hover {
  background: var(--green-100);
  color: var(--green-900);
}

.text-button {
  padding: 0;
  min-height: auto;
  color: var(--green-800);
}

.hero {
  min-height: 650px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: stretch;
  background: var(--green-950);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(6, 40, 22, 0.92) 0%, rgba(6, 40, 22, 0.72) 34%, rgba(6, 40, 22, 0.2) 66%, rgba(6, 40, 22, 0.05) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(6, 40, 22, 0.78), rgba(6, 40, 22, 0));
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 126px;
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  align-content: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  line-height: 1.02;
  font-weight: 850;
  overflow-wrap: normal;
  hyphens: manual;
}

.page-hero h1 {
  max-width: 980px;
}

.hero p {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
}

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

.trust-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--green-900), var(--green-800));
  color: #fff;
}

.trust-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item svg,
.icon {
  width: 34px;
  height: 34px;
  color: var(--gold-500);
  stroke-width: 1.8;
}

.trust-item strong,
.split-card strong,
.service-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.trust-item span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.35;
  margin-top: 4px;
}

.section {
  padding: 86px 0;
  background: var(--surface);
}

.section.compact {
  padding: 58px 0;
}

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

.section.dark {
  background: var(--green-950);
  color: #fff;
}

.section-header {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #96742e;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  font-weight: 900;
}

.section.dark .section-title {
  color: #fff;
}

.section-title em {
  color: #96742e;
  font-style: normal;
}

.lead {
  margin: 16px 0 0;
  max-width: 720px;
  color: var(--slate-700);
  font-size: 1.08rem;
}

.section.dark .lead {
  color: rgba(255, 255, 255, 0.74);
}

.pain-grid,
.services-grid,
.reference-grid,
.two-col,
.process-grid,
.legal-grid {
  display: grid;
  gap: 24px;
}

.pain-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pain-item {
  padding: 10px 24px 12px 0;
  border-right: 1px solid var(--line);
}

.pain-item:last-child {
  border-right: 0;
}

.pain-item h3,
.service-card h3,
.split-card h3,
.process-card h3,
.legal-card h2 {
  margin: 14px 0 8px;
  color: var(--green-900);
  font-size: 1.12rem;
  line-height: 1.22;
}

.pain-item p,
.service-card p,
.split-card p,
.process-card p,
.legal-card p,
.legal-card li {
  margin: 0;
  color: var(--slate-700);
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.split-card,
.process-card,
.legal-card,
.reference-card,
.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(33, 59, 18, 0.06);
}

.service-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.service-card .media {
  min-height: 136px;
  background: var(--green-100);
  overflow: hidden;
}

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

.service-card .body {
  padding: 22px;
  flex: 1;
}

.service-card .foot {
  padding: 0 22px 22px;
}

.two-col {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.split-card {
  padding: 34px;
}

.split-media {
  min-height: 420px;
  border-radius: var(--radius);
  background: var(--green-100);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(33, 59, 18, 0.12);
}

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

.split-media video,
.split-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: var(--green-100);
}

.video-frame {
  position: relative;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 11px 0;
  color: var(--slate-700);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--gold-500);
  border-bottom: 2px solid var(--gold-500);
  transform: rotate(-45deg);
}

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

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

.price-card {
  padding: 26px;
  border: 1px solid rgba(65, 108, 32, 0.22);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(33, 59, 18, 0.07);
}

.price-label {
  display: block;
  color: #96742e;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-value {
  display: block;
  margin-top: 10px;
  color: var(--green-900);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.price-card p,
.price-note {
  color: var(--slate-700);
}

.price-card p {
  margin: 14px 0 0;
}

.price-note {
  max-width: 900px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 0.94rem;
}

.documentation-card {
  display: grid;
  gap: 18px;
  align-content: center;
}

.documentation-card .button {
  width: fit-content;
}

.process-card,
.reference-card,
.legal-card {
  padding: 28px;
}

.process-card .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-weight: 850;
}

.reference-card {
  min-height: 220px;
}

.reference-card .meta {
  color: #96742e;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 42px;
  background: var(--green-950);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 58px rgba(33, 59, 18, 0.18);
}

.cta-band > * {
  min-width: 0;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.cta-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  overflow-wrap: break-word;
}

.cta-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-actions {
  justify-content: flex-end;
}

.inline-actions {
  margin-top: 18px;
}

.page-hero {
  background: var(--surface-soft);
  color: var(--green-900);
  padding: 76px 0;
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background-image: linear-gradient(90deg, rgba(242, 247, 234, 0.96), rgba(242, 247, 234, 0.78), rgba(242, 247, 234, 0.64)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--slate-700);
  font-size: 1.18rem;
}

.breadcrumb {
  margin-bottom: 20px;
  color: #96742e;
  font-size: 0.92rem;
  font-weight: 800;
}

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

.contact-panel {
  padding: 32px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-method {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-50);
}

.contact-method span {
  display: block;
  color: var(--slate-500);
  font-size: 0.86rem;
}

.contact-method strong {
  display: block;
  color: var(--green-900);
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.contact-hints {
  margin-top: 24px;
}

.contact-form-card .section-title {
  margin-bottom: 0;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(6, 40, 22, 0.1);
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-700), var(--gold-500));
}

.form-heading {
  margin-bottom: 24px;
}

.form-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #96742e;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-heading p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--slate-700);
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label,
.contact-form .consent {
  color: var(--green-900);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--slate-900);
  font: inherit;
  font-weight: 600;
  line-height: 1.4;
  padding: 13px 14px;
  box-shadow: inset 0 1px 0 rgba(6, 40, 22, 0.03);
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(108, 173, 53, 0.78);
  box-shadow: 0 0 0 3px rgba(226, 200, 126, 0.42);
  outline: 0;
}

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

.consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 224, 220, 0.88);
  border-radius: 4px;
  background: var(--green-50);
  color: var(--slate-700);
  font-size: 0.95rem;
  font-weight: 600;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-800);
}

.consent span {
  display: block;
  min-width: 0;
}

.consent a {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.form-actions .button {
  width: 100%;
  min-height: 50px;
}

.form-note {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.94rem;
}

.form-status {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 4px;
  background: #e9f6ef;
  color: var(--green-900);
  font-weight: 800;
}

.form-status.is-error {
  background: #fff1e8;
  color: #8c3f14;
}

.hp-field {
  display: none !important;
}

.legal-grid {
  grid-template-columns: minmax(0, 1fr);
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
}

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

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 16px;
  }

  .brand {
    min-width: auto;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.88rem;
  }

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

  .pain-item:nth-child(2) {
    border-right: 0;
  }

  .process-grid,
  .reference-grid,
  .price-grid,
  .contact-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 700px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 72px;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0 14px;
  }

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

  .brand strong {
    font-size: 1rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    width: 100%;
    display: grid;
    padding: 8px 0 0;
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
    justify-content: stretch;
    justify-items: start;
    gap: 11px;
  }

  .site-header.is-open .site-nav {
    display: grid;
    justify-content: stretch;
  }

  .site-nav .button {
    width: min(100%, 340px);
  }

  .language-switch {
    justify-content: flex-start;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .hero::before,
  .page-hero::before {
    background-position: 58% center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: 640px;
    padding-top: 64px;
    padding-bottom: 64px;
    align-content: center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
    line-height: 1.04;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .trust-strip {
    position: static;
  }

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

  .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .section {
    padding: 64px 0;
  }

  .pain-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .pain-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
  }

  .pain-item:last-child {
    border-bottom: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .contact-panel {
    padding: 24px;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .hero-content,
  .trust-grid {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    gap: 9px;
  }

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

  .brand > span {
    display: block;
  }

  .brand > span > span {
    display: none;
  }

  .brand strong {
    max-width: 170px;
    font-size: 0.82rem;
    line-height: 1.05;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .button.secondary,
  .button.light,
  .cta-actions .button,
  .inline-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
    overflow-wrap: break-word;
  }

  .form-heading {
    margin-bottom: 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 1rem;
  }

  .page-hero h1 {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
    line-height: 1.08;
    overflow-wrap: normal;
    hyphens: manual;
  }
}

/* Conversion homepage redesign 2026-07 */
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(201, 162, 75, 0.72);
  outline-offset: 3px;
}

.site-nav .button.nav-primary {
  white-space: nowrap;
}

.site-nav .button.nav-whatsapp {
  background: #fff;
  border-color: rgba(65, 108, 32, 0.34);
  color: var(--green-900);
  box-shadow: none;
}

.site-nav .button.nav-whatsapp:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}

.button.ghost {
  background: #fff;
  border-color: rgba(12, 71, 41, 0.18);
  color: var(--green-900);
  box-shadow: none;
}

.button.ghost:hover {
  background: var(--surface-soft);
  color: var(--green-900);
}

.button.light-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
  box-shadow: none;
}

.button.light-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-page {
  background: #fff;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, calc(100vh - 132px), 660px);
  border-bottom: 1px solid rgba(217, 224, 220, 0.9);
  background: var(--surface-soft);
}

.home-hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: clamp(500px, calc(100vh - 190px), 600px);
  margin: 0 auto;
  padding: 58px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.home-hero-copy {
  position: static;
  z-index: 2;
}

.home-hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2.45rem, 3.8vw, 3.65rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.home-hero p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--slate-700);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.55;
}

.home-hero .button.secondary {
  background: transparent;
  border-color: rgba(65, 108, 32, 0.42);
  color: var(--green-900);
  box-shadow: none;
}

.home-hero .button.secondary:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}

.hero-facts {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  margin: 0;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  background: var(--green-950);
  color: #fff;
}

.hero-facts div {
  min-width: 0;
  padding: 20px 28px 19px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
}

.hero-facts div:first-child {
  border-left: 0;
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.home-hero-media {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-100);
  box-shadow: 0 24px 52px rgba(33, 59, 18, 0.18);
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.media-proof {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-grid;
  gap: 2px;
  min-width: 210px;
  padding: 16px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-900);
  box-shadow: 0 16px 48px rgba(6, 40, 22, 0.14);
}

.media-proof strong {
  font-size: 1.35rem;
  line-height: 1;
}

.media-proof span {
  color: var(--slate-700);
  font-weight: 750;
  line-height: 1.25;
}

.hero-scroll {
  display: none;
}

.conversion-grid {
  gap: clamp(36px, 6vw, 74px);
}

.conversion-intro .section-title,
.services-section .section-title,
.process-section .section-title {
  max-width: 820px;
}

.proof-list {
  margin-top: 24px;
}

.editorial-media {
  margin: 0;
}

.featured-services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-services .service-card {
  min-height: 366px;
  box-shadow: 0 18px 46px rgba(33, 59, 18, 0.08);
}

.featured-services .service-card .media {
  min-height: 186px;
}

.featured-services .service-card .media img {
  height: 206px;
}

.proof-rail {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding: 19px 22px;
  border: 1px solid rgba(65, 108, 32, 0.42);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-900);
}

.proof-rail span {
  height: 18px;
  background:
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(65, 108, 32, 0.28) 16px 18px),
    linear-gradient(90deg, rgba(65, 108, 32, 0.14), transparent);
}

.proof-rail strong {
  font-size: 1.12rem;
  line-height: 1.2;
}

.proof-rail a {
  color: var(--green-800);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.conversion-process .process-card {
  position: relative;
  min-height: 216px;
  border-color: rgba(217, 224, 220, 0.94);
  box-shadow: none;
}

.conversion-process .process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 47px;
  right: -21px;
  width: 24px;
  height: 1px;
  background: rgba(65, 108, 32, 0.34);
}

.conversion-cta {
  background: var(--green-950);
}

.conversion-cta .cta-actions {
  min-width: min(100%, 390px);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.conversion-cta .cta-actions .button:first-child {
  grid-column: 1 / -1;
  background: var(--gold-500);
  color: var(--green-950);
}

.conversion-cta .cta-actions .button:first-child:hover {
  background: var(--gold-300);
  color: var(--green-950);
}

@media (max-width: 1120px) {
  .header-inner {
    min-height: 72px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(217, 224, 220, 0.92);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    background: #fff;
    box-shadow: 0 24px 60px rgba(6, 40, 22, 0.16);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a:not(.button),
  .language-switch {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 4px;
  }

  .site-nav a:not(.button):hover {
    background: var(--surface-soft);
  }

  .site-nav .button {
    width: 100%;
    min-height: 46px;
  }

  .language-switch {
    justify-content: flex-start;
  }
}

@media (max-width: 1040px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero-inner,
  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-inner {
    padding: 44px 0 34px;
  }

  .hero-facts {
    position: static;
    margin-top: 26px;
    padding: 0;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .home-hero-media {
    min-height: 320px;
  }

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

  .featured-services,
  .conversion-process,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-process .process-card:not(:last-child)::after {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .home-hero-inner {
    grid-template-columns: minmax(0, 560px) minmax(300px, 1fr);
    min-height: 560px;
    padding: 36px 0 44px;
  }

  .home-hero-media,
  .home-hero-media img {
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
    align-items: center;
    flex-direction: row;
    padding: 10px 0;
  }

  .site-nav {
    position: absolute;
    display: none;
    padding: 12px;
    gap: 6px;
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .nav-toggle {
    display: block;
  }

  .home-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.04;
  }

  .hero-facts,
  .featured-services,
  .conversion-process,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 22px;
  }

  .price-note {
    text-align: left;
  }

  .hero-facts div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-facts div:first-child {
    border-top: 0;
  }

  .proof-rail {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .proof-rail span {
    width: 100%;
  }

  .conversion-cta .cta-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .home-hero {
    background:
      linear-gradient(90deg, rgba(245, 247, 245, 0.98) 0%, rgba(245, 247, 245, 0.91) 54%, rgba(245, 247, 245, 0.72) 100%),
      url("/assets/media/kubota-zwischen-solarflaechen.webp");
    background-size: cover;
    background-position: 58% center;
  }

  .home-hero-inner {
    width: min(100% - 28px, var(--max));
    min-height: auto;
    padding: 34px 0 26px;
  }

  .home-hero p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .home-hero .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .home-hero-media {
    display: none;
  }

  .media-proof {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
    padding: 12px 14px;
  }

  .media-proof strong {
    font-size: 1.12rem;
  }

  .hero-scroll {
    display: none;
  }
}
