@font-face {
  font-family: 'Geologica';
  src: url('Geologica-VariableFont_CRSV,SHRP,slnt,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --jaegergruen: #475E45;
  --moosgruen: #6A8E68;
  --latte: #DCC7B2;
  --gelb: #EAC435;
  --braun: #635129;
  --bg: #F9F9F9;
  --texthell: #F9F9F9;
  --textdunkel: #1E2B2B;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Geologica', sans-serif;
  font-weight: 200;
  background: var(--bg);
  color: var(--textdunkel);
  line-height: 1.6;
  margin: 20px;
}

p {
  padding-bottom: 20px;
}
header {
  position: sticky;
  top: 0;
  margin-top: -20px;
  background: var(--moosgruen);
  color: var(--texthell);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* box-shadow: 0 2px 4px rgba(0,0,0,0.05); */
  z-index: 100;
  border-top: 20px solid var(--bg);
}

header img {
  margin: -20px 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1000;
}
.menu-toggle svg {
  width: 100%;
  height: 100%;
  stroke: var(--texthell);
  stroke-width: 2;
  fill: none;
}

.nav-close {
  display: none;
}
nav {
  display: flex;
  transition: opacity 0.3s ease;
}
nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--texthell);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--texthell);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  header {
    min-height: 3.25rem;
  }
  header img {
    margin: 0;
    max-height: 40px;
    width: auto;
  }
  .menu-toggle {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    flex-shrink: 0;
    margin-left: auto;
    z-index: 1001; /* über dem nav */
  }
  nav {
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--moosgruen);
    color: var(--texthell);
    z-index: 999;
    border: 20px solid white;
    box-sizing: border-box;
  }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(0.75rem + env(safe-area-inset-top, 0px));
    right: calc(0.75rem + env(safe-area-inset-right, 0px));
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
  }
  .nav-close svg {
    width: 28px;
    height: 28px;
    stroke: var(--texthell);
    stroke-width: 2;
    fill: none;
  }
  nav.show {
    opacity: 1;
    pointer-events: all;
  }
  nav a {
    margin: 1rem 0;
    font-size: 1.5rem;
  }
  
  .hero .container {
    max-width: 100% !important;
    margin: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    grid-template-areas: "text" "image" !important;
  }
  .hero .text-content {
    text-align: center;
    padding-bottom: 0px;
    padding-left: 35px;
    padding-right: 35px;
    grid-area: text;
  }
  .hero .image-container {
    grid-area: image;
    width: 80%;
    margin: 0 auto;
  }
  .hero h1 {
    font-size: 2.2rem !important;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero .image-container img {
    max-width: 100%;
    height: auto;
  }
  
  section {
    padding: 120px 15px 0px 15px;
  }
  
  .story-boxes {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .story-box {
    padding: 30px 25px;
  }
  
  .was-und-warum-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .was-und-warum-text-left,
  .was-und-warum-text {
    padding: 30px 25px;
  }
  
  .was-und-warum-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    margin: 20px;
  }
  
  header {
    padding: 1rem 1.25rem;
    margin-top: -20px;
    border-top: 20px solid var(--bg);
    min-height: 3rem;
  }
  
  .menu-toggle {
    width: 32px;
    height: 32px;
  }
  
  nav a {
    font-size: 1.3rem;
    margin: 0.8rem 0;
  }
  
  .hero {
    padding: 40px 15px 20px 15px;
  }
  .hero .container {
    gap: 20px;
  }
  .hero .text-content {
    padding-bottom: 0px;
  }
  .hero h1 {
    font-size: 1.8rem !important;
  }
  .hero p {
    font-size: 1rem;
    margin-top: 0.8rem;
  }
  .hero .image-container img {
    max-width: 100%;
    height: auto;
  }
  
  section {
    padding: 120px 15px 0px 15px;
  }
  
  .pricing-table {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .reels {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact a {
    display: block;
    margin: 8px auto;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  
  .contact .secondary-cta {
    display: block;
    margin: 8px auto;
    max-width: 100%;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  
  .story-boxes {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .story-box {
    padding: 30px 25px;
  }
  
  .was-und-warum-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .was-und-warum-text-left,
  .was-und-warum-text {
    padding: 30px 25px;
  }
  
  .was-und-warum-text {
    text-align: center;
  }
}
section {
  padding: 120px 15px 0px 15px;
  max-width: 960px;
  margin: auto;
}
  
body.noscroll {
  overflow: hidden;
  height: 100vh;
}
  
.hero {
  text-align: center;
  color: #F9F9F9; /* #F4F4EF */
  background: linear-gradient(to bottom, var(--moosgruen) 0%, var(--moosgruen) 85%, transparent 85%);
  padding: 50px 20px 30px 20px;
  max-width: 100%;
  position: relative;
}
.hero .container {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero .text-content {
  text-align: left;
  padding-bottom: 30px;
}
.hero .image-container {
  text-align: center;
  position: relative;
}
.hero .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  position: relative;
  z-index: 10;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.subtitle {
  font-weight: 600;
  color: var(--jaegergruen);
}
h2 {
  font-size: 2.0rem;
  color: var(--jaegergruen);
  line-height: 1.2;
}
h3 {
  line-height: 1.2;
  margin-bottom: 2rem;
}
.was-und-warum ul {
  margin-top: 2rem;
}
.reels {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}
/* Tab „Im Alltag“: immer 3 Spalten wie „Im Fokus“ bei drei Videos → gleiche Zellbreite / gleiche Video-Höhe */
@media (min-width: 769px) {
  #reels-panel-versteckt .reels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
iframe {
  width: 100%;
  aspect-ratio: 9/16;
  border: none;
  border-radius: 12px;
}
video {
  width: 100%;
  height: auto;
  border: none;
  border-radius: 12px;
  display: block;
}
.video-container {
  position: relative;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
  display: inline-block;
  width: 100%;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.play-icon:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}
.play-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--jaegergruen);
  margin-left: 4px;
}
.play-icon.hidden {
  opacity: 0;
  pointer-events: none;
}
.video-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--textdunkel);
  text-align: center;
  font-weight: 500;
}

/* Reels: Tab-Navigation */
.reels-tabs {
  margin-top: 2rem;
}
.reels-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.25rem;
  border-bottom: 2px solid rgba(106, 142, 104, 0.22);
}
.reels-tab {
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border: none;
  background: transparent;
  color: var(--textdunkel);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-radius: 8px 8px 0 0;
}
.reels-tab:hover {
  color: var(--jaegergruen);
}
.reels-tab:focus-visible {
  outline: 2px solid var(--jaegergruen);
  outline-offset: 2px;
}
.reels-tab.is-active {
  color: var(--jaegergruen);
  border-bottom-color: var(--jaegergruen);
}
.reels-tabs .reels {
  margin-top: 1rem;
}
.reels-placeholder {
  margin: 1rem 0 0;
  padding: 2.25rem 1.25rem;
  text-align: center;
  color: var(--textdunkel);
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  border: 1px dashed rgba(106, 142, 104, 0.32);
}
.pricing-table {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 3rem;
}
.price-box {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
  margin: 0 -1px;
}
.price-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(106, 142, 104, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.price-box h3 {
  color: var(--jaegergruen);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}

.price-box h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--moosgruen);
  border-radius: 2px;
}

.price-box p {
  margin: 0.8rem 0;
  color: var(--textdunkel);
  line-height: 1.5;
  font-size: 0.95rem;
}

.price-box p:last-child {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--moosgruen);
  text-align: center;
}

