/* ============================================================
   greenteam-rudel — Pixelgenauer Nachbau Figma 41:1257
   Olive #254632 · Lime #A1B200 · Greige #E8E9DD · White #fff
   Signika (Headlines) · Mulish (Europa-Ersatz, Body)
   Content-Spalte: 1360px zentriert · Desktop-first
   ============================================================ */

:root {
  --olive: #254632;
  --lime: #A1B200;
  --greige: #E8E9DD;
  --white: #ffffff;
  --light-green-30: #E3E8B2;
  /* highlight box */
  --dark-green-30: #BEC7C1;
  /* borders / muted text */

  --col: 1360px;
  --radius-card: 15px;
  --radius-tag: 5px;
  --radius-btn: 10px;

  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Mulish', system-ui, sans-serif;
  background: var(--greige);
  color: var(--olive);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 20px;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: 'Signika', system-ui, sans-serif;
  font-weight: 700;
}

.wrap {
  width: min(var(--col), 100% - 80px);
  margin-inline: auto;
}

/* ── TYPE SCALE (Figma exact) ── */
.h1 {
  font-size: 60px;
  line-height: 56px;
  font-weight: 700;
  font-family: 'Signika', sans-serif;
  letter-spacing: 0;
}

.h2 {
  font-size: 42px;
  line-height: 40px;
  font-weight: 700;
  font-family: 'Signika', sans-serif;
}

.teaser {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

/* Mulish bold ~ Europa-Bold */
.body {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  padding: 10px 25px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 160ms var(--ease), filter 200ms var(--ease), background-color 200ms var(--ease);
}

.btn:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    filter: brightness(1.02);
  }
}

.btn-primary {
  background: var(--lime);
  color: #fff;
  border-color: var(--lime);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    filter: brightness(0.92);
  }
}

.btn-outline {
  background: transparent;
  color: var(--lime);
  border-color: var(--lime);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background: rgba(161, 178, 0, 0.1);
  }
}

.btn-olive {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}

@media (hover: hover) and (pointer: fine) {
  .btn-olive:hover {
    filter: brightness(1.25);
  }
}

.btn-outline-olive {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline-olive:hover {
    background: rgba(37, 70, 50, 0.07);
  }
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
  }
}

/* ════════════ NAVIGATION ════════════ */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 142px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  width: min(var(--col), 100% - 80px);
  margin-inline: auto;
}

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

.nav-links {
  display: flex;
  gap: 45px;
  margin-left: 131px;
}

.nav-link {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--olive);
  padding: 5px 15px;
  border-radius: var(--radius-btn);
  transition: background 150ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    background: rgba(37, 70, 50, 0.07);
  }
}

.nav-actions {
  display: flex;
  gap: 5px;
  margin-left: auto;
}

.nav-actions .btn {
  padding: 5px 15px;
}

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  background: var(--greige);
  min-height: 1100px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 2034px;
  max-width: none;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 329px;
  max-width: 760px;
  margin-inline: auto;
}

.hero-content .h1 {
  color: var(--olive);
}

.hero-sub {
  margin-top: 22px;
  color: var(--olive);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 27px;
}

/* ════════════ CLOUD DECORATIONS ════════════ */
.cloud {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
  max-width: 100%;
  height: auto;
}

.cloud-1 {
  width: 260px;
  top: 80px;
  left: 2%;
  animation-delay: 0s;
}

