/*
  mailboxansagen.com
  Design based on telefonansagen.com — refined edition
  BrennerMedien GmbH
*/

@font-face { font-family: 'NeueDIN'; src: url('fonts/din/neuedin-thin.woff2') format('woff2'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueDIN'; src: url('fonts/din/neuedin-xlight.woff2') format('woff2'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueDIN'; src: url('fonts/din/neuedin-light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueDIN'; src: url('fonts/din/neuedin-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueDIN'; src: url('fonts/din/neuedin-medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueDIN'; src: url('fonts/din/neuedin-semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueDIN'; src: url('fonts/din/neuedin-bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueDIN'; src: url('fonts/din/neuedin-xbold.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueDIN'; src: url('fonts/din/neuedin-black.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }

/* ======================================================================
   Design Tokens
   ====================================================================== */
:root {
    --main-dark: #374051;
    --main-dark-soft: #4B5563;
    --main-medium: #8B95A5;
    --main-medium-light: #B0B9C6;
    --main-light: #F0F3F5;
    --main-lighter: #F7F8FA;
    --main-red: #FA002E;
    --main-red-hover: #E0002A;
    --main-red-light: rgba(250, 0, 46, 0.06);
    --white: #FFFFFF;

    --font: 'NeueDIN', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    --site-width: 1200px;
    --radius: 0.35rem;
    --radius-lg: 0.5rem;
    --shadow-sm: 0 1px 3px rgba(55, 64, 81, 0.04), 0 1px 2px rgba(55, 64, 81, 0.06);
    --shadow-md: 0 4px 16px rgba(55, 64, 81, 0.06), 0 1px 3px rgba(55, 64, 81, 0.04);
    --shadow-lg: 0 8px 30px rgba(55, 64, 81, 0.08), 0 2px 8px rgba(55, 64, 81, 0.04);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    :root { --site-width: 92vw; }
}

/* ======================================================================
   Reset & Base
   ====================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--main-dark);
    background: var(--white);
}

body.no-scroll { overflow: hidden; }

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), border-color var(--transition);
}

ul, ol { list-style: none; }

::selection {
    color: var(--white);
    background-color: var(--main-dark);
}

/* Smooth anchor scroll offset */
[id] { scroll-margin-top: 9rem; }

/* ======================================================================
   Container
   ====================================================================== */
.container {
    width: 100%;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
}

/* ======================================================================
   Headlines (telefonansagen.com style — refined)
   ====================================================================== */
h2 {
    font-weight: 500;
    color: var(--main-medium);
    font-size: 2rem;
    line-height: 1.35;
    letter-spacing: 0.01rem;
    margin-bottom: 1.25rem;
}

h2::before {
    content: "";
    display: block;
    background-color: var(--main-red);
    width: 1.75rem;
    height: 0.25rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
}

h2 strong {
    font-weight: 700;
    color: var(--main-dark);
    display: block;
}

h3 {
    font-weight: 500;
    color: var(--main-medium);
    font-size: 1.4rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

h3::before {
    content: "";
    display: block;
    background-color: var(--main-red);
    width: 1.75rem;
    height: 0.25rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
}

h3 strong {
    font-weight: 700;
    color: var(--main-dark);
    display: block;
}

h4 {
    font-weight: 600;
    color: var(--main-dark);
    font-size: 1.15rem;
    line-height: 1.35;
    letter-spacing: 0.01rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1.05rem; }
}

/* ======================================================================
   Accent dot
   ====================================================================== */
.accent-dot { color: var(--main-red) !important; }

/* ======================================================================
   Header
   ====================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 1px 12px rgba(55, 64, 81, 0.08);
}

/* — Top bar — */
.header-top {
    background: var(--main-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.02rem;
    height: 2.25rem;
    padding: 0 max(2.5rem, calc((100vw - var(--site-width)) / 2 + 2.5rem));
}

.header-top strong { font-weight: 500; }
.header-top a:hover { color: var(--main-red); }

.header-top-left {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.header-top-right { display: flex; align-items: center; }

.icon-phone::before { content: "☎"; font-size: 0.6rem; padding: 0 0.3rem 0 0.75rem; opacity: 0.5; }
.icon-mail::before { content: "✉"; font-size: 0.6rem; padding: 0 0.3rem 0 0.75rem; opacity: 0.5; }

@media (max-width: 768px) {
    .header-top { padding: 0 1.25rem; font-size: 0.75rem; height: 2rem; }
}

/* — Main nav — */
.header-main {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 2.5rem 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 5.5rem;
}

.site-logo {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--main-dark);
    letter-spacing: 0.02rem;
    line-height: 1;
}

.site-logo strong { font-weight: 600; }
.site-logo span { font-weight: 300; }

.site-nav ul {
    display: flex;
    align-items: center;
}

.site-nav li {
    padding-right: 1.35rem;
    margin-left: 1.35rem;
    border-right: 1px solid var(--main-medium-light);
    font-size: 0.92rem;
    line-height: 1;
}

.site-nav li:last-child {
    margin-right: 0;
    border-right: none;
    padding-right: 0;
}

.site-nav a {
    color: var(--main-dark-soft);
    font-weight: 400;
    letter-spacing: 0.01rem;
}

.site-nav a:hover { color: var(--main-red); }

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--main-dark);
}

.burger svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

@media (max-width: 768px) {
    .header-main {
        height: 3.75rem;
        align-items: center;
        padding: 0 1.25rem;
    }

    .site-logo { font-size: 1.35rem; }
    .burger { display: flex; align-items: center; }

    .site-nav {
        position: fixed;
        top: 6rem;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 0.5rem 1.25rem;
        display: none;
        z-index: 99;
        box-shadow: 0 12px 40px rgba(55, 64, 81, 0.12);
    }

    .site-nav.active {
        display: block;
        animation: fadeSlide 0.25s ease-out;
    }

    @keyframes fadeSlide {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .site-nav ul { flex-direction: column; gap: 0; }

    .site-nav li {
        border-right: none;
        border-bottom: 1px solid var(--main-light);
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .site-nav li:last-child { border-bottom: none; }

    .site-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        font-weight: 400;
    }
}

/* ======================================================================
   CTO Buttons (telefonansagen.com style — refined)
   ====================================================================== */
a.cto,
button.cto {
    border: 1px solid var(--main-dark);
    color: var(--main-dark);
    padding: 0.65rem 0.85rem 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 0.82rem;
    font-family: var(--font);
    font-weight: 500;
    display: inline-block;
    margin-top: 0.75rem;
    transition: all var(--transition);
    background: transparent;
    cursor: pointer;
    border-radius: 0.2rem;
}

a.cto::after,
button.cto::after {
    content: " →";
    padding-left: 0.3rem;
    transition: padding var(--transition);
    display: inline-block;
}

a.cto:hover::after,
button.cto:hover::after {
    padding-left: 0.6rem;
}

a.cto:hover,
button.cto:hover {
    background: var(--main-red);
    color: var(--white);
    border-color: var(--main-red);
}

a.cto.cto-small {
    padding: 0.3rem 0.6rem 0.25rem;
    font-size: 0.62rem;
    margin-top: 0;
    letter-spacing: 0.08rem;
}

a.cto.cto-small::after { display: none; }

.cto-link {
    display: inline-block;
    color: var(--main-red);
    font-weight: 500;
    font-size: 0.82rem;
    margin-top: 1rem;
    letter-spacing: 0.03rem;
    transition: all var(--transition);
}

.cto-link::after {
    content: " →";
    display: inline-block;
    transition: padding var(--transition);
}

.cto-link:hover::after,
a:hover .cto-link::after {
    padding-left: 0.25rem;
}

.btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ======================================================================
   Utility
   ====================================================================== */
.bg-light { background-color: var(--main-light); }
.mt-2 { margin-top: 2.25rem; }
.rounded-img { border-radius: var(--radius); }

@media (max-width: 768px) {
    .no-mobile { display: none !important; }
}

/* ======================================================================
   Grids
   ====================================================================== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.25rem;
}

.grid-30-70 {
    display: grid;
    grid-template-columns: 32% 1fr;
    gap: 3rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-30-70 { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
}

/* ======================================================================
   Content Cards
   ====================================================================== */
.content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

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

.content-card h4 { margin-bottom: 0.65rem; }

.content-card p {
    font-weight: 300;
    line-height: 1.6;
    color: var(--main-medium);
    font-size: 0.92rem;
    flex-grow: 1;
}

.content-card--accent {
    border-color: var(--main-light);
    box-shadow: none;
}

.content-card--accent:hover {
    border-color: var(--main-red);
    box-shadow: 0 8px 30px rgba(250, 0, 46, 0.06);
}

/* ======================================================================
   HOMEPAGE — Hero
   ====================================================================== */
.hero-ta {
    width: calc(100% - 5rem);
    max-width: var(--site-width);
    margin: 1.25rem auto 0;
    height: 36rem;
    background-image: url('https://images.pexels.com/photos/3184296/pexels-photo-3184296.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-ta-box {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 36rem;
    max-width: calc(100% - 4rem);
    padding: 2.75rem 2.5rem 2.25rem;
    margin: 0 0 2.5rem 2.5rem;
    border-radius: var(--radius);
}

.hero-ta-box h1 {
    font-weight: 700;
    font-size: 2.1rem;
    letter-spacing: 0.01rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--main-dark);
}

.hero-ta-box h1::before {
    content: "";
    display: block;
    background-color: var(--main-red);
    width: 1.75rem;
    height: 0.25rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
}

.hero-ta-box p {
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.85rem;
    font-size: 1.02rem;
    color: var(--main-dark-soft);
}

.hero-ta-box p:last-of-type { margin-bottom: 0.25rem; }
.hero-ta-box p strong { font-weight: 600; color: var(--main-dark); }

@media (max-width: 768px) {
    .hero-ta {
        width: 100%;
        height: auto;
        min-height: 22rem;
        margin-top: 0;
        border-radius: 0;
        padding: 0 1rem;
        align-items: flex-end;
    }

    .hero-ta-box {
        width: 100%;
        max-width: 100%;
        margin: auto 0 1.25rem;
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .hero-ta-box h1 { font-size: 1.6rem; }
    .hero-ta-box p { font-size: 0.95rem; }
}

/* ======================================================================
   HOMEPAGE — USP Bar
   ====================================================================== */
.usp-bar {
    background: var(--main-dark);
    padding: 0.65rem 2.5rem;
    text-align: center;
}

.usp-bar p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    font-size: 0.92rem;
    letter-spacing: 0.06rem;
}

.usp-bar p strong {
    font-weight: 600;
    color: var(--white);
}

/* ======================================================================
   HOMEPAGE — FAQ Layout (2-col)
   ====================================================================== */
.faq-layout {
    display: grid;
    grid-template-columns: 22rem 1fr;
    gap: 3.5rem;
    align-items: start;
}

.faq-layout .faq-info h2 {
    position: sticky;
    top: 9rem;
}

.faq-accordion {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0.75rem 2.25rem 1.75rem;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .faq-layout { grid-template-columns: 1fr; gap: 1.75rem; }
    .faq-accordion { padding: 0.5rem 1.25rem 1.25rem; }
}

/* ======================================================================
   Sections
   ====================================================================== */
.section {
    padding: 4.5rem 0;
}

.section p {
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 0.85rem;
    color: var(--main-dark-soft);
}

.section p a { color: var(--main-red); }
.section p a:hover { border-bottom: 1px dashed var(--main-red); }

/* Section header (subpages) */
.section-header {
    margin-bottom: 3rem;
    max-width: 38rem;
}

.section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--main-red);
    margin-bottom: 1rem;
}

.section-header h2 { margin-bottom: 1.25rem; }

.section-header p {
    font-size: 1.05rem;
    color: var(--main-medium);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .section { padding: 3rem 0; }
}

/* ======================================================================
   FAQ (shared)
   ====================================================================== */
.faq-item { cursor: pointer; }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--main-light);
    transition: border-color var(--transition);
}

.faq-item:last-child .faq-question { border-bottom: none; }
.faq-item.open .faq-question { border-bottom-color: transparent; }

.faq-question span,
.faq-question h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--main-dark);
    line-height: 1.4;
}

.faq-question:hover span { color: var(--main-red); }

.faq-icon {
    width: 0.8rem;
    height: 0.8rem;
    flex-shrink: 0;
    stroke: var(--main-medium-light);
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
    transition: transform var(--transition), stroke var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner { padding: 0.25rem 4rem 1.5rem 0; }

.faq-answer-inner p,
.faq-answer > p {
    color: var(--main-medium);
    font-weight: 300;
    line-height: 1.65;
    font-size: 0.92rem;
}

.faq-answer > p { padding: 0.25rem 4rem 1.5rem 0; }

.faq-answer-inner p a,
.faq-answer > p a { color: var(--main-red); }
.faq-answer-inner p a:hover,
.faq-answer > p a:hover { border-bottom: 1px dashed var(--main-red); }

.faq-item.open .faq-icon { transform: rotate(45deg); stroke: var(--main-red); }
.faq-item.open .faq-answer { max-height: 20rem; }

@media (max-width: 768px) {
    .faq-answer-inner { padding-right: 0; }
    .faq-answer > p { padding-right: 0; }
}

/* ======================================================================
   Footer
   ====================================================================== */
.site-footer { margin-top: 0; }

.footer-top {
    background: var(--main-light);
    max-width: calc(var(--site-width) - 5rem);
    margin: 0 auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
    z-index: 1;
}

.footer-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1.75rem 2rem 1.25rem;
}

.footer-top .site-logo { font-size: 1.45rem; }

.footer-slogan {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--main-dark);
    letter-spacing: 0.02rem;
}

.footer-slogan strong {
    font-weight: 700;
    color: var(--main-red);
}

.footer-bottom {
    background: var(--main-dark);
    padding: 3rem 0 2rem;
    color: var(--main-light);
    font-weight: 300;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-grid h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.04rem;
    text-transform: uppercase;
}

.footer-grid p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(240, 243, 245, 0.6);
    font-weight: 300;
}

.footer-grid ul li { margin-bottom: 0.4rem; }

.footer-grid a {
    color: rgba(240, 243, 245, 0.6);
    font-weight: 300;
    font-size: 0.85rem;
}

.footer-grid a:hover { color: var(--white); }

.footer-legal {
    border-top: 1px solid rgba(240, 243, 245, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: rgba(240, 243, 245, 0.35);
    letter-spacing: 0.02rem;
}

.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { color: rgba(240, 243, 245, 0.35); font-size: 0.72rem; }
.footer-legal-links a:hover { color: var(--white); }

@media (max-width: 768px) {
    .footer-top { max-width: 100%; border-radius: 0; }
    .footer-top-inner { flex-direction: column; align-items: flex-start; gap: 0.25rem; padding: 1.25rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-legal { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}

@media (min-width: 769px) and (max-width: 1300px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}


/* ======================================================================
   ======================================================================
   SUBPAGE STYLES
   ======================================================================
   ====================================================================== */

/* ======================================================================
   Page Header
   ====================================================================== */
.page-header {
    padding: 2.5rem 0 4rem;
    border-bottom: 1px solid var(--main-light);
}

.page-header .breadcrumb {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.78rem;
    color: var(--main-medium-light);
    margin-bottom: 2.25rem;
    letter-spacing: 0.02rem;
}

.page-header .breadcrumb a { color: var(--main-medium); }
.page-header .breadcrumb a:hover { color: var(--main-red); }
.page-header .breadcrumb .sep { color: var(--main-medium-light); }

.page-header h1 {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--main-dark);
    margin-bottom: 1.25rem;
    max-width: 40rem;
}

.page-header h1::before {
    content: "";
    display: block;
    background-color: var(--main-red);
    width: 1.75rem;
    height: 0.25rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
}

.page-header .page-lead {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--main-medium);
    max-width: 38rem;
}

.page-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
}

.page-header-image { overflow: hidden; max-height: 20rem; }

.page-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .page-header { padding: 2rem 0 3rem; }
    .page-header h1 { font-size: 1.65rem; }
    .page-header-grid { grid-template-columns: 1fr; gap: 2rem; }
    .page-header-image { max-height: 12rem; }
}

