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

html { overflow-x: hidden; }

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

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

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

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

.header {
    background: #f2f4f7;
    padding: var(--sp-sm) var(--sp-md);
}

.header-container {
    max-width: 1200px;
    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: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
}

.main-layout {
    display: flex;
    gap: var(--sp-lg);
    align-items: flex-start;
}

.article {
    flex: 1;
    min-width: 0;
    max-width: 750px;
}

.title-section {
    padding-top: var(--sp-lg);
    margin-bottom: var(--sp-sm);
}

.article-title {
    font-size: var(--font-3xl);
    line-height: var(--lh-tight);
    font-weight: var(--fw-strong);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-sm);
}

.article-subtitle {
    font-size: var(--font-md);
    line-height: var(--lh-snug);
    font-weight: var(--fw-bold);
    letter-spacing: 0.02em;
}

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

.intro-section {
    margin-bottom: var(--sp-lg);
}

.article p {
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    margin-bottom: var(--sp-sm);
    letter-spacing: 0.02em;
}

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

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

.italic-text {
    font-style: italic;
}

.numbered-list {
    list-style: decimal;
    padding-left: var(--sp-lg);
    margin-bottom: var(--sp-sm);
}

.numbered-list li {
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-xs);
}

.numbered-list li:last-child {
    margin-bottom: 0;
}

.content-image {
    width: 100%;
    border-radius: var(--radius-xl);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-md);
}

.highlight-banner {
    text-align: center;
    padding: var(--sp-md) var(--sp-lg);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.highlight-banner p {
    font-size: var(--font-xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    letter-spacing: 0.02em;
    margin-bottom: 0;
}

.highlight-red {
    background: #c62e2e;
    border: 3px solid #471717;
    color: #fff;
}

.callout-box {
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.callout-gold {
    background: #f2c370;
    border: 3px solid #b1822f;
}

.callout-gray {
    background: #e2e2e2;
    border: 3px solid #707070;
}

.callout-green {
    background: #cae1cd;
    border: 4px solid #1c4621;
}

.callout-title {
    font-size: var(--font-base);
    font-weight: var(--fw-strong);
    line-height: var(--lh-normal);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-sm);
}

.callout-heading {
    font-size: var(--font-xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-normal);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-sm);
}

.callout-box p {
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-sm);
}

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

.callout-box ul {
    list-style: disc;
    padding-left: var(--sp-lg);
}

.callout-box li {
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-xs);
}

.callout-box li:last-child {
    margin-bottom: 0;
}

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

.feature-list {
    list-style: disc;
    padding-left: var(--sp-lg);
    margin-bottom: var(--sp-sm);
}

.feature-list li {
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-xs);
}

.feature-list li:last-child {
    margin-bottom: 0;
}

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

.info-card-heading {
    font-size: var(--font-lg);
    font-weight: var(--fw-strong);
    line-height: var(--lh-normal);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-xs);
}

.check-list p, .warning-list p {
    font-size: var(--font-base);
    line-height: var(--lh-loose);
    letter-spacing: 0.02em;
    margin-bottom: 0;
}

.warning-list {
    margin-bottom: var(--sp-sm);
}

.info-card .order-button {
    margin-top: var(--sp-sm);
}

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

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

.accordion-item + .accordion-item {
    border-top: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--sp-xs) 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: var(--font-base);
    line-height: var(--lh-loose);
    color: #000;
}

.accordion-icon {
    font-size: var(--font-lg);
    line-height: var(--lh-none);
}

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

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

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

.sources-list {
    list-style: disc;
    padding-left: var(--sp-lg);
}

.sources-list li {
    font-size: var(--font-sm);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-xs);
}

.sources-list li:last-child {
    margin-bottom: 0;
}

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

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

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

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

.footer-right {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
}

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

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

.social-icons a img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

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

.footer-bottom p {
    font-size: var(--font-sm);
    line-height: var(--lh-relaxed);
}

@media (min-width: 768px) {
    .logo-icon { width: 48px; }
    .logo-ratgeber { height: 14px; }
    .logo-tagline { height: 10px; }

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

    .footer-right {
        flex-direction: row;
        align-items: center;
        gap: var(--sp-md);
    }
}
