/* ============================================
   INTERNETSUCHT RATGEBER - STYLESHEET
   Theme: Beruhigend, seriös, hoffnungsvoll
   ============================================ */

/* VARIABLES */
:root {
    --primary: #1E3A5F;
    --primary-light: #2C5282;
    --primary-dark: #152A45;
    --secondary: #2A9D8F;
    --secondary-light: #3DB5A6;
    --secondary-dark: #1F7A6E;
    --accent: #E9C46A;
    --accent-dark: #D4A84B;
    --warning: #E76F51;
    --warning-light: #F4A261;
    --success: #2A9D8F;
    --white: #FFFFFF;
    --light: #F8FAFB;
    --light-gray: #E8ECF0;
    --medium-gray: #94A3B8;
    --dark-gray: #64748B;
    --dark: #1A1A2E;
    --text-dark: #1E293B;
    --text-medium: #475569;
    --shadow: rgba(30, 58, 95, 0.1);
    --shadow-strong: rgba(30, 58, 95, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

/* RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--secondary);
}
img {
    max-width: 100%;
    height: auto;
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 9999;
}
.skip-link:focus {
    top: 0;
}

/* HOTLINE BANNER */
.hotline-banner {
    background: var(--warning);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.9rem;
}
.hotline-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.hotline-banner a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}
.hotline-info {
    opacity: 0.9;
    font-size: 0.85rem;
}

/* HEADER */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px var(--shadow);
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
}
.logo:hover {
    color: var(--primary);
}
.logo-icon {
    font-size: 1.75rem;
}
.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

/* NAVIGATION */
#nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.nav-link:hover, .nav-link.active {
    background: var(--light);
    color: var(--primary);
}
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow-strong);
    min-width: 220px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    border-radius: 6px;
    transition: all 0.2s ease;
}
.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
}
.dropdown-icon {
    font-size: 1.1rem;
}

/* MOBILE TOGGLE */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* HERO */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 1.5rem;
    text-align: center;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
}
.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero .highlight {
    color: var(--accent);
}
.hero-text {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}
.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.4);
}
.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-secondary:hover {
    background: var(--light);
    color: var(--primary);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-warning {
    background: var(--warning);
    color: var(--white);
    border-color: var(--warning);
}
.btn-warning:hover {
    background: var(--warning-light);
    border-color: var(--warning-light);
    color: var(--white);
}
.btn-light {
    background: var(--white);
    color: var(--primary);
}
.btn-light:hover {
    background: var(--light);
    color: var(--primary);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

/* WARNING BOX */
.warning-box {
    background: #FEF3E8;
    padding: 2rem 1.5rem;
}
.warning-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--warning);
    box-shadow: 0 4px 20px var(--shadow);
}
.warning-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}
.warning-text h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.warning-text p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* SECTIONS */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.features-section, .symptoms-section, .help-section, .prevention-section {
    padding: 5rem 0;
}
.symptoms-section {
    background: var(--light);
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-tag {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* INFO GRID */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-strong);
}
.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.info-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.info-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.card-link {
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.card-link:hover {
    color: var(--secondary-dark);
}

/* SYMPTOMS GRID */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.25rem;
}
.symptom-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 15px var(--shadow);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}
.symptom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-strong);
}
.symptom-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.symptom-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.symptom-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}
.symptom-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}
.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* HELP GRID */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.help-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--light-gray);
}
.help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.help-card h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.help-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* THERAPY SECTION */
.therapy-section {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 0;
}
.therapy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.therapy-text .section-tag {
    background: rgba(255, 255, 255, 0.2);
}
.therapy-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}
.therapy-text p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.therapy-list {
    list-style: none;
    margin-bottom: 2rem;
}
.therapy-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}
.therapy-list .check {
    color: var(--accent);
    font-weight: 700;
}
.therapy-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.therapy-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.stat-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* PREVENTION SECTION */
.prevention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.prevention-card {
    background: var(--light);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}
