body {
    margin: 0;
    padding: 0;
    background: #2a2a2a;
}

/* ===============================
   BRAND HERO
================================ */

.brand-hero {
    width: 100%;
    background: #2a2a2a;
    padding-top: 9em;
    padding-bottom: 6em;
    z-index: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.brand-hero-inner {
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5em;
}

.header-left {
    cursor: pointer;
}

.brand-logo {
    display: flex;
    align-items: center;
    color: #C9A24D;
    margin-left: 1.2em;
}

.brand-s {
    font-size: 8em;
    font-weight: 600;
    line-height: 1;
    opacity: 0;
    transform: translateY(-80px);
    animation: s-fly-in 1.2s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes s-fly-in {
    0%   { opacity: 0; transform: translateY(-80px); }
    100% { opacity: 1; transform: translateY(0); }
}

.brand-d {
    font-size: 8em;
    font-weight: 600;
    line-height: 1;
    opacity: 0;
    transform: translateY(80px);
    animation: d-fly-in 1.2s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes d-fly-in {
    0%   { opacity: 0; transform: translateY(80px); }
    100% { opacity: 1; transform: translateY(0); }
}

.brand-line {
    width: 0.12em;
    height: 10em;
    background: #C9A24D;
    margin: 0 2em;
    opacity: 0.9;
    transform-origin: top;
    transform: scaleY(0);
    animation: draw-line-vertical 1.4s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes draw-line-vertical {
    to { transform: scaleY(1); }
}

.brand-text {
    position: relative;
    top: -3em;
}

.brand-text h1 {
    font-size: 3.1em;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.4em;
    opacity: 0;
    transform: translateY(20px);
    animation: text-fade-up 0.8s ease-out forwards;
    animation-delay: 1.6s;
}

.tagline-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    animation: text-fade-up 0.8s ease-out forwards;
    animation-delay: 2.3s;
}

.brand-tagline {
    font-size: 1.2em;
    color: #b5b5b5;
    position: relative;
    padding-top: 0.6em;
}

@keyframes text-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.brand-tagline::before {
    content: "";
    position: absolute;
    top: -0.25em;
    left: 50%;
    width: 21em;
    height: 0.05em;
    background: #C9A24D;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0;
    animation: line-grow-horizontal 1.6s ease-out forwards;
    animation-delay: 1.7s;
}

@keyframes line-grow-horizontal {
    0%   { transform: translateX(-50%) scaleX(0); opacity: 0; }
    10%  { opacity: 1; }
    100% { transform: translateX(-50%) scaleX(1); opacity: 1; }
}

.name-dot {
    display: inline-block;
    width: 0.26em;
    height: 0.26em;
    background: #C9A24D;
    border-radius: 50%;
    margin: 0 0.18em;
    position: relative;
    top: -0.12em;
    transform: scale(0);
    opacity: 0;
    animation: dot-grow 0.45s ease-out forwards;
    animation-delay: 1.7s;
}

@keyframes dot-grow {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* ===============================
   CHART BACKGROUND
================================ */

.chart-background {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: left 50%;
    background-size: 120% auto;
    transform: translateY(-16.5%);
    z-index: 0;
    pointer-events: none;
}

.chart-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: draw-line 2.2s ease-out forwards;
}

@keyframes draw-line {
    to { stroke-dashoffset: 0; }
}

.chart-candles {
    opacity: 0;
    animation: fade-candles 1.5s ease-out forwards;
    animation-delay: 1.6s;
}

@keyframes fade-candles {
    to { opacity: 0.25; }
}

/* ===============================
   COOKIE CONSENT
================================ */

.cookie-consent {
    position: fixed;
    left: 1.6em;
    bottom: 1.6em;
    width: 420px;
    max-width: calc(100vw - 3.2em);
    background: rgba(28, 28, 28, 0.96);
    color: #e5e5e5;
    border-radius: 0.8em;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    font-size: 0.95em;
    z-index: 9999;
    overflow: hidden;
    transition:
        max-height 0.45s cubic-bezier(.22,.61,.36,1),
        opacity 0.25s ease;
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9em 1.3em;
    font-size: 1.05em;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: -1.6em;
}

.cookie-header button {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.2em;
    cursor: pointer;
}

.cookie-content {
    padding: 1em 1.3em 1.4em;
    line-height: 1.55;
}

.cookie-actions {
    display: flex;
    gap: 0.6em;
    margin-top: 0em;
}

.cookie-actions button {
    flex: 1;
    padding: 0.55em 0;
    border-radius: 0.35em;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.cookie-actions button:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.cookie-accept {
    background: #C9A24D;
    color: #1e1e1e;
}

.cookie-decline {
    background: #444;
    color: #e5e5e5;
}

.cookie-links {
    margin-top: 1.2em;
    display: flex;
    justify-content: center;
    gap: 1.4em;
    font-size: 0.8em;
}

.cookie-links a {
    color: #aaa;
    text-decoration: none;
}

.cookie-consent.collapsed {
    position: fixed;
    left: 1.2em;
    bottom: 1.2em;
    width: 48px;
    height: 48px;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transition: transform 0.3s ease;
}

.cookie-consent.collapsed:hover {
    transform: scale(1.15);
}

.cookie-consent.collapsed:active {
    transform: scale(0.95);
}

.cookie-consent.collapsed .cookie-header,
.cookie-consent.collapsed .cookie-content {
    display: none;
}

.cookie-consent.collapsed .cookie-collapsed-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-collapsed-icon {
    display: none;
}

.cookie-collapsed-icon .cookie-character {
    width: 48px;
    height: 48px;
}

.cookie-collapsed-icon .cookie-character .cc-top,
.cookie-collapsed-icon .cookie-character .cc-bottom {
    width: 48px;
    height: 48px;
}

.cookie-collapsed-icon .cookie-character .eye {
    top: 17px;
}

.cookie-collapsed-icon .cookie-character .eye.left {
    left: 11px;
}

.cookie-collapsed-icon .cookie-character .eye.right {
    right: 11px;
}

.cookie-collapsed-icon .cookie-character .eye svg {
    width: 12px;
    height: 12px;
}

.cookie-collapsed-icon .cookie-character .eye::after {
    width: 5px;
    height: 5px;
    border-radius: 3px;
}

.cookie-collapsed-icon .cookie-character .mouth {
    width: 14px;
    height: 11px;
    left: 17px;
    top: 24px;
}

.cookie-collapsed-icon .cookie-character .piece {
    width: 7px;
    height: 7px;
}

.cookie-collapsed-icon .cookie-character .piece.left {
    top: 18px;
    left: 5px;
}

.cookie-collapsed-icon .cookie-character .piece.right {
    top: 18px;
    right: 5px;
}

.cookie-links button {
    background: none;
    border: none;
    padding: 0.35em 0.6em;
    min-height: 32px;
    font-family: inherit;
    font-size: 0.9em;
    line-height: 1.2;
    color: #aaa;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.cookie-links button:hover {
    color: #e5e5e5;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-links span {
    color: #C9A24D;
    font-size: 2em;
    font-weight: 600;
    line-height: 1;
    margin: 0 -0.3em;
    position: relative;
    top: 0.02em;
    pointer-events: none;
    opacity: 0.9;
}

/* ===============================
   COOKIE EINSTELLUNGEN
================================ */

.cookie-setting {
    margin-top: 1em;
    padding-top: 0.9em;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.setting-row {
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.setting-row strong {
    flex: 1;
    font-size: 0.95em;
    font-weight: 500;
    color: #f0f0f0;
}

.setting-expand {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.3em;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease;
}

.setting-expand.open {
    transform: rotate(90deg);
    color: #C9A24D;
}

.setting-details {
    margin-top: 0.6em;
    padding-left: 1.6em;
}

.setting-details p {
    font-size: 0.85em;
    line-height: 1.5;
    color: #b5b5b5;
}

.setting-fixed {
    font-size: 0.8em;
    font-weight: 500;
    color: #3ddc84;
    white-space: nowrap;
}

.setting-toggle {
    position: relative;
    width: 42px;
    height: 22px;
    border-radius: 999px;
    background: #555;
    border: none;
    cursor: pointer;
    transition:
        background-color 0.45s cubic-bezier(.22,.61,.36,1),
        box-shadow 0.45s cubic-bezier(.22,.61,.36,1);
}

.setting-toggle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition:
        transform 0.6s cubic-bezier(.22,.61,.36,1),
        box-shadow 0.45s cubic-bezier(.22,.61,.36,1);
}

.setting-toggle.on {
    background: #C9A24D;
}

.setting-toggle.on::after {
    transform: translateX(20px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.setting-toggle:hover::after {
    box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.cookie-settings-toggle {
    background: #444;
    color: #e5e5e5;
}

.cookie-content .cookie-actions {
    margin-top: 2.5em;
}

/* =========================================
   ZIEL SECTION – TEXT LINKS / BILD RECHTS
========================================= */

.ziel-section {
    width: 100%;
    background: #2a2a2a;
    padding: 7em 0;
    display: flex;
    justify-content: center;
    margin-top: -8em;
}

.ziel-wrapper {
    max-width: 80vw;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3em;
    align-items: center;
}

.ziel-headline {
    font-size: 2.8em;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 0.8em;
}

.ziel-headline span {
    color: #C9A24D;
}

.ziel-text {
    margin-top: 0;
    margin-left: 5em;
}

.ziel-text p {
    font-size: 1.05em;
    line-height: 1.75;
    color: #d0d0d0;
    max-width: 38em;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.ziel-image {
    position: relative;
    margin-left: 3em;
    z-index: 2;
    transform: scale(1.08);
    transform-origin: center right;
}

.ziel-image img {
    width: 100%;
    display: block;
    border-radius: 0.6em;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    transition: transform 0.35s ease;
    position: relative;
    z-index: 3;
}

.ziel-image img:hover {
    transform: scale(1.03);
}

.ziel-image-accent {
    position: absolute;
    bottom: -1.2em;
    left: -1.2em;
    width: 45%;
    height: 45%;
    border: 2px solid #C9A24D;
    border-radius: 0.5em;
    opacity: 0.12;
    z-index: 1;
}

.ziel-button {
    display: inline-block;
    margin-top: 2.2em;
    padding: 0.9em 2.2em;
    border-radius: 0.5em;
    background: #C9A24D;
    color: #1e1e1e;
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

/* Once revealed, reset to button's own transition so hover-in AND hover-out are fast */
.ziel-button.reveal.is-visible {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
    transition-delay: 0s;
}

.ziel-button:hover,
.ziel-button.reveal.is-visible:hover {
    transform: translateY(-2px) translateX(0) scale(1) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    background: #3a3a3a;
    color: #C9A24D;
    transition-delay: 0s;
}

/* ===============================
   VORSORGE SECTION
================================ */

.vorsorge-section {
    width: 100%;
    background: #242424;
    padding: 8em 0;
    display: flex;
    justify-content: center;
}

.vorsorge-wrapper {
    max-width: 80vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8em;
    align-items: start;
}

.vorsorge-image {
    position: relative;
}

.vorsorge-image img {
    width: 100%;
    border-radius: 0.6em;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    transition: transform 0.35s ease;
    position: relative;
    z-index: 2;
}

.vorsorge-image img:hover {
    transform: scale(1.03);
}

.vorsorge-image-accent {
    position: absolute;
    bottom: -1.2em;
    right: -1.2em;
    width: 45%;
    height: 45%;
    border: 2px solid #C9A24D;
    border-radius: 0.5em;
    opacity: 0.12;
    z-index: 1;
}

.vorsorge-content {
    padding-top: 0;
}

.vorsorge-headline {
    font-size: 2.8em;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0.6em;
}

.vorsorge-headline span {
    color: #C9A24D;
}

.vorsorge-intro {
    font-size: 1.05em;
    line-height: 1.75;
    color: #b5b5b5;
    max-width: 36em;
    margin-bottom: 2.5em;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
}

.vorsorge-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vorsorge-card {
    border-top: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    transition: background 0.3s ease;
}

.vorsorge-card:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.vorsorge-card-header {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1.15em 0.4em;
    cursor: pointer;
    transition: padding-left 0.3s ease;
}

.vorsorge-card-header:hover {
    padding-left: 0.6em;
}

.vorsorge-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(201, 162, 77, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.vorsorge-card.open .vorsorge-card-icon {
    background: rgba(201, 162, 77, 0.2);
}

.vorsorge-card-title {
    flex: 1;
    font-size: 1.05em;
    font-weight: 500;
    color: #e5e5e5;
    letter-spacing: 0.01em;
}

.vorsorge-card-arrow {
    font-size: 1.5em;
    color: #C9A24D;
    transition: transform 0.35s cubic-bezier(.22,.61,.36,1);
    line-height: 1;
}

.vorsorge-card.open .vorsorge-card-arrow {
    transform: rotate(90deg);
}

.vorsorge-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.22,.61,.36,1),
                padding 0.5s cubic-bezier(.22,.61,.36,1),
                opacity 0.4s ease;
    opacity: 0;
    padding: 0 0.4em 0 3.8em;
}

.vorsorge-card.open .vorsorge-card-body {
    max-height: 200px;
    opacity: 1;
    padding: 0 0.4em 1.4em 3.8em;
}

.vorsorge-card-body p {
    font-size: 0.95em;
    line-height: 1.7;
    color: #a0a0a0;
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
}

/* ===============================
   SPARFORMEN – 3-TOPF-MODELL
================================ */

.sparformen-section {
    width: 100%;
    background: #2a2a2a;
    padding: 8em 0;
    display: flex;
    justify-content: center;
    overflow-x: clip;
}

.sparformen-wrapper {
    max-width: 80vw;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6em;
    align-items: start;
}

.sparformen-headline {
    font-size: 2.8em;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 0.6em;
}

.sparformen-headline span {
    color: #C9A24D;
}

.sparformen-intro {
    font-size: 1.05em;
    line-height: 1.75;
    color: #b5b5b5;
    max-width: 36em;
    margin-bottom: 3em;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
}

.topf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    align-items: start;
}

.topf-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0.8em;
    padding: 2.2em 1.8em 2em;
    text-align: center;
    transition: transform 0.4s cubic-bezier(.22,.61,.36,1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.topf-card:hover {
    border-color: rgba(201, 162, 77, 0.25);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

@media (min-width: 961px) {
    .topf-card:hover {
        transform: translateY(-6px);
    }
}

.topf-visual {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.2em;
    overflow: hidden;
}

.topf-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 50% 50%;
    transition: height 0.8s cubic-bezier(.22,.61,.36,1), opacity 0.6s ease;
}

.topf-fill-1 {
    height: 35%;
    background: linear-gradient(180deg, #C9A24D 0%, #a8863a 100%);
    opacity: 0.5;
}

.topf-fill-2 {
    height: 60%;
    background: linear-gradient(180deg, #C9A24D 0%, #a8863a 100%);
    opacity: 0.65;
}

.topf-fill-3 {
    height: 90%;
    background: linear-gradient(180deg, #C9A24D 0%, #a8863a 100%);
    opacity: 0.8;
}

.topf-card:hover .topf-fill-1,
.topf-card.reveal.is-visible:hover .topf-fill-1 { height: 65% !important; opacity: 0.7; }
.topf-card:hover .topf-fill-2,
.topf-card.reveal.is-visible:hover .topf-fill-2 { height: 88% !important; opacity: 0.85; }
.topf-card:hover .topf-fill-3,
.topf-card.reveal.is-visible:hover .topf-fill-3 { height: 100% !important; opacity: 1; }

/* Text hidden by default, reveal on hover */
.topf-card p {
    font-size: 0.88em;
    line-height: 1.65;
    color: #a0a0a0;
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.22,.61,.36,1),
                opacity 0.4s ease,
                margin 0.4s ease;
    margin-top: 0;
}

.topf-card:hover p {
    max-height: 20em;
    opacity: 1;
    margin-top: 0.6em;
}

.topf-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.topf-card h3 {
    font-size: 1.1em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.15em;
}

.topf-label {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 500;
    color: #C9A24D;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8em;
}

.sparformen-image {
    position: relative;
    margin-left: 3em;
}

.sparformen-image img {
    width: 135%;
    border-radius: 0.6em;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    transition: transform 0.35s ease;
    position: relative;
    z-index: 2;
}

.sparformen-image img:hover {
    transform: scale(1.03);
}

.sparformen-image-accent {
    position: absolute;
    top: -1.2em;
    left: -1.2em;
    width: 45%;
    height: 45%;
    border: 2px solid #C9A24D;
    border-radius: 0.5em;
    opacity: 0.12;
    z-index: 1;
}

/* ===============================
   ABSICHERUNG & ALLTAG
================================ */

.absicherung-section {
    width: 100%;
    background: #242424;
    padding: 8em 0;
    display: flex;
    justify-content: center;
}

.absicherung-wrapper {
    max-width: 80vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8em;
    align-items: center;
}

.absicherung-image {
    position: relative;
}

.absicherung-image img {
    width: 100%;
    border-radius: 0.6em;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    transition: transform 0.35s ease;
    position: relative;
    z-index: 2;
}

.absicherung-image img:hover {
    transform: scale(1.03);
}

.absicherung-image-accent {
    position: absolute;
    bottom: -1.2em;
    right: -1.2em;
    width: 45%;
    height: 45%;
    border: 2px solid #C9A24D;
    border-radius: 0.5em;
    opacity: 0.12;
    z-index: 1;
}

.absicherung-content {
    padding-top: 0.5em;
}

.absicherung-headline {
    font-size: 2.8em;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 0.6em;
}

.absicherung-headline span {
    color: #C9A24D;
}

.absicherung-tagline {
    font-size: 1.2em;
    font-weight: 500;
    color: #C9A24D;
    letter-spacing: 0.02em;
    margin-bottom: 1em;
}

.absicherung-text {
    font-size: 1.05em;
    line-height: 1.75;
    color: #b5b5b5;
    max-width: 36em;
    margin-bottom: 2.5em;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
}

.absicherung-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.absicherung-badge {
    display: flex;
    align-items: center;
    gap: 0.7em;
    padding: 0.75em 1.4em;
    border-radius: 2em;
    background: rgba(201, 162, 77, 0.08);
    border: 1px solid rgba(201, 162, 77, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.absicherung-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 162, 77, 0.35);
    background: rgba(201, 162, 77, 0.12);
}

.absicherung-badge span {
    font-size: 0.95em;
    font-weight: 500;
    color: #e5e5e5;
    letter-spacing: 0.01em;
}

/* ===============================
   SERVICES SECTION
================================ */

.services-section {
    width: 100%;
    background: #242424;
    padding: 8em 0;
    display: flex;
    justify-content: center;
}

.services-inner {
    max-width: 80vw;
    width: 100%;
}

.services-headline {
    font-size: 2.8em;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.4em;
}

.services-headline span {
    color: #C9A24D;
}

.services-sub {
    text-align: center;
    font-size: 1.05em;
    line-height: 1.75;
    color: #b5b5b5;
    max-width: 34em;
    margin: 0 auto 4em;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5em;
}

.service-card {
    text-align: center;
    padding: 2.5em 2em 2.8em;
    border-radius: 1em;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s cubic-bezier(.22,.61,.36,1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 77, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.service-image-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 2em;
}

.service-image-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 77, 0.3);
    transition: border-color 0.4s ease, transform 1s cubic-bezier(.22,.61,.36,1);
}

.service-image-ring::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #C9A24D;
    border-radius: 50%;
}

.service-image-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #1a1a1a;
}

.service-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.service-card:nth-child(1) .service-image-circle img {
    object-position: center 73%;
    transform: scale(1.1);
}

.service-number {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 600;
    color: #C9A24D;
    letter-spacing: 0.15em;
    margin-bottom: 0.8em;
    opacity: 0.6;
}

.service-card h3 {
    font-size: 1.35em;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.7em;
    letter-spacing: 0.01em;
}

.service-divider {
    width: 2.5em;
    height: 2px;
    background: #C9A24D;
    margin: 0 auto 1.2em;
    border-radius: 2px;
    opacity: 0.5;
    transition: width 0.4s ease, opacity 0.4s ease;
}

.service-card:hover .service-divider {
    width: 4em;
    opacity: 0.9;
}

.service-card p {
    font-size: 0.95em;
    line-height: 1.7;
    color: #a0a0a0;
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
}

/* ===============================
   PROZESS SECTION – DREHRAD
================================ */

.prozess-section {
    padding: 8em 0 6em;
    text-align: center;
    background: #2a2a2a;
}

.prozess-title {
    font-size: 2.8em;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.3em;
}

.prozess-title span {
    color: #C9A24D;
}

.prozess-subtitle {
    font-size: 1.05em;
    color: #b5b5b5;
    margin-bottom: 4em;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
}

.prozess-circle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5em;
}

.prozess-wheel {
    position: relative;
    width: 340px;
    height: 340px;
}

.prozess-ring {
    position: absolute;
    inset: 25px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 162, 77, 0.12);
}

.prozess-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 77, 0.08) 0%, transparent 70%);
}

.prozess-center-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1em;
    font-weight: 500;
    color: #C9A24D;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.04em;
    z-index: 5;
}

.prozess-item {
    position: absolute;
    left: 50%;
    top: 50%;
    background: none;
    border: 2px solid #C9A24D;
    color: #C9A24D;
    padding: 0.55em 1.8em;
    border-radius: 2em;
    cursor: pointer;
    z-index: 10;
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 0.03em;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.4s ease,
                color 0.4s ease,
                box-shadow 0.4s ease,
                transform 1s cubic-bezier(.22, .61, .36, 1);
}

.prozess-item:hover {
    box-shadow: 0 0 20px rgba(201, 162, 77, 0.2);
}

.prozess-item.active {
    background: #C9A24D;
    color: #1e1e1e;
    box-shadow: 0 4px 20px rgba(201, 162, 77, 0.35);
}

.prozess-dots {
    display: flex;
    justify-content: center;
    gap: 0.6em;
    margin-bottom: 2em;
}

.prozess-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 162, 77, 0.2);
    border: none;
    cursor: pointer;
    transition: background 0.4s ease, transform 0.4s ease;
    padding: 0;
}

