/* CSS Variables from Style Tile */
        :root {
            --sage-100: #E6F0EB;
            --sage-300: #C9DED5;
            --sage-500: #96C1AF;
            --sage-700: #A557ab;
            --sand: #F3E9DC;
            --porcelain: #FAF8F3;
            --mist: #E9EFEA;
            --pebble: #D7DFDC;
            --ink: #1C262B;
            --copper: #C8926A;
            
            --font-heading: 'Cormorant Garamond', serif;
            --font-body: 'Manrope', system-ui, sans-serif;
        }

        html, body { width:100%; max-width:100%; overflow-x:hidden; }
img, svg, video, canvas { max-width:100%; height:auto; display:block; }


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

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--ink);
            background-color: var(--porcelain);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 3rem);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 2.25rem);
            margin-bottom: 1.5rem;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 1.75rem);
            margin-bottom: 1rem;
        }

        p {
            font-size: 1.125rem;
            line-height: 1.75;
            color: #44515A;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--mist);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 20px rgba(28, 38, 43, 0.08);
        }

        nav {
            padding: 1.25rem 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height:90px;
        }

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

        .logo img{width:380px;}

        .logo-text {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--ink);
        }

        .logo-tagline {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-line {
            width: 60px;
            height: 1px;
            background: var(--copper);
        }

        .logo-tagline span {
            font-size: 0.75rem;
            letter-spacing: 0.05em;
            color: var(--sage-700);
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 1.2rem;
            list-style: none;
             overflow-x:hidden;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--ink);
            font-weight: 500;
            font-size: 0.9375rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--sage-700);
        }

        

        .nav-cta {
            display: flex;
            gap: 1rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9375rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--ink);
            color: var(--sand);
            box-shadow: 0 4px 12px rgba(28, 38, 43, 0.15);
        }

        .btn-primary:hover {
            background: linear-gradient(90deg, var(--sage-500), var(--sage-700));
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(28, 38, 43, 0.2);
        }

        .btn-secondary {
            background: white;
            color: var(--ink);
            border: 1px solid var(--pebble);
        }

        .btn-secondary:hover {
  background: linear-gradient(90deg, var(--sage-500), var(--sage-700));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 38, 43, 0.2);
}

        .btn-accent {
            background: var(--copper);
            color: white;
        }

        /* Hero Section */
        .hero {
            margin-top: 100px;
            position:relative;         /* NEU */
  overflow:hidden;           /* NEU: kein horizontales Scrollen */
        }

 .hero--split .hero-inner{
  display: grid;
  grid-template-columns: 1fr;  /* Mobile: einspaltig */
  gap: 20px;
  margin:0 auto;
  max-width:1200px;
}

.hero-media img{
  width:100%;
  height: clamp(220px, 59vh, 420px);/* angenehme Höhe auf Mobile */
  object-fit: cover;
  object-position: 85% 35%;         /* Fokuspunkt anpassen */
  display:block;
  border-radius:16px;                /* optional */
}

/* Video Thumbnail Styling */
.hero-media {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: radial-gradient(80% 80% at 70% 30%, #eef3f2 0%, #e6efea 40%, #dfe8e3 100%);
  box-shadow: 0 10px 24px rgba(28,38,43,.08);
  transition: transform 0.3s ease;
}

.hero-media:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(28,38,43,.12);
}

.hero-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Play Button Styling */
.hero-video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

.hero-media:hover .hero-video-play {
  background: rgba(0, 0, 0, 0.25);
}

.hero-video-play::before {
  content: "";
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 25px rgba(28, 38, 43, 0.2);
  position: absolute;
  transition: all 0.3s ease;
}

.hero-media:hover .hero-video-play::before {
  transform: scale(1.1);
  background: white;
  box-shadow: 0 12px 35px rgba(28, 38, 43, 0.3);
}

.hero-video-play svg {
  position: relative;
  width: 38px;
  height: 38px;
  fill: var(--sage-700);
  transition: fill 0.3s ease;
  margin-left: 4px; /* Optisch zentriert */
}

.hero-media:hover .hero-video-play svg {
  fill: var(--sage-500);
}

/* Video Caption */
.hero-video-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: 0.3px;
}

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: auto;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--sage-300) 0%, transparent 70%);
            opacity: 0.3;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

.hero-content{
  max-width: 720px;
}

