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

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

.bold { font-weight: var(--fw-strong); }
.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: 752px;
    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: 752px;
    margin: 0 auto;
    padding: var(--sp-lg) var(--sp-md) 0;
}

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

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

.author-bar {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    background: #20274e;
    border-left: 4px solid #5cb7b3;
    padding: var(--sp-xs) var(--sp-sm);
    margin-bottom: var(--sp-md);
}

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

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

.author-info .bold {
    font-weight: var(--fw-strong);
}

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

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

.red-banner {
    background: #c62e2e;
    border: 3px solid #471717;
    padding: var(--sp-sm) var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.red-banner p {
    font-size: var(--font-xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.yellow-box {
    background: #f2c370;
    border: 3px solid #b1822f;
    border-radius: var(--radius-xl);
    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 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: var(--sp-xs);
}

.yellow-box-title {
    font-size: var(--font-lg);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    margin-bottom: var(--sp-sm);
}

.liver-point {
    display: flex;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-sm);
}

.liver-point-icon {
    width: 75px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.liver-point-content {
    flex: 1;
}

.liver-point-title {
    font-size: var(--font-lg);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    margin-bottom: 4px;
}

.liver-point-text {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
}

.gray-box {
    background: #e2e2e2;
    border: 3px solid #707070;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-sm);
}

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

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

.green-box {
    background: #cae1cd;
    border: 4px solid #1c4621;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

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

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

.blue-box {
    background: #f9fbfd;
    border: 4px solid #d8e3ee;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

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

.blue-box .checklist-title {
    font-size: var(--font-md);
    font-weight: var(--fw-strong);
    line-height: var(--lh-normal);
    margin-bottom: var(--sp-xs);
}

.blue-box .warning-text {
    line-height: var(--lh-loose);
}

.blue-box .pricing-title {
    font-size: var(--font-md);
    font-weight: var(--fw-strong);
    line-height: var(--lh-normal);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-xs);
}

.blue-box ul {
    margin-bottom: var(--sp-sm);
    padding-left: var(--sp-lg);
}

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

.cta-button {
    display: block;
    background: #e6ab05;
    color: #000;
    text-align: center;
    font-size: var(--font-md);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: var(--sp-sm) var(--sp-md);
    border: 1px solid #000;
    border-radius: var(--radius-full);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
    max-width: 489px;
    margin-left: auto;
    margin-right: auto;
}

.product-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);
}

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

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

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

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

.accordion-icon {
    font-size: var(--font-xl);
    line-height: var(--lh-none);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-body {
    display: none;
    padding: 0 var(--sp-sm) var(--sp-sm);
}

.accordion-body.open {
    display: block;
}

.accordion-body a {
    color: rgb(65, 105, 225);
    word-break: break-all;
    display: block;
    margin-bottom: var(--sp-xs);
}

.accordion-body p {
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
}

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

.footer-container {
    max-width: 752px;
    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);
    }

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