.prozess-dot.active {
    background: #C9A24D;
    transform: scale(1.3);
}

.prozess-text-wrapper {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    min-height: 0em; 
}

.prozess-text-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    color: #b5b5b5;
    font-size: 1.05em;
    line-height: 1.75;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
}

.prozess-text-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* ===============================
   SERVICE RING – FULL 360° ROTATION
================================ */

/* SERVICE RING – PROGRESS ROTATION */

.service-card:nth-child(1):hover .service-image-ring {
    transform: rotate(90deg);
}

.service-card:nth-child(2):hover .service-image-ring {
    transform: rotate(180deg);
}

.service-card:nth-child(3):hover .service-image-ring {
    transform: rotate(270deg);
}

.service-card:nth-child(4):hover .service-image-ring {
    transform: rotate(360deg);
}

/* Transition bleibt hier */
.service-image-ring {
    transition: border-color 0.4s ease,
                transform 1s cubic-bezier(.22,.61,.36,1);
}

/* ===============================
   SCROLL-REVEAL ANIMATIONS
================================ */

/* --- Base hidden states --- */
.reveal {
    opacity: 0;
    transition-property: opacity, transform, filter;
    transition-duration: 0.9s;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
}

/* Fade up (default) */
.reveal.reveal-up {
    transform: translateY(60px);
}