.hero-content p{
    padding:15px 0;
}

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--sage-100);
            color: var(--sage-700);
            font-size: 0.75rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            border-radius: 25px;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
              margin: 0 0 10px;
  font-size: clamp(28px, 4.2vw, 38px);
  line-height: 1.1;
  letter-spacing: .2px;
  font-weight: 800;
        }

        .hero-sub{
  margin: 0 0 20px;
  font-size: clamp(16px, 2.2vw, 18px);
}

.hero-bullets{
  list-style: none; padding: 0; margin: 0 0 24px 0;
  display: grid; gap: 10px;
}
.hero-bullets li{
  display: flex; align-items: center; gap: 10px;
  color: var(--text);
}
.hero-bullets svg{
  width: 18px; height: 18px; flex: 0 0 18px; color: var(--brand);
}
.hero-actions{
  display:block;
  gap:14px;
  margin:12px 0 16px;
  flex-wrap:wrap;
}

.hero-actions .btn{
  flex: 1 1 260px;             /* gleiche Breite */
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  min-height:56px;             /* gleiche Höhe */
  line-height:1;
  border-radius:12px;
  width:50% !important;       /* überschreibt alte width-Regel */
}

.hero-actions .btn-primary{
  background:#A557ab;          /* eure Primärfarbe */
  color:#fff;
  border:1px solid transparent; /* damit gleich groß wie secondary */
}
.hero-actions .btn-secondary{
  background:#fff;
  color:var(--ink);
  border:1px solid var(--pebble);
}

/* Sekundär-CTA optisch leichter */
.hero-cta--ghost{
  background:#fff;
  color: var(--ink);
  border:1px solid var(--pebble);
}
.hero-cta--ghost:hover{
  background: var(--sand);
  border-color: var(--sage-500);
}

/* Mobile: Buttons 100% Breite */
@media (max-width: 640px){
  .hero-actions .btn{ width:100%; }
.logo img {
    max-width: 340px;
    width: 280px;
}
.hero-media{margin:40px 12px 0}
}
/* CTA-Button in Markenfarbe */

.btn.btn-primary.hero-cta:hover{ transform: translateY(-1px); box-shadow:0 8px 20px rgba(0,0,0,.12); }
.btn.btn-primary.hero-cta:active{ transform: translateY(0); opacity:.95; }

.hero-trust{
  display: flex; align-items: center; gap: 8px;
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}
.hero-trust svg{ width: 16px; height: 16px; color: var(--brand); }

/* Bildbereich */
.hero-media{ position: relative; }
.hero-media img{
  width: 100%; height: clamp(260px, 48vh, 640px);
  display: block;
}

/* Leichtes Overlay für ruhigeres Bild + bessere Lesbarkeit */
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.04) 100%);
  pointer-events:none;
}

/* Mobile Feinschliff */
@media (max-width: 640px){
  .hero{ margin-top: 64px; }
  .hero-content{ padding: 0 16px 8px; text-align: left; }
  .hero-media img{ border-radius: 0; }
}

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            color: #44515A;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
@media (max-width: 991px){
  .hero--split .hero-inner{
    display: flex;
    flex-direction: column-reverse;
  }
}
        @media (min-width: 992px){
  .hero--split .hero-inner{
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
  }
  .hero--split .hero-content{
    padding: 0 15px;
  }
  .hero--split .hero-media{
    position: relative;
  }
  /* Vertikale Trennkante wie im Screenshot */
  .hero--split .hero-media::before{
    content:"";
    position:absolute; left:-1px; top:0; bottom:0; width:2px;
    background: rgba(0,0,0,0.06);
    z-index:2;
  }
}

