/* ============================
   i&i Personalmanagement GmbH
   Modern 2026 Design System
   ============================ */

:root {
  --green: #8BC34A;
  --green-dark: #7CB342;
  --green-light: rgba(139, 195, 74, 0.08);
  --green-glow: rgba(139, 195, 74, 0.2);
  --grey: #808080;
  --grey-50: #f8f9fa;
  --grey-100: #f1f3f5;
  --grey-200: #e9ecef;
  --grey-300: #dee2e6;
  --grey-800: #343a40;
  --dark: #111111;
  --dark-card: #1a1a1a;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-secondary: #6c757d;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 4px 24px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-green: 0 8px 32px rgba(139,195,74,0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-green { color: var(--green); }

/* ============================
   HEADER
   ============================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header__logo { z-index: 1001; }
.header__logo-img { height: 62px; width: auto; transition: var(--transition); }

.nav__list { display: flex; align-items: center; gap: 0.15rem; }

.nav__link {
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 100px;
  transition: var(--transition);
  letter-spacing: -0.01em;
}

.header.scrolled .nav__link { color: var(--text-secondary); }
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header.scrolled .nav__link:hover { color: var(--green); background: var(--green-light); }
.nav__link.active { color: var(--white); background: rgba(255,255,255,0.12); }
.header.scrolled .nav__link.active { color: var(--green); background: var(--green-light); }

.nav__link--cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.25rem;
  font-weight: 600;
}
.nav__link--cta:hover { background: var(--green-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.hamburger__line {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.header.scrolled .hamburger__line { background: var(--text); }
.hamburger.active .hamburger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================
   HERO - Modern Glass Design
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,195,74,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,195,74,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139,195,74,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(139,195,74,0.05) 0%, transparent 50%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 20s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(139,195,74,0.07);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 350px;
  height: 350px;
  background: rgba(139,195,74,0.05);
  bottom: -80px;
  left: -80px;
  animation-delay: -7s;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: rgba(139,195,74,0.06);
  top: 40%;
  left: 60%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero__content {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 6rem 0 4rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero 50/50 Split Layout */
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 7rem 0 4rem;
  min-height: calc(100vh - 76px);
}

.hero__left {
  text-align: left;
}

.hero__left .hero__subtitle {
  margin-left: 0;
  margin-right: 0;
}

.hero__left .hero__actions {
  justify-content: flex-start;
}

.hero__left .hero__stats {
  justify-content: flex-start;
}

.hero__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero__img-wrapper {
  position: relative;
  width: 100%;
}

.hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* ---- Google Bewertungssiegel ---- */
.google-badge {
  display: block;
  text-decoration: none;
  transition: var(--transition);
}

.google-badge:hover {
  transform: translateY(-3px);
}

.google-badge__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.google-badge:hover .google-badge__inner {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.google-badge__g {
  flex-shrink: 0;
}

.google-badge__info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.google-badge__stars {
  display: flex;
  gap: 1px;
}

.google-badge__rating {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.google-badge__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  background: rgba(139,195,74,0.1);
  border: 1px solid rgba(139,195,74,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--green), #a8e063);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.hero__stat { text-align: center; }

.hero__stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__stat-plus {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--green);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* Hero reveal animation */
.reveal-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: revealHero 0.8s ease forwards;
}
.reveal-hero:nth-child(1) { animation-delay: 0.1s; }
.reveal-hero:nth-child(2) { animation-delay: 0.25s; }
.reveal-hero:nth-child(3) { animation-delay: 0.4s; }
.reveal-hero:nth-child(4) { animation-delay: 0.55s; }
.reveal-hero:nth-child(5) { animation-delay: 0.7s; }

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

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: -0.01em;
}

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

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

.btn--glass {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--grey-300);
}
.btn--outline-dark:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

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

/* ============================
   MARQUEE
   ============================ */
.marquee {
  background: var(--green);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
}

.marquee__track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================
   SECTIONS
   ============================ */
.section { padding: 7rem 0; }
.section--light { background: var(--grey-50); }
.section--dark { background: var(--dark); color: var(--white); }