/* Fade down */
.reveal.reveal-down {
    transform: translateY(-40px);
}

/* Slide from left */
.reveal.reveal-left {
    transform: translateX(-80px);
}

/* Slide from right */
.reveal.reveal-right {
    transform: translateX(80px);
}

/* Scale up */
.reveal.reveal-scale {
    transform: scale(0.88);
    filter: blur(4px);
}

/* Clip-reveal for headlines (wipe from bottom) */
.reveal.reveal-clip {
    clip-path: inset(100% 0 0 0);
    transform: none;
}

/* --- Visible state --- */
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
}

/* --- Stagger delays via data-delay --- */
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }
.reveal[data-delay="7"] { transition-delay: 0.7s; }
.reveal[data-delay="8"] { transition-delay: 0.8s; }

/* --- Gold line draw effect for dividers --- */
.reveal-line {
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(.22, .61, .36, 1);
}
.reveal-line.is-visible {
    transform: scaleX(1);
}

/* --- Counter shimmer effect on service numbers --- */
.service-number.counted {
    animation: shimmer-gold 0.6s ease forwards;
}
@keyframes shimmer-gold {
    0%   { color: #fff; text-shadow: 0 0 20px rgba(201,162,77,0.8); }
    100% { color: #C9A24D; text-shadow: none; }
}

/* --- Accent frame float animation --- */
.accent-float {
    animation: accent-drift 6s ease-in-out infinite alternate;
}
@keyframes accent-drift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-8px, -12px); }
}