.cloud-2 {
  width: 300px;
  top: 200px;
  right: 4%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ════════════ USPs (olive band) ════════════ */
.usps {
  background: var(--olive);
  padding: 64px 0;
}

.usps-inner {
  display: flex;
  gap: 56px;
  justify-content: space-between;
}

.usp {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex: 1 1 0;
  min-width: 0;
}

.usp-icon {
  flex-shrink: 0;
}

.usp-icon img {
  height: 57px;
  width: 57px;
  object-fit: contain;
  object-position: left center;
}

.usp-text {
  color: var(--greige);
}

.usp-title {
  font-family: 'Signika', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 12px;
}

.usp-desc {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

/* ════════════ FIND-JOBS ════════════ */
.findjobs {
  position: relative;
  background: linear-gradient(180deg, var(--olive) 0%, var(--olive) 38%, var(--lime) 38%, var(--lime) 100%);
  padding: 0;
  overflow: hidden;
}

.findjobs-blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.findjobs-blobs img {
  position: absolute;
}

.fj-blob-left {
  left: -120px;
  top: 90px;
  width: 51.04569rem;
  height: 48.47319rem;
}

.fj-blob-right {
  right: -120px;
  top: 90px;
  width: 51.04569rem;
  height: 48.47319rem;
}

.findjobs-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 1088px;
}

.findjobs-photo {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1252px;
  height: 959px;
  max-width: none;
  border-radius: var(--radius-card);
  object-fit: cover;
  z-index: 1;
}

.findjobs-card {
  position: relative;
  z-index: 3;
  background: var(--greige);
  border-radius: var(--radius-card);
  width: 660px;
  padding: 64px 72px 75px;
  justify-self: start;
}

.findjobs-card .h2 {
  color: var(--olive);
  margin-bottom: 24px;
}

.findjobs-card .body {
  color: var(--olive);
  margin-bottom: 28px;
}

.findjobs-list {
  border: 1px solid var(--dark-green-30);
  border-radius: var(--radius-tag);
  padding: 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.findjobs-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  color: var(--olive);
}

.findjobs-list li img,
.findjobs-list li svg {
  width: 17px;
  height: auto;
  flex-shrink: 0;
}

/* ════════════ COUNTER (lime band) ════════════ */
.counter {
  background: var(--lime);
  padding: 80px 0 200px;
  position: relative;
}

.counter-inner {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.counter-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.counter-digits {
  display: flex;
  gap: 6px;
}

.digit-tile {
  background: var(--olive);
  border-radius: var(--radius-tag);
  width: 70px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Signika', sans-serif;
  font-weight: 700;
  font-size: 96px;
  color: #fff;
  line-height: 1;
}

.counter-label {
  font-size: 20px;
  line-height: 24px;
  color: var(--olive);
  font-weight: 700;
}

/* ════════════ PACKAGES ════════════ */
.packages {
  background: var(--greige);
  padding: 0;
  position: relative;
}

.packages:before {
  content: "";
  position: absolute;
  background: url(../img/forest-beige.svg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 58rem;
  left: 0;
  top: -32rem;
  z-index: 0;

  @media (max-width: 767px) {
    height: 18rem;
    top: -12rem;
  }

}

.packages-inner {
  display: grid;
  grid-template-columns: 593px 1fr;
  gap: 80px;
  align-items: center;
  min-height: 787px;
  position: relative;
  z-index: 2;
  padding: 150px 0;
}

@keyframes photoReveal {
  from {
    clip-path: inset(0 0 100% 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

.packages-photo {
  width: 593px;
  height: 787px;
  object-fit: cover;
  border-radius: var(--radius-card);
  animation: photoReveal 600ms var(--ease) forwards;
  animation-delay: 100ms;
}

.packages-text {
  max-width: 680px;
}

.packages-text .h2 {
  color: var(--olive);
  margin-bottom: 16px;
}

.packages-text .body {
  color: var(--olive);
  margin-bottom: 28px;
}

.packages-price {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--dark-green-30);
  border-radius: var(--radius-tag);
  padding: 24px 28px;
  justify-content: space-between;
}

.price-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-amount {
  font-family: 'Signika', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--olive);
}

.price-tag {
  background: var(--olive);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-tag);
}

/* ════════════ FOREST TRANSITION ════════════ */
.forest-band {
  position: relative;
  background: transparent;
  line-height: 0;
  margin-top: -28rem;
  height: 56rem;
  z-index: 1;

  @media (max-width: 992px) {
    height: 28rem;
  }



}

.forest-band img {
  width: 100%;
  height: 37rem;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;

  @media (max-width: 992px) {
    bottom: -12rem;
  }
}

.forest-band img:first-of-type {
  height: 56rem;
  position: absolute;
  z-index: 1;

  @media (max-width: 992px) {
    height: 28rem;
  }



}

.forest-band.forest-band--pre-footer .pre-footer {
  @media (max-width: 992px) {
    height: 28rem;
  }


}

.forest-band.forest-band--pre-footer img:first-of-type {
  height: 56rem;

  @media (max-width: 992px) {
    height: 14rem;
  }

}




/* ════════════ HOW-TO (olive, video) ════════════ */
.howto {
  background: var(--olive);
  padding: 96px 0 120px;
  z-index: 5;
  position: relative;
  top: -3rem;
  margin-bottom: -3rem;
}

.howto-inner {
  position: relative;
  min-height: 712px;
}

.howto-video {
  position: absolute;
  right: 0;
  top: 0;
  width: 894px;
  height: 712px;
  max-width: 60%;
  background: #000;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.howto-video video,
.howto-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.howto-card {
  position: relative;
  z-index: 2;
  top: 90px;
  background: var(--greige);
  border-radius: var(--radius-card);
  width: 680px;
  padding: 106px 176px 106px 103px;
}

.howto-card .h2 {
  color: var(--olive);
  margin-bottom: 16px;
}

.howto-card .body {
  color: var(--olive);
  margin-bottom: 28px;
}

/* ════════════ HOW-IT-WORKS (3 steps) ════════════ */
.steps {
  background: var(--olive);
  padding: 0 0 120px;
}

.steps-head {
  color: var(--greige);
  margin-bottom: 54px;
}

.steps-head .h2 {
  color: var(--greige);
}

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

.step-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px;
}

.step-num {
  font-family: 'Signika', sans-serif;
  font-weight: 700;
  font-size: 128px;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 24px;
  line-height: 30px;
  color: var(--olive);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 18px;
  line-height: 28px;
  color: var(--olive);
}

/* ════════════ KONFIGURATOR (lime, match slider) ════════════ */
.konfig {
  position: relative;
  z-index: 3;
  background: linear-gradient(to bottom, var(--olive) 0%, var(--lime) 35%, var(--lime) 85%, var(--greige) 100%);
  padding: 96px 0;
}

.konfig::before {
  content: "";
  position: absolute;
  top: -80px;
  /* Lässt das Bild oben herausragen */
  bottom: -80px;
  /* Lässt das Bild unten herausragen */
  left: 0;
  right: 0;
  background: url(../img/leafs.png) no-repeat;
  background-size: cover;
  pointer-events: none;
  /* Verhindert, dass das Bild Klicks blockiert */
  z-index: 1;
}

.konfig-inner {
  position: relative;
  z-index: 2;
  /* Stellt sicher, dass der Inhalt über den Blättern liegt */
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.konfig-slider {
  display: flex;
  align-items: center;
  gap: 24px;
}

.slider-arrow {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: var(--olive);
  border: none;
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: filter .16s var(--ease), transform .1s var(--ease);
}

.slider-arrow:hover {
  filter: brightness(1.25);
}

.slider-arrow:active {
  transform: scale(.94);
}

.slider-arrow img {
  width: 23px;
  height: 19px;
}

.slider-arrow[aria-label="Vorheriger Match"] img {
  transform: scaleX(-1);
}


.match-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-card);
  width: 560px;
  max-width: 100%;
  padding: 32px;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.match-card.slide-out-left {
  transform: translateX(-40px);
  opacity: 0;
}

.match-card.slide-out-right {
  transform: translateX(40px);
  opacity: 0;
}

.match-card.slide-in-left {
  transform: translateX(-40px);
  opacity: 0;
  transition: none;
}

.match-card.slide-in-right {
  transform: translateX(40px);
  opacity: 0;
  transition: none;
}

.match-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.match-label {
  font-family: 'Signika', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .08em;
  color: var(--olive);
}

.match-badge {
  background: var(--lime);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 4px 16px;
  border-radius: 7px;
}

.match-person {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.match-photo {
  width: 107px;
  height: 123px;
  border-radius: var(--radius-tag);
  object-fit: cover;
  flex-shrink: 0;
}

.match-name {
  font-family: 'Signika', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--olive);
  line-height: 1.1;
}

.match-sub {
  font-size: 16px;
  color: var(--olive);
  opacity: .7;
  margin: 6px 0 10px;
}

.match-tag {
  display: inline-block;
  background: var(--greige);
  color: var(--olive);
  font-weight: 700;
  font-size: 16px;
  padding: 4px 14px;
  border-radius: var(--radius-tag);
}

.match-rows {
  margin-bottom: 20px;
}

.match-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--greige);
  font-size: 16px;
}

.match-row span:first-child {
  color: var(--olive);
  opacity: .65;
}

.match-row span:last-child {
  color: var(--olive);
  font-weight: 700;
}

.match-reason {
  background: var(--light-green-30);
  border-radius: var(--radius-tag);
  padding: 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--olive);
  margin-bottom: 20px;
}

