/*
Theme Name: Edelmetall-Depot
Theme URI: https://edelmetall-depot.com
Author: edelmetall-depot.com
Description: Custom Theme fuer Goldsparplan-Affiliate-Website
Version: 4.3.2
License: proprietary
Text Domain: edelmetall-depot
*/

/* ==========================================================================
   1. Reset / Normalize
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-body);
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================================================
   2. CSS Variables
   ========================================================================== */

:root {
    /* Farben */
    --gold: #D4AC0D;
    --gold-dark: #B8960B;
    --gold-light: #F4E9A0;
    --gold-text: #946F00;
    --blue-dark: #1B4F72;
    --blue-deep: #0F3050;
    --text-dark: #2C3E50;
    --text-body: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --bg-cream: #FDF8E8;
    --success: #27AE60;
    --error: #E74C3C;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Layout */
    --max-width: 1200px;
    --padding-section: 80px;
    --padding-section-mobile: 50px;
    --padding-side: 24px;
    --padding-side-mobile: 16px;
    --radius-card: 12px;
    --radius-btn: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
}

/* ==========================================================================
   3. Typography (Base)
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* ==========================================================================
   4. Layout (Container, Grid)
   ========================================================================== */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-side);
}

.section {
    padding: var(--padding-section) 0;
}

.section--bg-light {
    background: var(--bg-light);
}

.section--bg-cream {
    background: var(--bg-cream);
}

.section--bg-white {
    background: #FFFFFF;
}

.section__title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(32px, 4vw, 48px);
    color: var(--text-dark);
}

/* ==========================================================================
   5. Components
   ========================================================================== */

/* --------------------------------------------------------------------------
   5.1 Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s, border-color 0.2s;
    line-height: 1.4;
}

.btn--gold {
    background: var(--gold);
    color: var(--blue-deep);
}

.btn--gold:hover {
    background: var(--gold-dark);
    box-shadow: 0 4px 15px rgba(212, 172, 13, 0.4);
}

.btn--lg {
    font-size: 18px;
    padding: 18px 36px;
}

.btn--outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold-text);
}

.btn--outline-gold:hover {
    background: var(--gold);
    color: var(--blue-deep);
}

.btn--outline-white {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.btn--outline-white:hover {
    background: #FFFFFF;
    color: var(--blue-dark);
}

.btn--text-white {
    background: transparent;
    color: #FFFFFF;
    text-decoration: underline;
    padding: 8px 0;
    font-weight: 500;
}

.btn--text-white:hover {
    color: var(--gold-light);
}

.btn--small {
    font-size: 14px;
    padding: 10px 20px;
}

/* --------------------------------------------------------------------------
   5.2 Cards
   -------------------------------------------------------------------------- */

/* Feature Card */
.feature-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 16px;
}

.feature-card__icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card__text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Plan Card */
.plan-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.2s;
}

.plan-card:hover {
    box-shadow: var(--shadow-hover);
}

.plan-card--highlighted {
    border: 2px solid var(--gold);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(212, 172, 13, 0.2);
}

.plan-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--blue-deep);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.plan-card__price {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-text);
    margin: 16px 0;
}

.plan-card__benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    flex-grow: 1;
    margin-bottom: 24px;
}

.plan-card__benefits li {
    padding: 8px 0;
    border-bottom: 1px solid #F0F0F0;
    font-size: 15px;
    color: var(--text-body);
}

.plan-card__benefits li::before {
    content: "\2713 ";
    color: var(--success);
    font-weight: 700;
}

.plan-card .btn {
    margin-top: auto;
}

/* Testimonial Card */
.testimonial-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    padding: 28px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow);
}

.testimonial-card__stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card__quote {
    font-style: italic;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-card__author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

/* Article Card */
.article-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.article-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card__placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-light), #E8E8E8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card__placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold);
    fill: none;
    opacity: 0.5;
}

.article-card__body {
    padding: 20px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card__reading-time {
    font-size: 13px;
    color: #767676;
    margin-bottom: 8px;
}

.article-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-card__excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    flex-grow: 1;
}

.article-card__link {
    color: var(--gold-text);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.article-card__link:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   5.3 Trust-Bar
   -------------------------------------------------------------------------- */

.trust-bar {
    background: var(--bg-cream);
    border-bottom: 1px solid #F0E6C8;
}

.trust-bar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px var(--padding-side);
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.trust-bar__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.trust-bar__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   5.4 FAQ Accordion
   -------------------------------------------------------------------------- */

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E8E8E8;
}