/* ======================================================================
   Hero (subpage)
   ====================================================================== */
.hero {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--main-light);
}

.hero-content { max-width: 44rem; }

.hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--main-dark);
    margin-bottom: 1.5rem;
}

.hero h1::before {
    content: "";
    display: block;
    background-color: var(--main-red);
    width: 1.75rem;
    height: 0.25rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--main-medium);
    font-weight: 500;
}

.hero .lead {
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--main-medium);
    margin-bottom: 2.25rem;
    max-width: 38rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-image { overflow: hidden; }

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-image { max-height: 14rem; }
}

/* ======================================================================
   Topic Grid (subpages)
   ====================================================================== */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.topic-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.25rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    min-height: 14rem;
    border: 1px solid var(--main-light);
    box-shadow: var(--shadow-sm);
}

.topic-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--main-red);
}

.topic-card-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--main-medium-light);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02rem;
}

.topic-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--main-dark);
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.topic-card h3::before { display: none; }

.topic-card p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--main-medium);
    flex-grow: 1;
}

.topic-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1.25rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--main-medium-light);
    transition: all var(--transition);
    letter-spacing: 0.02rem;
}

.topic-card:hover .topic-card-arrow { color: var(--main-red); gap: 0.55rem; }

.topic-card-arrow svg {
    width: 0.8rem;
    height: 0.8rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@media (min-width: 769px) and (max-width: 1100px) {
    .topic-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .topic-grid { grid-template-columns: 1fr; }
    .topic-card { min-height: auto; }
}

/* ======================================================================
   Statement (subpage)
   ====================================================================== */
.statement {
    padding: 4rem 0;
    background: var(--main-dark);
}

.statement blockquote {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
    font-size: 1.55rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01rem;
}

.statement blockquote strong {
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 768px) {
    .statement { padding: 3rem 0; }
    .statement blockquote { font-size: 1.2rem; text-align: left; }
}

/* ======================================================================
   Two-Column Content (subpage)
   ====================================================================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.two-col h2 { margin-bottom: 1.25rem; }

.two-col p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--main-medium);
}

.two-col p + p { margin-top: 0.65rem; }

.reasons-list { display: flex; flex-direction: column; gap: 1.75rem; }

.reasons-list .reason {
    padding-left: 1.25rem;
    border-left: 2px solid var(--main-red);
}

.reasons-list .reason strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 0.2rem;
}

.reasons-list .reason p { font-size: 0.88rem; margin: 0; }

@media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ======================================================================
   CTA Cards (subpage)
   ====================================================================== */
.cta-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
    margin-top: 2.25rem;
}