.match-btns {
  display: flex;
  gap: 12px;
}

.match-btns .btn {
  font-size: 15px;
  padding: 12px 20px;
}

.konfig-text {
  color: #fff;
}

.konfig-text .h2 {
  color: #fff;
  margin-bottom: 24px;
}

.konfig-text .body {
  color: #fff;
}

/* ════════════ QUOTE ════════════ */
.quote {
  background: var(--greige);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.quote-info {
  background: var(--olive);
  border-radius: var(--radius-card);
  padding: 130px 77px;
}

.quote-info .h2 {
  color: #fff;
  margin-bottom: 24px;
}

.quote-info .body {
  color: var(--greige);
  margin-bottom: 28px;
}

.quote-bubble {
  position: relative;
  align-self: start;
  padding: 56px 64px 80px;
}

.quote-bubble-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.quote-bubble-bg svg,
.quote-bubble-bg img {
  width: 100%;
  height: 100%;
}

.quote-bubble-inner {
  position: relative;
  z-index: 1;
}

.quote-mark {
  width: 4.65075rem;
  height: 3.25763rem;
  margin-bottom: 16px;
}

.quote-text {
  font-family: 'Signika', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 28px;
}

.quote-author {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
}

/* ════════════ REVIEWS ════════════ */
.reviews {
  background: var(--greige);
  padding: 0 0 96px;
}

.reviews-head {
  margin-bottom: 51px;
}

.reviews-head .h2 {
  color: var(--olive);
  margin-bottom: 16px;
}

.reviews-head .body {
  color: var(--olive);
  max-width: 520px;
}

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

@keyframes reviewFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 55px 36px 41px;
  animation: reviewFadeIn 300ms var(--ease) forwards;
}

