/* Performance Optimierungen */
/* Critical CSS - Wird sofort geladen */
.header, .hero, .hero-content {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Lazy Loading für Bilder */
img {
    loading: lazy;
}

/* Font Display Swap für bessere Performance */
@font-face {
    font-family: 'Drupadi';
    src: url('../fonts/Drupadi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Siffon';
    src: url('../fonts/SIFONN_PRO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Optimierte Animationen */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Will-change für bessere Performance */
.hero-content, .benefit-category, .product-card {
    will-change: transform;
}

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
}

/* Header und Navigation – angepasst an Story-Design */
.header {
    background: linear-gradient(165deg, #5a7033 0%, #556b2f 50%, #4a5d28 100%);
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(44, 62, 44, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-info-bar {
    position: fixed;
    top: calc(80px + 1.5rem);
    left: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 0.6rem 1.5rem;
    z-index: 9997;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-info-bar p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.02em;
}

body.has-header-info-bar .impressum-main {
    margin-top: calc(104px + 2.75rem);
}

.mattenplaner-page-main {
    padding: calc(104px + 2.75rem) 1rem 2rem;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-brand {
    color: white;
    font-weight: bold;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-logo .logo-image {
    height: 80px;
    width: auto;
    display: block;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.header-logo .logo-text h3 {
    font-family: 'Siffon', sans-serif;
    font-size: 1.3rem;
    margin: 0;
    font-weight: bold;
    color: white;
}

.header-logo .logo-text p {
    font-size: 0.7rem;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: calc(80px + 1.5rem);
    align-items: center;
    padding-right: max(2rem, calc((100vw - 1200px) / 2 + 2rem));
    z-index: 9999;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    opacity: 1;
}

/* Hamburger-Button – nur auf Mobil sichtbar */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    position: relative;
    z-index: 10001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Header */
@media (max-width: 768px) {
    .header-info-bar {
        top: calc(58px + 1rem);
        padding: 0.5rem 1rem;
    }

    .header-info-bar p {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    body.has-header-info-bar .impressum-main {
        margin-top: calc(74px + 2.25rem);
    }

    .mattenplaner-page-main {
        padding: calc(74px + 2.25rem) 0.75rem 1.5rem;
    }

    .header {
        padding: 0.5rem 0;
        background: rgba(75, 95, 40, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 10000;
    }

    .header .nav {
        padding: 0 1.25rem;
    }

    .nav-toggle {
        display: flex;
    }

    .header-logo .logo-image {
        height: 58px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 0;
        list-style: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        background: rgba(60, 82, 30, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        z-index: 10000;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .nav-menu.active {
        visibility: visible;
        opacity: 1;
    }

    .nav-menu li {
        width: auto;
        text-align: center;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.06s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.10s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.14s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.18s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.22s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.26s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.30s; }

    .nav-menu a {
        display: block;
        padding: 0.85rem 2rem;
        font-family: 'Siffon', sans-serif;
        font-size: 1.15rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: none;
        transition: color 0.25s ease, letter-spacing 0.25s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: white;
        letter-spacing: 0.2em;
        background: none;
    }

    /* X-Button styling when menu is open */
    .nav-toggle[aria-expanded="true"] {
        position: fixed;
        top: 0.75rem;
        right: 1.25rem;
        z-index: 10002;
    }
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .header .nav {
        padding: 0 1rem;
    }

    .header-logo .logo-image {
        height: 52px;
    }

    .nav-menu a {
        font-size: 1.05rem;
        padding: 0.75rem 1.5rem;
        letter-spacing: 0.12em;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/matte_huf_stroh.webp') center center/cover no-repeat;
    color: white;
    text-align: center;
    padding-top: calc(104px + 2.75rem);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.6) 100%),
        rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 52rem;
    padding: 2.25rem 2.5rem;
    margin: 0 auto;
    background: rgba(20, 28, 15, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-content h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.15rem;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0.015em;
    margin-bottom: 0.85rem;
    color: #fff;
    text-wrap: balance;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 1s ease;
}

.hero-subline {
    font-family: 'Drupadi', serif;
    font-size: 1.5rem;
    line-height: 1.35;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-lead {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0 auto 2rem;
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.98);
    text-wrap: pretty;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    background: #556b2f;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #556b2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

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

/* ===== Story Sections – einheitliches Layout ===== */
.story-section {
    padding: 5rem 0;
}

.container--story {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.section-label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #556b2f;
    margin-bottom: 1rem;
}

.section-label--light {
    color: rgba(255, 255, 255, 0.85);
}

.story-headline {
    font-family: 'Drupadi', serif;
    font-size: 2.1rem;
    line-height: 1.25;
    color: #2c3e2c;
    margin-bottom: 1.25rem;
}

.story-headline--light {
    color: white;
}

.story-lead {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    line-height: 1.65;
    color: #444;
    margin-bottom: 1.5rem;
}

.story-lead--light {
    color: rgba(255, 255, 255, 0.92);
}

.story-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin: 1rem 0 0;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 560px;
    text-align: left;
}

.story-list li {
    font-family: 'Raleway', sans-serif;
    font-size: 1.08rem;
    line-height: 1.5;
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
}

.story-list--problem li {
    color: #444;
}

.story-list--problem li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #556b2f;
    font-weight: bold;
}

.story-list--solution li {
    color: rgba(255, 255, 255, 0.95);
}

.story-list--solution li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: bold;
}

/* ===== Story-Section: Problem, Perspektive, Lösung (einheitliches Design) ===== */

/* Gemeinsames Muster-Overlay (wie Solution) */
.story-section.comparison-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c3e2c' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Der Unterschied – Problem vs. Lösung */
.comparison-section {
    background: linear-gradient(165deg, #e5e9e2 0%, #dce2d9 40%, #d4ddcf 100%);
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}

.comparison-section .container--comparison {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(85, 107, 47, 0.14);
    box-shadow: 0 8px 32px rgba(44, 62, 44, 0.1);
}

.comparison-section .section-label {
    color: #556b2f;
    letter-spacing: 0.2em;
}

.comparison-section .story-headline {
    color: #2c3e2c;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.comparison-intro {
    color: #444;
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(85, 107, 47, 0.18);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.comparison-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.comparison-column--problem {
    background: rgba(255, 255, 255, 0.6);
    border-right: 1px solid rgba(85, 107, 47, 0.12);
}

.comparison-column--solution {
    background: rgba(85, 107, 47, 0.06);
}

.comparison-column-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 1.75rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(85, 107, 47, 0.12);
}

.comparison-column--problem .comparison-column-header {
    color: #8b3a3a;
    background: rgba(180, 70, 70, 0.08);
}

.comparison-column--problem .comparison-column-header i {
    color: #c0392b;
}

.comparison-column--solution .comparison-column-header {
    color: #3d5c22;
    background: rgba(85, 107, 47, 0.12);
}

.comparison-column--solution .comparison-column-header i {
    color: #556b2f;
}

.comparison-column-header i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.comparison-item {
    padding: 1.5rem 1.75rem;
}

.comparison-item + .comparison-item {
    border-top: 1px solid rgba(85, 107, 47, 0.12);
}

.comparison-item-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e2c;
    margin: 0 0 0.65rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.35;
}

.comparison-icon {
    flex-shrink: 0;
    font-size: 1.15rem;
    line-height: 1.35;
}

.comparison-item-text {
    font-family: 'Raleway', sans-serif;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #444;
    margin: 0;
}

/* Lösung – HIPPOFY, stark und einladend */
.solution-section {
    background: linear-gradient(165deg, #4f6329 0%, #556b2f 35%, #5c7340 100%);
    color: white;
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}

.solution-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.solution-section .container--story {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.solution-section .section-label--light {
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2em;
}

.solution-section .story-headline--light {
    font-size: 2.1rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.solution-section .story-lead--light {
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.solution-section .story-list--solution li {
    padding: 0.65rem 0 0.65rem 2.25rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
}

.solution-section .story-list--solution li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
}

.solution-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0;
}

.solution-product {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.solution-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.solution-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solution-product:hover .solution-product-img img {
    transform: scale(1.05);
}

.solution-product-name {
    font-family: 'Siffon', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    padding: 1rem 1rem 0;
}

.solution-product-spec {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 1rem;
}

.solution-product-area {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 1rem 1rem;
}

.solution-section .shop-button--story {
    margin-top: 2rem;
}

/* Harte Fakten für Reiter */
.facts-section {
    background: linear-gradient(165deg, #dce2d9 0%, #d4ddcf 50%, #cbd8c6 100%);
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}

.facts-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c3e2c' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.facts-section .container--facts {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(85, 107, 47, 0.14);
    box-shadow: 0 8px 32px rgba(44, 62, 44, 0.1);
}

.facts-section .section-label {
    color: #556b2f;
    letter-spacing: 0.2em;
}

.facts-section .story-headline {
    color: #2c3e2c;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.facts-intro {
    color: #444;
    font-size: 1.12rem;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.facts-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(85, 107, 47, 0.12);
}

.facts-item:first-child {
    padding-top: 0;
}

.facts-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.facts-icon {
    flex-shrink: 0;
    width: 2rem;
    font-size: 1.35rem;
    line-height: 1.35;
    text-align: center;
}

.facts-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e2c;
    margin: 0 0 0.45rem;
    line-height: 1.35;
}

.facts-text {
    font-family: 'Raleway', sans-serif;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #444;
    margin: 0;
}

.facts-text em {
    font-style: italic;
    color: #556b2f;
    font-weight: 600;
}

/* ===== Einheitliches Section-Design (wie Problem/Perspektive/Lösung) ===== */
.social-proof-section,
.products-upgrade-section {
    background: linear-gradient(165deg, #e5e9e2 0%, #dce2d9 50%, #d8dfd5 100%);
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}

.social-proof-section::after,
.products-upgrade-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c3e2c' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.social-proof-section .container--story,
.products-upgrade-section .container--story {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(85, 107, 47, 0.14);
    box-shadow: 0 8px 32px rgba(44, 62, 44, 0.1);
}

.products-upgrade-section .container--story {
    max-width: 1200px;
}

.social-proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2rem;
    text-align: left;
}

.social-proof-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(85, 107, 47, 0.15);
}

.social-proof-image img {
    width: 100%;
    height: auto;
    display: block;
}

.social-proof-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.social-proof-text .testimonial {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 1.6;
}

.social-proof-note,
.social-proof-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: #556b2f;
    margin: 0;
}

.social-proof-tagline {
    font-weight: 600;
}

/* Produkt-Sektion – Wähle dein Upgrade */
.products-upgrade-section .story-lead {
    margin-bottom: 1rem;
}

.products-upgrade-section .upgrade-steps {
    list-style: none;
    counter-reset: upgrade-step;
    max-width: 480px;
    margin: 1.5rem auto 2rem;
    padding: 0;
    text-align: left;
}

.products-upgrade-section .upgrade-steps li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Raleway', sans-serif;
    font-size: 1.08rem;
    line-height: 1.5;
    color: #333;
    counter-increment: upgrade-step;
}

.products-upgrade-section .upgrade-steps li::before {
    content: counter(upgrade-step);
    position: absolute;
    left: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: #556b2f;
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.75rem;
    text-align: center;
}

.products-upgrade-section .upgrade-tagline {
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 500;
}

.products-upgrade-section .product-cards {
    margin-top: 0;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about h1 {
    font-family: 'Drupadi', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #556b2f;
    font-weight: bold;
}

.benefits-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-category {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #556b2f;
}

.benefit-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.category-icon {
    font-size: 2.5rem;
    color: #556b2f;
    min-width: 3rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header h2 {
    font-family: 'Siffon', sans-serif;
    color: #556b2f;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.benefit-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.benefit-list li {
    color: #333 !important;
    margin-bottom: 0.5rem !important;
    padding-left: 1.5rem !important;
    position: relative !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    list-style: none !important;
}

.benefit-list li::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: #556b2f !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    top: 0 !important;
}

/* Force benefit list styling to override any potential conflicts */
.benefits-categories .benefit-list,
.benefit-category .benefit-list,
.about .benefit-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.benefits-categories .benefit-list li,
.benefit-category .benefit-list li,
.about .benefit-list li {
    color: #333 !important;
    margin-bottom: 0.5rem !important;
    padding-left: 1.5rem !important;
    position: relative !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    list-style: none !important;
}

.benefits-categories .benefit-list li::before,
.benefit-category .benefit-list li::before,
.about .benefit-list li::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: #556b2f !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    top: 0 !important;
}

/* Impressum / AGB / Datenschutz – gleiches Design wie Story-Sections */
.impressum-main {
    margin-top: 80px;
    padding: 5.5rem 0;
    min-height: calc(100vh - 160px);
    background: linear-gradient(165deg, #e5e9e2 0%, #dce2d9 50%, #d8dfd5 100%);
    position: relative;
    overflow: hidden;
}

.impressum-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c3e2c' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.impressum-main .container {
    position: relative;
    z-index: 1;
}

.impressum-title {
    font-family: 'Drupadi', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #556b2f;
    font-weight: bold;
    padding-top: 2rem;
    margin-top: 0;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(85, 107, 47, 0.14);
    box-shadow: 0 8px 32px rgba(44, 62, 44, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 16px;
}

.impressum-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.impressum-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.impressum-section h2 {
    font-family: 'Siffon', sans-serif;
    color: #556b2f;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
}

.impressum-section h2 br {
    display: none;
}

@media (max-width: 768px) {
    .impressum-section h2 br {
        display: block;
    }
}

.impressum-section p {
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1rem;
}

.impressum-section h3 {
    font-family: 'Siffon', sans-serif;
    color: #556b2f;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.impressum-section ul {
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
    padding-left: 1.5rem;
}

.impressum-section ul li {
    margin-bottom: 0.5rem;
}

.impressum-section a {
    color: #556b2f !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-section a:hover {
    color: #f39c12 !important;
    text-decoration: underline;
}

/* Spezifische Regel für alle Links in impressum-content */
.impressum-content a {
    color: #556b2f !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-content a:hover {
    color: #f39c12 !important;
    text-decoration: underline;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #556b2f;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-info i {
    color: #556b2f;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #556b2f !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #f39c12 !important;
    text-decoration: underline;
}

.impressum-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.impressum-footer p {
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Back to Home Button */
.back-to-home {
    text-align: center;
    margin: 3rem 0 2rem 0;
    padding: 0 1rem;
}

.back-to-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #556b2f;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #556b2f;
    box-shadow: 0 4px 12px rgba(85, 107, 47, 0.2);
}

.back-to-home-btn:hover {
    background-color: #f39c12;
    border-color: #f39c12;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

.back-to-home-btn i {
    font-size: 1.2rem;
}

/* Mobile Optimizations for Back Button */
@media (max-width: 768px) {
    .back-to-home {
        margin: 2rem 0 1.5rem 0;
    }
    
    .back-to-home-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .back-to-home {
        margin: 1.5rem 0 1rem 0;
    }
    
    .back-to-home-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        gap: 0.375rem;
    }
    
    .back-to-home-btn i {
        font-size: 1.1rem;
    }
}

/* Mobile Optimizations for Impressum */
@media (max-width: 768px) {
    .impressum-main {
        margin-top: 70px;
        padding: 1rem 0;
    }
    
    .impressum-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-top: 1.5rem;
    }
    
    .impressum-content {
        margin: 0 1rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .impressum-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .impressum-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .impressum-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .contact-details {
        padding: 1rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
    
    .contact-info {
        gap: 0.75rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .contact-info i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .impressum-main {
        margin-top: 60px;
        padding: 0.5rem 0;
    }
    
    .impressum-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-top: 1rem;
    }
    
    .impressum-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .impressum-content {
        margin: 0 0.5rem;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .impressum-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .impressum-section h2 {
        font-size: 1.2rem;
    }
    
    .impressum-section p {
        font-size: 0.9rem;
    }
    
    .contact-details {
        padding: 0.75rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    .footer .contact-info p {
        font-size: 0.95rem;
        color: white;
    }
    
    .footer .contact-info a {
        color: white !important;
    }
}

/* Icon Visibility Optimizations */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    /* Mindestgröße für kleine Bildschirme */
    min-width: 2.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #556b2f;
}

/* Font Awesome Icon Styling */
.card-icon i {
    font-size: 2.5rem;
    color: #556b2f;
    transition: all 0.3s ease;
}

.card-icon i:hover {
    transform: scale(1.1);
    color: #f39c12;
}

/* Icon-Größen für verschiedene Bildschirmgrößen */
@media (max-width: 480px) {
    .card-icon {
        font-size: 2rem;
        min-width: 2rem;
        min-height: 2rem;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
    
    .contact-info-simple .icon {
        font-size: 1rem;
        width: 20px;
        height: 20px;
    }
    
    .footer .contact-info a {
        color: white !important;
    }
}

@media (max-width: 320px) {
    .card-icon {
        font-size: 1.8rem;
        min-width: 1.8rem;
        min-height: 1.8rem;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .footer .contact-info a {
        color: white !important;
    }
    
    .directions {
        padding: 0.6rem;
        margin: 0;
    }
    
    .directions li {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0.6rem 0 0.6rem 1.6rem;
        margin-bottom: 0.4rem;
        background: white;
        border-radius: 5px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        border-left: 2px solid #556b2f;
        color: #000000;
    }
    
    .directions li::before {
        left: 0.4rem;
        width: 1.2rem;
        height: 1.2rem;
        font-size: 0.9rem;
    }
}

/* Verbesserte Sichtbarkeit für Kontakt-Icons */
.contact-info-simple .icon {
    font-size: 1.3rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #556b2f;
    background: rgba(85, 107, 47, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info-simple .icon i {
    font-size: 1.3rem;
    color: #556b2f !important;
    transition: all 0.3s ease;
}

.contact-info-simple .icon:hover {
    background: rgba(85, 107, 47, 0.2);
    transform: scale(1.05);
}

.contact-info-simple .icon i:hover {
    color: #f39c12 !important;
    transform: scale(1.1);
}

/* Verbesserte Sichtbarkeit für Footer-Icons */
.contact-info .icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info .icon i {
    font-size: 1rem;
    color: #f39c12;
    transition: all 0.3s ease;
}

.contact-info .icon i:hover {
    color: white;
    transform: scale(1.1);
}

/* Lightbulb Icon Verbesserung */
.lightbulb-icon {
    font-size: 1.2rem;
    color: #f39c12;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbulb-icon i {
    font-size: 1.2rem;
    color: #f39c12;
    transition: all 0.3s ease;
}

.lightbulb-icon i:hover {
    color: white;
    transform: scale(1.1);
}

/* Removed .card h3 styles as we now use .category-header h2 */

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: #556b2f;
    color: white;
}

/* Only the PREISE heading should be white */
.pricing h1 {
    font-family: 'Drupadi', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #556b2f;
    font-weight: bold;
}

/* Specific styling for the PREISE heading to make it white */
.pricing h1.pricing-title {
    color: white;
}

.pricing-cards-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Desktop Table Styles */
.pricing-table-desktop {
    display: block;
}

.pricing-cards-mobile {
    display: none;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #4a5f2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.pricing-table th {
    background: #4a5f2a;
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 1px solid #6b7a3a;
}

.pricing-table th:first-child {
    text-align: left;
}

.pricing-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #6b7a3a;
    font-size: 0.95rem;
}

.pricing-table td:first-child {
    text-align: left;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table strong {
    color: #f39c12;
}

/* Mobile Pricing Cards */
.pricing-cards-mobile {
    display: none;
    gap: 1.5rem;
    flex-direction: column;
}

.pricing-card {
    background: #4a5f2a;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 1px solid #6b7a3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #6b7a3a;
}

.pricing-card-header h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
}

.price-highlight {
    text-align: right;
}

.price {
    display: block;
    color: #f39c12;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.price-unit {
    display: block;
    color: #bdc3c7;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.pricing-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.detail-label {
    color: #bdc3c7;
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-value {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.example-calculation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.lightbulb-icon {
    font-size: 1.2rem;
    color: #f39c12;
}

.example-calculation p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.vat-disclaimer {
    text-align: right;
}

.vat-disclaimer p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.7;
    color: #bdc3c7;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Testimonials Section */
.testimonials {
    padding: 5.5rem 0;
    background: linear-gradient(165deg, #dce2d9 0%, #d4ddcf 50%, #cbd8c6 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c3e2c' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(85, 107, 47, 0.14);
    box-shadow: 0 8px 32px rgba(44, 62, 44, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials h1 {
    font-family: 'Drupadi', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #556b2f;
    font-weight: bold;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 100%;
    margin: 0;
}

.testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stars {
    font-size: 1.5rem;
    color: #f39c12;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
    justify-content: center;
}

.stars i {
    font-size: 1.5rem;
    color: #f39c12;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stars i:hover {
    color: #556b2f;
    transform: scale(1.1);
}

.testimonial-card blockquote {
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.customer-info {
    font-family: 'Raleway', sans-serif;
    color: #556b2f;
    font-size: 0.9rem;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

/* Dein Upgrade & Anfrage */
.upgrade-request-section {
    background: linear-gradient(165deg, #e5e9e2 0%, #dce2d9 50%, #d8dfd5 100%);
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}

.upgrade-request-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c3e2c' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.upgrade-request-section .container--upgrade-request {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(85, 107, 47, 0.14);
    box-shadow: 0 8px 32px rgba(44, 62, 44, 0.1);
}

.upgrade-request-section .section-label {
    color: #556b2f;
    letter-spacing: 0.2em;
}

.upgrade-request-section .story-headline {
    color: #2c3e2c;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.upgrade-request-lead {
    color: #2c3e2c;
    font-size: 1.12rem;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.upgrade-request-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #444;
    margin: 0 auto 2rem;
    max-width: 560px;
}

.upgrade-request-button {
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

/* Anfrage-Modal */
.anfrage-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.anfrage-modal[hidden] {
    display: none;
}

.anfrage-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 44, 0.55);
    backdrop-filter: blur(4px);
}

.anfrage-modal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    max-height: calc(100vh - 3rem);
    max-height: calc(100dvh - 3rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 20px 60px rgba(44, 62, 44, 0.25);
    border: 1px solid rgba(85, 107, 47, 0.14);
}

.anfrage-form .input-group label {
    line-height: 1.4;
}

.anfrage-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: rgba(85, 107, 47, 0.08);
    color: #556b2f;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.anfrage-modal-close:hover {
    background: rgba(85, 107, 47, 0.15);
}

.anfrage-modal-content h3 {
    font-family: 'Drupadi', serif;
    font-size: 1.75rem;
    color: #2c3e2c;
    margin: 0 2rem 0.75rem 0;
}

.anfrage-modal-intro {
    font-family: 'Raleway', sans-serif;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 1.5rem;
}

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

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

.anfrage-form .input-group input,
.anfrage-form .input-group select,
.anfrage-form .input-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.anfrage-form .input-group input:focus,
.anfrage-form .input-group select:focus,
.anfrage-form .input-group textarea:focus {
    outline: none;
    border-color: #556b2f;
    box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.1);
}

.anfrage-form .input-group textarea {
    resize: vertical;
    min-height: 4.5rem;
}

.anfrage-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(85, 107, 47, 0.12);
}

.anfrage-modal-cancel {
    padding: 0.85rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
    color: #555;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.anfrage-modal-cancel:hover {
    border-color: #556b2f;
    color: #2c3e2c;
}

.anfrage-modal-submit {
    margin-top: 0;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.95rem;
}

body.modal-open {
    overflow: hidden;
}

.products h1 {
    font-family: 'Drupadi', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #556b2f;
    font-weight: bold;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-family: 'Raleway', sans-serif;
    color: #556b2f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.product-content p {
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    color: #333;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #556b2f;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 5.5rem 0;
    background: linear-gradient(165deg, #dce2d9 0%, #d4ddcf 50%, #cbd8c6 100%);
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c3e2c' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact h1,
.contact .contact-title {
    font-family: 'Drupadi', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #556b2f;
    font-weight: bold;
}

/* Kontaktbereich – gleiche Karten-Optik wie Story-Sections */
.contact-info-simple {
    max-width: 680px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(85, 107, 47, 0.14);
    box-shadow: 0 8px 32px rgba(44, 62, 44, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.contact-headline {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e2c;
    margin: 0 0 0.75rem;
    line-height: 1.45;
}

.contact-lead {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #444;
    margin: 0 0 1.25rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-list li,
.contact-pickup-line {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    color: #333;
}

.contact-list-text,
.contact-pickup-text {
    flex: 1;
}

.contact-list strong,
.contact-pickup-text strong {
    color: #2c3e2c;
}

.contact-list em,
.contact-pickup-text em {
    font-style: italic;
    color: #555;
}

.contact-info-simple .contact-list a,
.contact-info-simple .contact-pickup-text a {
    color: #556b2f;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-simple .contact-list a:hover,
.contact-info-simple .contact-pickup-text a:hover {
    color: #4a5f2a !important;
    text-decoration: underline;
}

.contact-pickup-line {
    padding: 0;
}

.contact-section {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(85, 107, 47, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.contact-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(85, 107, 47, 0.15);
    border-color: rgba(85, 107, 47, 0.2);
}

.contact-section h3 {
    color: #556b2f;
    font-size: 1.3rem;
    margin: 0 0 1.2rem 0;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-section h3::before {
    display: none;
}

.contact-info-simple .contact-section p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0.6rem 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    padding: 0.4rem 0;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-info-simple .contact-section .contact-lead,
.contact-info-simple .contact-section .contact-pickup-line {
    display: block;
    margin: 0 0 1.25rem;
    padding: 0;
}

.contact-info-simple .contact-section .contact-pickup-line {
    display: flex;
    margin: 0;
}

.contact-info-simple .contact-section a {
    color: #556b2f !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1.5;
    font-family: 'Raleway', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.contact-info-simple .contact-section a:hover {
    color: #4a5f2a !important;
    text-decoration: underline;
}

.directions {
    list-style: none;
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(85, 107, 47, 0.1);
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.08);
    animation: fadeInUp 0.6s ease-out;
}

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

.directions li {
    position: relative;
    padding: 1rem 0 1rem 2.5rem;
    margin: 0.5rem 0;
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 3px solid #556b2f;
    margin-left: 0;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.8rem;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.directions li:nth-child(1) {
    animation-delay: 0.1s;
}

.directions li:nth-child(2) {
    animation-delay: 0.2s;
}

.directions li:nth-child(3) {
    animation-delay: 0.3s;
}

.directions li:hover {
    border-left-color: #4a5f2a;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.08) 0%, rgba(85, 107, 47, 0.03) 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.15);
}

.directions li::before {
    content: "→";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: #556b2f;
    font-weight: bold;
    font-size: 1.3rem;
    background: rgba(85, 107, 47, 0.1);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.directions li:hover::before {
    background: #556b2f;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.contact-info-simple .contact-message {
    color: #556b2f;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.1) 0%, rgba(74, 93, 40, 0.05) 100%);
    padding: 1.5rem;
    margin-top: 0.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    border-radius: 12px;
    width: 100%;
    border: 2px solid rgba(85, 107, 47, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-simple .contact-message::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.5s ease;
}

.contact-info-simple .contact-message:hover::before {
    left: 100%;
}

/* Alte Kontakt-Styles überschreiben */
.contact-info {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}
.contact-item, .contact-details, .contact-icon {
    all: unset;
}

/* Footer */
.footer {
    background: #556b2f;
    color: white;
    padding: 2rem 0 0.5rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.footer-logo .logo-link {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 70px;
    width: auto;
}

.footer-tagline {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer-section h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    margin: 0 0 0.8rem 0;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.4rem 0;
    font-size: 1rem;
    line-height: 1.4;
}

.contact-info .icon {
    font-size: 1.1rem;
    color: #f39c12;
    flex-shrink: 0;
}

.footer .contact-info a {
    color: white !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
}
.footer .contact-info a:hover {
    color: #f39c12 !important;
    text-decoration: underline;
    transform: translateX(2px);
}

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

.legal-links a {
    color: white !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.legal-links a:hover {
    color: #f39c12 !important;
    text-decoration: underline;
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        justify-items: center;
    }
    .footer-section {
        align-items: center;
    }
    .footer-logo {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100dvh;
        min-height: 100svh;
        padding: calc(74px + 3.25rem) 1.25rem 2.5rem;
        align-items: center;
    }

    .hero-content {
        width: 100%;
        padding: 1.75rem 1.35rem;
        border-radius: 16px;
    }

    .hero-content h1 {
        font-size: clamp(1.35rem, 5.5vw, 1.85rem);
        line-height: 1.3;
        margin-bottom: 0.7rem;
        letter-spacing: 0.01em;
    }

    .hero-subline {
        font-size: clamp(1.15rem, 4.8vw, 1.35rem);
        margin-bottom: 0.85rem;
    }
    
    .hero-lead {
        font-size: clamp(0.95rem, 3.8vw, 1.05rem);
        line-height: 1.65;
        margin-bottom: 1.5rem;
        max-width: 100%;
        font-weight: 500;
    }

    .hero .shop-button {
        width: 100%;
        max-width: 20rem;
        justify-content: center;
        padding: 0.95rem 1.25rem;
        font-size: 0.95rem;
    }

    .story-section {
        padding: 3.5rem 0;
    }

    .story-headline {
        font-size: 1.6rem;
    }

    .story-lead {
        font-size: 1rem;
    }

    .section-label {
        font-size: 0.7rem;
    }

    .comparison-section .container--comparison,
    .facts-section .container--facts,
    .solution-section .container--story {
        padding: 1.75rem 1.25rem;
        margin: 0 1rem;
    }

    .comparison-section .story-headline,
    .facts-section .story-headline,
    .solution-section .story-headline--light {
        font-size: 1.55rem;
    }

    .facts-item {
        gap: 0.75rem;
        padding: 1rem 0;
    }

    .facts-icon {
        width: 1.75rem;
        font-size: 1.2rem;
    }

    .facts-title {
        font-size: 1rem;
    }

    .facts-text {
        font-size: 0.92rem;
    }

    .comparison-intro {
        margin-bottom: 1.75rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .comparison-table {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        border: none;
        border-radius: 0;
        overflow: visible;
    }

    .comparison-column {
        border: 1px solid rgba(85, 107, 47, 0.16);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 4px 18px rgba(44, 62, 44, 0.08);
    }

    .comparison-column--problem {
        border-right: none;
    }

    .comparison-column-header {
        padding: 1rem 1.15rem;
        font-size: 0.88rem;
    }

    .comparison-item {
        padding: 1rem 1.15rem;
    }

    .comparison-item-title {
        font-size: 0.98rem;
        line-height: 1.35;
        gap: 0.45rem;
    }

    .comparison-icon {
        font-size: 1.05rem;
    }

    .comparison-item-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .solution-products {
        grid-template-columns: 1fr;
        margin-top: 1.5rem;
    }

    .social-proof-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-categories {
        gap: 2rem;
        margin: 0 1rem;
    }
    
    .benefit-category {
        padding: 2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .category-header h2 {
        font-size: 1.5rem;
    }
    
    .benefit-item span {
        font-size: 1rem;
    }
    
    .product-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .testimonial-card:nth-child(3) {
        grid-column: 1;
        max-width: none;
    }
    
    .upgrade-request-section .container--upgrade-request {
        padding: 1.75rem 1.25rem;
        margin: 0 1rem;
    }

    .upgrade-request-section .story-headline {
        font-size: 1.55rem;
    }

    .upgrade-request-text {
        font-size: 0.95rem;
    }

    .upgrade-request-button {
        width: 100%;
        justify-content: center;
        font-size: 0.88rem;
        padding: 1rem 1.25rem;
    }

    .anfrage-modal {
        padding: 0;
        align-items: flex-end;
    }

    .anfrage-modal-content {
        width: 100%;
        max-width: none;
        max-height: min(92dvh, 92svh);
        border-radius: 20px 20px 0 0;
        padding: 1.15rem 1.15rem 1rem;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .anfrage-modal-content h3 {
        font-size: 1.45rem;
        margin: 0 2.75rem 0.5rem 0;
        line-height: 1.25;
    }

    .anfrage-modal-intro {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 1.15rem;
    }

    .anfrage-modal-close {
        top: 0.85rem;
        right: 0.85rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .anfrage-form-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .anfrage-form .input-group label {
        font-size: 0.88rem;
        margin-bottom: 0.4rem;
    }

    .anfrage-form .input-group input,
    .anfrage-form .input-group select,
    .anfrage-form .input-group textarea {
        padding: 0.85rem 0.9rem;
        font-size: 16px;
        border-radius: 10px;
    }

    .anfrage-form .input-group textarea {
        min-height: 4rem;
    }

    .anfrage-modal-actions {
        position: sticky;
        bottom: 0;
        z-index: 2;
        flex-direction: column-reverse;
        gap: 0.65rem;
        margin-top: 1rem;
        padding: 1rem 0 0.25rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 18%);
        border-top: 1px solid rgba(85, 107, 47, 0.12);
    }

    .anfrage-modal-cancel,
    .anfrage-modal-submit {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.15rem;
        font-size: 0.95rem;
    }

    .anfrage-modal-submit {
        min-height: 48px;
    }

    .testimonials .container {
        margin: 0 1rem;
        padding: 1.75rem 1.25rem;
    }

    .contact-info-simple {
        margin: 0 1rem;
        padding: 1.75rem 1.25rem;
    }

    .mattenplaner-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .social-proof-section .container--story,
    .products-upgrade-section .container--story {
        margin: 0 1rem;
        padding: 1.75rem 1.25rem;
    }

    /* Hide desktop table, show mobile cards */
    .pricing-table-desktop {
        display: none;
    }
    
    .pricing-cards-mobile {
        display: flex;
    }
    
    .pricing-table {
        font-size: 0.8rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 1rem 0.5rem;
    }
    
    .pricing-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vat-disclaimer {
        text-align: left;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
        font-size: 1.1rem;
        gap: 0.8rem;
    }
    
    .contact-info .icon {
        font-size: 1.2rem;
    }
    
    .footer .contact-info a {
        font-size: 1.1rem;
        color: white !important;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
    
    .contact-message {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .contact-message p {
        font-size: 1rem;
    }

    .contact h1,
.contact .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-info-simple {
        margin: 1.5rem 1rem 0;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .contact-section {
        padding: 1rem;
    }
    
    .contact-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info-simple .contact-section p,
    .contact-info-simple .contact-lead {
        font-size: 1rem;
        font-weight: 500;
        color: #444;
        font-family: 'Raleway', sans-serif;
    }
    
    .contact-info-simple .contact-section a {
        font-size: 1rem;
        font-weight: 600;
        color: #556b2f !important;
        font-family: 'Raleway', sans-serif;
    }
    
    .contact-info-simple .contact-section a:hover {
        color: #4a5f2a !important;
    }
    
    .contact-info-simple .icon {
        font-size: 1.4rem;
        width: 30px;
        height: 30px;
    }
    
    .contact-info-simple .icon i {
        font-size: 1.4rem;
    }
    
    .directions {
        padding: 1rem;
        margin: 0;
    }
    
    .directions li {
        font-size: 1rem;
        font-weight: 500;
        color: #000000;
        font-family: 'Raleway', sans-serif;
        line-height: 1.6;
        padding: 0.8rem 0 0.8rem 2rem;
        margin-bottom: 0.6rem;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        border-left: 3px solid #556b2f;
    }
    
    .directions li::before {
        left: 0.6rem;
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Additional mobile optimizations for pricing cards */
    .pricing-card {
        padding: 1.2rem;
    }
    
    .pricing-card-header h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .detail-label,
    .detail-value {
        font-size: 0.85rem;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .pricing-card {
        padding: 1rem;
    }
    
    .pricing-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .price-highlight {
        text-align: left;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    
    .detail-label {
        color: #bdc3c7;
        font-size: 0.8rem;
    }
    
    /* Contact section improvements for very small screens */
    .contact-info-simple {
        margin: 1rem 0.5rem 0;
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-section {
        padding: 0.8rem;
    }
    
    .contact-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info-simple .contact-section p,
    .contact-info-simple .contact-lead {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #444;
    }
    
    .contact-info-simple .contact-section a {
        font-size: 0.95rem;
        word-break: break-all;
        color: #556b2f !important;
    }
    
    .footer .contact-info a {
        color: white !important;
    }
    
    .directions {
        padding: 0.8rem;
        margin: 0;
    }
    
    .directions li {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0.7rem 0 0.7rem 1.8rem;
        margin-bottom: 0.5rem;
        background: white;
        border-radius: 6px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
        border-left: 2px solid #556b2f;
        color: #000000;
    }
    
    .directions li::before {
        left: 0.5rem;
        width: 1.3rem;
        height: 1.3rem;
        font-size: 1rem;
    }
    
    .contact-info-simple .icon {
        font-size: 1.2rem;
        width: 24px;
        height: 24px;
    }
    
    .contact-info-simple .icon i {
        font-size: 1.2rem;
    }
    
    .footer .contact-info a {
        color: white !important;
    }
    
    .detail-value {
        color: white;
        font-size: 0.9rem;
        font-weight: 600;
    }
} 

/* Globale h2 und h3 Styles */
h2, h3 {
    font-family: 'Siffon', sans-serif;
}

/* Spezifische h2 und h3 Styles für verschiedene Bereiche */
.about h1, .pricing h1, .pricing h2.pricing-title, .products h1, .contact h1,
.contact .contact-title, .mattenplaner-section .mattenplaner-title {
    font-family: 'Drupadi', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #556b2f;
    font-weight: bold;
}

.category-header h2, .product-content h3, .contact-section h3 {
    font-family: 'Siffon', sans-serif;
    color: #556b2f;
    font-weight: bold;
}

.contact-details h3 {
    font-family: 'Siffon', sans-serif;
    margin: 0 0 0.5rem 0;
    color: #556b2f;
    font-size: 1.2rem;
    font-weight: bold;
} 

/* Alle anderen Textelemente in Raleway */
p, span, div, a, li, td, th, label, input, textarea, button {
    font-family: 'Raleway', sans-serif;
} 

/* Installation Notice */
.installation-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.exclamation-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.exclamation-icon i {
    font-size: 1.2rem;
    color: #f39c12;
    transition: all 0.3s ease;
}

.exclamation-icon i:hover {
    color: white;
    transform: scale(1.1);
}

.installation-notice p {
    margin: 0;
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
} 

/* Pickup Discount */
.pickup-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.discount-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discount-icon i {
    font-size: 1.2rem;
    color: #28a745;
    transition: all 0.3s ease;
}

.discount-icon i:hover {
    color: #1e7e34;
    transform: scale(1.1);
}

.pickup-discount p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* Mattenplaner Section – gleiches Design wie Story-Sections */
.mattenplaner-section {
    padding: 5.5rem 0;
    background: linear-gradient(165deg, #e5e9e2 0%, #dce2d9 50%, #d8dfd5 100%);
    position: relative;
    overflow: hidden;
}

.mattenplaner-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c3e2c' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.mattenplaner-section .container {
    position: relative;
    z-index: 1;
}

.mattenplaner-section h1,
.mattenplaner-section .mattenplaner-title {
    font-family: 'Drupadi', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #556b2f;
    font-weight: bold;
}

.mattenplaner-section .section-subtitle {
    text-align: center;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.mattenplaner-content {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(85, 107, 47, 0.14);
    box-shadow: 0 8px 32px rgba(44, 62, 44, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    font-family: 'Raleway', sans-serif;
}

.mattenplaner-section .results-container {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(85, 107, 47, 0.14);
    box-shadow: 0 8px 32px rgba(44, 62, 44, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1rem;
}

.mattenplaner-cta-wrap {
    text-align: center;
    margin-top: 2rem;
}

.mattenplaner-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #556b2f;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mattenplaner-cta-button:hover {
    background: #4a5f2a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 107, 47, 0.3);
}

.input-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(85, 107, 47, 0.12);
}

.input-section h2 {
    font-family: 'Siffon', sans-serif;
    font-size: 1.4rem;
    color: #556b2f;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.section-header i {
    color: #556b2f;
    font-size: 1.2rem;
}

.input-section p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-with-unit {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-unit input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    padding-right: 2.5rem;
}

.input-with-unit input:focus {
    outline: none;
    border-color: #556b2f;
    box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.1);
}

.input-with-unit .unit {
    position: absolute;
    right: 0.75rem;
    color: #666;
    font-weight: 500;
    pointer-events: none;
}

.mat-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mat-option {
    position: relative;
}

.mat-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mat-option label {
    display: block;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.mat-option label:hover {
    border-color: #556b2f;
    background: #f8f9fa;
}

.mat-option input[type="radio"]:checked + label {
    border-color: #556b2f;
    background: rgba(85, 107, 47, 0.05);
    position: relative;
}

.mat-option input[type="radio"]:checked + label::after {
    content: "✓";
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    color: #556b2f;
    font-weight: bold;
    font-size: 1.2rem;
}

.mat-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mat-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.mat-dimensions {
    color: #666;
    font-size: 0.9rem;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #556b2f;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.toggle-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.calculate-button {
    width: 100%;
    background: #556b2f;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    margin-bottom: 1rem;
}

.calculate-button:hover {
    background: #4a5f2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 107, 47, 0.3);
}

.info-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(85, 107, 47, 0.1);
    border: 1px solid rgba(85, 107, 47, 0.2);
    border-radius: 8px;
    color: #556b2f;
    font-size: 0.9rem;
}

.info-notice i {
    font-size: 1.1rem;
}

.results-container {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(85, 107, 47, 0.1);
    padding: 2rem;
}

.results-container h2 {
    font-family: 'Drupadi', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #556b2f;
    font-weight: bold;
}

.results-container .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.calculation-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.calculation-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: rgba(85, 107, 47, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(85, 107, 47, 0.1);
    min-height: 80px;
    justify-content: center;
}

.summary-label {
    color: #556b2f;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Responsive Design für mobile Geräte */
@media (max-width: 768px) {
    .calculation-summary {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }
    
    .summary-item {
        min-height: 70px;
        padding: 12px;
    }
    
    .summary-label {
        font-size: 0.8rem;
    }
    
    .summary-value {
        font-size: 1.1rem;
    }
}

.layout-visualization {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layout-container {
    position: relative;
    border: 3px solid #556b2f;
    border-radius: 8px;
    background: #f0f0f0; /* Grauer Hintergrund für die Box */
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-height: 200px;
}

.mat-element {
    border: 2px solid rgba(0,0,0,0.3);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    text-align: center;
    padding: 4px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    cursor: pointer;
    min-height: 30px;
    min-width: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    position: absolute;
}

.mat-element:hover {
    transform: scale(1.05);
    z-index: 20;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.mat-element.full-mat {
    background: #556b2f; /* Grün für vollständige Matten */
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.3);
}

.mat-element.cut-mat {
    background: #F5A623; /* Orange für zugeschnittene Matten */
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.3);
}

.gap-info {
    margin-top: 1rem;
    width: 100%;
}

.gap-info div {
    text-align: center;
    padding: 8px;
    background: rgba(85, 107, 47, 0.1);
    border-radius: 4px;
    font-size: 0.8rem;
    color: #556b2f;
    border: 1px solid rgba(85, 107, 47, 0.2);
}

/* Responsive Design für Mattenplaner */
@media (max-width: 1024px) {
    .mattenplaner-section {
        padding: 4rem 0;
    }
    
    .mattenplaner-section h1,
.mattenplaner-section .mattenplaner-title {
        font-size: 2.2rem;
    }
    
    .mattenplaner-content {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mattenplaner-section {
        padding: 3rem 0;
    }
    
    .mattenplaner-section h1,
.mattenplaner-section .mattenplaner-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .mattenplaner-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .mattenplaner-content {
        max-width: calc(100% - 1.5rem);
        margin: 0 auto;
        padding: 1.25rem;
    }
    
    .dimension-inputs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .calculation-summary {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .input-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .input-section h2 {
        font-size: 1.2rem;
    }
    
    .results-container {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 600px) {
    .mattenplaner-section {
        padding: 2.5rem 0;
    }
    
    .mattenplaner-section h1,
.mattenplaner-section .mattenplaner-title {
        font-size: 1.6rem;
    }
    
    .mattenplaner-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .mattenplaner-content {
        max-width: calc(100% - 1rem);
        padding: 1rem;
    }
    
    .input-section h2 {
        font-size: 1.1rem;
    }
    
    .input-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mattenplaner-section {
        padding: 2rem 0;
    }
    
    .mattenplaner-section h1,
.mattenplaner-section .mattenplaner-title {
        font-size: 1.4rem;
        line-height: 1.1;
    }
    
    .mattenplaner-section .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .mattenplaner-content {
        max-width: calc(100% - 0.5rem);
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .input-section {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .input-section h2 {
        font-size: 1rem;
    }
    
    .input-section p {
        font-size: 0.85rem;
    }
    
    .results-container {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .mat-element {
        font-size: 0.8rem;
        min-height: 35px;
    }
    
    .mat-dimensions {
        font-size: 0.65rem;
    }
}

@media (max-width: 360px) {
    .mattenplaner-section {
        padding: 1.5rem 0;
    }
    
    .mattenplaner-section h1,
.mattenplaner-section .mattenplaner-title {
        font-size: 1.2rem;
    }
    
    .mattenplaner-section .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .mattenplaner-content {
        max-width: calc(100% - 0.25rem);
        padding: 0.5rem;
    }
    
    .input-section {
        padding: 0.5rem;
    }
    
    .input-section h2 {
        font-size: 0.95rem;
    }
    
    .input-section p {
        font-size: 0.8rem;
    }
}

/* Business Cards Section */
.business-cards {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    text-align: center;
}

.business-cards h1 {
    font-family: 'Drupadi', serif;
    font-size: 2.5rem;
    color: #556b2f;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.business-cards .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
}

.business-card-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.business-card-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.business-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #556b2f;
}

.business-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #556b2f, #6b8e23);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.business-card-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.business-card-item:hover .team-photo {
    transform: scale(1.05);
}

.business-card-item h3 {
    font-family: 'Drupadi', serif;
    font-size: 1.5rem;
    color: #556b2f;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.business-card-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.business-card-link {
    display: inline-block;
    background: linear-gradient(135deg, #556b2f, #6b8e23);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.business-card-link:hover {
    background: linear-gradient(135deg, #6b8e23, #556b2f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 107, 47, 0.3);
}

/* Responsive Design für Business Cards */
@media (max-width: 768px) {
    .business-cards {
        padding: 3rem 0;
    }
    
    .business-cards h1 {
        font-size: 2rem;
    }
    
    .business-card-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .business-card-item {
        padding: 1.5rem;
    }
    
    .business-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .business-card-image {
        width: 60px;
        height: 60px;
    }
    
    .business-card-item h3 {
        font-size: 1.3rem;
    }
    
    .business-card-item p {
        font-size: 0.9rem;
    }
    
    .business-card-link {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}

/* Digital Business Card Styles */
.digital-business-card {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.card-container {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.card-top {
    background: linear-gradient(135deg, #556b2f, #6b8e23);
    padding: 2rem;
    text-align: center;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.profile-image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 4px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-image-placeholder:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.upload-text {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 4px solid white;
}

.share-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.share-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.profile-info {
    color: white;
}

.profile-name {
    font-family: 'Drupadi', serif;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 0.3rem 0;
    opacity: 0.9;
}

.profile-company {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.8;
}

.card-bottom {
    background: white;
    padding: 2rem;
    border-radius: 0 0 20px 20px;
}

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

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-option:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #556b2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-option:hover .contact-icon {
    background: #6b8e23;
    transform: scale(1.1);
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.contact-detail {
    font-size: 0.7rem;
    font-weight: 400;
    color: #666;
    line-height: 1.2;
    word-break: break-all;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #556b2f;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    font-size: 1.2rem;
}

/* Responsive Design für Digital Business Card */
@media (max-width: 768px) {
    .digital-business-card {
        padding: 1rem;
    }
    
    .card-container {
        max-width: 350px;
    }
    
    .card-top {
        padding: 1.5rem;
    }
    
    .profile-image-placeholder {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-title {
        font-size: 1rem;
    }
    
    .profile-company {
        font-size: 0.9rem;
    }
    
    .card-bottom {
        padding: 1.5rem;
    }
    
    .contact-options {
        gap: 0.5rem;
    }
    
    .contact-option {
        padding: 0.8rem 0.3rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-label {
        font-size: 0.7rem;
    }
    
    .contact-detail {
        font-size: 0.6rem;
    }
    
    .toast {
        bottom: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 1.5rem 1.15rem;
    }

    .hero-content h1 {
        font-size: 1.28rem;
        line-height: 1.32;
    }

    .hero-subline {
        font-size: 1.1rem;
    }

    .hero-lead {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .hero .shop-button {
        max-width: none;
        font-size: 0.9rem;
    }

    .anfrage-modal-content {
        max-height: min(94dvh, 94svh);
        padding: 1rem 1rem 0.85rem;
        padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    }

    .anfrage-modal-content h3 {
        font-size: 1.3rem;
    }

    .anfrage-modal-intro {
        font-size: 0.88rem;
    }

    .anfrage-form-grid {
        gap: 0.75rem;
    }

    .anfrage-form .input-group label {
        font-size: 0.84rem;
    }

    .comparison-section .container--comparison {
        padding: 1.35rem 1rem;
        margin: 0 0.75rem;
    }

    .comparison-table {
        gap: 1rem;
    }

    .comparison-column-header {
        padding: 0.95rem 1rem;
        font-size: 0.84rem;
    }

    .comparison-item {
        padding: 0.95rem 1rem;
    }

    .comparison-item-title {
        font-size: 0.92rem;
    }

    .comparison-item-text {
        font-size: 0.86rem;
        line-height: 1.58;
    }

    .card-container {
        max-width: 320px;
    }
    
    .profile-image-placeholder {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }
    
    .upload-text {
        font-size: 0.7rem;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .contact-option {
        flex-direction: row;
        padding: 1rem;
        text-align: left;
    }
    
    .contact-icon {
        margin-right: 1rem;
        margin-bottom: 0;
    }
}

/* Shop Section */
.shop-section {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.shop-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(85, 107, 47, 0.1);
}

.shop-cta h2 {
    font-family: 'Drupadi', serif;
    font-size: 2.5rem;
    color: #556b2f;
    margin-bottom: 1rem;
    font-weight: bold;
}

.shop-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.shop-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #556b2f;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
}

.shop-button:hover {
    background: #556b2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.shop-button i {
    font-size: 1.2rem;
}

/* Story-CTAs */
.shop-button--story {
    margin-top: 2rem;
    display: inline-flex;
}

.solution-section .shop-button--story {
    background: white;
    color: #556b2f;
}

.solution-section .shop-button--story:hover {
    background: #f5f6f4;
    color: #2c3e2c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.social-proof-section .testimonial-cards {
    margin-top: 2rem;
    margin-bottom: 0;
}

.social-proof-section .social-proof-subline {
    margin-top: 2rem;
    margin-bottom: 0;
    text-align: center;
}

.social-proof-section .shop-button--story {
    margin-top: 2rem;
}

.shop-button--card {
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
}

.products-cta-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-top: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.products-cta-text .inline-link {
    color: #556b2f;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #556b2f;
}

.products-cta-text .inline-link:hover {
    color: #2c3e2c;
    border-bottom-color: #2c3e2c;
}

/* Responsive Design für Shop Section */
@media (max-width: 768px) {
    .shop-section {
        padding: 3rem 0;
    }
    
    .shop-cta {
        padding: 2rem 1.5rem;
    }
    
    .shop-cta h2 {
        font-size: 2rem;
    }
    
    .shop-subtitle {
        font-size: 1rem;
    }
    
    .shop-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10003;
    padding: 1rem;
    pointer-events: none;
}

.cookie-consent-banner[hidden] {
    display: none;
}

.cookie-consent-banner-inner {
    pointer-events: auto;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(85, 107, 47, 0.2);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(44, 62, 44, 0.18);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.25rem 2rem;
    align-items: center;
}

.cookie-consent-text h2 {
    font-family: 'Drupadi', serif;
    font-size: 1.35rem;
    color: #2c3e2c;
    margin-bottom: 0.5rem;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #444;
    margin: 0;
}

.cookie-consent-links {
    margin-top: 0.5rem !important;
}

.cookie-consent-text a {
    color: #556b2f;
    font-weight: 600;
}

.cookie-consent-actions,
.cookie-settings-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.cookie-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.75rem 1.1rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn--primary {
    background: #556b2f;
    color: #fff;
    border-color: #556b2f;
}

.cookie-btn--primary:hover {
    background: #4a5d28;
    border-color: #4a5d28;
}

.cookie-btn--secondary {
    background: #fff;
    color: #2c3e2c;
    border-color: #d5ddd0;
}

.cookie-btn--secondary:hover {
    border-color: #556b2f;
    color: #556b2f;
}

.cookie-btn--ghost {
    background: transparent;
    color: #556b2f;
    border-color: transparent;
}

.cookie-btn--ghost:hover {
    background: rgba(85, 107, 47, 0.08);
}

.cookie-consent-settings {
    position: fixed;
    inset: 0;
    z-index: 10004;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-consent-settings[hidden] {
    display: none;
}

.cookie-consent-settings-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 44, 0.55);
    backdrop-filter: blur(2px);
}

.cookie-consent-settings-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: min(90dvh, 90vh);
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(44, 62, 44, 0.25);
}

.cookie-consent-settings-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(85, 107, 47, 0.1);
    color: #556b2f;
    cursor: pointer;
}

.cookie-consent-settings-panel h2 {
    font-family: 'Drupadi', serif;
    font-size: 1.6rem;
    color: #2c3e2c;
    margin: 0 2.5rem 0.75rem 0;
}

.cookie-settings-intro {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #555;
    margin-bottom: 1.25rem;
}

.cookie-category {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.85rem;
}

.cookie-category-header {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
}

.cookie-category h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #2c3e2c;
    margin-bottom: 0.35rem;
}

.cookie-category p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.cookie-always-on {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #556b2f;
    background: rgba(85, 107, 47, 0.12);
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #cfd8cf;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: #556b2f;
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-toggle input:focus-visible + .cookie-toggle-slider {
    outline: 2px solid #556b2f;
    outline-offset: 2px;
}

.legal-links .cookie-settings-link {
    background: none;
    border: none;
    padding: 0.3rem 0;
    font: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: white !important;
    text-decoration: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.legal-links .cookie-settings-link:hover {
    color: #f39c12 !important;
    text-decoration: underline;
    transform: translateX(2px);
}

body.cookie-banner-open {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 0.75rem;
    }

    .cookie-consent-banner-inner {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .cookie-consent-actions,
    .cookie-settings-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-consent-settings {
        align-items: flex-end;
        padding: 0;
    }

    .cookie-consent-settings-panel {
        max-width: none;
        border-radius: 14px 14px 0 0;
        max-height: min(92dvh, 92vh);
        padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));
    }
}

/* Fehlerseiten (404, 403, 500, 503) */
.error-page-main .error-page-code {
    display: block;
    width: fit-content;
    margin: 0 auto 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(85, 107, 47, 0.12);
    color: #556b2f;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.error-page-main .impressum-title {
    margin-bottom: 2rem;
} 