/* --- Badge pop-in --- */
.reveal.reveal-pop {
    transform: scale(0.5) translateY(20px);
    filter: blur(2px);
}
.reveal.reveal-pop.is-visible {
    transform: scale(1) translateY(0);
    filter: blur(0);
}

/* --- Topf fill animation on scroll --- */
.topf-card .topf-fill {
    transition: height 1.2s cubic-bezier(.22,.61,.36,1);
}
.topf-card.reveal:not(.is-visible) .topf-fill {
    height: 0% !important;
}
.topf-card.reveal.is-visible .topf-fill-1 { height: 35%; }
.topf-card.reveal.is-visible .topf-fill-2 { height: 60%; }
.topf-card.reveal.is-visible .topf-fill-3 { height: 90%; }

/* --- Subtle gold glow pulse on section entry --- */
.vorsorge-card-icon,
.absicherung-badge svg {
    transition: filter 0.6s ease;
}
.is-visible .vorsorge-card-icon {
    animation: icon-glow 1.5s ease forwards;
}
@keyframes icon-glow {
    0%   { filter: drop-shadow(0 0 0 transparent); }
    50%  { filter: drop-shadow(0 0 10px rgba(201,162,77,0.4)); }
    100% { filter: drop-shadow(0 0 0 transparent); }
}

