@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

img {
    max-width: 100%;
}

body {
    background: #f7f4ef;
    color: #1a1a1a;
    font-family: 'Open Sans', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
}

.container {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* --- exact styles from original (kept 1:1) --- */
:root {
    --ll-color-primary: #d4870a;
    --ll-color-secondary: #1e7a3d;
    --ll-color-background: #f7f4ef;
    --ll-color-text-primary: #1a1a1a;
    --ll-color-text-secondary: #555;
    --ll-font-heading: 'Playfair Display', Georgia, serif;
    --ll-font-body: 'Open Sans', Georgia, serif;
    --bg: #f7f4ef;
    --text: #1a1a1a;
    --text-muted: #555;
    --accent: #d4870a;
    --accent-dark: #b06b00;
    --red: #c0392b;
    --green: #1e7a3d;
    --border: #d8d0c4;
    --white: #fff;
    --card-bg: #fff;
    --serif: 'Playfair Display', Georgia, serif;
    --body-serif: 'Open Sans', Georgia, serif;
    --sans: 'Plus Jakarta Sans', sans-serif;
}

.breaking-bar {
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 9px 16px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    animation: pulse-bar 2s ease-in-out infinite;
}

.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--text);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo .logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.header-meta {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
}

.advertorial-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
}

.article-header {
    padding: 36px 0 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.stars {
    color: var(--accent);
}

.sep {
    color: var(--border);
}

h1.article-title {
    font-family: var(--serif);
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

h1.article-title em {
    font-style: italic;
    color: var(--accent-dark);
}

.article-subhead {
    font-family: var(--body-serif);
    font-size: 19px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.5;
    border-left: 3px solid var(--accent);
    padding-left: 16px;
    margin-bottom: 20px;
}

.hero-img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.img-caption {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
    font-style: italic;
}

.expert-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
    padding: 18px 20px;
    margin: 28px 0;
}

.expert-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expert-info {
    flex: 1;
}

.expert-name {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 2px;
}

.expert-title {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.expert-quote {
    font-family: var(--body-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--text);
    line-height: 1.55;
}

.expert-quote::before {
    content: '„';
}

.expert-quote::after {
    content: '"';
}

h2.section-head {
    font-family: var(--serif);
    font-size: clamp(20px, 3.5vw, 26px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin: 36px 0 14px;
    padding-top: 4px;
}

h2.section-head .icon {
    margin-right: 6px;
}

p.body-text {
    font-family: var(--body-serif);
    font-size: 18px;
    line-height: 1.72;
    color: var(--text);
    margin-bottom: 18px;
}

p.body-text strong {
    color: var(--text);
    font-weight: 600;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}

.divider-thick {
    border: none;
    border-top: 3px solid var(--text);
    margin: 36px 0;
}

.foerder-list {
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
}

.foerder-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--body-serif);
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.foerder-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.foerder-list .check {
    color: var(--green);
    font-size: 19px;
    margin-top: 1px;
    flex-shrink: 0;
}

.vorteil-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0 28px;
}

.vorteil-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 20px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vorteil-num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
}

.vorteil-body h3 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--text);
}

.vorteil-body p {
    font-family: var(--body-serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

.savings-table-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin: 20px 0 28px;
}

.savings-table-head {
    background: var(--text);
    color: #fff;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 10px 18px;
}

table.savings-table {
    width: 100%;
    border-collapse: collapse;
}

table.savings-table th {
    background: #f0ebe3;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 10px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

table.savings-table td {
    font-family: var(--sans);
    font-size: 15px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

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

table.savings-table .highlight {
    font-weight: 700;
    color: var(--green);
}

.table-cta-wrap {
    text-align: center;
    margin: 24px 0 8px;
}

.table-cta-btn {
    max-width: 100%;
    width: 100%;
    font-size: 16px;
    padding: 16px 28px;
    line-height: 1.4;
}

.table-cta-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

.table-cta-icon {
    flex-shrink: 0;
}

blockquote.pull-quote {
    border-left: 4px solid var(--accent);
    margin: 28px 0;
    padding: 12px 24px;
    background: #fff8ee;
}

blockquote.pull-quote p {
    font-family: var(--body-serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
}

blockquote.pull-quote cite {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
    margin-top: 8px;
}

.warning-box {
    background: #fff5e6;
    border: 2px solid var(--accent);
    border-radius: 4px;
    padding: 18px 22px;
    margin: 28px 0;
}

.warning-box .warning-head {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.warning-box p {
    font-family: var(--body-serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.steps {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    counter-reset: step-counter;
}

.steps li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-family: var(--body-serif);
    font-size: 17px;
    line-height: 1.55;
    color: var(--text);
}

.step-num {
    background: var(--accent);
    color: #fff;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.social-bar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 16px 20px;
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 24px 0;
    flex-wrap: wrap;
}

.social-stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.social-stat .num {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-dark);
    display: block;
    line-height: 1.1;
}

.social-stat .label {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--text-muted);
}

.social-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

.cta-block {
    background: var(--text);
    color: #fff;
    border-radius: 6px;
    padding: 32px 28px;
    text-align: center;
    margin: 36px 0 24px;
}

.cta-block h3 {
    font-family: var(--serif);
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.cta-block p {
    font-family: var(--body-serif);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    line-height: 1.55;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    display: inline-block;
}

.cta-list li {
    font-family: var(--sans);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}

.cta-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6fdb8a;
    font-weight: 700;
}

.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 17px;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s;
    animation: cta-glow 2.5s ease-in-out infinite;
    width: 100%;
    max-width: 420px;
}

.cta-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.cta-sub {
    font-family: var(--sans);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
}

.bl-section {
    margin: 28px 0;
}

.bl-section h3 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-align: center;
}

.bl-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(155px, 1fr));
    gap: 8px;
}