.cta-card {
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 16rem;
    transition: all var(--transition);
}

.cta-card:hover { transform: translateY(-3px); }

.cta-card--dark { background: var(--main-dark); color: var(--white); }
.cta-card--dark:hover { box-shadow: 0 12px 35px rgba(55, 64, 81, 0.18); }

.cta-card--light { background: var(--white); border: 2px solid var(--main-red); }
.cta-card--light:hover { box-shadow: 0 12px 35px rgba(250, 0, 46, 0.08); }

.cta-card .card-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.45;
    margin-bottom: 1.25rem;
}

.cta-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.cta-card h3::before { display: none; }
.cta-card--dark h3 { color: var(--white); }
.cta-card--light h3 { color: var(--main-dark); }

.cta-card p { font-size: 0.88rem; font-weight: 300; line-height: 1.65; flex-grow: 1; }
.cta-card--dark p { color: rgba(240, 243, 245, 0.55); }
.cta-card--light p { color: var(--main-medium); }

.cta-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    transition: gap var(--transition);
    letter-spacing: 0.02rem;
}

.cta-card--dark .card-link { color: rgba(240, 243, 245, 0.75); }
.cta-card--light .card-link { color: var(--main-red); }
.cta-card:hover .card-link { gap: 0.6rem; }

.card-link svg { width: 0.9rem; height: 0.9rem; stroke: currentColor; stroke-width: 2; fill: none; }