.review-card:nth-child(1) {
  animation-delay: 0ms;
}

.review-card:nth-child(2) {
  animation-delay: 50ms;
}

.review-card:nth-child(3) {
  animation-delay: 100ms;
}

.review-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.review-stars img,
.review-stars svg {
  width: 22px;
  height: 20px;
  flex-shrink: 0;
}

.review-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--olive);
  margin-bottom: 24px;
}

.review-line {
  width: 100%;
  height: 1px;
  background: var(--greige);
  margin-bottom: 20px;
}

.review-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-name {
  font-family: 'Signika', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--olive);
}

.review-role {
  font-size: 14px;
  color: var(--olive);
  opacity: .65;
}

.review-tag {
  font-weight: 700;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: var(--radius-tag);
}

.review-tag.bewerber {
  background: var(--greige);
  color: var(--olive);
}

.review-tag.betrieb {
  background: var(--lime);
  color: #fff;
}

/* ════════════ CALL-TO-ACTION ════════════ */
.cta {
  background: var(--greige);
  padding: 56px 0;
  position: relative;
}

.cta-box {
  position: relative;
  background: var(--olive);
  border-radius: var(--radius-card);
  min-height: 556px;
  display: flex;
  align-items: center;
  z-index: 10;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 0 0 0 104px;
  max-width: 560px;
}

.cta-content .h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta-content .body {
  color: #fff;
  margin-bottom: 28px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
}

.cta-note a {
  color: rgba(255, 255, 255, .8);
  text-decoration: underline;
}

.cta-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  /* Lässt das Bild oben aus der Box herausragen */
  width: 50%;
  z-index: 1;
  object-fit: cover;
  object-position: bottom center;
}

/* ════════════ FOOTER ════════════ */
.footer-wrap {
  position: relative;
  background: var(--olive);
  padding-top: 0;
  margin-top: 13rem;
}

.footer-forest {
  width: 100%;
  display: block;
  line-height: 0;
}

.footer-forest img {
  width: 100%;
  display: block;
}

.faq {
  position: relative;
  z-index: 3;
  background: var(--white);
  border-radius: var(--radius-card);
  width: min(var(--col), 100% - 80px);
  margin: -260px auto 0;
  padding: 86px 88px 78px;
}

.faq .h2 {
  color: var(--olive);
  margin-bottom: 16px;
}

.faq-sub {
  font-size: 20px;
  color: var(--olive);
  margin-bottom: 32px;
}

.faq-item {
  border: 1px solid var(--greige);
  border-radius: var(--radius-tag);
  margin-bottom: 12px;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--olive);
  text-align: left;
}

.faq-icon {
  color: var(--lime);
  font-size: 28px;
  line-height: 1;
  transition: transform .28s var(--ease);
  flex-shrink: 0;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 280ms var(--ease-in-out), opacity 220ms ease, padding 280ms var(--ease-in-out);
  font-size: 18px;
  line-height: 1.6;
  color: var(--olive);
  padding: 0 28px;
}

.faq-a.open {
  max-height: 300px;
  opacity: 1;
  padding: 0 28px 24px;
}

