/* ============================================
   Holztrans Mitteregger – Stylesheet
   Farbpalette: Naturgrün (Logo)
   ============================================ */

:root {
  --green-light: #7DCE82;
  --green-mid: #289628;
  --green-dark: #1E7A22;
  --green-deeper: #0F4212;
  --earth: #5C6B3C;
  --bark: #3A3228;
  --black: #0A1F0C;
  --white: #ffffff;
  --gray-50: #f6faf6;
  --gray-100: #edf3ed;
  --gray-200: #d8e4d8;
  --gray-400: #7a8f7a;
  --gray-600: #4a5c4a;
  --gray-800: #1e2e1e;

  --gradient-brand: linear-gradient(180deg, var(--green-light) 0%, var(--green-mid) 100%);
  --gradient-hero: linear-gradient(120deg, rgba(12, 16, 14, 0.52) 0%, rgba(8, 10, 9, 0.28) 48%, rgba(6, 8, 7, 0.62) 100%);
  --gradient-cta: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-light) 100%);

  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 2px 8px rgba(15, 66, 18, 0.08);
  --shadow-md: 0 8px 30px rgba(30, 122, 34, 0.18);
  --shadow-lg: 0 20px 60px rgba(10, 31, 12, 0.28);

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

html.fonts-loaded {
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Montserrat', 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

body.no-scroll,
body.cookie-open {
  overflow: hidden;
}

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

a {
  color: var(--green-mid);
  text-decoration: none;
  transition: color var(--transition);
}

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

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--gray-800);
  border-color: var(--gray-200);
}

.btn--secondary:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  color: var(--gray-800);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn--white:hover {
  background: var(--gray-100);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ---- Cookie Banner (Popup) ---- */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.cookie-banner--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-banner__inner {
  width: min(520px, 100%);
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--green-dark);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner--visible .cookie-banner__inner {
  transform: scale(1) translateY(0);
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.cookie-banner__text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.cookie-banner__text a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: var(--green-mid);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-banner__actions .btn {
  flex: 1;
  min-width: 140px;
}

/* ---- Legal Pages ---- */
.legal-page {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
  min-height: 70vh;
}

.legal-page__header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gray-200);
}

.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.legal-page__updated {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-style: italic;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 2rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.legal-content th,
.legal-content td {
  border: 1px solid var(--gray-200);
  padding: 0.75rem 1rem;
  text-align: left;
}

.legal-content th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-800);
}

.legal-content details {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.legal-content summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  background: var(--gray-50);
}

.legal-content details[open] summary {
  border-bottom: 1px solid var(--gray-200);
}

.legal-content details > *:not(summary) {
  padding: 0 1.25rem;
}

.legal-content details > p:first-of-type {
  padding-top: 1rem;
}