@media (max-width: 768px) {
    .cta-pair { grid-template-columns: 1fr; }
    .cta-card { min-height: auto; padding: 2rem; }
}

/* ======================================================================
   FAQ (subpage .faq wrapper)
   ====================================================================== */
.faq {
    padding: 4rem 0;
    border-top: 1px solid var(--main-light);
}

.faq-list { max-width: 44rem; }

/* ======================================================================
   Footer Banner (subpage)
   ====================================================================== */
.footer-banner {
    background: var(--main-dark);
    padding: 4rem 0;
    text-align: center;
}

.footer-banner h3 {
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-banner h3::before { display: none; }
.footer-banner p { color: rgba(240, 243, 245, 0.65); margin-bottom: 1.5rem; }
.footer-banner .btn-group { justify-content: center; }

.footer-banner .cto {
    color: var(--white);
    border-color: rgba(240, 243, 245, 0.25);
}

.footer-banner .cto:hover {
    background: var(--main-red);
    border-color: var(--main-red);
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-banner { padding: 3rem 0; }
    .footer-banner h3 { font-size: 1.25rem; text-align: left; }
    .footer-banner .btn-group { justify-content: flex-start; }
}

/* ======================================================================
   Article Content
   ====================================================================== */
.article { padding: 2.5rem 0 4rem; }
.article + .article { border-top: 1px solid var(--main-light); }
.article-narrow { max-width: 44rem; }

.article h2 {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
    margin-top: 2.75rem;
}

.article h2:first-child { margin-top: 0; }

.article h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 2.25rem;
}