.faq-item__question {
    padding: 20px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-primary);
    line-height: 1.4;
}

.faq-item__question:hover {
    color: var(--gold-text);
}

.faq-item__toggle {
    color: var(--gold);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.2s;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.is-open .faq-item__toggle {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item__answer-inner {
    padding: 0 0 20px 0;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   5.5 CTA-Box (Ratgeber-Artikel)
   -------------------------------------------------------------------------- */

.cta-box {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
    border-radius: var(--radius-card);
    padding: 40px;
    text-align: center;
    margin: 48px 0 32px;
    color: #FFFFFF;
}

.cta-box__icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 16px;
}

.cta-box__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.cta-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 16px;
    color: #E0E0E0;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   5.7 Cookie Banner
   -------------------------------------------------------------------------- */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--blue-dark);
    color: #FFFFFF;
    padding: 20px var(--padding-side);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 280px;
}

.cookie-banner__text a {
    color: var(--gold-light);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.cookie-banner__btn--accept {
    background: var(--gold);
    color: var(--blue-deep);
}

.cookie-banner__btn--accept:hover {
    background: var(--gold-dark);
}

.cookie-banner__btn--reject {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-banner__btn--reject:hover {
    border-color: #FFFFFF;
}

/* ==========================================================================
   6. Header
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
    transition: box-shadow 0.2s;
}

.site-header.is-scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-side);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header__logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-dark);
    text-decoration: none;
    flex-shrink: 0;
}

.site-header__logo img {
    height: 40px;
    width: auto;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-header__nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 0;
    position: relative;
}

.site-header__nav a:hover,
.site-header__nav a.is-active {
    color: var(--gold-text);
}

.site-header__nav a.is-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-text);
}

.site-header__cta {
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    width: 24px;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger__line {
    width: 24px;
    height: 2px;
    background: var(--text-body);
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 16px 0;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--gold-text);
}

.mobile-menu .btn {
    margin-top: 24px;
    width: 280px;
    text-align: center;
}

/* ==========================================================================
   7. Footer
   ========================================================================== */

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
    padding: 60px 0;
}

.cta-banner__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--padding-side);
    text-align: center;
}

.cta-banner h2 {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-banner p {
    color: #E0E0E0;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-banner__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Footer Columns */
.footer-columns {
    background: var(--blue-dark);
    padding: 60px var(--padding-side);
}

.footer-columns__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column a {
    color: #C4D6EB;
    font-size: 14px;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    line-height: 1.6;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--blue-deep);
    padding: 20px var(--padding-side);
    text-align: center;
    font-size: 13px;
    color: #9DA5AE;
}

/* Disclaimer Section */
.disclaimer-section {
    background: var(--bg-light);
    padding: 24px;
}

.disclaimer-section__inner {
    max-width: 800px;
    margin: 0 auto;
    font-size: 13px;
    color: #767676;
    line-height: 1.6;
    text-align: center;
}

/* ==========================================================================
   8. Homepage-spezifisch
   ========================================================================== */

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
    padding: 100px 0 80px;
    color: #FFFFFF;
    text-align: center;
}

.hero__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--padding-side);
}

