/* ==========================================
   FARBPALETTE (basierend auf Heuwind Logo)
   ========================================== */
:root {
    --primary-dark-teal: #87a282;
    --primary-light-green: #a8d66e;
    --accent-yellow: #d4e157;
    --neutral-gray: #808080;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-gray: #e0e0e0;
}

/* ==========================================
   RESET & GLOBALE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ==========================================
   NAVBAR / NAVIGATION
   ========================================== */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    height: auto;
}

.logo-section {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.logo {
    height: 160px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
    height: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-dark-teal);
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* TRENNLINIE unter dem Navbar */
.navbar::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--primary-dark-teal);
}

/* ==========================================
   HAMBURGER MENÜ (Mobile)
   ========================================== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark-teal);
    margin: 5px 0;
    transition: 0.3s ease;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--primary-dark-teal);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-gray);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.contact-method h3 {
    font-size: 1.1rem;
    color: var(--primary-dark-teal);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-method p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-method a {
    color: var(--primary-dark-teal);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-method a:hover {
    opacity: 0.7;
}

.contact-features {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-features h3 {
    font-size: 1.1rem;
    color: var(--primary-dark-teal);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.features-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-dark-teal);
    box-shadow: 0 0 0 3px rgba(42, 127, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group textarea {
    resize: vertical;
    line-height: 1.5;
}

.form-group select {
    cursor: pointer;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-dark-teal);
}

.checkbox-label {
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label a {
    color: var(--primary-dark-teal);
    text-decoration: underline;
}

.submit-button {
    background-color: var(--primary-dark-teal);
    color: var(--text-light);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #6e8869;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 127, 110, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.success-message {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    border-left: 5px solid #2e7d32;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-dark-teal);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--primary-dark-teal);
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ==========================================
   RESPONSIVE: TABLET & MOBILE
   ========================================== */
@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ps-arrow {
        text-align: center;
        transform: rotate(90deg);
        display: block;
        width: 100%;
    }

    .ps-card {
        padding: 25px;
        width: 100%;
        box-sizing: border-box;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-card {
        padding: 25px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .ps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .problem-solution,
    .comparison-section {
        padding: 50px 15px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        gap: 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 140px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #ffffff;
        gap: 0;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-gray);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        height: 120px;
    }

    .nav-container {
        padding: 10px 15px;
    }
}

/* ==========================================
   CONTAINER
   ========================================== */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
main {
    flex: 1;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark-teal) 0%, #6e8869 100%);
    color: var(--text-light);
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.hero-section.about {
    background: linear-gradient(135deg, var(--primary-dark-teal) 0%, #6e8869 100%);
}

.hero-section.about .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================
   PRODUCT INTRO
   ========================================== */
.product-intro {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    margin-bottom: 60px;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark-teal);
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-content .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* ==========================================
   PROBLEM-SOLUTION SECTION
   ========================================== */
.problem-solution {
    padding: 80px 20px;
    background-color: #ffffff;
}

.problem-solution h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark-teal);
    margin-bottom: 50px;
    font-weight: 700;
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.ps-card {
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.ps-card.problem {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left: 5px solid #d32f2f;
}

.ps-card.solution {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 5px solid var(--primary-dark-teal);
}

.ps-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.ps-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li,
.solution-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.ps-arrow {
    font-size: 2.5rem;
    color: var(--primary-dark-teal);
    font-weight: 700;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark-teal);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-dark-teal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--primary-dark-teal);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ==========================================
   COMPARISON SECTION
   ========================================== */
.comparison-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.comparison-section .section-title {
    margin-bottom: 50px;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    border-radius: 12px;
    border-top: 5px solid;
}

.comparison-card.wood {
    background-color: #f5f5f5;
    border-top-color: #8d6e63;
}

.comparison-card.heuwind {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-top-color: var(--primary-dark-teal);
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.metric:last-child {
    border-bottom: none;
}

.metric .label {
    font-weight: 600;
    color: var(--text-dark);
}

.metric .value {
    font-weight: 700;
    color: var(--primary-dark-teal);
    font-size: 1.1rem;
}

/* ==========================================
   SCALABILITY SECTION
   ========================================== */
.scalability-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-dark-teal) 0%, #6e8869 100%);
    color: var(--text-light);
}

.scalability-section .section-title,
.scalability-section .section-subtitle {
    color: var(--text-light);
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.use-case {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.use-case h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.use-case p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark-teal);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-dark-teal);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 127, 110, 0.3);
}