.article p {
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--main-medium);
    margin-bottom: 1rem;
}

.article p:last-child { margin-bottom: 0; }
.article strong { font-weight: 600; color: var(--main-dark); }
.article a { color: var(--main-red); }
.article a:hover { border-bottom: 1px dashed var(--main-red); }

.article ul, .article ol { margin: 1rem 0; padding-left: 1.25rem; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }

.article li {
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--main-medium);
    margin-bottom: 0.35rem;
}

.article li strong { color: var(--main-dark); }

@media (max-width: 768px) {
    .article { padding: 3rem 0; }
    .article h2 { font-size: 1.3rem; }
}

/* ======================================================================
   Mustertext Boxes
   ====================================================================== */
.mustertext-box {
    border: 1px solid var(--main-light);
    border-left: 3px solid var(--main-red);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.75rem 2rem;
    margin: 1.75rem 0;
    background: var(--main-lighter);
}

.mustertext-box .mt-label {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--main-red);
    margin-bottom: 0.5rem;
}

.mustertext-box h3 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 0.5rem;
}

.mustertext-box h3::before { display: none; }

.mustertext-box p {
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--main-dark-soft);
    font-style: italic;
}

.mustertext-box .mt-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
    font-size: 0.78rem;
    font-weight: 500;
    font-style: normal;
    color: var(--main-red);
    transition: gap var(--transition);
}