.hero__badge {
    display: inline-block;
    background: var(--gold);
    color: var(--blue-deep);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.hero h1 {
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero__sub {
    font-size: 18px;
    line-height: 1.6;
    color: #E0E0E0;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Features */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Sparplan */
.sparplan__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* SwitchPilot */
.switchpilot__intro {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.switchpilot__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.step-card {
    text-align: center;
}

.step-card__number {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--blue-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card__text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.switchpilot__bottom {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.switchpilot__benefit {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Testimonials */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ==========================================================================
   9. Ratgeber (Archive + Single)
   ========================================================================== */

/* Archive Hero */
.archive-hero {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
    padding: 60px 0;
    text-align: center;
    color: #FFFFFF;
}

.archive-hero h1 {
    color: #FFFFFF;
    margin-bottom: 12px;
}

.archive-hero p {
    color: #E0E0E0;
    font-size: 17px;
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 15px;
    color: var(--text-body);
    text-decoration: none;
    border: 1px solid #E0E0E0;
    transition: background 0.2s, color 0.2s;
}

.pagination a:hover {
    background: var(--gold-light);
    border-color: var(--gold);
}

.pagination .current {
    background: var(--gold);
    color: var(--blue-deep);
    border-color: var(--gold);
}

/* Single Ratgeber */
.breadcrumb {
    font-size: 14px;
    color: #767676;
    padding: 20px 0;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
}

.breadcrumb li:not(:last-child)::after {
    content: " > ";
    color: #767676;
    margin-left: 4px;
}

.breadcrumb a {
    color: var(--gold-text);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px var(--padding-side) 0;
}

.article-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.article-header__meta {
    font-size: 14px;
    color: #767676;
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.article-header__reading-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Article Content Typography */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--padding-side);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-body);
}

.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 48px;
    margin-bottom: 16px;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 12px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
    list-style: revert;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.article-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--bg-cream);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

.article-content th {
    background: var(--blue-dark);
    color: #FFFFFF;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.article-content td {
    padding: 12px 16px;
    border-bottom: 1px solid #E8E8E8;
}

.article-content tr:nth-child(even) td {
    background: var(--bg-light);
}

.article-content a {
    color: var(--gold-text);
    text-decoration: underline;
}

.article-content a:hover {
    color: #7A5C00;
}

/* Related Articles */
.related-articles {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px var(--padding-side) 0;
}

.related-articles h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ==========================================================================
   11. Impressum
   ========================================================================== */

.impressum-page {
    padding: var(--padding-section) 0;
}

.impressum-page__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--padding-side);
}

.impressum-page h1 {
    margin-bottom: 32px;
}

.impressum-image img {
    max-width: 600px;
    width: 100%;
}

/* ==========================================================================
   11b. Kontakt Page
   ========================================================================== */

.kontakt-page {
    padding: var(--padding-section) 0;
}

.kontakt-page__inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 var(--padding-side);
}

.kontakt-page h1 {
    margin-bottom: 12px;
}

.kontakt-page__intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.kontakt-page__form-wrapper {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.kontakt-form__field {
    margin-bottom: 20px;
}

.kontakt-form__field label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.kontakt-form__field .required {
    color: #E74C3C;
}

.kontakt-form__field input[type="text"],
.kontakt-form__field input[type="email"],
.kontakt-form__field select,
.kontakt-form__field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #D5D5D5;
    border-radius: var(--radius-btn);
    font-size: 16px;
    font-family: var(--font-primary);
    color: var(--text-body);
    background: #FAFAFA;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.kontakt-form__field input:focus,
.kontakt-form__field select:focus,
.kontakt-form__field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 172, 13, 0.15);
    background: #FFFFFF;
}

.kontakt-form__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.kontakt-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.kontakt-form__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.kontakt-form__consent {
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.kontakt-form__consent label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
}

.kontakt-form__consent input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.kontakt-form__consent a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.kontakt-form__submit {
    width: 100%;
    font-size: 16px;
    padding: 14px 24px;
}

.kontakt-form__message {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    min-height: 20px;
    text-align: center;
}

.kontakt-form__message--success {
    color: var(--success);
    font-size: 18px;
    padding: 24px 0;
}

.kontakt-form__message--error {
    color: #E74C3C;
}

.kontakt-page__response-time {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 24px;
}

/* ==========================================================================
   12. Scroll Animations
   ========================================================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   13. Responsive Breakpoints
   ========================================================================== */