.footer {
  background: var(--olive);
  padding: 80px 0 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo img,
.footer-logo svg {
  height: 40px;
  width: auto;
}

.footer-col-title {
  font-family: 'Signika', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--lime);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 20px;
  color: var(--dark-green-30);
  transition: color .16s var(--ease);
}

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

/* ════════════ SCROLL REVEAL ════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

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

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .findjobs-inner,
  .packages-inner,
  .konfig-inner,
  .quote-inner {
    grid-template-columns: 1fr;
  }

  .findjobs-photo {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: 360px;
    margin-top: 24px;
  }

  .findjobs-card {
    width: 100%;
  }

  .packages-photo {
    width: 100%;
    height: 360px;
  }

  .howto-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 360px;
    margin-bottom: 24px;
  }

  .howto-card {
    width: 100%;
    top: 0;
    padding: 40px;
  }

  .cta-photo {
    position: relative;
    width: 100%;
    height: 320px;
  }

  .cta-content {
    padding: 40px;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 17px;
  }

  .h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .usps-inner {
    flex-wrap: wrap;
    gap: 32px;
  }

  .usp {
    flex: 0 0 calc(50% - 16px);
    width: calc(50% - 16px);
  }

  .counter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .digit-tile {
    width: 52px;
    height: 80px;
    font-size: 64px;
  }

  .counter-label {
    font-size: 16px;
    line-height: 1.3;
  }

  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .faq {
    width: min(var(--col), 100% - 32px);
    padding: 32px 20px;
    margin-top: -120px;
  }

  .faq-sub {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .faq-q {
    padding: 16px 16px;
    font-size: 16px;
  }

  .faq-icon {
    font-size: 22px;
  }

  .footer {
    padding: 48px 0 40px;
  }

  .footer-logo img,
  .footer-logo svg {
    height: 32px;
  }

  .footer-col-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer-col a {
    font-size: 16px;
  }

  .quote-info {
    padding: 48px 32px;
  }

  .quote-text {
    font-size: 26px;
  }
}

@media (max-width: 560px) {
  .h1 {
    font-size: 32px;
  }

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

  .hero-btns .btn {
    width: 100%;
  }

  .usp {
    flex: 0 0 100%;
    width: 100%;
  }



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

}

@media (max-width: 400px) {
  .counter-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ════════════ TABLET PORTRAIT (orientation: portrait) ════════════ */