.mustertext-box .mt-cta:hover { gap: 0.45rem; }

/* ======================================================================
   Step Guide
   ====================================================================== */
.step-list {
    display: flex;
    flex-direction: column;
    counter-reset: step;
}

.step {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--main-light);
    counter-increment: step;
    align-items: start;
}

.step:not(:has(.step-number)) { display: block; }
.step:last-child { border-bottom: none; }

.step-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--main-light);
    line-height: 1;
}

.step-number::before { content: counter(step, decimal-leading-zero); }

.step h3 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 0.3rem;
}

.step h3::before { display: none; }

.step p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--main-medium);
}

/* ======================================================================
   Callout
   ====================================================================== */
.callout {
    border-left: 3px solid var(--main-red);
    padding: 1.35rem 1.75rem;
    margin: 1.75rem 0;
    background: var(--main-lighter);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.callout p {
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--main-dark-soft);
    margin: 0;
}

.callout strong { color: var(--main-dark); font-weight: 600; }

/* ======================================================================
   Content Image
   ====================================================================== */
.content-image { margin: 2.25rem 0; overflow: hidden; }
.content-image img { width: 100%; border-radius: var(--radius); }

.content-image figcaption {
    font-size: 0.78rem;
    color: var(--main-medium-light);
    margin-top: 0.6rem;
    font-weight: 300;
    font-style: italic;
}

