
/*** T3SB identifier: darkModeToggler */

.dm-toggler .bi {
	width: 1em;
	height: 1em;
	vertical-align: -.125em;
	fill: currentcolor;
}



/*** T3SB identifier: t3sbsCSSassets_63536 */

/* t3sbs_assets_63536 */
  :root {
            --color-dark: #1a1a1a;
            --color-green: #4a5d4a;
            --color-lightgreen: #5a6d5a;
            --color-beige: #f5f3f0;
            --color-cream: #faf9f7;
            --color-olive: #6b7b6b;
            --color-emerald: #10b981;
            --color-emerald-dark: #059669;
            --color-emerald-light: #d1fae5;
            --color-stone-50: #fafaf9;
            --color-stone-100: #f5f5f4;
            --color-stone-200: #e7e5e4;
            --color-stone-300: #d6d3d1;
            --color-stone-400: #a8a29e;
            --color-stone-500: #78716c;
            --color-stone-600: #57534e;
            --color-stone-700: #44403c;
            --color-stone-800: #292524;
            --color-stone-900: #1c1917;
            --color-stone-950: #0c0a09;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--color-stone-800);
            background-color: var(--color-cream);
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--color-stone-900);
            color: var(--color-stone-300);
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
        }

        .top-bar-container {
            max-width: 72rem;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar a {
            color: var(--color-stone-300);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.375rem;
            transition: color 0.2s;
        }

        .top-bar a:hover {
            color: white;
        }

        .top-bar svg {
            width: 14px;
            height: 14px;
        }

        /* Navigation */
        .nav {
            background-color: var(--color-stone-900);
            position: sticky;
            top: 0;
            z-index: 50;
            transition: all 0.3s;
        }

        .nav.scrolled {
            background-color: rgba(28, 25, 23, 0.95);
            backdrop-filter: blur(4px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1560px;
            margin: 0 auto;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo {
            color: white;
            text-decoration: none;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 300;
            letter-spacing: 0.05em;
        }

        .logo-sub {
            display: block;
            font-size: 0.6rem;
            letter-spacing: 0.2em;
            color: var(--color-stone-400);
            margin-top: -0.25rem;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--color-stone-300);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: white;
        }

        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu {
            display: none;
            background-color: var(--color-stone-800);
            border-top: 1px solid var(--color-stone-700);
            padding: 1rem;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            color: var(--color-stone-300);
            text-decoration: none;
            padding: 0.5rem 0;
            transition: color 0.2s;
        }

        .mobile-menu a:hover {
            color: white;
        }

        /* Hero */
        .hero {
            background-color: var(--color-stone-900);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
            background-size: 40px 40px;
        }

        .hero-container {
            position: relative;
            max-width: 72rem;
            margin: 0 auto;
            padding: 4rem 1rem;
        }

        @media (min-width: 1024px) {
            .hero-container {
                padding: 6rem 1rem;
            }
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background-color: rgba(16, 185, 129, 0.2);
            color: #a7f3d0;
            padding: 0.375rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .badge svg {
            width: 14px;
            height: 14px;
        }

        .hero h1 {
            font-size: 2.25rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }
        }

        .hero-accent {
            color: #34d399;
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--color-stone-300);
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 42rem;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 0.25rem;
            font-size: 1rem;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
        }

        .btn-primary {
            background-color: var(--color-emerald-dark);
            color: white;
        }

        .btn-primary:hover {
            background-color: #047857;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--color-stone-300);
            border: 1px solid var(--color-stone-600);
        }

        .btn-outline:hover {
            background-color: var(--color-stone-800);
            color: white;
        }

        .btn svg {
            width: 16px;
            height: 16px;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(16, 185, 129, 0.5), transparent);
        }

        /* Sections */
        .section {
            padding: 4rem 1rem;
        }

        @media (min-width: 1024px) {
            .section {
                padding: 6rem 1rem;
            }
        }

        .section-container {
            max-width: 56rem;
            margin: 0 auto;
        }

        .section-title {
            font-size: 1.875rem;
            font-weight: 300;
            color: var(--color-stone-800);
            text-align: center;
            margin-bottom: 3rem;
        }

        @media (min-width: 1024px) {
            .section-title {
                font-size: 2.25rem;
            }
        }

        /* Cards */
        .cards-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .card {
            background-color: white;
            border: 1px solid var(--color-stone-200);
            border-radius: 0.5rem;
            
        }

        .card-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .card-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background-color: var(--color-emerald-light);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .card-icon svg {
            width: 20px;
            height: 20px;
            color: var(--color-emerald-dark);
        }

        .card h3 {
            font-weight: 500;
            font-size: 16px;
            color: var(--color-stone-800);
            margin-bottom: 0.5rem;
        }

        .card p {
            color: var(--color-stone-600);
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* Quote */
        .quote {
            text-align: center;
            margin-top: 3rem;
        }

        .quote p {
            font-size: 1.125rem;
            color: var(--color-stone-700);
            font-style: italic;
        }

        /* Ablauf */
        .section-badge {
            display: inline-block;
            border: 1px solid var(--color-emerald-dark);
            color: var(--color-emerald-dark);
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            color: var(--color-stone-600);
            margin-bottom: 3rem;
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .step {
            display: flex;
            gap: 1.5rem;
        }

        .step-number {
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            background-color: var(--color-emerald-dark);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.125rem;
            font-weight: 500;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--color-stone-200);
        }

        .step:last-child .step-content {
            border-bottom: none;
            padding-bottom: 0;
        }

        .step h3 {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--color-stone-800);
            margin-bottom: 0.75rem;
        }

        .step p {
            color: var(--color-stone-600);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .step-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .step-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: var(--color-stone-600);
        }

        .step-list svg {
            width: 20px;
            height: 20px;
            color: var(--color-emerald-dark);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .info-box {
            margin-top: 3rem;
            padding: 1.5rem;
            background-color: var(--color-emerald-light);
            border: 1px solid #bbf7d0;
            border-radius: 0.5rem;
        }

        .info-box p {
            color: var(--color-stone-700);
            line-height: 1.6;
        }

        .info-box strong {
            color: var(--color-stone-800);
        }

        /* Angebot */
        .section-dark {
            background-color: var(--color-stone-900);
            color: white;
        }

        .section-dark .section-title {
            color: white;
        }

        .section-dark .section-subtitle {
            color: var(--color-stone-400);
        }

        .offer-card {
            background-color: var(--color-stone-800);
            border: 1px solid var(--color-stone-700);
            border-radius: 0.5rem;
            padding: 2rem;
        }

        @media (min-width: 1024px) {
            .offer-card {
                padding: 3rem;
            }
        }

        .offer-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .offer-grid {
                grid-template-columns: 1fr 1fr;
                align-items: center;
            }
        }

        .offer-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .offer-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: var(--color-stone-300);
        }

        .offer-list svg {
            width: 20px;
            height: 20px;
            color: #34d399;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .price {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .price-current {
            font-size: 2.5rem;
            font-weight: 300;
            color: #34d399;
        }

        @media (min-width: 1024px) {
            .price-current {
                font-size: 3rem;
            }
        }

        .price-original {
            color: var(--color-stone-500);
            text-decoration: line-through;
        }

        .price-note {
            font-size: 0.875rem;
            color: var(--color-stone-500);
            margin-bottom: 2rem;
        }

        .offer-cta {
            text-align: center;
        }

        @media (min-width: 1024px) {
            .offer-cta {
                text-align: right;
            }
        }

        .offer-cta .btn {
            width: 100%;
        }

        @media (min-width: 1024px) {
            .offer-cta .btn {
                width: auto;
            }
        }

        .offer-availability {
            font-size: 0.875rem;
            color: var(--color-stone-500);
            margin-top: 1rem;
        }

        /* Geschenk */
        .section-green {
            background-color: var(--color-emerald-light);
        }

        .gift-grid {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .gift-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .gift-icon {
            width: 2rem;
            height: 2rem;
            color: var(--color-emerald-dark);
            margin-bottom: 1rem;
        }

        .gift-content h2 {
            font-size: 1.875rem;
            font-weight: 300;
            color: var(--color-stone-800);
            margin-bottom: 1rem;
        }

        @media (min-width: 1024px) {
            .gift-content h2 {
                font-size: 2.25rem;
            }
        }

        .gift-content p {
            color: var(--color-stone-600);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .gift-content strong {
            color: var(--color-stone-800);
        }

        .gift-box {
            background-color: white;
            padding: 1.5rem;
            border-radius: 0.5rem;
            border: 1px solid #bbf7d0;
            margin-bottom: 1.5rem;
        }

        .gift-box-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--color-stone-500);
            margin-bottom: 0.75rem;
        }

        .gift-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .gift-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-stone-700);
        }

        .gift-item-dot {
            width: 8px;
            height: 8px;
            border-radius: 9999px;
            background-color: var(--color-emerald-dark);
        }

        .gift-small {
            font-size: 0.875rem;
            color: var(--color-stone-600);
        }

        .gift-quote {
            background-color: white;
            padding: 2rem;
            border-radius: 0.5rem;
            border: 1px solid #bbf7d0;
        }

        .gift-quote blockquote {
            font-size: 1.25rem;
            color: var(--color-stone-700);
            font-style: italic;
            line-height: 1.6;
        }

        /* Transparenz */
        .transparency-box {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background-color: var(--color-stone-50);
            border: 1px solid var(--color-stone-200);
            border-radius: 0.5rem;
        }

        .transparency-box svg {
            width: 24px;
            height: 24px;
            color: var(--color-stone-500);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .transparency-box h3 {
            font-weight: 500;
            color: var(--color-stone-800);
            margin-bottom: 0.75rem;
        }

        .transparency-box p {
            font-size: 0.875rem;
            color: var(--color-stone-600);
            margin-bottom: 0.5rem;
        }

        .transparency-box ul {
            list-style: none;
            font-size: 0.875rem;
            color: var(--color-stone-600);
        }

        .transparency-box li {
            margin-bottom: 0.25rem;
        }

        /* Für wen */
        .section-beige {
            background-color: var(--color-stone-50);
        }

        .target-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .target-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .target-card {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background-color: white;
            border: 1px solid var(--color-stone-200);
            border-radius: 0.5rem;
        }

        .target-card svg {
            width: 20px;
            height: 20px;
            color: var(--color-emerald-dark);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .target-card p {
            color: var(--color-stone-700);
        }

        /* Kontakt */
        .contact-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .contact-card {
            padding: 2rem;
            border-radius: 0.5rem;
        }

        .contact-card-dark {
            background-color: var(--color-stone-800);
            border: 1px solid var(--color-stone-700);
        }

        .contact-card-green {
            background-color: var(--color-emerald-dark);
        }

        .contact-card h3 {
            font-size: 1.125rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .contact-card-dark h3 {
            color: white;
        }

        .contact-card-green h3 {
            color: white;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
            color: #34d399;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-item div {
            color: var(--color-stone-300);
        }

        .contact-item a {
            color: var(--color-stone-300);
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-item a:hover {
            color: white;
        }

        .contact-item small {
            display: block;
            color: var(--color-stone-500);
            font-size: 0.875rem;
        }

        .contact-card-green p {
            color: #a7f3d0;
            margin-bottom: 1.5rem;
        }

        .contact-price {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .contact-price-current {
            font-size: 1.875rem;
            font-weight: 300;
            color: white;
        }

        .contact-price-original {
            color: #6ee7b7;
            text-decoration: line-through;
            font-size: 0.875rem;
        }

        .contact-card-green .btn {
            width: 100%;
            background-color: white;
            color: var(--color-emerald-dark);
        }

        .contact-card-green .btn:hover {
            background-color: var(--color-emerald-light);
        }

        /* FAQ */
        .faq-list {
            border-top: 1px solid var(--color-stone-200);
        }

        .faq-item {
            border-bottom: 1px solid var(--color-stone-200);
        }

        .faq-question {
            width: 100%;
            padding: 1.25rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-align: left;
            background: none;
            border: none;
            font-size: 1.125rem;
            font-weight: 500;
            color: var(--color-stone-800);
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .faq-question:hover {
            opacity: 0.8;
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            color: var(--color-stone-500);
            flex-shrink: 0;
        }

        .faq-answer {
            display: none;
            padding-bottom: 1.25rem;
            color: var(--color-stone-600);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }

 

        /* Desktop Navigation */
        @media (min-width: 1024px) {
            .nav-links {
                display: flex;
            }

            .mobile-menu-btn {
                display: none;
            }

            .mobile-menu {
                display: none !important;
            }
        }
	