.prevention-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.prevention-card h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.prevention-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* CTA SECTION */
.cta-section {
    padding: 5rem 0;
    background: var(--light);
}
.cta-box {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.cta-box h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}
.cta-box p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 0;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-flex;
}
.footer-brand .logo-text {
    color: var(--white);
}
.footer-brand p {
    color: #FFFFFF;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.footer-contact a {
    color: var(--secondary-light);
}
.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.footer-column ul {
    list-style: none;
}
.footer-column li {
    margin-bottom: 0.75rem;
}
.footer-column a {
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-column a:hover {
    color: var(--secondary-light);
    text-decoration: underline;
}
.footer-hotline {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-hotline p {
    color: #FFFFFF;
}
.footer-hotline a {
    color: var(--accent);
    font-size: 1.25rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copyright {
    color: #FFFFFF;
    font-size: 0.85rem;
}
.footer-copyright a {
    color: #8AB4F8;
    text-decoration: underline;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: #FFFFFF;
    font-size: 0.85rem;
}
.footer-links a:hover {
    color: var(--secondary-light);
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .therapy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .therapy-stats {
        flex-direction: row;
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    #nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -5px 0 30px var(--shadow-strong);
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    #nav.active {
        right: 0;
    }
    .nav-dropdown {
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    .hero {
        padding: 3rem 1.5rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .warning-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hotline-content {
        flex-direction: column;
        gap: 0.25rem;
    }
    .hero h1 {
        font-size: 1.75rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   UNTERSEITEN STYLES
   ============================================ */

/* PAGE HERO (Unterseiten Header) */
.page-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem 1.5rem 4rem;
}
.page-hero-small {
    padding: 2rem 1.5rem 3rem;
}
.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}
.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
.page-hero-tagline {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}
.breadcrumb a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.breadcrumb a:hover {
    opacity: 0.8;
}
.breadcrumb span {
    margin: 0 0.25rem;
}

/* CONTENT SECTION (2-spaltig mit Sidebar) */
.content-section {
    padding: 3rem 0 4rem;
}
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* ARTIKEL CONTENT */
.article-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px var(--shadow);
}
.article-content h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}
.article-content h2:first-of-type {
    margin-top: 0;
}
.article-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.article-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.article-content p {
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}
.article-content strong {
    color: var(--text-dark);
}

/* CONTENT LISTS */
.article-content ul,
.article-content ol,
.content-list {
    margin: 1.25rem 0 1.5rem 0;
    padding-left: 0;
    list-style: none;
}
.article-content li,
.content-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.7;
}
.article-content li::before,
.content-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}
.article-content li strong {
    color: var(--primary);
}

/* INTRO BOX */
.intro-box {
    background: linear-gradient(135deg, #E8F4F8 0%, #F0F7FA 100%);
    border-left: 4px solid var(--secondary);
    padding: 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 2rem;
}
.intro-box p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.8;
}

/* INFO BOX */
.info-box {
    background: linear-gradient(135deg, #FEF9E8 0%, #FFFDF5 100%);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}
.info-box h4 {
    color: var(--accent-dark);
    font-size: 1.1rem;
    margin: 0 0 0.75rem 0;
}
.info-box p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* WARNING BOX INLINE */
.warning-box-inline {
    background: linear-gradient(135deg, #FEF0E8 0%, #FFF8F5 100%);
    border: 1px solid var(--warning);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}
.warning-box-inline h4 {
    color: var(--warning);
    font-size: 1.1rem;
    margin: 0 0 0.75rem 0;
}

/* CTA BOX INLINE */
.cta-box-inline {
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    text-align: center;
}
.cta-box-inline h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin: 0 0 0.5rem 0;
}
.cta-box-inline p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
}
.cta-box-inline .btn {
    background: var(--white);
    color: var(--secondary-dark);
    border-color: var(--white);
}
.cta-box-inline .btn:hover {
    background: var(--light);
    transform: translateY(-2px);
}

/* COMPARISON BOX */
.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}
.comparison-side {
    background: var(--light);
    border-radius: 12px;
    padding: 1.5rem;
}
.comparison-side.good {
    border-top: 4px solid var(--success);
}
.comparison-side.bad {
    border-top: 4px solid var(--warning);
}
.comparison-side h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}
.comparison-side ul {
    margin: 0;
}

/* INFOGRAPHIC CARDS */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}
.info-card-small {
    background: var(--light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.info-card-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}
.info-card-small .icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.info-card-small h4 {
    color: var(--primary);
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}
.info-card-small p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* SYMPTOM OVERVIEW GRID */
.symptom-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}
.symptom-category {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    border-top: 4px solid var(--primary);
}
.symptom-category.emotional {
    border-top-color: var(--warning);
}
.symptom-category.social {
    border-top-color: var(--secondary);
}
.symptom-category.physical {
    border-top-color: var(--accent-dark);
}
.symptom-category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}
.symptom-category ul {
    margin: 0;
}

/* FORMS GRID (Formen der Sucht) */
.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.form-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow-strong);
    border-color: var(--secondary);
}
.form-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.form-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 0 0 0.75rem 0;
}
.form-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* STAT HIGHLIGHT */
.stat-highlight {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}
.stat-highlight .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}
.stat-highlight .label {
    font-size: 1rem;
    opacity: 0.9;
}

