:root {
  --green: #6CB96D;
  --green-light: #61CE70;
  --green-dark: #5AA85B;
  --title: #4F687E;
  --text: #767676;
  --text-dark: #333;
  --text-muted: #54595F;
  --bg: #FFFFFF;
  --bg-light: #F0F2F4;
  --bg-hero: #F1F2F6;
  --font-heading: 'Montserrat Alternates', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--bg);
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: all 0.4s;
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img { height: 36px; width: auto; }
.header-nav { display: flex; gap: 4px; }
.header-nav a {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.header-nav a:hover, .header-nav a.active {
  color: var(--green);
  background: rgba(107,185,109,0.08);
}
.header-cta {
  padding: 10px 24px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.header-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(107,185,109,0.4);
}
.mobile-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: 100%; height: 100vh;
  background: #fff; z-index: 200;
  padding: 80px 32px 32px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex; flex-direction: column;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; font-size: 28px;
  cursor: pointer; color: var(--text-dark);
}
.mobile-nav a {
  display: block; padding: 16px 0;
  font-size: 20px; font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes lineGrow {
  from { width: 0; }
  to { width: 60px; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-hero);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/landing-page-header-bg-1.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.15;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 100px 0 60px;
}
.hero-content {
  animation: fadeInLeft 1s ease-out;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(107,185,109,0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--title);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--green); }
.hero-sub {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 15px rgba(107,185,109,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,185,109,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid #e0e0e0;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}
.hero-visual {
  animation: fadeInRight 1s ease-out 0.3s both;
  display: flex;
  justify-content: center;
}
.hero-visual img {
  max-width: 500px;
  border-radius: var(--radius-lg);
  animation: float 6s ease-in-out infinite;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease-out 1s both;
}
.hero-scroll span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  font-weight: 500;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: slideDown 1.5s ease-in-out infinite;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--title);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-line {
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== WELCOME ===== */
.welcome {
  padding: 80px 0 40px;
  background: var(--bg);
  text-align: left;
}
.welcome h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--title);
  margin-bottom: 20px;
}
.welcome p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.8;
}

/* ===== STATS ===== */
.stats {
  padding: 60px 0 100px;
  background: var(--bg);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stat-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 52px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--title);
  margin-bottom: 12px;
}
.stat-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  transition: transform 0.6s;
}
.about-img:hover img { transform: scale(1.03); }

.about-text h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--title);
  margin-bottom: 24px;
}
.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-text h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--title);
  margin: 32px 0 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.about-feature .icon {
  width: 32px;
  height: 32px;
  background: rgba(107,185,109,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== MASS-SCHNITTMUSTER ===== */
.mass {
  padding: 100px 0;
  background: var(--bg);
}
.mass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mass-text h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--title);
  margin-bottom: 24px;
}
.mass-text p { margin-bottom: 20px; line-height: 1.8; }
.mass-text strong { color: var(--text-dark); }
.mass-visual {
  position: relative;
}
.mass-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  transition: transform 0.6s;
}
.mass-visual:hover img { transform: translateY(-5px); }
.mass-visual .floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

/* ===== FERTIGE ===== */
.fertig {
  padding: 100px 0;
  background: var(--bg-light);
}
.fertig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fertig-visual {
  position: relative;
}
.fertig-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
}
.fertig-visual .circle-accent {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--green);
  opacity: 0.3;
  animation: pulse 3s infinite;
}
.fertig-text h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--title);
  margin-bottom: 24px;
}
.fertig-text p { margin-bottom: 20px; line-height: 1.8; }
.fertig-sizes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.fertig-size {
  padding: 8px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.fertig-size:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ===== FORMATE ===== */
.formate {
  padding: 100px 0;
  background: var(--bg);
}
.formate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.formate-text h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--title);
  margin-bottom: 24px;
}
.formate-text p { margin-bottom: 20px; line-height: 1.8; }
.format-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.format-card {
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
}
.format-card:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.format-card .format-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(107,185,109,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green);
  transition: var(--transition);
}
.format-card:hover .format-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.format-card h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.format-card p {
  font-size: 13px;
  margin: 0;
  opacity: 0.7;
}
.formate-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ===== INSTAGRAM ===== */
.instagram {
  padding: 100px 0;
  background: var(--bg-light);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.instagram-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.instagram-item:hover img { transform: scale(1.1); }
.instagram-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(107,185,109,0.8), rgba(97,206,112,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.instagram-item:hover .overlay { opacity: 1; }
.instagram-item .overlay span {
  color: #fff;
  font-size: 24px;
}

/* ===== KONTAKT ===== */
.kontakt {
  padding: 100px 0;
  background: var(--bg-hero);
  text-align: center;
}
.kontakt h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--title);
  margin-bottom: 16px;
}
.kontakt p {
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.kontakt-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #fff;
  border-radius: var(--radius-pill);
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.kontakt-email:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--green-dark);
}
.kontakt-email svg { width: 20px; height: 20px; }

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--bg-light);
  border-top: 1px solid #e8e8e8;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links a:hover { color: var(--green); }
.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-right a {
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-right a:hover { color: var(--green); }
.footer-coupon a {
  color: var(--green) !important;
  font-weight: 600;
  text-decoration: underline !important;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(107,185,109,0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 99;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107,185,109,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 0; margin-bottom: 40px; }
  .hero-visual img { max-width: 350px; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .about-grid,
  .mass-grid,
  .fertig-grid,
  .formate-grid { grid-template-columns: 1fr; gap: 40px; }
  .mass-visual, .fertig-visual { max-width: 500px; margin: 0 auto; }
  .formate-visual { max-width: 500px; margin: 0 auto; }
  .header-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: block; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-visual { display: none; }
  .hero-scroll { display: none; }
  .stats-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .about-features { grid-template-columns: 1fr; }
  .format-cards { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-right { flex-direction: column; }
}

/* ===== IMPRESSUM PAGE ===== */
.page-header {
  padding: 140px 0 60px;
  background: var(--bg-hero);
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--title);
}
.page-content {
  padding: 80px 0 100px;
  background: var(--bg);
}
.page-content .container {
  max-width: 800px;
}
.page-content h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--title);
  margin: 40px 0 16px;
}
.page-content h2:first-child {
  margin-top: 0;
}
.page-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.page-content a {
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
}
.page-content a:hover {
  color: var(--green-dark);
}