@media (max-width: 640px){
  .hero{ margin-top: 64px; }
}

        /* Section Styling */
        section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: #DFC4E1;
  color: #000;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 1rem;
}
        /* Cards */
        .card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--mist);
            box-shadow: 0 10px 24px rgba(28, 38, 43, 0.08);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(28, 38, 43, 0.12);
        }

        .card-content {
            padding: 2rem;
        }

        .card-footer {
            padding: 1.5rem 2rem;
            background: var(--porcelain);
            border-top: 1px solid var(--mist);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card{
  background:#fff;border:1px solid #e9eef0;border-radius:20px;overflow:hidden;
  box-shadow:0 10px 24px rgba(28,38,43,.08);transition:transform .25s ease, box-shadow .25s ease
}
.service-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(28,38,43,.12)}
.service-media{position:relative;aspect-ratio:16/9;background:#f3f6f7}
.service-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.service-body{padding:20px}
.service-body h3{margin:0 0 8px;font-size:1.2rem}
.service-body p{margin:0 0 14px;color:#56616a}
.btn{display:inline-block;padding:10px 16px;border-radius:12px;background:#A557ab;color:#fff;text-decoration:none}


        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--sage-500), var(--sage-700));
            border-radius: 20px 20px 0 0;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: var(--sage-700);
        }

        /* Packages */
        .packages-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch; /* sorgt dafür, dass alle Karten gleich hoch gezogen werden */
}

        .package-card.card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

        .package-features{
  flex: 1 1 auto;      /* wächst, damit der Footer nach unten rutscht */
  margin: 0 0 16px 0;  /* Standard-UL-Abstände neutralisieren */
  padding: 0;
  list-style: none;    /* falls du die Häkchen per Icon/CSS setzt */
}

        .package-card.featured::before {
            content: 'BELIEBT';
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--copper);
            color: white;
            padding: 0.25rem 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            border-radius: 20px;
            z-index: 1;
        }

        .package-header {
            padding: 2rem;
            background: #DFC4E1;
            border-radius: 20px 20px 0 0;
        }

        .package-name {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--sage-700);
        }

        .package-price small {
            font-size: 1rem;
            font-weight: 400;
            color: #44515A;
        }

        .package-features {
            list-style: none;
            padding: 2rem;
        }

        .package-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--mist);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-align: left;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features li::before {
            content: '✓';
            color: var(--sage-500);
            font-weight: 700;
            font-size: 1.25rem;
        }

        /* Instructor Section */
        .instructor {
            background: #DFC4E1;
            border-radius: 30px;
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
            margin: 3rem 0;
        }

        .instructor-image {
            width: 250px;
            height: 250px;
            background-image: url("/tatjana-kroeger-arndt-250x250.jpg");
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            text-align: center;
            padding: 2rem;
        }

        .instructor-content h3 {
            margin-bottom: 0.5rem;
        }

        .instructor-title {
            color: #000;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .instructor-badges {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        .badge {
            padding: 0.375rem 0.75rem;
            background: #DFC4E1;
  color: #000;
            font-size: 0.875rem;
            border-radius: 20px;
        }

        /* FAQ Section */
        .faq {
            background: white;
            padding: 5rem 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--mist);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--sage-300);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 1.5rem;
            background: #DFC4E1;
            border: none;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--ink);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--porcelain);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: #000;
            transition: transform 0.3s ease;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: var(--porcelain);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 1.5rem;
            color: #44515A;
        }

        /* Contact Form */
        .contact {
            background: var(--porcelain);
            padding: 5rem 0;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(28, 38, 43, 0.1);
        }

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

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--ink);
            font-size: 0.9375rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--pebble);
            border-radius: 12px;
            background: white;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--sage-500);
            box-shadow: 0 0 0 3px rgba(150, 193, 175, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        footer {
            background: var(--ink);
            color: var(--sand);
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

.footer-content a{color:#A557ab}

        .footer-brand h4 {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--sand);
        }

        .footer-brand p {
            color: rgba(243, 233, 220, 0.8);
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        .footer-links h5 {
            color: var(--sand);
            margin-bottom: 1rem;
            font-size: 1rem;
            font-weight: 600;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: rgba(243, 233, 220, 0.8);
            text-decoration: none;
            font-size: 0.9375rem;
            line-height: 2;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--sage-300);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(243, 233, 220, 0.1);
            text-align: center;
            color: rgba(243, 233, 220, 0.6);
            font-size: 0.875rem;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--ink);
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translateY(8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(-8px);
        }

        /* Success Message */
        .success-message {
            display: none;
            padding: 1rem;
            background: var(--sage-100);
            color: var(--sage-700);
            border-radius: 12px;
            margin-top: 1rem;
            text-align: center;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 100px 2rem 2rem;
                transition: left 0.3s ease;
                z-index: 999;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-cta {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero {
                padding: 3rem 0;
                background-position: 50% 25%;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .services-grid,
            .packages-grid{
    grid-template-columns: 1fr;
  }

            .package-card.featured {
                transform: scale(1);
            }

            .instructor {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .instructor-image {
                margin: 0 auto;
            }

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

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* Print Styles */
        @media print {
            header, footer, .nav-cta, .hero-buttons {
                display: none;
            }
            
            body {
                font-size: 12pt;
            }
            
            .container {
                max-width: 100%;
            }
        }

/* Minimaler Videoteaser ohne Posterbild */
.video-trigger--minimal{
  position:relative; display:block; width:100%;
  aspect-ratio:16/9;                /* fallback s.u. */
  border-radius:20px; overflow:hidden; border:1px solid var(--mist);
  background: radial-gradient(80% 80% at 70% 30%, #eef3f2 0%, #e6efea 40%, #dfe8e3 100%);
  box-shadow: 0 10px 24px rgba(28,38,43,.08);
  cursor:pointer;
}
.video-trigger--minimal:hover{ transform: translateY(-2px); transition: transform .2s ease; }

/* Play-Button */
.play-btn{
  position:absolute; inset:0; display:grid; place-items:center;
}
.play-btn::before{
  content:"";
  width:84px; height:84px; border-radius:50%;
  background:#fff; box-shadow:0 6px 20px rgba(28,38,43,.15);
}
.play-btn svg{
  position:absolute; width:34px; height:34px; fill: var(--sage-700);
}

/* Pulsierender Ring (dezent) */
.video-trigger--minimal::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at center, rgba(95,143,128,.15) 0%, transparent 45%);
  opacity:.0; transition: opacity .25s ease;
}
.video-trigger--minimal:hover::after{ opacity:.8; }

/* Caption unten links */
.play-caption{
  position:absolute; left:16px; bottom:16px;
  background: rgba(0,0,0,.55); color:#fff; padding:8px 12px;
  border-radius:999px; font-weight:700; font-size:.95rem;
}

/* Fallback für Browser ohne aspect-ratio */
@supports not (aspect-ratio: 16/9){
  .video-trigger--minimal{ height:0; padding-top:56.25%; }
  .play-btn, .play-caption{ position:absolute; }
}


/* Modal */
.video-modal{ position:fixed; inset:0; display:none; place-items:center; z-index:1100; }
.video-modal.active{ display:grid; }
.video-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.55); }
.video-dialog{
  position:relative; width:min(900px, 92vw); aspect-ratio:16/9;
  background:#000; border-radius:14px; overflow:hidden;
}
.video-dialog iframe{ width:100%; height:100%; display:block; border:0; }
.video-close{
  position:absolute; top:8px; right:8px; border:0; background:rgba(0,0,0,.6);
  color:#fff; padding:.4rem .6rem; border-radius:8px; cursor:pointer;
}

/* Aktives Tab-Label */
.mode-toggle label.is-active{
  background:#fff;
  box-shadow:0 1px 6px rgba(0,0,0,.08);
}
.mode-toggle{
  display:flex; gap:8px; background:#eef3f2; padding:6px; border-radius:14px; align-items:center;
}
.mode-toggle input{ display:none; }
.mode-toggle label{
  padding:10px 14px; border-radius:10px; cursor:pointer; user-select:none;
}

/* Sichtbarkeit der Panels */
.prices{ display:none; margin-top:16px; }
.prices.visible{ display:block; }

/* (Optional) aktives Tab optisch hervorheben */
.mode-toggle label.is-active{
  background:#fff; box-shadow:0 1px 6px rgba(0,0,0,.08);
}

/* === Blogartikel Layout === */
.blog-article {
    padding: 2.5rem;
    background: #FFFFFF;
}

/* Grundabstände für Text */
.blog-article p {
    margin-bottom: 1.3rem;
}

/* Listen mit mehr Luft nach unten */
.blog-article ul,
.blog-article ol {
    margin-top: 0.5rem;
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
}

.blog-article li + li {
    margin-top: 0.3rem;
}

/* Überschriften innerhalb des Artikels */
.blog-article h2 {
    margin-top: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-article h2:first-child {
    margin-top: 0; /* erste Überschrift ganz oben nicht nach unten schieben */
}

.blog-article h3 {
    margin-top: 2.2rem;
    margin-bottom: 0.75rem;
}

.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E2E0D8;
}

.related-posts h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.related-posts ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.related-posts li + li {
    margin-top: 0.35rem;
}

.related-posts a {
    text-decoration: none;
    font-weight: 500;
}

.related-posts a:hover {
    text-decoration: underline;
}
.blog-thumb {
    margin: 0 0 2rem 0;
}

.blog-thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
}

/* Partner Section Styling */
.partner-section {
    background: #fff; /* Oder var(--porcelain) für leichtes Grau */
    padding: 4rem 0;
    overflow: hidden; /* Wichtig, damit nichts seitlich rausragt */
}

.partner-section .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

/* Der Slider Container */
.logo-slider {
    position: relative;
    width: 100%;
    height: 100px; /* Höhe anpassen je nach Logogröße */
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Vignette links und rechts (faded den Slider sanft aus) */
.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none; 
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Die bewegliche Spur */
.logo-track {
    display: flex;
    width: calc(200px * 14); /* 200px pro Logo * Anzahl aller Logos (Original + Kopie) */
    animation: scroll 35s linear infinite;
}

/* Pause bei Hover (optional, damit Nutzer Logos genauer ansehen können) */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Einzelnes Slide */
.slide {
    width: 200px; /* Feste Breite pro Logo-Slot */
    padding: 0 30px; /* Abstand zwischen Logos */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 100%;
    max-height: 80px; /* Maximale Höhe der Logos begrenzen */
    object-fit: contain;
    
    /* Elegant: Erst Grau, dann Farbe */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Animation Definition */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Muss genau die Hälfte der Breite sein (Breite des 1. Satzes) */
        /* 7 Logos * 200px = 1400px */
        transform: translateX(-1400px); 
    }
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .logo-slider::before,
    .logo-slider::after {
        width: 50px; /* Kleinerer Fade auf Handys */
    }
    
    .slide {
        width: 150px; /* Logos etwas kleiner auf Handy */
        padding: 0 15px;
    }
    
    .logo-track {
        /* Breite neu berechnen: 150px * 14 = 2100px */
        width: calc(150px * 14);
        animation: scroll 25s linear infinite; /* Schneller auf Mobile */
    }
    
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-1050px); } /* Hälfte von 2100 */
    }
}