.header--legal {
  background: rgba(10, 31, 12, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header--legal .nav__link {
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(10, 31, 12, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.header__logo img {
  height: 52px;
  width: auto;
  transition: transform var(--transition);
  filter: drop-shadow(0 1px 4px rgba(10, 31, 12, 0.35));
}

.header__logo:hover img {
  transform: scale(1.03);
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  margin: 0 -8px 0 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 1002;
  position: relative;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

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

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero__slide--active {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1.05) saturate(0.92);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 7, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

.hero__speed-lines {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) skewX(-12deg);
  display: flex;
  gap: 12px;
  opacity: 0.18;
  pointer-events: none;
}

.hero__speed-lines span {
  display: block;
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.55));
  border-radius: 3px;
  animation: speedLine 2s ease-in-out infinite;
}

.hero__speed-lines span:nth-child(2) {
  width: 120px;
  animation-delay: 0.3s;
}

.hero__speed-lines span:nth-child(3) {
  width: 60px;
  animation-delay: 0.6s;
}

@keyframes speedLine {
  0%, 100% { opacity: 0.3; transform: translateX(0); }
  50% { opacity: 0.8; transform: translateX(-20px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  max-width: 750px;
}

.hero__tagline {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero__title-gradient {
  background: linear-gradient(180deg, #ffffff 0%, #dce3dc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  max-width: 580px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.hero__stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.35rem;
}

/* ---- Sections ---- */
.section {
  padding: 6rem 0;
}

.section__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-800);
  margin-bottom: 1.25rem;
}

.section__text {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.section__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section__header--light .section__label {
  color: var(--green-light);
}

.section__header--light .section__title {
  color: var(--white);
}

.section__subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 580px;
  margin-inline: auto;
}

.section__subtitle--light {
  color: rgba(255, 255, 255, 0.75);
}

.section__header .section__subtitle {
  margin-top: -0.5rem;
}

/* ---- Reveal Animations (content always visible; JS adds motion only) ---- */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal--animate {
    transform: translateY(24px);
    transition: transform 0.7s ease;
  }

  .reveal--animate.visible {
    transform: translateY(0);
  }
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--delay-6 { transition-delay: 0.6s; }
.reveal--delay-7 { transition-delay: 0.7s; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--green-dark);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-bar__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 206, 114, 0.15);
  border-radius: 10px;
  color: var(--green-light);
}

.trust-bar__icon svg {
  width: 22px;
  height: 22px;
}

.trust-bar__item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.trust-bar__item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ---- About ---- */
.about {
  background: var(--gray-50);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image-frame--main {
  grid-column: 1 / -1;
}

.about__image-frame--secondary {
  margin-top: -3rem;
  margin-left: 2rem;
  z-index: 1;
  border: 4px solid var(--gray-50);
}

.about__image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__image-frame:hover img {
  transform: scale(1.05);
}

.about__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transform: skewX(-3deg);
  z-index: 2;
}

.about__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--green-light);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.about__values {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about__values li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 500;
}

.about__values svg {
  width: 18px;
  height: 18px;
  color: var(--green-mid);
  flex-shrink: 0;
}

.about__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.about__fact strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 0.15rem;
}

.about__fact span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-800);
}

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

.about__fact a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* ---- Audience ---- */
.audience {
  background: var(--white);
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.audience__card {
  padding: 1.75rem 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.audience__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-mid);
}

.audience__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 122, 34, 0.08);
  border-radius: 12px;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.audience__icon svg {
  width: 24px;
  height: 24px;
}

.audience__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.audience__card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---- Testimonials ---- */
.testimonials {
  background: var(--gray-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  margin: 0;
  position: relative;
  transition: all var(--transition);
}

.testimonial::before {
  content: '“';
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-size: 3rem;
  line-height: 1;
  color: var(--green-light);
  opacity: 0.4;
  font-family: Georgia, serif;
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial footer strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.testimonial footer span {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ---- Services (Blocks) ---- */
.services {
  background: var(--white);
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-block--reverse {
  direction: rtl;
}

.service-block--reverse > * {
  direction: ltr;
}

.service-block__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-block__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-block__image:hover img {
  transform: scale(1.04);
}

.service-block__tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
}

.service-block__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.service-block__intro {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.service-block__features {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-block__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--gray-600);
}

.service-block__features li::before {
  content: '→';
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Process ---- */
.process {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(30, 122, 34, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  counter-reset: none;
  list-style: none;
}

.process__step {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.process__step:hover {
  background: rgba(30, 122, 34, 0.25);
  border-color: rgba(107, 206, 114, 0.3);
  transform: translateY(-4px);
}

.process__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.process__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process__body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ---- Mission Timeline ---- */
.mission {
  background: var(--white);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-light) 0%, var(--green-dark) 100%);
  border-radius: 3px;
}

.timeline__item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -3rem;
  top: 1.25rem;
  width: 34px;
  height: 34px;
  background: var(--green-dark);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline__marker span {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--white);
}

.timeline__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.timeline__card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateX(6px);
}

.timeline__card--highlight {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-color: transparent;
}

.timeline__card--highlight .timeline__label {
  color: var(--green-light);
}

.timeline__card--highlight h3,
.timeline__card--highlight p {
  color: var(--white);
}

.timeline__card--highlight p {
  opacity: 0.9;
}

.timeline__card-image img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

.timeline__card-body {
  padding: 1.5rem 1.75rem;
}

.timeline__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.4rem;
}

.timeline__card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.6rem;
}

