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

body {
    font-family: 'Inter', sans-serif;
    font-weight: var(--fw-normal);
    color: #000;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

.bold { font-weight: var(--fw-bold); }
.italic { font-style: italic; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: var(--sp-sm) var(--sp-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1080px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
}

.logo-icon { width: 36px; height: auto; }
.logo-ratgeber { height: 14px; width: auto; }
.logo-tagline { height: 10px; width: auto; }

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.main {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
}

.article p {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-sm);
}

.article ul, .article ol {
    margin-bottom: var(--sp-sm);
    padding-left: var(--sp-lg);
}

.article ul li, .article ol li {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-xs);
}

.content-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.hero-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: var(--sp-lg) var(--sp-md) 0;
}

.category-label {
    font-size: var(--font-sm);
    font-weight: var(--fw-bold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: var(--sp-xs);
}

.hero-title {
    font-size: var(--font-2xl);
    line-height: var(--lh-tight);
    font-weight: var(--fw-bold);
    color: #000;
    margin-bottom: var(--sp-md);
}

.author-bar {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info {
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
    color: #000;
}

.hero-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: var(--sp-md);
}

.intro-para {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-sm);
}

.yellow-box {
    background: #fff8cc;
    border-radius: var(--radius-lg);
    padding: var(--sp-md);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-sm);
}

.yellow-box p {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-xs);
}

.yellow-box p:last-child { margin-bottom: 0; }

.yellow-box p.step-title {
    font-size: var(--font-lg);
}

.yellow-box ul {
    margin-top: var(--sp-xs);
    margin-bottom: 0;
    padding-left: var(--sp-lg);
}

.yellow-box ul li {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-bottom: 4px;
}

.blue-box {
    background: #e6f4ff;
    border-radius: var(--radius-lg);
    padding: var(--sp-md);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-sm);
}

.blue-box p {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
}

.section-title {
    font-size: var(--font-2xl);
    line-height: var(--lh-snug);
    font-weight: var(--fw-bold);
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-sm);
}

.content-section {
    margin-bottom: var(--sp-md);
}

.study-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    border-radius: var(--radius-lg);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-sm);
}

.product-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    border-radius: var(--radius-xl);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.cta-button {
    display: block;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: var(--font-xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    letter-spacing: 0.5px;
    padding-top: var(--sp-sm);
    padding-bottom: var(--sp-sm);
    padding-left: var(--sp-md);
    padding-right: var(--sp-md);
    border-radius: var(--radius-full);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.reviews-section {
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-md);
}

.reviews-section .review {
    padding-bottom: var(--sp-md);
    margin-bottom: var(--sp-md);
    border-bottom: 1px solid #e5e5e5;
}

.reviews-section .review:last-of-type {
    border-bottom: none;
}

.reviews-section .reviewer-name {
    font-size: var(--font-lg);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    margin: 0 0 0 0;
}

.reviews-section .review-stars {
    font-size: var(--font-lg);
    line-height: var(--lh-relaxed);
    color: #f5a623;
    margin: 0 0 5px 0;
}

.reviews-section .review-date {
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-snug);
    color: #666;
    margin: 0 0 10px 0;
}

.reviews-section .review-text {
    font-size: var(--font-md);
    font-weight: var(--fw-normal);
    line-height: var(--lh-normal);
    color: #000;
    margin: 0;
}

.accordion {
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-lg);
}

.accordion-item {
    border-top: 1px solid #ccc;
}

.accordion-item:last-child {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-sm) 0;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-loose);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.accordion-icon {
    font-size: var(--font-xl);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: none;
    padding-bottom: var(--sp-md);
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content p {
    font-size: var(--font-sm);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-xs);
}

.accordion-content a {
    color: #0066cc;
    text-decoration: underline;
    word-break: break-all;
}

.page-footer {
    background: #1a1a1a;
    color: #fff;
    padding: var(--sp-lg) var(--sp-md);
    margin-top: var(--sp-xl);
}

.footer-container {
    max-width: 1080px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
}

.footer-logo .logo-icon { filter: brightness(0) invert(1); }
.footer-logo .logo-ratgeber { filter: brightness(0) invert(1); }
.footer-logo .logo-tagline { filter: brightness(0) invert(1); }

.footer-nav {
    display: flex;
    gap: var(--sp-md);
}

.footer-nav a {
    font-size: var(--font-xs);
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--sp-sm);
}

.footer-bottom p {
    font-size: var(--font-xs);
    opacity: 0.6;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--font-3xl);
    }

    .section-title {
        font-size: var(--font-2xl);
    }

    .cta-button {
        font-size: var(--font-xl);
    }

    .footer-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