/* TIMELINE */
.timeline {
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 3px solid var(--secondary);
}
.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 14px;
    height: 14px;
    background: var(--secondary);
    border-radius: 50%;
    margin-left: -5.5px;
}
.timeline-item h4 {
    color: var(--primary);
    margin: 0 0 0.5rem 0;
}
.timeline-item p {
    margin: 0;
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}
.sidebar-box {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
}
.sidebar-box h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-gray);
}
.sidebar-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar-box li {
    margin-bottom: 0.5rem;
}
.sidebar-box a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-medium);
    border-radius: 6px;
    transition: all 0.2s ease;
}
.sidebar-box a:hover,
.sidebar-box a.active {
    background: var(--light);
    color: var(--primary);
}
.sidebar-box.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}
.sidebar-box.highlight h3 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}
.sidebar-box.highlight p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}
.sidebar-box.highlight .small {
    font-size: 0.85rem;
    opacity: 0.8;
}
.hotline-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent) !important;
    margin: 0.5rem 0;
}

/* LEGAL CONTENT (Impressum, Datenschutz) */
.legal-content {
    max-width: 800px;
}
.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
}
.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
}
.legal-content p {
    font-size: 0.95rem;
}

/* RESPONSIVE UNTERSEITEN */
@media (max-width: 1024px) {
    .content-container {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .sidebar-box {
        flex: 1 1 250px;
    }
}

@media (max-width: 768px) {
    .article-content {
        padding: 1.5rem;
        border-radius: 12px;
    }
    .article-content h2 {
        font-size: 1.4rem;
    }
    .article-content h3 {
        font-size: 1.15rem;
    }
    .comparison-box {
        grid-template-columns: 1fr;
    }
    .page-hero {
        padding: 2rem 1rem 3rem;
    }
    .intro-box {
        padding: 1.25rem 1.5rem;
    }
    .cta-box-inline {
        padding: 1.5rem;
    }
    .sidebar {
        flex-direction: column;
    }
    .sidebar-box {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    .forms-grid {
        grid-template-columns: 1fr;
    }
    .symptom-overview {
        grid-template-columns: 1fr;
    }
}

/* CRITERIA LIST (Diagnosekriterien) */
.criteria-list {
    margin: 2rem 0;
}
.criteria-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}
.criteria-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}
.criteria-content h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}
.criteria-content p {
    margin: 0;
    color: var(--text-medium);
}

/* COMPARISON BOX VERBESSERUNG */
.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}
.comparison-column {
    background: var(--light);
    border-radius: 12px;
    padding: 1.5rem;
    border-top: 4px solid var(--success);
}
.comparison-column.warning {
    border-top-color: var(--warning);
}
.comparison-column h4 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: var(--text-dark);
}
.comparison-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.comparison-column li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}
.comparison-column li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}
.comparison-column.warning li::before {
    background: var(--warning);
}

/* STATISTICS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}
.stat-card {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.stat-card .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-card .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* HOTLINE CARDS */
.hotline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}
.hotline-card {
    background: var(--light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--light-gray);
}
.hotline-card h4 {
    color: var(--primary);
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
}
.hotline-card .phone {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}
.hotline-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* CHECKLIST STYLE */
.checklist {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}
.checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}
.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* WARNING ALERT */
.warning-alert {
    background: linear-gradient(135deg, #FEF0E8 0%, #FFF8F5 100%);
    border: 1px solid var(--warning);
    border-left: 4px solid var(--warning);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.warning-alert .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.warning-alert h4 {
    color: var(--warning);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}
.warning-alert p {
    color: var(--text-medium);
    margin: 0;
}

/* TIP BOX */
.tip-box {
    background: linear-gradient(135deg, #E8F5F3 0%, #F0FAF8 100%);
    border: 1px solid var(--secondary);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}
.tip-box h4 {
    color: var(--secondary-dark);
    font-size: 1.1rem;
    margin: 0 0 0.75rem 0;
}
.tip-box p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* NUMBER LIST (Nummerierte Liste mit großen Zahlen) */
.number-list {
    counter-reset: number-counter;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}
.number-list li {
    counter-increment: number-counter;
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}
.number-list li::before {
    content: counter(number-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* QUOTE BOX */
.quote-box {
    background: var(--light);
    border-left: 4px solid var(--accent);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}
.quote-box p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.quote-box cite {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* RESPONSIVE für neue Elemente */
@media (max-width: 768px) {
    .comparison-box {
        grid-template-columns: 1fr;
    }
    .criteria-item {
        flex-direction: column;
        text-align: center;
    }
    .criteria-number {
        margin: 0 auto;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .warning-alert {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .hotline-cards {
        grid-template-columns: 1fr;
    }
}