.price-amount {
  font-size: 2.0rem !important;
  font-weight: 700;
  color: var(--moosgruen) !important;
  text-align: center;
  margin: 0px !important;
}

.price-amount s,
.price-amount sup,
.price-amount strong {
  color: var(--moosgruen) !important;
}

.price-box:nth-child(2) {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  z-index: 10;
  border-color: var(--moosgruen);
}

.price-box:nth-child(2) h3 {
  font-size: 1.8rem;
}

.price-box:nth-child(2) p:last-child {
  font-size: 1.5rem;
}

.contact {
  text-align: center;
  margin-top: 3rem;
}
.contact a {
  margin: 10px;
}
footer {
  background: white;
  padding: 30px 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}
.story-section {
  background: var(--bg);
  padding: 120px 20px 0px 20px;
}
.story-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.story-intro {
  font-size: 1.1rem;
  color: var(--textdunkel);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.story-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 3rem;
}
.story-box {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
}

.story-box::before,
.story-box:nth-child(2)::before {
  content: none;
}

.story-box h3 {
  color: var(--jaegergruen);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.story-box h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--moosgruen);
  border-radius: 2px;
}

.story-box:nth-child(2) h3::after {
  background: var(--gelb);
}

.story-box p {
  color: var(--textdunkel);
  line-height: 1.6;
  margin-bottom: 0;
}
.story-cta {
  margin-top: 4rem;
  text-align: center;
}
.story-cta .cta-primary {
  display: inline-block;
  background: linear-gradient(45deg, #FF6B35, #F7931E, #FF6B35);
  background-size: 200% 200%;
  color: white;
  padding: 18px 45px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 0 20px rgba(255, 107, 53, 0.4),
    0 8px 25px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
  border: 2px solid #FF6B35;
  animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 0 20px rgba(255, 107, 53, 0.4),
      0 8px 25px rgba(0,0,0,0.15),
      inset 0 1px 0 rgba(255,255,255,0.2);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 
      0 0 30px rgba(255, 107, 53, 0.6),
      0 12px 35px rgba(0,0,0,0.2),
      inset 0 1px 0 rgba(255,255,255,0.3);
  }
}