@media (max-width: 1024px) and (orientation: portrait) {
  body {
    overflow-x: hidden !important;
  }

  html {
    width: 100%;
    overflow-x: hidden !important;
  }

  /* ════════════ HERO TABLET OPTIMIZED ════════════ */
  .hero {
    padding: 60px 24px 40px;
    min-height: 80vh;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content .h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    max-width: 360px;
  }

  .hero-btns .btn {
    width: 100%;
    min-height: 44px;
    font-size: 16px;
  }

  /* ════════════ USPS TABLET OPTIMIZED ════════════ */
  .usps {
    padding: 48px 0;
  }

  .usps-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 24px;
  }

  .usp {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    text-align: center;
  }

  .usp-icon img {
    height: 56px;
    width: 56px;
  }

  .usp-text {
    text-align: center;
  }

  .usp-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .usp-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  /* ════════════ COUNTER TABLET OPTIMIZED ════════════ */
  .counter {
    padding: 40px 0 10rem;
  }

  .counter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 24px;
  }

  .counter-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .digit-tile {
    width: 52px;
    height: 80px;
    font-size: 52px;
  }

  .counter-label {
    font-size: 14px;
    text-align: center;
  }

  /* ════════════ PACKAGES TABLET OPTIMIZED ════════════ */
  .packages {
    padding: 48px 0 10rem;
  }

  .packages-inner {
    gap: 32px;
    padding: 32px 24px;
  }

  .packages-photo {
    height: auto;
    border-radius: 8px;
  }

  .packages-text {
    text-align: center;
  }

  .packages-text .h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .packages-text .body {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ════════════ STEPS TABLET OPTIMIZED ════════════ */
  .steps-head {
    text-align: center;
  }

  .steps-head .h2 {
    font-size: 20px;
  }

  .step-card h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .steps-grid {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .step-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .step-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 28px;
  }

  .step-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  /* ════════════ QUOTE TABLET OPTIMIZED ════════════ */
  .quote-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quote-info {
    padding: 32px 24px;
    text-align: center;
  }

  .quote-info .h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .quote-bubble-inner {
    text-align: center;
  }

  .quote-mark {
    margin: 1rem auto 2rem auto;
  }

  .quote-text {
    font-size: 18px;
    line-height: 1.4;
  }

  /* ════════════ FAQ TABLET OPTIMIZED ════════════ */
  .faq {
    width: calc(100% - 48px);
    margin: -100px auto 0;
    padding: 32px;
  }

  .faq .h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .faq-item {
    border-radius: 8px;
  }

  .faq-q {
    padding: 16px;
    font-size: 16px;
    gap: 12px;
    min-height: 44px;
  }

  .faq-a {
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-a.open {
    padding: 0 16px 12px;
  }

  /* ════════════ REVIEWS TABLET OPTIMIZED ════════════ */
  .reviews {
    padding: 32px 0;
  }

  .reviews-head {
    margin-bottom: 24px;
    padding: 0 24px;
    text-align: center;
  }

  .reviews-head .h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
  }

  .review-card {
    padding: 24px;
    border-radius: 12px;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ════════════ FINDJOBS TABLET OPTIMIZED ════════════ */
  .findjobs {
    animation: none !important;
  }

  .findjobs-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .findjobs-card {
    padding: 24px;
    border-radius: 12px;
    text-align: center;
  }

  .findjobs-card .h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .findjobs-list li {
    font-size: 14px;
    margin: 0 auto;
  }

  .findjobs-photo {
    height: 240px;
    border-radius: 8px;
  }

  /* ════════════ FOOTER TABLET OPTIMIZED ════════════ */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 16px;
  }

  .footer-col a {
    font-size: 14px;
    min-height: 44px;
  }

  /* ════════════ KONFIG TABLET OPTIMIZED ════════════ */
  .konfig-inner {
    padding-bottom: 6rem;
  }

  .konfig-text {
    text-align: center;
  }

  /* ════════════ MATCH CARDS TABLET OPTIMIZED ════════════ */
  .match-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .match-person {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
  }

  .match-row {
    font-size: 14px;
  }

  .match-reason {
    font-size: 14px;
  }

  .match-tag {
    font-size: 12px;
  }

  .match-badge {
    font-size: 12px;
  }

  /* ════════════ GLOBAL RESPONSIVE ════════════ */
  .wrap {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .forest-band {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* ════════════ GLOBAL RESETS ════════════ */
  body {
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }

  html {
    width: 100%;
    overflow-x: hidden !important;
  }

  * {
    box-sizing: border-box;
  }

  /* ════════════ NAVIGATION MOBILE OPTIMIZED ════════════ */
  .nav {
    height: 64px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .nav-inner {
    width: 100% !important;
    gap: 12px;
    margin-inline: 0 !important;
  }

  .nav-logo {
    max-width: 160px;
    flex-shrink: 0;
  }

  .nav-logo svg {
    height: 32px !important;
    width: 100% !important;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    gap: 6px;
    flex-shrink: 0;
  }

  .nav-actions .btn {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 28px;
    white-space: nowrap;
    border-radius: var(--radius-btn);
    transition: transform 120ms var(--ease), background-color 150ms var(--ease);
    box-shadow: none !important;
  }

  .nav-actions .btn:active {
    transform: scale(0.95);
  }

  /* ════════════ HERO MOBILE OPTIMIZED ════════════ */
  .hero {
    padding: 60px 16px 40px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-bg {
    width: 100%;
    max-width: 100vw;
  }

  .hero-content {
    padding: 0;
    max-width: 100%;
    text-align: center;
  }

  .hero-content .h1 {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    word-spacing: -0.1em;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 85%;
    margin-inline: auto;
    opacity: 0.9;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-btns .btn {
    width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.3;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(161, 178, 0, 0.2);
  }

  .hero-btns .btn:active {
    transform: scale(0.97);
    filter: brightness(0.95);
  }

  /* ════════════ TYPOGRAPHY MOBILE ════════════ */
  .h1 {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }

  .h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .teaser {
    font-size: 16px;
    line-height: 1.4;
  }

  .body {
    font-size: 14px;
    line-height: 1.65;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  a {
    cursor: pointer;
  }

  a:active {
    opacity: 0.8;
  }

  .btn {
    text-decoration: none !important;
  }

  input, textarea, select {
    font-size: 16px;
  }

  /* ════════════ BUTTONS MOBILE OPTIMIZED ════════════ */
  .btn {
    min-width: 44px;
    min-height: 44px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.3;
    border-radius: 8px;
    transition: transform 120ms var(--ease), background-color 150ms var(--ease), box-shadow 150ms var(--ease);
  }

  .btn:active {
    transform: scale(0.96);
  }

  .btn-primary {
    box-shadow: 0 2px 8px rgba(161, 178, 0, 0.3);
  }

  .btn-primary:active {
    box-shadow: 0 1px 4px rgba(161, 178, 0, 0.4);
  }

  .btn-olive {
    box-shadow: 0 2px 8px rgba(37, 70, 50, 0.3);
  }

  .btn-olive:active {
    box-shadow: 0 1px 4px rgba(37, 70, 50, 0.4);
  }

  /* ════════════ USPS MOBILE OPTIMIZED ════════════ */
  .usps {
    background: var(--olive);
    padding: 48px 0;
  }

  .usps-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .usp {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    text-align: center;
  }

  .usp-icon {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
  }

  .usp-icon img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    object-position: center;
  }

  .usp-text {
    width: 100%;
    color: var(--greige);
    text-align: center;
  }

  .usp-title {
    font-family: 'Signika', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
    word-break: break-word;
  }

  .usp-desc {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* ════════════ FIND-JOBS MOBILE OPTIMIZED ════════════ */
  .findjobs {
    animation: none !important;
  }

  .findjobs-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
  }

  .findjobs-card {
    padding: 24px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    animation: none !important;
    text-align: center;
  }

  .findjobs-card .h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .findjobs-card .body {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .findjobs-list {
    padding: 16px;
    gap: 12px;
    border-radius: 8px;
  }

  .findjobs-list li {
    font-size: 14px;
    gap: 12px;
    margin: 0 auto;
  }

  .findjobs-list li img,
  .findjobs-list li svg {
    width: 16px;
    height: auto;
  }

  .findjobs-photo {
    height: 240px;
    border-radius: 8px;
    margin-top: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  /* ════════════ COUNTER MOBILE OPTIMIZED ════════════ */
  .counter {
    background: var(--lime);
    padding: 40px 0 10rem;
    width: 100%;
    max-width: 100%;
  }

  .counter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 16px;
    flex-wrap: nowrap;
  }

  .counter-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .counter-digits {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .digit-tile {
    width: 48px;
    height: 72px;
    border-radius: 4px;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--olive);
    color: #fff;
  }

  .counter-label {
    font-size: 13px;
    line-height: 1.4;
    color: var(--olive);
    font-weight: 700;
    text-align: center;
    max-width: 120px;
  }

  /* ════════════ PACKAGES MOBILE OPTIMIZED ════════════ */
  .packages {
    padding: 48px 0 10rem;
    width: 100%;
    max-width: 100%;
  }

  .packages-inner {
    gap: 32px;
    padding: 32px 16px;
    min-height: auto;
  }

  .packages-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .packages-text {
    max-width: 100%;
    text-align: center;
  }

  .packages-text .h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .packages-text .body {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .packages-price {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 12px;
    border-radius: 8px;
  }

  .price-amount {
    font-size: 24px;
  }

  .price-tag {
    font-size: 14px;
    padding: 4px 10px;
  }

  /* ════════════ REVIEWS MOBILE OPTIMIZED ════════════ */
  .reviews {
    padding: 32px 0;
  }

  .reviews-head {
    margin-bottom: 24px;
    padding: 0 16px;
    text-align: center;
  }

  .reviews-head .h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .reviews-head .body {
    font-size: 13px;
    line-height: 1.5;
    max-width: 100%;
  }

  .reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 12px;
  }

  .review-card {
    padding: 24px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(37, 70, 50, 0.08);
    animation: none;
  }

  .review-card:nth-child(1),
  .review-card:nth-child(2),
  .review-card:nth-child(3) {
    animation-delay: 0ms !important;
  }

  .review-stars {
    gap: 4px;
    margin-bottom: 12px;
  }

  .review-stars img,
  .review-stars svg {
    width: 18px;
    height: 16px;
  }

  .review-text {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--olive);
  }

  .review-line {
    margin-bottom: 12px;
  }

  .review-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .review-name {
    font-size: 14px;
    line-height: 1.3;
    color: var(--olive);
  }

  .review-role {
    font-size: 12px;
    color: var(--olive);
    opacity: 0.65;
  }

  .review-tag {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: var(--radius-tag);
    white-space: nowrap;
  }

  /* ════════════ QUOTE MOBILE OPTIMIZED ════════════ */
  .quote-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quote-info {
    padding: 32px 20px;
    border-radius: 12px;
    background: var(--olive);
    text-align: center;
  }

  .quote-info .h2 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #fff;
  }

  .quote-info .body {
    font-size: 13px;
    line-height: 1.5;
    color: var(--greige);
  }

  .quote-bubble {
    padding: 24px 20px;
    align-self: auto;
    border-radius: 12px;
    position: relative;
  }

  .quote-bubble-inner {
    text-align: center;
    margin-bottom: 2rem;
  }

  .quote-mark {
    width: 3rem;
    height: 2rem;
    margin: 1rem auto 2rem auto;
  }

  .quote-text {
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 16px;
    font-family: 'Signika', sans-serif;
    font-weight: 700;
  }

  .quote-author {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
  }

  /* ════════════ FAQ MOBILE OPTIMIZED ════════════ */
  .faq {
    width: calc(100% - 32px);
    margin: -100px auto 0;
    padding: 24px;
    border-radius: 12px;
  }

  .faq .h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--olive);
  }

  .faq-sub {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--olive);
  }

  .faq-item {
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid var(--greige);
  }

  .faq-q {
    padding: 16px;
    font-size: 15px;
    line-height: 1.3;
    gap: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
  }

  .faq-icon {
    font-size: 20px;
    flex-shrink: 0;
    min-width: 24px;
    line-height: 1;
    color: var(--lime);
  }

  .faq-a {
    padding: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--olive);
    max-height: 0;
    overflow: hidden;
  }

  .faq-a.open {
    padding: 0 16px 12px;
    max-height: 500px;
    opacity: 1;
  }

  /* ════════════ FOOTER MOBILE OPTIMIZED ════════════ */
  .footer {
    background: var(--olive);
    padding: 32px 0 24px;
    width: 100%;
    max-width: 100%;
  }

  .footer-logo img,
  .footer-logo svg {
    height: 28px;
    width: auto;
  }

  .footer-col-title {
    font-family: 'Signika', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: var(--lime);
    margin-bottom: 12px;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-col a {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-green-30);
    padding: 8px 0;
    display: flex;
    align-items: center;
    min-height: 44px;
    transition: color 160ms var(--ease);
  }

  .footer-col a:active {
    color: #fff;
    opacity: 0.9;
  }

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

  .footer-logo {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 16px;
  }

  /* ════════════ STEPS MOBILE OPTIMIZED ════════════ */
  .steps-head {
    text-align: center;
  }

  .steps-head .h2 {
    font-size: 18px !important;
    line-height: 1.3;
  }

  .step-card h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .steps-grid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .step-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: flex-start;
  }

  .step-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
  }

  .step-content {
    display: flex;
    flex-direction: column;
  }

  .step-card h3 {
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 8px 0;
  }

  .step-card p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
  }

  .howto-card {
    text-align: center;
  }

  .cta-box {
    min-height: auto;
  }

  .konfig-inner {
    padding-bottom: 6rem;
  }

  .konfig-text {
    text-align: center;
  }

  .forest-band.forest-band--pre-footer .pre-footer {
    height: 10rem;
  }

  .match-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .match-person {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
  }

  .match-row {
    font-size: 14px;
  }

  .match-reason {
    font-size: 14px;
  }

  .match-tag {
    font-size: 12px;
  }

  .match-badge {
    font-size: 12px;
  }

  /* ════════════ GLOBAL RESPONSIVE ════════════ */
  .wrap {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    margin-inline: auto;
  }

  img, svg {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .forest-band {
    width: 100%;
    max-width: 100vw;
  }
}

@media (max-width: 767px) {
  .konfig-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
  }

  .match-card {
    grid-row: 1;
    grid-column: span 2;
    width: 100%;
    padding: 24px 16px;
  }

  .slider-arrow[aria-label="Vorheriger Match"] {
    grid-row: 2;
    grid-column: 1;
    justify-self: end;
  }

  .slider-arrow[aria-label="Nächster Match"] {
    grid-row: 2;
    grid-column: 2;
    justify-self: start;
  }

  .match-person {
    flex-wrap: wrap;
    gap: 12px;
  }

  .match-name {
    font-size: 20px;
  }

  .match-sub {
    font-size: 14px;
    margin: 4px 0 8px;
  }

  .packages-price {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 70, 50, 0.12);
  }
}

@media (max-width: 480px) {
  .match-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
  }

  .match-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .match-btns .btn {
    width: 100%;
    text-align: center;
  }

  .packages-price {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    text-align: center;
  }

  .price-left {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: opacity .2s ease !important;
    transform: none !important;
  }

  * {
    animation-duration: .01ms !important;
  }
}