/* --- Reviews Section --- */
.reviews-section {
    background-color: #f9f9f9; /* Leicht abgedunkelt für Kontrast zu Weiß */
    padding: 5rem 0;
}

/* Header mit Stats */
.review-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.trust-stars {
    color: #FFD700; /* Gold */
    letter-spacing: 2px;
}

.trust-score {
    font-weight: bold;
    color: #333;
}

.highlight-number {
    color: var(--gold, #c5a47e); /* Deine Gold-Farbe nutzen */
    font-weight: 800;
}

/* Slider Wrapper */
.review-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Der scrollbare Bereich */
.review-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Das magische Einrasten */
    padding: 20px 5px 40px 5px; /* Platz für Schatten unten */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox Scrollbar weg */
}

.review-track::-webkit-scrollbar {
    display: none; /* Chrome Scrollbar weg */
}

/* Die Karte */
.review-card {
    flex: 0 0 350px; /* Feste Breite pro Karte */
    scroll-snap-align: center;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

/* Karte Inhalt */
.card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.reviewer-initial {
    width: 45px;
    height: 45px;
    background: var(--gold, #c5a47e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reviewer-info .name {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.reviewer-info .verified {
    font-size: 0.75rem;
    color: #28a745; /* Grün für Vertrauen */
    opacity: 0.9;
}

.platform-icon {
    width: 24px;
    height: 24px;
    background: #f1f1f1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #555;
    font-weight: bold;
}

.card-stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Drückt das Datum nach unten */
}

.review-date {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
}

/* Buttons (Desktop) */
.slider-btn {
    background: white;
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
    transition: all 0.2s;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.slider-btn:hover {
    background: var(--gold, #c5a47e);
    color: white;
    border-color: var(--gold, #c5a47e);
}

.slider-btn.prev { margin-right: 15px; }
.slider-btn.next { margin-left: 15px; }

.review-footer {
    text-align: center;
    margin-top: 1rem;
}

.link-google {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.link-google:hover {
    color: var(--gold, #c5a47e);
    border-color: var(--gold, #c5a47e);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .review-card {
        flex: 0 0 85%; /* Karten auf Handy fast bildschirmbreit */
    }
    
    .slider-btn {
        display: none; /* Buttons auf Handy ausblenden (dafür Swipe) */
    }
    
    .review-track {
        gap: 15px;
        padding-left: 20px; /* Linker Randabstand */
        padding-right: 20px;
    }
}