.content-image-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
    align-items: start;
    margin: 2.25rem 0;
}

.content-image-side img { width: 100%; border-radius: var(--radius); }

@media (max-width: 768px) {
    .content-image-side { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ======================================================================
   Comparison Table
   ====================================================================== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.25rem 0;
    font-size: 0.88rem;
}

.comparison-table thead th {
    text-align: left;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--main-medium);
    padding: 0.85rem 1rem;
    border-bottom: 2px solid var(--main-light);
}

.comparison-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--main-light);
    font-weight: 300;
    color: var(--main-dark-soft);
    vertical-align: top;
    line-height: 1.55;
}

.comparison-table tbody td:first-child { font-weight: 500; color: var(--main-dark); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:hover td { background: var(--main-lighter); }

@media (max-width: 768px) {
    .comparison-table { font-size: 0.82rem; }
    .comparison-table thead th, .comparison-table tbody td { padding: 0.6rem 0.5rem; }
}

/* ======================================================================
   Related Content
   ====================================================================== */
.related-section { padding: 4rem 0; border-top: 1px solid var(--main-light); }

.related-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--main-dark);
    margin-bottom: 1.75rem;
}

.related-section h2::before { display: none; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.related-card {
    display: block;
    padding: 1.75rem;
    border: 1px solid var(--main-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.related-card:hover {
    border-color: var(--main-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.related-card h3 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--main-dark);
    margin-bottom: 0.35rem;
}

.related-card h3::before { display: none; }

.related-card p {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--main-medium);
    line-height: 1.55;
}

@media (max-width: 768px) {
    .related-grid { grid-template-columns: 1fr; }
}

/* ======================================================================
   Price Cards
   ====================================================================== */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem; margin: 2.25rem 0; }

.price-card {
    border: 1px solid var(--main-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: box-shadow var(--transition);
}

.price-card:hover { box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--main-red); border-width: 2px; }

.price-card .price-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--main-red);
    margin-bottom: 0.5rem;
}

.price-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--main-dark);
    margin-bottom: 0.35rem;
}

.price-card h3::before { display: none; }

.price-card .price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--main-dark);
    letter-spacing: -0.01em;
}

.price-card .price-amount span {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--main-medium);
}

.price-card .price-features {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--main-light);
}

.price-card .price-features li {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--main-medium);
    padding: 0.3rem 0 0.3rem 1.35rem;
    position: relative;
    line-height: 1.55;
}

.price-card .price-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--main-red);
    font-size: 0.72rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .price-grid { grid-template-columns: 1fr; }
}