.story-cta .cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.8s ease;
}

.story-cta .cta-primary::after {
  content: '✨';
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 1.5rem;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.2) rotate(180deg);
    opacity: 1;
  }
}

.story-cta .cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 0 40px rgba(255, 107, 53, 0.8),
    0 15px 40px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.4);
  border-color: #F7931E;
  animation-play-state: paused;
}

.story-cta .cta-primary:hover::before {
  left: 100%;
}

.story-cta .cta-primary:active {
  transform: translateY(-2px) scale(1.02);
  animation-play-state: paused;
}
.intention-section {
  background: var(--bg);
  padding: 120px 20px 0px 20px;
}
.intention-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
.intention-container h2 {
  margin-bottom: 1.2rem;
}
.intention-container p {
  font-size: 1.15rem;
  color: var(--textdunkel);
  max-width: 700px;
  text-align: left;
  padding-bottom: 20px;;
}

.was-und-warum {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  margin: 60px -20px;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: none;
  width: 100vw;
}

.was-und-warum-container {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 0 20px;
}

.was-und-warum-text-left {
  text-align: left;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}

.was-und-warum-text-left::before {
  content: none;
}

.was-und-warum-text-left h2 {
  color: var(--jaegergruen);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.was-und-warum-text-left h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--moosgruen);
  border-radius: 2px;
}

.was-und-warum-text-left p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--textdunkel);
  padding-bottom: 0;
}

.was-und-warum-text {
  text-align: left;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}

.was-und-warum-text::before {
  content: none;
}

.was-und-warum-text h2 {
  color: var(--jaegergruen);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.was-und-warum-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gelb);
  border-radius: 2px;
}

.was-und-warum-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--textdunkel);
  padding-bottom: 0;
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Geologica', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--textdunkel);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--moosgruen);
}

.faq-question.active {
  color: var(--moosgruen);
}

.faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--moosgruen);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  max-height: none;
  padding: 0 0 30px 0;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--textdunkel);
}

.faq-answer ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
  line-height: 1.6;
  color: var(--textdunkel);
}

.faq-answer ol li {
  margin-bottom: 0.5rem;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  line-height: 1.6;
  color: var(--textdunkel);
}

.faq-answer ul li {
  margin-bottom: 0.5rem;
}

/* Allgemeine Listen-Styling */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  padding-bottom: 10px;
}

ul li::before {
  content: '✔';
  color: var(--moosgruen);
  position: absolute;
  left: 0;
  top: 0;
}

/* Primary CTA Button (wie Story-Button) */
.primary-cta {
  display: inline-block;
  background: linear-gradient(45deg, #FF6B35, #F7931E, #FF6B35);
  background-size: 200% 200%;
  color: white;
  padding: 18px 45px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 0 20px rgba(255, 107, 53, 0.4),
    0 8px 25px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
  border: 2px solid #FF6B35;
  animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
}

.primary-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.8s ease;
}