.cta-button:hover {
    background-color: #6e8869;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 127, 110, 0.4);
}

/* ==========================================
   ABOUT PAGE - STORY SECTION
   ========================================== */
.story-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-block h2 {
    font-size: 1.8rem;
    color: var(--primary-dark-teal);
    margin-bottom: 20px;
    font-weight: 700;
}

.story-block p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.approach-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.approach-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-dark-teal);
    font-weight: bold;
    font-size: 1.3rem;
}

/* ==========================================
   STRENGTHS SECTION
   ========================================== */
.strengths-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.strength-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.strength-card:hover {
    border-color: var(--primary-dark-teal);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.strength-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.strength-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark-teal);
    margin-bottom: 12px;
    font-weight: 700;
}

.strength-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ==========================================
   VISION SECTION
   ========================================== */
.vision-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
}

.vision-section .section-title {
    margin-bottom: 15px;
}

.vision-outcomes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto;
}

.outcome {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-left: 5px solid var(--primary-dark-teal);
}

.outcome h4 {
    font-size: 1.2rem;
    color: var(--primary-dark-teal);
    margin-bottom: 10px;
    font-weight: 700;
}

.outcome p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.vision-statement {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    max-width: 700px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 2px solid rgba(42, 127, 110, 0.2);
    line-height: 1.8;
}

/* ==========================================
   VALUES SECTION
   ========================================== */
.values-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.philosophy-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 30px 0 50px;
    font-weight: 500;
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, var(--primary-dark-teal) 0%, #6e8869 100%);
    color: var(--text-light);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* ==========================================
   TAGLINE SECTION
   ========================================== */
.tagline-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark-teal) 0%, #6e8869 100%);
}

.tagline-box {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.tagline-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.tagline-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.content-section h1 {
    font-size: 2.5rem;
    color: var(--primary-dark-teal);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.content-section h2 {
    font-size: 1.5rem;
    color: var(--primary-dark-teal);
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section h3 {
    font-size: 1.2rem;
    color: var(--primary-dark-teal);
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
}

.feature-list,
.strength-list,
.vision-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li,
.strength-list li,
.vision-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
}

.feature-list li::before,
.strength-list li::before,
.vision-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-dark-teal);
    font-weight: bold;
    font-size: 1.2rem;
}

.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border: 2px solid var(--primary-dark-teal);
}

.comparison-table th {
    background-color: var(--primary-dark-teal);
    color: var(--text-light);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-gray);
}

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

.tagline {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-dark-teal);
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(42, 127, 110, 0.05);
    border-radius: 8px;
    font-weight: 600;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background-color: var(--primary-dark-teal);
    color: var(--text-light);
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
}

footer p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

footer a {
    color: var(--text-light);
    text-decoration: underline;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

footer a:hover {
    opacity: 1;
}

/* ==========================================
   IMPRESSUM
   ========================================== */
/* ==========================================
   IMPRESSUM PAGE
   ========================================== */
.impressum {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px !important;
    background-color: #ffffff !important;
    border: none !important;
}

.impressum h2 {
    font-size: 1.5rem;
    color: var(--primary-dark-teal);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impressum h2:first-of-type {
    margin-top: 0;
}

.impressum p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.impressum a {
    color: var(--primary-dark-teal);
    text-decoration: underline;
    font-weight: 500;
}

.impressum a:hover {
    opacity: 0.8;
}

.impressum-quelle {
    margin-top: 50px;
    font-size: 0.85rem;
    color: var(--neutral-gray);
    border-top: 2px solid var(--border-gray);
    padding-top: 20px;
    font-style: italic;
}

/* ==========================================
   RESPONSIVE: KLEINE MOBILE GERÄTE
   ========================================== */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .features-grid,
    .strengths-grid,
    .values-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .strength-card,
    .value-card {
        padding: 25px 20px;
    }

    .feature-icon,
    .strength-icon {
        font-size: 2rem;
    }

    .cta-button {
        display: block;
        width: 90%;
        margin: 0 auto;
    }

    .impressum {
        padding: 30px 20px !important;
    }

    .ps-card {
        padding: 25px;
    }
}

/* ── Produktbild ──────────────────────────────── */
.product-image-section {
    padding: 0 0 48px;
}

.product-main-image {
    display: block;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(135, 162, 130, 0.2);
    object-fit: cover;
}