.section--green {
  background: linear-gradient(135deg, var(--green), #6da832);
  color: var(--white);
  padding: 4rem 0;
}

.section__header { margin-bottom: 3.5rem; }
.section__header--center { text-align: center; }

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

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

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

.section__desc {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
}

.section__desc--light { color: rgba(255,255,255,0.6); }
.section__header--center .section__desc { margin-left: auto; margin-right: auto; }

/* ============================
   ÜBER UNS
   ============================ */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about__left p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about__lead { font-size: 1.1rem !important; color: var(--text) !important; font-weight: 500; }
.about__cta { margin-top: 2rem; }

.about__right { display: flex; flex-direction: column; gap: 1.25rem; }

.about__card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.about__card.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}

.about__card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.about__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  color: var(--green);
  margin-bottom: 1rem;
}

.about__card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
.about__card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================
   NUMBERS
   ============================ */
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.number-item__value {
  font-family: 'Poppins', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.number-item__suffix {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.number-item__label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ============================
   FACHBEREICHE
   ============================ */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.area-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.area-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  color: var(--green);
  margin-bottom: 1.25rem;
}

.area-card__title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.area-card__desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }

.area-card__arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-100);
  border-radius: 50%;
  color: var(--text-secondary);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: var(--transition);
}

.area-card:hover .area-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--green-light);
  color: var(--green);
}

/* ============================
   SPLIT SECTIONS
   ============================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__text {
  color: var(--text-secondary);
  margin: 1.25rem 0 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

.check-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.check-list__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  position: relative;
}

.check-list__icon::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 7px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Floating cards */
.split__image-stack {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split__floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  animation: floatCard 6s ease-in-out infinite;
}

.split__floating-card--1 { top: 20%; left: 5%; animation-delay: 0s; }
.split__floating-card--2 { top: 45%; right: 0%; animation-delay: -2s; }
.split__floating-card--3 { bottom: 15%; left: 15%; animation-delay: -4s; }
.split__floating-card--4 { top: 15%; right: 5%; animation-delay: -1s; }
.split__floating-card--5 { top: 50%; left: 5%; animation-delay: -3s; }
.split__floating-card--6 { bottom: 10%; right: 10%; animation-delay: -5s; }

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

/* ============================
   TIMELINE
   ============================ */
.timeline {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
}

.timeline__line {
  display: none;
}

.timeline__step {
  flex: 1;
  max-width: 320px;
  text-align: center;
}

.timeline__dot {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: var(--shadow-green);
  position: relative;
}

.timeline__dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--green);
  border-radius: 50%;
  opacity: 0.2;
}

.timeline__card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}

.timeline__card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.timeline__card-icon {
  color: var(--green);
  margin-bottom: 1rem;
}

.timeline__card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.timeline__card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================
   BEWERTUNGEN
   ============================ */
.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.reviews__stars { display: flex; gap: 2px; }

.reviews__rating {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.reviews__count {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-card__name { font-size: 0.9rem; font-weight: 600; }
.review-card__stars { display: flex; gap: 1px; margin-top: 2px; }

.review-card__google {
  position: absolute;
  right: 0;
  top: 0;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
}

.review-card__date {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--grey);
}

.reviews__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================
   KONTAKT
   ============================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.contact__info { display: flex; flex-direction: column; gap: 1.75rem; }

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

.contact__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,195,74,0.12);
  border-radius: var(--radius-sm);
  color: var(--green);
}

.contact__item h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact__item p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.contact__item a { color: var(--green); }
.contact__item a:hover { text-decoration: underline; }

.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
}

.form__group { margin-bottom: 1rem; }

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

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}

.form__group select { color: rgba(255,255,255,0.4); cursor: pointer; }
.form__group select option { background: var(--dark); color: var(--white); }

.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--green);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(139,195,74,0.1);
}

.form__group textarea { resize: vertical; min-height: 110px; }

/* ============================
   MAP
   ============================ */
.map-section {
  width: 100%;
  line-height: 0;
  filter: grayscale(0.5) contrast(1.1);
}