/* --- Prozess section reveal --- */
.prozess-wheel {
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22,.61,.36,1);
}

/* ===============================
   ZIEL REVEAL FIXES
================================ */

.ziel-image img.reveal.is-visible {
    transition: transform 0.35s ease;
}

.ziel-image img.reveal.is-visible:hover {
    transform: scale(1.03);
}

.ziel-image-accent.reveal.is-visible {
    opacity: 0.12;
}

.vorsorge-image-accent.reveal.is-visible {
    opacity: 0.12;
}

.sparformen-image-accent.reveal.is-visible {
    opacity: 0.12;
}

.absicherung-image-accent.reveal.is-visible {
    opacity: 0.12;
}

/* ===============================
   CTA SECTION
================================ */

.cta-section {
    width: 100%;
    background: #242424;
    padding: 7em 0;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .cta-aurora {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cta-inner {
    max-width: 80vw;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    font-size: 2.6em;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 0.5em;
}

.cta-inner h2 span {
    color: #C9A24D;
}

.cta-inner p {
    font-size: 1.05em;
    color: #b5b5b5;
    margin: 0 0 2.2em;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
}

.cta-btn {
    display: inline-block;
    padding: 0.9em 2.6em;
    border-radius: 0.5em;
    background: #C9A24D;
    color: #1e1e1e;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    background: #3a3a3a;
    color: #C9A24D;
}

/* ===============================
   RESPONSIVE
================================ */

/* ---- Large Desktop (1440+) ---- */
@media (min-width: 1440px) {
    .ziel-wrapper,
    .vorsorge-wrapper,
    .sparformen-wrapper,
    .absicherung-wrapper {
        max-width: 1200px;
    }

    .services-inner {
        max-width: 1200px;
    }

    .cta-inner {
        max-width: 700px;
    }
}

/* ---- Laptop / Small Desktop (max 1200px) ---- */
@media (max-width: 1200px) {
    .ziel-text {
        margin-left: 3em;
    }

    .ziel-wrapper {
        gap: 3em;
    }

    .ziel-headline {
        font-size: 2.4em;
    }

    .vorsorge-wrapper,
    .sparformen-wrapper,
    .absicherung-wrapper {
        gap: 3.5em;
    }

    .brand-s,
    .brand-d {
        font-size: 6em;
    }

    .brand-line {
        height: 8em;
    }

    .brand-text h1 {
        font-size: 2.6em;
    }
}

/* ---- Tablet (max 960px) ---- */
@media (max-width: 960px) {
    .brand-hero {
        padding-top: 7em;
    }

    .brand-s,
    .brand-d {
        font-size: 5em;
    }

    .brand-line {
        height: 6.5em;
        margin: 0 1.4em;
    }

    .brand-text h1 {
        font-size: 2.2em;
    }

    .brand-tagline {
        font-size: 1.05em;
    }

    .brand-tagline::before {
        width: 16em;
    }

    /* Ziel */
    .ziel-section {
        margin-top: -5em;
        padding: 5em 0;
    }

    .ziel-wrapper {
        grid-template-columns: 1fr;
        gap: 3em;
        max-width: 90vw;
    }

    .ziel-text {
        margin-left: 0;
        margin-top: 0;
        text-align: center;
    }

    .ziel-text p {
        margin: 0 auto;
    }

    .ziel-headline {
        font-size: 2.4em;
    }

    .ziel-button {
        display: inline-block;
    }

    .ziel-image {
        max-width: 500px;
        margin: 0 auto;
        transform: scale(1);
    }

    .ziel-image-accent {
        left: -0.8em;
    }

    /* Vorsorge */
    .vorsorge-section {
        padding: 6em 0;
    }

    .vorsorge-wrapper {
        grid-template-columns: 1fr;
        gap: 3em;
        max-width: 90vw;
    }

    .vorsorge-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .vorsorge-headline {
        font-size: 2.4em;
    }

    /* Sparformen */
    .sparformen-section {
        padding: 6em 0;
    }

    .sparformen-wrapper {
        grid-template-columns: 1fr;
        gap: 3em;
        max-width: 90vw;
    }

    .sparformen-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .sparformen-image img {
        width: 100%;
    }

    .sparformen-headline {
        font-size: 2.4em;
    }

    .topf-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }

    .topf-card p {
        max-height: none;
        opacity: 1;
        margin-top: 0.6em;
    }

    /* Absicherung */
    .absicherung-section {
        padding: 6em 0;
    }

    .absicherung-wrapper {
        grid-template-columns: 1fr;
        gap: 3em;
        max-width: 90vw;
    }

    .absicherung-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .absicherung-headline {
        font-size: 2.4em;
    }

    /* Services */
    .services-section {
        padding: 6em 0;
    }

    .services-inner {
        max-width: 90vw;
    }

    .services-headline {
        font-size: 2.4em;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
        gap: 2em;
    }

    /* Prozess */
    .prozess-section {
        padding: 6em 0 5em;
    }

    .prozess-title {
        font-size: 2.4em;
    }

    .prozess-wheel {
        width: 300px;
        height: 300px;
    }

    .prozess-text-wrapper {
        max-width: 90vw;
    }

    /* CTA */
    .cta-section {
        padding: 5em 0;
    }

    .cta-inner {
        max-width: 90vw;
    }

    .cta-inner h2 {
        font-size: 2.2em;
    }
}

/* ---- Small Tablet (max 768px) ---- */
@media (max-width: 768px) {
    .brand-hero {
        padding-top: 6em;
    }

    .brand-s,
    .brand-d {
        font-size: 4.2em;
    }

    .brand-line {
        height: 5.5em;
        margin: 0 1.2em;
    }

    .brand-logo {
        margin-left: 0.8em;
    }

    .brand-text {
        top: -2em;
    }

    .brand-text h1 {
        font-size: 1.9em;
    }

    .brand-tagline {
        font-size: 0.95em;
    }

    .brand-tagline::before {
        width: 14em;
    }

    .ziel-headline,
    .vorsorge-headline,
    .sparformen-headline,
    .absicherung-headline {
        font-size: 2.1em;
    }

    .topf-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.2em;
    }

    .topf-card {
        padding: 1.4em 1em 1.2em;
    }

    .topf-card p {
        font-size: 0.82em;
        max-height: none;
        opacity: 1;
        margin-top: 0.6em;
    }

    .prozess-wheel {
        width: 280px;
        height: 280px;
    }

    .prozess-item {
        font-size: 0.88em;
        padding: 0.5em 1.4em;
    }
}