.bl-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 12px 16px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bl-btn:hover {
    border-color: var(--accent);
    background: #fff8ee;
    box-shadow: 0 4px 16px rgba(212, 135, 10, 0.15);
    transform: translateY(-2px);
}

.bl-btn .bl-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.bl-btn .bl-name {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.bl-btn .bl-foerder {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    color: #D4870A;
    line-height: 1.2;
}

.two-col-wrap {
    display: grid;
    grid-template-columns:1fr;
    gap: 0;
}

.sticky-sidebar {
    display: none;
}

.sidebar-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.sidebar-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.sidebar-body {
    padding: 20px 18px 22px;
}

.sidebar-title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 14px;
}

.sidebar-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.sidebar-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.45;
    color: var(--text);
    margin-bottom: 10px;
}

.sidebar-benefits li:last-child {
    margin-bottom: 0;
}

.sidebar-benefits .sb-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.sidebar-fomo {
    background: #fff5e6;
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.sidebar-fomo-text {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.3;
}

.sidebar-fomo-text .fomo-count {
    color: var(--red);
    font-weight: 800;
    font-size: 14px;
}

.sidebar-fomo-bar-wrap {
    background: #e8e0d4;
    border-radius: 20px;
    height: 10px;
    overflow: hidden;
    position: relative;
}

.sidebar-fomo-bar {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--red) 0%, #e67e22 100%);
    transition: width 1.2s ease;
    position: relative;
}

.sidebar-fomo-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: fomo-shimmer 2s ease-in-out infinite;
}

.sidebar-fomo-sub {
    font-family: var(--sans);
    font-size: 10px;
    color: var(--red);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.sidebar-cta {
    display: block;
    width: 100%;
    background: var(--accent);
    color: #fff;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
    animation: cta-glow 2.5s ease-in-out infinite;
    line-height: 1.3;
}

.sidebar-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.sidebar-sub {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.sidebar-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #edf7f0;
    border-radius: 4px;
    padding: 8px 12px;
    margin-top: 14px;
}

.sidebar-badge-text {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    line-height: 1.3;
}

.disclaimer {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 740px;
}

.footer {
    border-top: 3px solid var(--text);
    padding: 32px 0 20px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text-muted);
    text-align: left;
    background: var(--white);
}

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

.footer .row {
    display: grid;
    grid-template-columns:1fr 2fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.footer .col-md-3 img {
    max-width: 120px;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

.footer .col-md-3 p, .footer .col-md-6 p {
    margin-top: 8px;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer a {
    color: var(--text-muted);
    text-decoration: underline;
}

.footer .copyright {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    font-size: 12px;
}

.legal-page {
    padding: 40px 0 48px;
}

.legal-content {
    word-break: break-word;
}

.legal-content h1 {
    font-family: var(--serif);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text);
}

.legal-content p {
    margin-bottom: 16px;
    font-family: var(--body-serif);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
}

.legal-content a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.site-logo a {
    color: inherit;
    text-decoration: none;
}

html, body {
    overflow-x: clip;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

@keyframes fomo-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse-bar {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

@keyframes cta-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 135, 10, 0.4);
    }
    50% {
        box-shadow: 0 4px 32px rgba(212, 135, 10, 0.7);
    }
}

@media (min-width: 1024px) {
    .container.has-sidebar {
        max-width: 1080px;
    }

    .two-col-wrap {
        grid-template-columns:1fr 300px;
        gap: 36px;
        align-items: start;
    }

    .sticky-sidebar {
        display: block;
        position: sticky;
        top: 24px;
        align-self: start;
    }
}

@media (max-width: 560px) {
    .social-bar {
        flex-direction: column;
        gap: 12px;
    }

    .social-divider {
        display: none;
    }

    table.savings-table th, table.savings-table td {
        padding: 9px 12px;
        font-size: 13px;
    }

    .expert-box {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .footer .row {
        grid-template-columns:1fr;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .footer .col-md-3, .footer .col-md-6 {
        word-break: break-all;
    }

    .site-logo {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .footer {
        padding: 24px 0 16px;
    }
}