/* Tablet: 769px - 968px */
@media (max-width: 968px) {
    .site-header__inner {
        height: 64px;
    }

    .site-header__cta {
        display: none;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero__sub {
        font-size: 16px;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sparplan__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sparplan__grid .plan-card--highlighted {
        transform: scale(1.02);
    }

    .switchpilot__steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .footer-columns__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 60px 0;
    }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
    :root {
        --padding-side: 16px;
    }

    .site-header__inner {
        height: 64px;
    }

    .site-header__nav {
        display: none;
    }

    .site-header__cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .site-header__logo {
        font-size: 18px;
    }

    .site-header__logo img {
        height: 32px;
    }

    /* Trust Bar */
    .trust-bar__inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 24px;
        padding: 10px var(--padding-side);
    }

    .trust-bar__item:nth-child(n+2) {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 60px 0 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero__sub {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .section {
        padding: var(--padding-section-mobile) 0;
    }

    /* Features */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Sparplan */
    .sparplan__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sparplan__grid .plan-card--highlighted {
        order: -1;
        transform: none;
    }

    .plan-card--highlighted {
        transform: none;
    }

    /* SwitchPilot */
    .switchpilot__steps {
        grid-template-columns: 1fr;
        gap: 24px;
        border-left: 3px solid var(--gold);
        padding-left: 24px;
    }

    .step-card {
        text-align: left;
    }

    .step-card__number {
        margin: 0 0 12px 0;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    /* FAQ */
    .faq-item__question {
        font-size: 16px;
        padding: 16px 0;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 40px 0;
    }

    .cta-banner .btn {
        width: 100%;
    }

    /* Footer */
    .footer-columns {
        padding: 40px var(--padding-side);
    }

    .footer-columns__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Archive */
    .archive-hero {
        padding: 40px 0;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    /* Single Article */
    .article-header {
        padding-top: 24px;
    }

    .article-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .related-articles__grid {
        grid-template-columns: 1fr;
    }

    /* CTA Box */
    .cta-box {
        padding: 32px 24px;
    }

    /* Kontakt */
    .kontakt-page__form-wrapper {
        padding: 20px;
    }

    /* Cookie Banner */
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   14. Lead Magnet Section
   ========================================================================== */

.lead-magnet {
    background: var(--blue-deep);
    padding: 60px 0;
    color: #FFFFFF;
}

.lead-magnet .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lead-magnet h2 {
    color: #FFFFFF;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.lead-magnet__sub {
    font-size: 17px;
    color: #C4D6EB;
    line-height: 1.6;
}

.lead-magnet__fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-magnet__input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-btn);
    background: rgba(255,255,255,0.1);
    color: #FFFFFF;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: border-color 0.2s, background 0.2s;
}

.lead-magnet__input::placeholder {
    color: rgba(255,255,255,0.5);
}

.lead-magnet__input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.15);
}

.lead-magnet__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.lead-magnet__btn {
    width: 100%;
    font-size: 16px;
}

.lead-magnet__consent {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.lead-magnet__consent label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.lead-magnet__consent input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.lead-magnet__consent a {
    color: var(--gold-light);
    text-decoration: underline;
}

.lead-magnet__hint {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.lead-magnet__message {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    min-height: 20px;
}

.lead-magnet__message--success {
    color: var(--success);
}

.lead-magnet__message--error {
    color: var(--error);
}

/* ==========================================================================
   15. Gold-Report Landingpage
   ========================================================================== */

.gold-report-hero {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
    padding: 80px 0 60px;
    color: #FFFFFF;
}

.gold-report-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.gold-report-hero h1 {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.gold-report-hero__sub {
    font-size: 17px;
    color: #C4D6EB;
    line-height: 1.6;
    margin-bottom: 24px;
}

.gold-report-hero__bullets {
    list-style: none;
    padding: 0;
}

.gold-report-hero__bullets li {
    padding: 8px 0;
    font-size: 16px;
    color: #E0E0E0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gold-report-hero__bullets li::before {
    content: "\2713";
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.gold-report-trust {
    background: var(--bg-light);
    padding: 40px 0;
}

.gold-report-trust .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.gold-report-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.gold-report-trust__item::before {
    content: "\2713";
    color: var(--success);
    font-weight: 700;
}

/* ==========================================================================
   16. Danke-Seite (Thank-You)
   ========================================================================== */

.danke-hero {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.danke-hero .container {
    max-width: 600px;
}

.danke-hero__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.danke-hero__icon svg {
    width: 80px;
    height: 80px;
}

.danke-hero h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
}

.danke-hero__text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.danke-hero__spam-hint {
    font-size: 14px;
    color: #999;
    margin-bottom: 32px;
}

/* Lead Magnet Responsive */
@media (max-width: 768px) {
    .lead-magnet .container {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .gold-report-hero .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gold-report-hero {
        padding: 60px 0 40px;
    }

    .gold-report-trust .container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* Print */
@media print {
    .site-header,
    .trust-bar,
    .cta-banner,
    .cookie-banner,
    .footer-columns,
    .footer-bottom {
        display: none;
    }
}

/* ==========================================================================
   Gutenberg Block-Button Override
   Stellt sicher, dass Gutenberg-Buttons im Content dasselbe Design
   wie Theme-Buttons (.btn--gold) verwenden.
   ========================================================================== */

.wp-block-button__link,
.wp-block-button > .wp-block-button__link {
    background-color: var(--gold) !important;
    color: #ffffff !important;
    border-radius: var(--radius-btn) !important;
    font-weight: 700;
    padding: 16px 32px;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.wp-block-button__link:hover,
.wp-block-button > .wp-block-button__link:hover {
    background-color: var(--gold-dark) !important;
    box-shadow: 0 4px 15px rgba(212, 172, 13, 0.4);
    transform: translateY(-1px);
    color: #ffffff !important;
    text-decoration: none;
}

/* ==========================================================================
   Gold-Report 2026 – Landingpage (page-gold-report.php)
   Conversion-optimierte Seite ohne Standard-Header-Navigation und Footer-Menü.
   ========================================================================== */

/* Body override für LP */
body.lp-gold-report {
    background: #ffffff;
}

/* Container */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --------------------------------------------------------------------------
   LP Header
   -------------------------------------------------------------------------- */

.lp-header {
    background: var(--blue-deep);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.lp-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.lp-header__logo img {
    height: 36px;
    width: auto;
}

.lp-header__logo--text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.lp-header__trust {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.lp-header__trust-badge {
    background: rgba(212, 172, 13, 0.15);
    border: 1px solid rgba(212, 172, 13, 0.4);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   LP Hero
   -------------------------------------------------------------------------- */

.lp-hero {
    background: linear-gradient(145deg, var(--blue-deep) 0%, #1a3a5c 60%, #162e4a 100%);
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 172, 13, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.lp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: start;
}

/* Eyebrow */
.lp-hero__eyebrow {
    display: inline-block;
    background: rgba(212, 172, 13, 0.15);
    border: 1px solid rgba(212, 172, 13, 0.5);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-hero__h1 {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.lp-hero__h1-gold {
    color: var(--gold);
    display: block;
}

.lp-hero__sub {
    font-size: 17px;
    color: #C4D6EB;
    line-height: 1.7;
    margin-bottom: 28px;
}

.lp-hero__sub strong {
    color: #ffffff;
}

/* Bullets */
.lp-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-hero__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #C4D6EB;
    line-height: 1.5;
}

.lp-hero__bullets li strong {
    color: #ffffff;
}

.lp-bullet-icon {
    color: var(--gold);
    font-size: 17px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Social proof line */
.lp-hero__social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #8BAFC8;
}

.lp-hero__social-proof span:first-child {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

/* --------------------------------------------------------------------------
   LP Form Box (right column)
   -------------------------------------------------------------------------- */

.lp-form-box {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lp-form-box__header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 24px 28px 20px;
}

.lp-form-box__badge {
    display: inline-block;
    background: rgba(15, 48, 80, 0.2);
    color: var(--blue-deep);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
}

.lp-form-box__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--blue-deep);
    margin-bottom: 6px;
    line-height: 1.3;
}

.lp-form-box__sub {
    font-size: 14px;
    color: rgba(15, 48, 80, 0.75);
    margin: 0;
}

.lp-form-box__report-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-top: 1px solid #F0F0F0;
    background: #FAFAFA;
}

.lp-form-box__report-icon svg {
    width: 40px;
    height: 50px;
}

.lp-form-box__report-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.lp-form-box__report-text strong {
    color: var(--text-dark);
    display: block;
}

/* --------------------------------------------------------------------------
   LP Form (shared styles)
   -------------------------------------------------------------------------- */

.lp-form {
    padding: 24px 28px 20px;
}

.lp-form--light {
    padding: 0;
}

.lp-form__fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}

.lp-form__field {
    width: 100%;
}

.lp-form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.lp-form__input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--text-body);
    background: #ffffff;
    transition: border-color 0.2s;
}

.lp-form__input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 172, 13, 0.15);
}

.lp-form__input::placeholder {
    color: #B0B0B0;
}

.lp-form__consent {
    margin-bottom: 16px;
}

.lp-form__consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.lp-form__checkbox {
    margin-top: 2px;
    accent-color: var(--gold);
    flex-shrink: 0;
    width: 15px;
    height: 15px;
}

.lp-form__consent-label a {
    color: var(--blue-dark);
    text-decoration: underline;
}

.lp-form__btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--gold);
    color: var(--blue-deep);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    line-height: 1.4;
    margin-bottom: 12px;
}

.lp-form__btn:hover {
    background: var(--gold-dark);
    box-shadow: 0 6px 20px rgba(212, 172, 13, 0.4);
    transform: translateY(-1px);
}

.lp-form__btn:active {
    transform: translateY(0);
}

.lp-form__btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.lp-form__trust-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-form__trust-item {
    font-size: 12px;
    color: #888;
}

.lp-form__message {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.lp-form__message--success {
    color: var(--success);
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    display: block;
}

.lp-form__message--error {
    color: var(--error);
    background: rgba(231, 76, 60, 0.06);
    border: 1px solid rgba(231, 76, 60, 0.25);
    border-radius: 8px;
    padding: 12px 16px;
    display: block;
}

/* --------------------------------------------------------------------------
   LP Trust Bar
   -------------------------------------------------------------------------- */

.lp-trust-bar {
    background: var(--bg-cream);
    padding: 40px 0;
    border-top: 3px solid var(--gold-light);
    border-bottom: 3px solid var(--gold-light);
}

.lp-trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.lp-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.lp-trust-bar__icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.lp-trust-bar__label {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.lp-trust-bar__label strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   LP Chart Section
   -------------------------------------------------------------------------- */

.lp-chart-section {
    background: #ffffff;
    padding: 72px 0;
}

.lp-chart-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.lp-chart-section__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.lp-text-gold {
    color: var(--gold-text);
}

.lp-chart-section p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 14px;
}

.lp-chart-section__disclaimer {
    font-size: 12px !important;
    color: #999 !important;
    margin-top: 8px;
}

.lp-chart-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--bg-light);
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-chart-img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-chart-fallback {
    padding: 40px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.lp-chart-section__source {
    font-size: 12px !important;
    color: #999 !important;
    margin-top: 8px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   LP Report Content
   -------------------------------------------------------------------------- */

.lp-report-content {
    background: var(--bg-light);
    padding: 80px 0;
}

.lp-section-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-dark);
    margin-bottom: 12px;
}

.lp-section-sub {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.lp-report-content__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-content-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.lp-content-card__num {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.lp-content-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.lp-content-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   LP CTA Section (Second Form)
   -------------------------------------------------------------------------- */

.lp-cta-section {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
    padding: 80px 0;
}

.lp-cta-section__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: start;
}

.lp-cta-section__text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.lp-cta-section__text p {
    font-size: 16px;
    color: #C4D6EB;
    line-height: 1.7;
    margin-bottom: 24px;
}

.lp-cta-section__checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-cta-section__checklist li {
    font-size: 15px;
    color: #C4D6EB;
}

.lp-cta-section__form {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.lp-form--light .lp-form__consent-label a {
    color: var(--blue-dark);
}

/* --------------------------------------------------------------------------
   LP Testimonials
   -------------------------------------------------------------------------- */

.lp-testimonials {
    background: var(--bg-cream);
    padding: 80px 0;
}

.lp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-testimonial {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow);
}

.lp-testimonial__stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.lp-testimonial__quote {
    font-style: italic;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 14px;
}

.lp-testimonial__author {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
}

/* --------------------------------------------------------------------------
   LP FAQ
   -------------------------------------------------------------------------- */

.lp-faq {
    background: #ffffff;
    padding: 80px 0;
}

.lp-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.lp-faq__item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 28px;
}

.lp-faq__item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.lp-faq__item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   LP Disclaimer
   -------------------------------------------------------------------------- */

.lp-disclaimer {
    background: var(--bg-light);
    padding: 24px 0;
    border-top: 1px solid #E8E8E8;
}

.lp-disclaimer p {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   LP Footer
   -------------------------------------------------------------------------- */

.lp-footer {
    background: var(--blue-deep);
    padding: 20px 0;
}

.lp-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-footer__copy {
    font-size: 13px;
    color: #6B8CA8;
    margin: 0;
}

.lp-footer__nav {
    display: flex;
    gap: 20px;
}

.lp-footer__nav a {
    font-size: 13px;
    color: #6B8CA8;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.lp-footer__nav a:hover {
    color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   LP Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 968px) {
    .lp-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .lp-chart-section__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lp-report-content__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-cta-section__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lp-testimonials__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lp-header__trust {
        display: none;
    }

    .lp-hero {
        padding: 48px 0 56px;
    }

    .lp-hero__h1 {
        font-size: 1.75rem;
    }

    .lp-trust-bar__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .lp-trust-bar__item {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .lp-report-content__grid {
        grid-template-columns: 1fr;
    }

    .lp-faq__grid {
        grid-template-columns: 1fr;
    }

    .lp-cta-section__form {
        padding: 24px;
    }

    .lp-form {
        padding: 20px;
    }
}

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

    .lp-form-box__header {
        padding: 20px 20px 16px;
    }

    .lp-form {
        padding: 16px 20px;
    }

    .lp-form__trust-row {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .lp-trust-bar__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Ratgeber Lead-Magnet Box
   ========================================================================== */

.ratgeber-lead-form {
    position: relative;
    background: #FDF8E8;
    border: 1px solid #F4E9A0;
    border-left: 4px solid #D4AC0D;
    border-radius: 12px;
    padding: 32px;
    margin: 48px 0;
    overflow: hidden;
}

.ratgeber-lead-form::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle at top right, rgba(212,172,13,0.08), transparent 70%);
    pointer-events: none;
}

.ratgeber-lead-form__badge {
    display: inline-block;
    background: #D4AC0D;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ratgeber-lead-form__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
}

.ratgeber-lead-form__icon {
    flex-shrink: 0;
    opacity: 0.92;
}

.ratgeber-lead-form__copy {
    min-width: 0;
}

.ratgeber-lead-form__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B4F72;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ratgeber-lead-form__sub {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.ratgeber-lead-form__form {
    min-width: 300px;
}

.ratgeber-lead-form__fields {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.ratgeber-lead-form__input {
    flex: 1;
    min-width: 140px;
    padding: 10px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s;
}

.ratgeber-lead-form__input:focus {
    outline: none;
    border-color: #D4AC0D;
    box-shadow: 0 0 0 3px rgba(212,172,13,0.12);
}

.ratgeber-lead-form__btn {
    background: #D4AC0D;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.1s;
}

.ratgeber-lead-form__btn:hover {
    background: #B8960B;
    transform: translateY(-1px);
}

.ratgeber-lead-form__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ratgeber-lead-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 10px;
    cursor: pointer;
}

.ratgeber-lead-form__consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #D4AC0D;
}

.ratgeber-lead-form__consent a {
    color: #1B4F72;
    text-decoration: underline;
}

.ratgeber-lead-form__trust {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: #888;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
    .ratgeber-lead-form__inner {
        grid-template-columns: 1fr;
    }

    .ratgeber-lead-form__icon {
        display: none;
    }
}

@media (max-width: 600px) {
    .ratgeber-lead-form {
        padding: 24px 20px;
    }

    .ratgeber-lead-form__fields {
        flex-direction: column;
    }

    .ratgeber-lead-form__input,
    .ratgeber-lead-form__btn {
        width: 100%;
    }
}

/* ==========================================================================
   404 Error Page
   ========================================================================== */

.error-404 {
    padding: var(--padding-section) var(--padding-side);
    text-align: center;
    background: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404__inner {
    max-width: 680px;
    margin: 0 auto;
}

.error-404__icon {
    margin-bottom: 32px;
}

.error-404__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--blue-dark);
    margin-bottom: 16px;
}

.error-404__text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

.error-404__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.error-404__links {
    text-align: left;
    background: #FFFFFF;
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow);
}

.error-404__links h2 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.error-404__links ul {
    list-style: none;
    padding: 0;
}

.error-404__links li {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
}

.error-404__links li:last-child {
    border-bottom: none;
}

.error-404__links a {
    color: var(--blue-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.error-404__links a:hover {
    color: var(--gold-dark);
}

@media (max-width: 768px) {
    .error-404 {
        padding: var(--padding-section-mobile) var(--padding-side-mobile);
    }

    .error-404__actions {
        flex-direction: column;
        align-items: center;
    }

    .error-404__actions .btn {
        width: 100%;
    }

    .error-404__links {
        padding: 24px 20px;
    }
}