.timeline__card-body p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

.timeline__card--highlight .timeline__card-body {
  padding: 2rem 1.75rem;
}

.timeline__card--highlight .btn {
  margin-top: 1.25rem;
}

/* ---- Fleet Teaser ---- */
.fleet-teaser {
  background: var(--gray-50);
}

.fleet-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fleet-teaser__stats {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0 2rem;
}

.fleet-teaser__stats li {
  text-align: center;
}

.fleet-teaser__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.fleet-teaser__stats span {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
  display: block;
}

.fleet-teaser__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.fleet-teaser__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.fleet-teaser__image--main {
  grid-column: 1 / -1;
}

.fleet-teaser__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-teaser__image--small img {
  aspect-ratio: 4/3;
}

.fleet-teaser__image:hover img {
  transform: scale(1.05);
}

/* ---- Gallery ---- */
.gallery {
  background: var(--black);
}

.gallery .section__label {
  color: var(--green-light);
}

.gallery .section__title {
  color: var(--white);
}

.gallery .section__subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---- Fleet (Fuhrpark page) ---- */
.fleet {
  background: var(--gray-50);
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fleet__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.fleet__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.fleet__card-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.fleet__card-body {
  padding: 1.5rem;
}

.fleet__card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.fleet__card-body > p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.fleet__card-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fleet__card-body li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-left: 1rem;
  position: relative;
}

.fleet__card-body li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}

/* Fuhrpark page */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-height);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 66, 18, 0.9) 0%, rgba(10, 31, 12, 0.7) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
  max-width: 700px;
}

.page-hero__content .section__label {
  color: var(--green-light);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.fuhrpark-intro {
  background: var(--gray-50);
}

.fuhrpark-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.fuhrpark-vehicles {
  background: var(--white);
}

.vehicle-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--gray-200);
}

.vehicle-detail:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.vehicle-detail--reverse {
  direction: rtl;
}

.vehicle-detail--reverse > * {
  direction: ltr;
}

.vehicle-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.vehicle-detail__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.vehicle-detail__tag {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.vehicle-detail__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.vehicle-detail__intro {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.vehicle-detail__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.vehicle-detail__spec {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.vehicle-detail__spec strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 0.15rem;
}

.vehicle-detail__spec span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
}

.fuhrpark-safety {
  background: var(--black);
}

.fuhrpark-safety .section__title {
  color: var(--white);
}

.fuhrpark-safety__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.safety-card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.safety-card:hover {
  background: rgba(30, 122, 34, 0.3);
  border-color: rgba(107, 206, 114, 0.3);
}

.safety-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 206, 114, 0.15);
  border-radius: 12px;
  color: var(--green-light);
  margin-bottom: 1rem;
}

.safety-card__icon svg {
  width: 24px;
  height: 24px;
}

.safety-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.safety-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.nav__link--active {
  color: var(--white) !important;
}

.nav__link--active::after {
  width: 100% !important;
}

.header--subpage {
  background: rgba(10, 31, 12, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ---- Region ---- */
.region {
  background: var(--white);
}

.region__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.region__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.region__tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: all var(--transition);
}

.region__tag:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.region__contact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--green-mid);
}

.region__contact svg {
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.region__contact strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 0.15rem;
}

.region__contact span {
  font-size: 0.95rem;
  color: var(--gray-800);
  font-weight: 500;
}