/* ======================================================================
   Breadcrumb Bar
   ====================================================================== */
.breadcrumb-bar { padding: 0.85rem 0; border-bottom: 1px solid var(--main-light); }

.breadcrumb-bar .breadcrumb {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.78rem;
    color: var(--main-medium-light);
    letter-spacing: 0.02rem;
}

.breadcrumb-bar .breadcrumb a { color: var(--main-medium); }
.breadcrumb-bar .breadcrumb a:hover { color: var(--main-red); }
.breadcrumb-bar .breadcrumb li::after { content: '/'; margin-left: 0.4rem; color: var(--main-medium-light); }
.breadcrumb-bar .breadcrumb li:last-child::after { display: none; }

/* ======================================================================
   Page Hero
   ====================================================================== */
.page-hero {
    padding: 2.5rem 0 3rem;
    border-bottom: 1px solid var(--main-light);
}

.page-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--main-dark);
    margin-bottom: 0.85rem;
    max-width: 40rem;
}

.page-hero h1::before {
    content: "";
    display: block;
    background-color: var(--main-red);
    width: 1.75rem;
    height: 0.25rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
}

.page-hero .page-lead {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--main-medium);
    max-width: 36rem;
}

@media (max-width: 768px) {
    .page-hero { padding: 2rem 0 3rem; }
    .page-hero h1 { font-size: 1.55rem; }
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 8px; height: 8px; background: var(--main-light); }
::-webkit-scrollbar-thumb { background: var(--main-medium-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--main-medium); }

/* ======================================================================
   BrennerMedienGruppe Badge
   ====================================================================== */
.footer-bottom:has(#bm-gruppe) {
    padding: 0.65rem 0;
    border-top: 1px solid rgba(240, 243, 245, 0.07);
}

#bm-gruppe {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

#bm-gruppe p { margin: 0; }

#bm-gruppe .memberof {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(240, 243, 245, 0.28);
    font-size: 0.68rem;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 0.02rem;
    transition: color var(--transition);
}

#bm-gruppe .memberof span {
    display: inline-flex;
    align-items: center;
    opacity: 0.65;
    transition: opacity var(--transition);
}

#bm-gruppe .memberof:hover { color: var(--white); }
#bm-gruppe .memberof:hover span { opacity: 1; }

/* ======================================================================
   Content Section (ratgeber subpages)
   ====================================================================== */
.content-section { padding: 2.5rem 0 4rem; }
.content-section + .content-section { border-top: 1px solid var(--main-light); }
.container-narrow { max-width: 44rem; }

.content-section h2 {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
    margin-top: 2.75rem;
}

.content-section h2:first-child { margin-top: 0; }

.content-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 2.25rem;
}

.content-section p {
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--main-medium);
    margin-bottom: 1rem;
}

.content-section p:last-child { margin-bottom: 0; }
.content-section strong { font-weight: 600; color: var(--main-dark); }
.content-section a { color: var(--main-red); }
.content-section a:hover { border-bottom: 1px dashed var(--main-red); }

.content-section ul, .content-section ol { margin: 1rem 0; padding-left: 1.25rem; }
.content-section ul { list-style: disc; }
.content-section ol { list-style: decimal; }

.content-section li {
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--main-medium);
    margin-bottom: 0.35rem;
}

.content-section li strong { color: var(--main-dark); }

.content-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .content-section { padding: 2rem 0 3rem; }
    .content-section h2 { font-size: 1.3rem; }
}

/* ======================================================================
   Footer Legal — Memberof Badge
   ====================================================================== */
.footer-legal .memberof {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(240, 243, 245, 0.35);
    font-size: 0.72rem;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 0.02rem;
    transition: color var(--transition);
}

.footer-legal .memberof span {
    display: inline-flex;
    align-items: center;
    opacity: 0.65;
    transition: opacity var(--transition);
}

.footer-legal .memberof:hover { color: var(--white); }
.footer-legal .memberof:hover span { opacity: 1; }
