/* =========================================================
   Basic Taubenabwehr - Modern Website Styles
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6fb944;
  --primary-dark: #4c8f2e;
  --primary-soft: #eaf5e4;
  --dark: #1f2622;
  --text: #4a514d;
  --muted: #f3f6f2;
  --white: #ffffff;
  --border: #edf0ea;
  --shadow: 0 18px 45px rgba(24, 38, 29, 0.14);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.09);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Header */
.header-top {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
  font-size: 14px;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.header-top a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo img {
  height: 54px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 235px;
  list-style: none;
  background: var(--white);
  padding: 12px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  text-transform: none;
  border-radius: 10px;
}

.dropdown-menu a:hover {
  background: var(--muted);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 8px;
  transition: 0.25s ease;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 15px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.btn-primary.dark {
  background: var(--white);
  color: var(--dark);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-outline {
  background: var(--white);
  color: var(--primary-dark);
  border: 1px solid #d7e7cf;
}

.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* Hero */
.hero {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/hero.jpg') center / cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 40%, rgba(111, 185, 68, 0.28), transparent 32%),
    linear-gradient(105deg, rgba(12, 19, 14, 0.84), rgba(17, 48, 27, 0.46), rgba(111, 185, 68, 0.08));
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  background: rgba(111, 185, 68, 0.24);
  filter: blur(2px);
  animation: floatShape 7s ease-in-out infinite alternate;
}

.hero-shape-one {
  width: 260px;
  height: 260px;
  right: 6%;
  top: 18%;
}

.hero-shape-two {
  width: 130px;
  height: 130px;
  right: 25%;
  bottom: 14%;
  animation-delay: 1.4s;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.hero-content {
  max-width: 730px;
  background: linear-gradient(135deg, rgba(111, 185, 68, 0.97), rgba(76, 143, 46, 0.92));
  padding: 56px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 12px 0 20px;
  text-transform: uppercase;
}

.hero-content p,
.page-hero p,
.detail-hero p {
  font-size: 18px;
  max-width: 760px;
}

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

.dark-actions {
  margin-top: 26px;
}

.trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-badges span {
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero-side {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-side-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.hero-side-top span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 900;
  color: #dff6d2;
}

.hero-side-top strong {
  font-size: 28px;
  line-height: 1;
}

.mini-process {
  display: grid;
  gap: 15px;
}

.mini-process div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.mini-process span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
}

.mini-process p {
  font-weight: 700;
}

.side-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

/* Sections */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 10px;
}

.eyebrow.light {
  color: #dff6d2;
}

.section-padding {
  padding: 92px 0;
}

.muted {
  background: var(--muted);
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.section-heading h2,
.split-layout h2,
.contact h2,
.home-intro-grid h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.section-heading p,
.home-intro-grid p {
  font-size: 18px;
  margin-top: 14px;
}

/* Stats */
.stats-band {
  margin-top: -52px;
  position: relative;
  z-index: 4;
}

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

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
  border: 1px solid #e8eee5;
}

.stat-card strong {
  display: block;
  color: var(--primary-dark);
  font-size: 34px;
  line-height: 1;
}

.stat-card span {
  font-weight: 800;
  color: var(--dark);
  font-size: 14px;
}

/* Home impact */
.impact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(111, 185, 68, 0.12), transparent 34%),
    var(--white);
}

.home-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.impact-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.impact-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.impact-card h3 {
  color: var(--dark);
  font-size: 22px;
  margin-bottom: 8px;
}

/* Systems */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.system-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
  border: 1px solid var(--border);
}

.system-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
}

.system-media {
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #dfe8dc, #edf5ea);
}

.system-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.system-card:hover img {
  transform: scale(1.08);
}

.system-body {
  padding: 22px;
}

.system-body span {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 900;
}

.system-body h3 {
  color: var(--dark);
  font-size: 21px;
  margin: 4px 0 8px;
}

.system-body strong {
  color: var(--primary-dark);
}

/* Split panels */
.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.info-panel,
.price-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  border: 1px solid var(--border);
}

.info-panel h3,
.price-box h3 {
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(111, 185, 68, 0.11);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card h3 {
  color: var(--dark);
  font-size: 23px;
  margin-bottom: 8px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.gallery-item {
  position: relative;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  background: #dfe8dc;
  height: 240px;
}

.gallery-grid.small .gallery-item {
  height: 210px;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(31, 38, 34, 0.78);
  color: var(--white);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 800;
}

/* CTA */
.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-box h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

/* Page heroes */
.page-hero,
.detail-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(31, 38, 34, 0.94), rgba(76, 143, 46, 0.86)),
    url('img/hero.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 105px 0;
}

.page-hero h1,
.detail-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

/* Detail pages */
.detail-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: center;
}

.system-slider {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  color: var(--dark);
}

.slides {
  height: 420px;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.slide.active {
  opacity: 1;
}

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

.slider-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px;
  background: var(--white);
}

.thumb {
  border: 3px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #eeeeee;
  height: 72px;
}

.thumb.active {
  border-color: var(--primary);
}

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

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.benefit-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 16px;
}

.benefit-card h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.pill-list {
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill-list li {
  background: var(--white);
  border: 1px solid #dde8d7;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--dark);
}

.price-box span {
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.price-box p {
  margin: 12px 0 20px;
}

/* Areas */
.area-grid.visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.area-card img {
  height: 165px;
  width: 100%;
  object-fit: cover;
  background: #dfe8dc;
}

.area-card div {
  padding: 22px;
}

.area-card h3 {
  color: var(--dark);
  font-size: 21px;
  margin-bottom: 8px;
}

/* Comparison table */
.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 18px;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--dark);
  color: var(--white);
}