.region__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.region__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.region__image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---- FAQ ---- */
.faq {
  background: var(--gray-50);
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq__item[open] {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-mid);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary:hover {
  color: var(--green-mid);
}

.faq__item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq__item p a {
  color: var(--green-dark);
  font-weight: 600;
}

/* ---- Legacy service cards (unused) ---- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  transition: transform var(--transition), color var(--transition);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
  color: var(--green-mid);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-800);
}

.service-card__text {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}

.service-card__link:hover {
  gap: 0.65rem;
  color: var(--green-mid);
}

/* ---- Advantages ---- */
.advantages {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.advantages::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 206, 114, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.advantage {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.advantage:hover {
  background: rgba(30, 122, 34, 0.3);
  border-color: rgba(107, 206, 114, 0.3);
  transform: translateY(-4px);
}

.advantage__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.advantage__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.advantage__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 5rem 0;
  background: var(--gradient-cta);
  position: relative;
  overflow: hidden;
}

.cta-banner__lines {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) skewX(-12deg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0.2;
}

.cta-banner__lines span {
  display: block;
  height: 5px;
  background: var(--white);
  border-radius: 3px;
}

.cta-banner__lines span:first-child { width: 100px; }
.cta-banner__lines span:last-child { width: 160px; }

.cta-banner__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---- Contact ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact__details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__details li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__details svg {
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__details strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}

.contact__details a {
  color: var(--gray-800);
  font-weight: 500;
}

.contact__details a:hover {
  color: var(--green-mid);
}

.contact__form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--gray-800);
}

.contact__form-sub {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.contact__map {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label,
.form-group legend {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(26, 83, 161, 0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
}

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

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-dark);
  cursor: pointer;
}

fieldset.form-group {
  border: none;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.form-error {
  margin-top: 1rem;
  padding: 1rem;
  background: #fef2f2;
  color: #991b1b;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.form-error a {
  color: inherit;
  text-decoration: underline;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact__form button[disabled] {
  opacity: 0.75;
  cursor: wait;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand img {
  margin-bottom: 1rem;
  height: 52px;
  width: auto;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer__links a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer__contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer__contact a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.footer__contact a:hover {
  color: var(--green-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer__bottom p {
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .trust-bar__list {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .fleet-teaser__grid,
  .fuhrpark-intro__grid,
  .vehicle-detail,
  .vehicle-detail--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

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

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

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

  .service-block,
  .service-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

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

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .header {
    background: rgba(10, 31, 12, 0.88);
    backdrop-filter: blur(10px);
  }

  .header.scrolled {
    background: rgba(10, 31, 12, 0.96);
  }

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner__inner {
    padding: 1.5rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 7, 0.55);
    z-index: 1000;
    touch-action: manipulation;
  }

  .nav-backdrop.is-visible {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 31, 12, 0.98);
    backdrop-filter: blur(16px);
    padding: calc(var(--header-height) + 2rem) 2rem 2rem;
    transition: transform var(--transition);
    transform: translateX(100%);
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header__cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .hero__stat-number {
    font-size: 2rem;
  }

  .about__grid,
  .contact__grid,
  .region__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .about__image-frame--secondary {
    margin-top: 0;
    margin-left: 0;
  }

  .trust-bar__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

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

  .fleet-teaser__stats {
    gap: 1rem;
  }

  .fleet-teaser__gallery {
    grid-template-columns: 1fr;
  }

  .fleet-teaser__image--main {
    grid-column: 1;
  }

  .timeline {
    padding-left: 2.5rem;
  }

  .timeline__marker {
    left: -2.5rem;
    width: 28px;
    height: 28px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .fuhrpark-safety__grid {
    grid-template-columns: 1fr;
  }

  .vehicle-detail__specs {
    grid-template-columns: 1fr;
  }

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

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

  .services__grid,
  .advantages__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__speed-lines,
  .cta-banner__lines {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

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

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 4rem 0;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .contact__form {
    padding: 1.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