.map-section iframe { width: 100%; display: block; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
  height: 38px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__brand p { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer__links a:hover { color: var(--green); }

.footer__contact p { font-size: 0.85rem; margin-bottom: 0.4rem; line-height: 1.6; }
.footer__contact a { color: var(--green); }
.footer__contact a:hover { text-decoration: underline; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,0.3); }
.footer__legal a:hover { color: var(--green); }

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.areas__grid .area-card:nth-child(1) { transition-delay: 0s; }
.areas__grid .area-card:nth-child(2) { transition-delay: 0.06s; }
.areas__grid .area-card:nth-child(3) { transition-delay: 0.12s; }
.areas__grid .area-card:nth-child(4) { transition-delay: 0.18s; }
.areas__grid .area-card:nth-child(5) { transition-delay: 0.24s; }
.areas__grid .area-card:nth-child(6) { transition-delay: 0.30s; }

.reviews__grid .review-card:nth-child(1) { transition-delay: 0s; }
.reviews__grid .review-card:nth-child(2) { transition-delay: 0.1s; }
.reviews__grid .review-card:nth-child(3) { transition-delay: 0.2s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-hero { opacity: 1; transform: none; animation: none; transition: none; }
  .hero__orb { animation: none; }
  .hero__scroll-wheel { animation: none; }
  .hero__badge-dot { animation: none; }
  .marquee__track { animation: none; }
  .split__floating-card { animation: none; }
}

/* ============================
   FAQ
   ============================ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq__question {
  padding: 1.25rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: var(--transition);
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: var(--transition);
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__question:hover {
  color: var(--green);
}

.faq__answer {
  padding: 0 1.5rem 1.25rem;
}

.faq__answer p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================
   MAP CONSENT
   ============================ */
.map-consent {
  width: 100%;
  height: 400px;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-consent__inner {
  text-align: center;
  padding: 2rem;
}

.map-consent__inner p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.map-consent__inner p strong {
  color: var(--text);
  font-size: 1.1rem;
}

.map-consent__inner a {
  color: var(--green);
}

.map-consent__inner .btn {
  margin-top: 1rem;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: 0;
  filter: grayscale(0.5) contrast(1.1);
}

/* ============================
   LEGAL PAGES
   ============================ */
.legal-page { padding: 120px 0 5rem; }
.legal-page h1 { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.25rem; font-weight: 600; margin: 2rem 0 0.75rem; color: var(--text); }
.legal-page p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 0.925rem; line-height: 1.8; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page ul li { color: var(--text-secondary); font-size: 0.925rem; line-height: 1.8; list-style: disc; }
.legal-page a { color: var(--green); }
.legal-page a:hover { text-decoration: underline; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .about__layout { grid-template-columns: 1fr; gap: 3rem; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split--reverse { direction: ltr; }
  .split__visual { order: -1; }
  .split__image-stack { height: 280px; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid .review-card:nth-child(3) { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }

  /* Hero Split responsive */
  .hero__split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 7rem 0 3rem;
    min-height: auto;
  }
  .hero__left { text-align: center; }
  .hero__left .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__left .hero__actions { justify-content: center; }
  .hero__left .hero__stats { justify-content: center; gap: 1.5rem; }
  .hero__right { order: -1; }
  .hero__img-wrapper { max-width: 300px; margin: 0 auto; }
  .google-badge__inner { padding: 0.6rem 1rem; }
  .google-badge__label { display: none; }

  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 100px 1.5rem 2rem;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 0.25rem; }
  .nav__link {
    display: block;
    padding: 0.85rem 1rem;
    color: var(--text) !important;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .nav__link:hover, .nav__link.active {
    background: var(--green-light) !important;
    color: var(--green) !important;
  }
  .nav__link--cta { text-align: center; margin-top: 0.5rem; }

  .nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
  }
  .nav.open::before { opacity: 1; pointer-events: all; }

  .hero__stats { gap: 1.5rem; }
  .hero__stat-number { font-size: 1.5rem; }
  .hero__stat-plus { font-size: 1.15rem; }

  .areas__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__grid .review-card:nth-child(3) { max-width: 100%; }

  .timeline { flex-direction: column; align-items: center; gap: 1.5rem; }
  .timeline__step { max-width: 100%; }

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

  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; }
  .hero__stats { flex-wrap: wrap; gap: 1rem; }
  .hero__stat-divider { display: none; }
  .footer__legal { flex-direction: column; align-items: center; gap: 0.5rem; }
}