.comparison-table a {
  color: var(--primary-dark);
  font-weight: 900;
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: start;
}

.contact-form,
.contact-info {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  border: 1px solid var(--border);
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid #dbe5d8;
  border-radius: 14px;
  padding: 13px 15px;
  font: inherit;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid rgba(111, 185, 68, 0.25);
  border-color: var(--primary);
}

.form-note {
  font-size: 13px;
  color: #66706a;
  margin-bottom: 16px;
}

.info-item {
  margin: 20px 0;
}

.info-item h3 {
  color: var(--dark);
}

.info-item a {
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration: none;
}

.map-placeholder {
  margin-top: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #dfe8dc, #f7faf5);
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  color: var(--dark);
  border: 1px dashed #b8c9b1;
}

/* Sticky CTA */
.sticky-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  gap: 10px;
}

.sticky-actions a {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: 13px 18px;
  box-shadow: 0 14px 30px rgba(76, 143, 46, 0.35);
}

.sticky-actions a:first-child {
  background: var(--dark);
}

/* Footer */
footer {
  background: var(--dark);
  color: #dfe8dc;
  padding: 48px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-grid strong {
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer-grid a {
  color: #dff6d2;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 14px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  max-width: 92vw;
  border-radius: 18px;
}

.lightbox button {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes floatShape {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-22px) scale(1.04); }
}

/* Responsive */
@media (max-width: 1100px) {
  .home-hero-grid,
  .home-intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    max-width: 620px;
  }

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

  .stats-grid,
  .benefits-grid,
  .area-grid.visual {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid,
  .split-layout,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .header-top-inner {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: var(--muted);
    margin-top: 8px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding: 34px;
  }

  .hero-side {
    display: none;
  }

  .stats-band {
    margin-top: 0;
    padding: 22px 0;
    background: var(--muted);
  }

  .stats-grid,
  .systems-grid,
  .gallery-grid,
  .gallery-grid.small,
  .benefits-grid,
  .area-grid.visual,
  .footer-grid,
  .steps,
  .impact-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .sticky-actions a {
    flex: 1;
    text-align: center;
  }

  .slides {
    height: 320px;
  }

  .section-padding {
    padding: 66px 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: 38px;
  }

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

  .btn-primary,
  .btn-secondary,
  .btn-ghost,
  .btn-outline {
    width: 100%;
  }

  .system-media {
    height: 190px;
  }
}
.area-grid.clean-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.area-grid.clean-cards .area-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 26px;
  min-height: 280px;
  box-shadow: 0 18px 45px rgba(20, 32, 22, 0.08);
  border: 1px solid rgba(111, 185, 68, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.area-grid.clean-cards .area-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  background: rgba(111, 185, 68, 0.09);
  border-radius: 50%;
}

.area-grid.clean-cards .area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(20, 32, 22, 0.14);
  border-color: rgba(111, 185, 68, 0.35);
}

.area-grid.clean-cards .area-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  font-size: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111, 185, 68, 0.18), rgba(111, 185, 68, 0.06));
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.area-grid.clean-cards .area-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark-gray);
  position: relative;
  z-index: 1;
}

.area-grid.clean-cards .area-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #5f665f;
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .area-grid.clean-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .area-grid.clean-cards {
    grid-template-columns: 1fr;
  }

  .area-grid.clean-cards .area-card {
    min-height: auto;
  }
}

/* Hero Center + Mobile Fix */
.home-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.hero-content {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-actions,
.trust-badges {
  justify-content: center;
}

.hero-side {
  max-width: 820px;
  width: 100%;
}

@media (min-width: 1024px) {
  .home-hero-grid {
    max-width: 980px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 90px 0 56px;
  }

  .home-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }

  .hero-content {
    padding: 34px 22px;
    border-radius: 24px;
    max-width: 100%;
    width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(31px, 11vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-content p,
  .page-hero p,
  .detail-hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .hero-side {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-side-top {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero-content {
    padding: 28px 16px;
  }

  .hero-content h1 {
    font-size: 30px;
    letter-spacing: -0.025em;
  }
}
.language-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gtranslate_wrapper select,
.gt_selector {
  border: 1px solid rgba(111, 185, 68, 0.35) !important;
  background: #ffffff !important;
  color: var(--dark-gray) !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  padding: 9px 14px !important;
  cursor: pointer !important;
  outline: none !important;
  font-family: inherit !important;
  font-size: 13px !important;
  transition: 0.25s ease !important;
}

.gtranslate_wrapper select:hover,
.gtranslate_wrapper select:focus,
.gt_selector:hover,
.gt_selector:focus {
  border-color: var(--primary-green) !important;
  box-shadow: 0 8px 22px rgba(111, 185, 68, 0.16) !important;
}

@media (max-width: 768px) {
  .language-item {
    width: 100%;
    margin-top: 8px;
  }

  .gtranslate_wrapper,
  .gtranslate_wrapper select,
  .gt_selector {
    width: 100% !important;
    max-width: 220px !important;
    text-align: center !important;
  }
}

.language-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gtranslate_wrapper a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(111, 185, 68, 0.08);
  border: 1px solid rgba(111, 185, 68, 0.18);
  transition: 0.25s ease;
  overflow: hidden;
}

.gtranslate_wrapper a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(111, 185, 68, 0.18);
  border-color: rgba(111, 185, 68, 0.4);
}

.gtranslate_wrapper img {
  border-radius: 50%;
}

@media (max-width: 768px) {
  .language-item {
    width: 100%;
    margin-top: 8px;
  }

  .gtranslate_wrapper {
    justify-content: center;
    width: 100%;
  }
}