/* ---- Phone (max 600px) ---- */
@media (max-width: 600px) {
    .brand-hero {
        padding-top: 5.5em;
    }

    .brand-s,
    .brand-d {
        font-size: 3.5em;
    }

    .brand-line {
        height: 4.5em;
        margin: 0 1em;
    }

    .brand-logo {
        margin-left: 0.5em;
    }

    .brand-text {
        top: -1.5em;
    }

    .brand-text h1 {
        font-size: 1.6em;
    }

    .brand-tagline {
        font-size: 0.85em;
    }

    .brand-tagline::before {
        width: 11em;
    }

    .ziel-section {
        margin-top: -4em;
        padding: 4em 0;
    }

    .ziel-headline {
        font-size: 1.8em;
    }

    .ziel-text p {
        font-size: 0.95em;
    }

    .ziel-button {
        padding: 0.8em 1.8em;
        font-size: 0.9em;
    }

    .ziel-image-accent {
        display: none;
    }

    /* Vorsorge */
    .vorsorge-section,
    .sparformen-section,
    .absicherung-section {
        padding: 4.5em 0;
    }

    .vorsorge-headline,
    .sparformen-headline,
    .absicherung-headline {
        font-size: 1.8em;
    }

    .vorsorge-intro,
    .sparformen-intro,
    .absicherung-text {
        font-size: 0.95em;
    }

    .vorsorge-card-body {
        padding-left: 0.4em !important;
    }

    .vorsorge-card.open .vorsorge-card-body {
        padding-left: 0.4em !important;
    }

    .vorsorge-image-accent,
    .sparformen-image-accent,
    .absicherung-image-accent {
        display: none;
    }

    /* Topf-Grid */
    .topf-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .topf-card {
        padding: 1.6em 1.2em 1.4em;
    }

    .topf-card p {
        max-height: none;
        opacity: 1;
        margin-top: 0.6em;
    }

    /* Absicherung */
    .absicherung-badges {
        flex-direction: column;
    }

    .absicherung-badge {
        justify-content: center;
    }

    /* Services */
    .services-section {
        padding: 4.5em 0;
    }

    .services-headline {
        font-size: 1.8em;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .service-card {
        padding: 2em 1.5em 2.2em;
    }

    .service-image-wrap {
        width: 130px;
        height: 130px;
    }

    .service-image-circle {
        width: 130px;
        height: 130px;
    }

    /* Prozess */
    .prozess-section {
        padding: 4.5em 0 4em;
    }

    .prozess-title {
        font-size: 1.8em;
    }

    .prozess-subtitle {
        font-size: 0.95em;
        margin-bottom: 3em;
    }

    .prozess-wheel {
        width: 260px;
        height: 260px;
    }

    .prozess-item {
        font-size: 0.8em;
        padding: 0.45em 1.2em;
    }

    .prozess-ring {
        inset: 20px;
    }

    .prozess-text-wrapper {
        max-width: 92vw;
    }

    .prozess-text-item {
        font-size: 0.95em;
    }

    /* CTA */
    .cta-section {
        padding: 4em 0;
    }

    .cta-inner h2 {
        font-size: 1.7em;
    }

    .cta-inner p {
        font-size: 0.95em;
    }

    .cta-btn {
        padding: 0.8em 2em;
        font-size: 0.9em;
    }
}

/* ---- Small Phone (max 400px) ---- */
@media (max-width: 400px) {
    .brand-s,
    .brand-d {
        font-size: 2.8em;
    }

    .brand-line {
        height: 3.5em;
        margin: 0 0.8em;
    }

    .brand-text {
        top: -1em;
    }

    .brand-text h1 {
        font-size: 1.35em;
    }

    .brand-tagline {
        font-size: 0.78em;
    }

    .brand-tagline::before {
        width: 9em;
    }

    .ziel-headline,
    .vorsorge-headline,
    .sparformen-headline,
    .absicherung-headline {
        font-size: 1.55em;
    }

    .services-headline,
    .prozess-title {
        font-size: 1.55em;
    }

    .cta-inner h2 {
        font-size: 1.45em;
    }

    .prozess-wheel {
        width: 230px;
        height: 230px;
    }

    .prozess-item {
        font-size: 0.72em;
        padding: 0.4em 1em;
    }

    .service-image-wrap,
    .service-image-circle {
        width: 110px;
        height: 110px;
    }

    .service-card h3 {
        font-size: 1.1em;
    }
}