.primary-cta::after {
  content: '✨';
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 1.5rem;
  animation: sparkle 1.5s ease-in-out infinite;
}

.primary-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 0 40px rgba(255, 107, 53, 0.8),
    0 15px 40px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.4);
  border-color: #F7931E;
  animation-play-state: paused;
}

.primary-cta:hover::before {
  left: 100%;
}

.primary-cta:active {
  transform: translateY(-2px) scale(1.02);
  animation-play-state: paused;
}

/* Secondary CTA Button (für Kontakt-Buttons etc.) */
.secondary-cta {
  display: inline-block;
  background: var(--gelb);
  color: var(--braun);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(234, 196, 53, 0.4);
}

/* Kontakt: WhatsApp / Instagram / E-Mail wie Primary-CTA oben */
.contact a.secondary-cta {
  background: linear-gradient(45deg, #FF6B35, #F7931E, #FF6B35);
  background-size: 200% 200%;
  color: white;
  padding: 18px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  border: 2px solid #FF6B35;
  box-shadow:
    0 0 20px rgba(255, 107, 53, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.contact a.secondary-cta:hover {
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 0 40px rgba(255, 107, 53, 0.8),
    0 15px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: #F7931E;
  animation-play-state: paused !important;
}

.contact a.secondary-cta .cta-icon {
  color: inherit;
}

/* Allgemeine CTA-Regeln für andere Bereiche */
.cta-primary {
  display: inline-block;
  background: var(--gelb);
  color: var(--braun);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(234, 196, 53, 0.4);
}

/* Shimmer-Effekt für Kontakt-Buttons deaktivieren */
.contact a.cta-primary::before {
  display: none;
}

.contact a.cta-primary:hover::before {
  display: none;
}

.addons-container {
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.addons-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Geologica', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--textdunkel);
  transition: all 0.3s ease;
  border-bottom: 1px solid #e0e0e0;
}

.addons-toggle:hover {
  color: var(--moosgruen);
}

.addons-toggle.active {
  color: var(--moosgruen);
}

.addons-icon {
  width: 24px;
  height: 24px;
  fill: var(--moosgruen);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.addons-toggle.active .addons-icon {
  transform: rotate(45deg);
}

.addons-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.addons-content.active {
  max-height: none;
  padding: 0 0 30px 0;
}

.addons-table {
  width: 100%;
}

.addons-row {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  padding: 0.75rem 0;
}

.addons-row:last-child {
  border-bottom: none;
}

.addons-cell {
  flex: 1;
  padding-right: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--textdunkel);
}

.addons-cell:last-child {
  padding-right: 0;
  text-align: right;
  font-weight: 500;
}

.addons-footnote {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(106, 142, 104, 0.22);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--textdunkel);
}

@media (max-width: 768px) {
  .addons-container {
    margin-top: 2rem;
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .addons-toggle {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .addons-content.active {
    padding: 1rem;
  }
  
  .addons-row {
    flex-direction: column;
    padding: 0.5rem 0;
  }
  
  .addons-cell {
    padding-right: 0;
    padding-bottom: 0.25rem;
  }
  
  .addons-cell:last-child {
    padding-bottom: 0;
    text-align: left;
    font-weight: 600;
  }
  
  .addons-row.addons-header {
    flex-direction: row;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .addons-row.addons-header .addons-cell {
    padding-bottom: 0;
  }
  
  .addons-row.addons-header .addons-cell:last-child {
    text-align: right;
  }
}

/* Kontaktformular Styling */
.contact-form-container {
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-container h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--jaegergruen);
}

.contact-form {
  padding: 2rem;
  border-radius: 16px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--textdunkel);
  text-align: left;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Geologica', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--moosgruen);
  box-shadow: 0 0 0 3px rgba(106, 142, 104, 0.1);
}

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

.error-message {
  display: block;
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

.success-message {
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.success-message h3 {
  color: var(--moosgruen);
  margin-bottom: 1rem;
}

.success-message p {
  margin-bottom: 2rem;
  color: var(--textdunkel);
}

.contact-form .primary-cta {
  width: 100%;
  margin-top: 1rem;
}

.cta-icon {
  margin-right: 0.3em;
  font-size: 1.4em;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: -0.15em;
} 