﻿:root {
    --fp-blue: #1D2551;
    --fp-blue-soft: #273165;
    --fp-yellow: #FFC700;
    --fp-on-dark: #FFFFFF;
    --fp-bg: #fdfcf8;
    --fp-white: #fffefa;
    --fp-soft: #f5f5f1;
    --fp-line: rgba(29,37,81,.14);
    --fp-text: #1D2551;
    --fp-muted: #555d7d;
    --fp-shadow: 0 24px 70px rgba(29,37,81,.1);
    --fp-font: "Poppins", Arial, sans-serif;
    --fp-ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--fp-text);
    font-family: var(--fp-font);
    line-height: 1.65;
}

.fp-system {
    background: var(--fp-bg);
    color: var(--fp-text);
    overflow-x: hidden;
}

.fp-container {
    width: min(1400px, calc(100% - clamp(2rem, 7vw, 7rem)));
    margin: 0 auto;
}

.fp-narrow { max-width: 860px; }
.fp-center { text-align: center; margin-left: auto; margin-right: auto; }
.fp-template { padding: clamp(5rem, 8vw, 8rem) 0; background: var(--fp-bg); }
.fp-template.fp-bg-white { background: var(--fp-bg); }
.fp-template.fp-bg-soft { background: var(--fp-soft); }
.fp-template.fp-bg-blue { background: var(--fp-blue); color: var(--fp-on-dark); }
.fp-template + .fp-template { border-top: 1px solid var(--fp-line); }

.fp-hero-divider,
.fp-template-divider {
    position: relative;
    height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    overflow: visible;
    z-index: 2;
}

.fp-hero-divider::before,
.fp-template-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: none;
    background: linear-gradient(90deg, rgba(255, 199, 0, 0), rgba(255, 199, 0, .22) 13%, var(--fp-yellow) 50%, rgba(255, 199, 0, .22) 87%, rgba(255, 199, 0, 0));
    border-radius: 999px;
}

.fp-hero-divider.fp-on-soft,
.fp-template-divider.fp-on-soft { background: transparent; }

.fp-hero-divider.fp-on-blue,
.fp-template-divider.fp-on-blue { background: transparent; }

.fp-system h1,
.fp-system h2,
.fp-system h3 {
    margin: 0;
    color: var(--fp-text);
    font-family: var(--fp-font);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
}

.fp-system h1 {
    max-width: 920px;
    font-size: clamp(1.75rem, 3.3vw, 3.35rem);
}

.fp-system h1 + p,
.fp-system h1 + .fp-lead {
    margin-top: 1.55rem;
}

.fp-system h2 {
    max-width: 880px;
    font-size: clamp(1.85rem, 3.4vw, 2.65rem);
}

.fp-system h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

.fp-system p {
    margin: 0;
    color: var(--fp-muted);
}

.fp-system h2 + p,
.fp-system h2 + .fp-lead {
    margin-top: 1.2rem;
}

.fp-bg-blue h1,
.fp-bg-blue h2,
.fp-bg-blue h3,
.fp-bg-blue p,
.fp-bg-blue li { color: var(--fp-on-dark); }

.fp-bg-blue .fp-lead,
.fp-bg-blue .fp-section-head p,
.fp-bg-blue .fp-list li { color: var(--fp-on-dark); }

.fp-bg-blue .fp-eyebrow { color: var(--fp-yellow); }

.fp-lead {
    max-width: 760px;
    margin-top: 1.35rem;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.78;
}

.fp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.15rem;
    color: #424a73;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.fp-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--fp-yellow);
    flex: 0 0 auto;
}

.fp-hero-main .fp-eyebrow::before {
    width: 2px;
    height: 24px;
}

.fp-rating-row {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    align-items: center;
    margin-top: 1.2rem;
}

.fp-stars {
    color: var(--fp-yellow);
    font-size: 1.05rem;
    letter-spacing: .05em;
}

.fp-text-yellow {
    color: var(--fp-yellow) !important;
}

.fp-rating-row span:last-child,
.fp-button-note {
    color: var(--fp-muted);
    font-size: .92rem;
    font-weight: 700;
}

.fp-button-note {
    max-width: 520px;
    margin-top: 1.6rem;
}

.fp-google-rating {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    margin-top: 1.4rem;
    padding: .8rem 1rem;
    border: 1px solid rgba(29,37,81,.12);
    border-radius: 6px;
    background: var(--fp-white);
    box-shadow: 0 12px 34px rgba(29,37,81,.08);
}

.fp-google-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
}

.fp-google-label {
    display: block;
    color: var(--fp-muted);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.fp-google-score {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-top: .25rem;
}

.fp-google-number {
    color: var(--fp-blue);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.fp-google-stars {
    display: flex;
    gap: .16rem;
}

.fp-google-stars svg {
    width: 15px;
    height: 15px;
}

.fp-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.2rem;
}

.fp-hero-main .fp-btn-row {
    margin-bottom: 1.45rem;
}

.fp-btn {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.55rem;
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--fp-blue) !important;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s var(--fp-ease), background .25s var(--fp-ease), border-color .25s var(--fp-ease), color .25s var(--fp-ease);
}

.fp-btn-primary {
    background: var(--fp-blue);
    color: var(--fp-white) !important;
    box-shadow: 0 18px 42px rgba(29,37,81,.14);
}

.fp-btn-primary:visited {
    color: var(--fp-white) !important;
}

.fp-btn-primary:hover {
    transform: translateY(-2px);
    background: var(--fp-yellow);
    color: var(--fp-blue) !important;
}

.fp-btn-secondary {
    color: var(--fp-blue) !important;
    border-color: rgba(29,37,81,.18);
    background: transparent;
}

.fp-btn-secondary:visited {
    color: var(--fp-blue) !important;
}

.fp-bg-blue .fp-btn-primary {
    background: var(--fp-yellow);
    color: var(--fp-blue) !important;
}

.fp-bg-blue .fp-btn-primary:visited,
.fp-bg-blue .fp-btn-primary:hover {
    color: var(--fp-blue) !important;
}

.fp-bg-blue .fp-btn-secondary {
    border-color: rgba(255,255,255,.3);
    color: var(--fp-on-dark) !important;
}

.fp-bg-blue .fp-btn-secondary:visited,
.fp-bg-blue .fp-btn-secondary:hover {
    color: var(--fp-on-dark) !important;
}

.fp-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--fp-yellow);
    background: rgba(255,199,0,.12);
}

.fp-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    gap: clamp(2.2rem, 5vw, 5rem);
    align-items: center;
}

.fp-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.fp-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }

.fp-image-frame {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-radius: 4px;
    background: var(--fp-soft);
    box-shadow: var(--fp-shadow);
}

.fp-hero-photo-plain {
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-radius: 4px;
}

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

.fp-image-frame img,
.fp-wide-image img,
.fp-card-image img,
.fp-ratgeber-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.fp-badge {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    max-width: 250px;
    padding: 1rem 1.1rem;
    border-radius: 4px;
    background: var(--fp-blue);
    color: var(--fp-white);
    box-shadow: 0 18px 44px rgba(29,37,81,.22);
}

.fp-badge strong {
    display: block;
    color: var(--fp-yellow);
    font-size: 1.75rem;
    line-height: 1;
}

.fp-badge span {
    display: block;
    margin-top: .45rem;
    color: var(--fp-on-dark);
    font-size: .84rem;
    line-height: 1.35;
}

.fp-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 2rem;
}

.fp-proof-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: .55rem .8rem;
    border: 1px solid var(--fp-line);
    border-radius: 999px;
    background: rgba(255,255,250,.78);
    color: var(--fp-blue);
    font-size: .88rem;
    font-weight: 800;
}

.fp-card {
    min-height: 100%;
    padding: clamp(1.35rem, 2.4vw, 2rem);
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-white);
    box-shadow: 0 12px 34px rgba(29,37,81,.05);
    transition: transform .24s var(--fp-ease), box-shadow .24s var(--fp-ease), border-color .24s var(--fp-ease);
}

a.fp-card {
    display: flex;
    flex-direction: column;
    color: var(--fp-blue);
    text-decoration: none;
}

.fp-card-soft { background: rgba(255,255,250,.74); }

.fp-bg-blue .fp-card,
.fp-bg-blue .fp-pain-item,
.fp-bg-blue .fp-process-step,
.fp-bg-blue .fp-compare-col,
.fp-bg-blue .fp-faq-item,
.fp-bg-blue .fp-booking-box,
.fp-bg-blue .fp-cta-panel,
.fp-bg-blue .fp-ratgeber-card,
.fp-bg-blue .fp-slot,
.fp-bg-blue .fp-offer-card,
.fp-bg-blue .fp-result-card,
.fp-bg-blue .fp-statement,
.fp-bg-blue .fp-quote-panel,
.fp-bg-blue .fp-card-soft,
.fp-bg-blue .fp-result {
    background: rgba(255, 255, 255, .045) !important;
    border-color: rgba(255, 255, 255, .16) !important;
    color: var(--fp-white) !important;
    box-shadow: none;
}

.fp-bg-blue .fp-card h3,
.fp-bg-blue .fp-card p,
.fp-bg-blue .fp-pain-item h3,
.fp-bg-blue .fp-pain-item p,
.fp-bg-blue .fp-process-step h3,
.fp-bg-blue .fp-process-step p,
.fp-bg-blue .fp-compare-col h3,
.fp-bg-blue .fp-compare-col p,
.fp-bg-blue .fp-compare-col li,
.fp-bg-blue .fp-faq-item p,
.fp-bg-blue .fp-faq-question,
.fp-bg-blue .fp-ratgeber-card h3,
.fp-bg-blue .fp-ratgeber-card p,
.fp-bg-blue .fp-slot,
.fp-bg-blue .fp-slot span,
.fp-bg-blue .fp-offer-card h3,
.fp-bg-blue .fp-offer-card p,
.fp-bg-blue .fp-offer-card li,
.fp-bg-blue .fp-result-card h3,
.fp-bg-blue .fp-result-card p,
.fp-bg-blue .fp-statement p,
.fp-bg-blue .fp-quote-panel blockquote,
.fp-bg-blue .fp-card-soft strong,
.fp-bg-blue .fp-card-soft p,
.fp-bg-blue .fp-result {
    color: var(--fp-white) !important;
}

.fp-bg-blue .fp-card p,
.fp-bg-blue .fp-pain-item p,
.fp-bg-blue .fp-process-step p,
.fp-bg-blue .fp-compare-col p,
.fp-bg-blue .fp-compare-col li,
.fp-bg-blue .fp-faq-item p,
.fp-bg-blue .fp-ratgeber-card p,
.fp-bg-blue .fp-slot span,
.fp-bg-blue .fp-offer-card p,
.fp-bg-blue .fp-offer-card li,
.fp-bg-blue .fp-result-card p,
.fp-bg-blue .fp-card-soft p {
    color: var(--fp-on-dark) !important;
}

.fp-bg-blue .fp-timeline {
    border-top-color: rgba(255, 255, 255, .22) !important;
}

.fp-bg-blue .fp-timeline-row {
    border-bottom-color: rgba(255, 255, 255, .22) !important;
}

.fp-bg-blue .fp-faq-question {
    background: transparent !important;
    color: var(--fp-white) !important;
}

.fp-bg-blue .fp-faq-question span {
    color: var(--fp-white) !important;
}

.fp-bg-blue .fp-faq-question span:last-child {
    color: var(--fp-blue) !important;
}

.fp-bg-blue .fp-faq-answer {
    background: transparent !important;
}

.fp-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 4px;
    background: var(--fp-yellow);
    color: var(--fp-blue);
    font-weight: 900;
}

.fp-list {
    display: grid;
    gap: .7rem;
    margin: 1.1rem 0 0;
    padding: 0;
    list-style: none;
}

.fp-list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--fp-muted);
}

.fp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fp-yellow);
}

.fp-section-head {
    display: block;
    margin-bottom: clamp(2rem, 4vw, 3.3rem);
}

.fp-section-head p {
    max-width: 520px;
    margin-top: 1.2rem;
}

.fp-hero-compact {
    display: grid;
    gap: 2.2rem;
    max-width: 990px;
}

.fp-hero-compact h1 { max-width: 960px; }

.fp-topline {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-bottom: 1.4rem;
    color: var(--fp-muted);
    font-size: .9rem;
    font-weight: 800;
}

.fp-topline span {
    padding: .45rem .7rem;
    border: 1px solid var(--fp-line);
    border-radius: 999px;
    background: var(--fp-white);
}

.fp-statement {
    padding: clamp(2rem, 4vw, 3.6rem);
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-blue);
    color: var(--fp-white);
}

.fp-statement p {
    color: var(--fp-on-dark);
    font-size: clamp(1.05rem, 1.7vw, 1.55rem);
    font-weight: 800;
    line-height: 1.18;
}

.fp-statement em {
    color: var(--fp-yellow);
    font-style: normal;
}

.fp-pain-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}

.fp-pain-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1rem;
    align-items: start;
    padding: clamp(1.35rem, 2.4vw, 2rem);
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-white);
}

.fp-pain-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--fp-yellow);
    color: var(--fp-blue);
    font-weight: 900;
}

.fp-result-list {
    display: grid;
    gap: 1rem;
}

.fp-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.fp-result-card {
    min-height: 100%;
    padding: clamp(1.25rem, 2.3vw, 1.8rem);
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-white);
    transition: transform .24s var(--fp-ease), box-shadow .24s var(--fp-ease), border-color .24s var(--fp-ease);
}

.fp-result-card > .fp-check {
    margin-bottom: 1rem;
}

.fp-result-block + .fp-result-block {
    margin-top: clamp(2rem, 4vw, 3.3rem);
}

.fp-result-subhead {
    margin: 0 0 1.2rem;
    color: var(--fp-blue);
}

.fp-result-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: .9rem;
    align-items: start;
}

.fp-check {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--fp-yellow);
    color: var(--fp-blue);
    font-size: .9rem;
    font-weight: 900;
}

.fp-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .9rem;
}

.fp-process-step {
    min-height: 170px;
    padding: 1.25rem;
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-white);
}

.fp-process-step span {
    display: block;
    margin-bottom: 1.1rem;
    color: var(--fp-yellow);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fp-timeline {
    display: grid;
    border-top: 1px solid var(--fp-line);
}

.fp-timeline-row {
    display: grid;
    grid-template-columns: 160px 1fr minmax(220px, .42fr);
    gap: 1.4rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--fp-line);
    align-items: start;
}

.fp-time {
    color: var(--fp-yellow);
    font-weight: 900;
}

.fp-result {
    padding: .8rem 1rem;
    border-radius: 4px;
    background: rgba(255,199,0,.16);
    color: var(--fp-blue);
    font-weight: 800;
}

.fp-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fp-compare-col {
    padding: clamp(1.4rem, 2.6vw, 2.4rem);
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-white);
}

.fp-compare-col.is-emphasis {
    background: var(--fp-blue);
}

.fp-compare-col.is-emphasis h3,
.fp-compare-col.is-emphasis p,
.fp-compare-col.is-emphasis li { color: var(--fp-white); }

.fp-compare-col.is-emphasis .fp-list li::before { background: var(--fp-yellow); }

.fp-offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 1rem;
}

.fp-offer-card {
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-white);
    transition: transform .24s var(--fp-ease), box-shadow .24s var(--fp-ease), border-color .24s var(--fp-ease);
}

.fp-offer-type {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: .4rem .65rem;
    border-radius: 999px;
    background: rgba(255,199,0,.18);
    color: var(--fp-blue);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fp-wide-image {
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    border-radius: 4px;
    background: var(--fp-soft);
    box-shadow: var(--fp-shadow);
}

.fp-wide-caption {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    padding: 1rem 1.2rem;
    border-radius: 4px;
    background: rgba(29,37,81,.92);
    color: var(--fp-white);
    font-weight: 800;
}

.fp-learning-list {
    display: grid;
    gap: 1rem;
}

.fp-learning-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 1.2rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--fp-line);
}

.fp-learning-num {
    color: var(--fp-yellow);
    font-size: 1.45rem;
    font-weight: 900;
}

.fp-fact-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    overflow: hidden;
    background: var(--fp-white);
}

.fp-fact {
    padding: 1.4rem;
}

.fp-fact + .fp-fact { border-left: 1px solid var(--fp-line); }
.fp-fact strong {
    display: block;
    color: var(--fp-blue);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1;
}

.fp-fact span {
    display: block;
    margin-top: .65rem;
    color: var(--fp-muted);
    font-size: .92rem;
}

.fp-testimonial {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.fp-testimonial-quote {
    color: var(--fp-blue);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.55;
}

.fp-person {
    display: flex;
    gap: .9rem;
    align-items: center;
    margin-top: auto;
}

.fp-avatar {
    width: 54px;
    height: 54px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--fp-soft);
}

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

.fp-quote-panel {
    display: grid;
    grid-template-columns: .36fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 4rem);
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-white);
}

.fp-quote-mark {
    color: var(--fp-yellow);
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 900;
    line-height: .8;
}

.fp-quote-panel blockquote {
    margin: 0;
    color: var(--fp-blue);
    font-size: clamp(1.35rem, 2.4vw, 2.15rem);
    font-weight: 800;
    line-height: 1.22;
}

.fp-faq {
    display: grid;
    gap: .85rem;
}

.fp-faq-item {
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-white);
    transition: border-color .24s var(--fp-ease), background .24s var(--fp-ease);
}

.fp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.5rem !important;
    border: 0 !important;
    border-radius: 4px !important;
    background: var(--fp-white) !important;
    color: var(--fp-blue) !important;
    cursor: pointer;
    appearance: none !important;
    font: inherit;
    font-weight: 900 !important;
    text-align: left;
}

.fp-faq-question span {
    color: var(--fp-blue) !important;
}

.fp-faq-question span:first-child {
    font-weight: 900 !important;
}

.fp-faq-question span:last-child {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50% !important;
    background: var(--fp-yellow) !important;
    color: var(--fp-blue) !important;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    transition: transform .24s var(--fp-ease);
}

.fp-faq-answer {
    display: none;
    padding: .35rem 1.5rem 1.35rem !important;
    background: var(--fp-white) !important;
}

.fp-faq-answer p {
    margin: 0 !important;
}

.fp-faq-item.is-open .fp-faq-answer { display: block; }
.fp-faq-item.is-open .fp-faq-question span:last-child { transform: rotate(45deg); }

.fp-card:hover,
.fp-pain-item:hover,
.fp-process-step:hover,
.fp-compare-col:hover,
.fp-booking-box:hover,
.fp-result-card:hover,
.fp-offer-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,199,0,.72);
    box-shadow: 0 22px 56px rgba(29,37,81,.1);
}

.fp-ratgeber-card:hover img,
.fp-image-link:hover img {
    transform: scale(1.035);
}

.fp-slot:hover,
.fp-faq-item:hover {
    border-color: var(--fp-yellow);
    background: var(--fp-white);
}

.fp-template-original {
    padding: 0 !important;
    background: transparent !important;
}

.fp-section-cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.8rem, 3.4vw, 3rem);
}

.fp-section-cta.is-stacked {
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    text-align: center;
}

.fp-section-cta.is-stacked .fp-lead {
    margin-top: 0;
}

.fp-section-cta.is-left {
    justify-content: flex-start;
}

.fp-ratgeber-card img,
.fp-image-link img {
    transition: transform .35s var(--fp-ease);
}

.fp-cta-panel {
    padding: clamp(2rem, 4.4vw, 4rem);
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-white);
    box-shadow: var(--fp-shadow);
}

.fp-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.fp-booking-box {
    min-height: 440px;
    display: grid;
    place-items: center;
    padding: 2rem;
    border: 1px dashed rgba(29,37,81,.28);
    border-radius: 6px;
    background: var(--fp-white);
    text-align: center;
}

.fp-slots {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .8rem;
}

.fp-slot {
    min-height: 108px;
    display: grid;
    align-content: center;
    padding: 1rem;
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-white);
    color: var(--fp-blue);
    font-weight: 900;
}

.fp-slot span {
    display: block;
    margin-top: .35rem;
    color: var(--fp-muted);
    font-size: .82rem;
    font-weight: 700;
}

.fp-slot.is-featured {
    background: var(--fp-yellow);
    border-color: var(--fp-yellow);
}

.fp-ratgeber-card {
    display: grid;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid var(--fp-line);
    border-radius: 6px;
    background: var(--fp-white);
    color: var(--fp-blue);
    text-decoration: none;
}

.fp-ratgeber-card img {
    aspect-ratio: 3 / 2;
}

.fp-ratgeber-card div {
    padding: 1rem;
}

.fp-tag {
    display: inline-block;
    margin-bottom: .55rem;
    color: var(--fp-yellow);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .fp-grid-2,
    .fp-quote-panel,
    .fp-cta-inner {
        grid-template-columns: 1fr;
    }

    .fp-grid-4,
    .fp-process,
    .fp-fact-strip,
    .fp-slots,
    .fp-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fp-section-head {
        display: grid;
        align-items: start;
    }

    .fp-timeline-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .fp-container { width: min(100% - 2rem, 1400px); }

    .fp-template.fp-hero-main,
    .fp-template.fp-hero-compact {
        padding-top: 3rem;
    }

    .fp-grid-3,
    .fp-grid-4,
    .fp-process,
    .fp-compare,
    .fp-fact-strip,
    .fp-slots,
    .fp-result-grid {
        grid-template-columns: 1fr;
    }

    .fp-fact + .fp-fact { border-left: 0; border-top: 1px solid var(--fp-line); }
    .fp-btn-row { flex-direction: column; }
    .fp-btn { width: 100%; }
    .fp-learning-item,
    .fp-pain-item {
        grid-template-columns: 1fr;
    }

    .fp-pain-list {
        grid-template-columns: 1fr;
    }
}

/* ==================== POSITIONIERUNGSCOACHING ORIGINAL TEMPLATES ==================== */
/* ==================== VARIABLES ==================== */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #F5F5F5;
    --color-text: #1D2551;
    --color-text-muted: #414974;
    --color-accent: #1D2551;
    --color-accent-light: #e8e9f0;
    --color-highlight: #FFC700;
    --color-dark: #1D2551;
    --font-main: 'Poppins', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==================== RESET ==================== */
.pos-landing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pos-landing {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.pos-landing .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ==================== TYPOGRAPHY ==================== */
.pos-landing h1,
.pos-landing h2,
.pos-landing h3 {
    font-family: var(--font-main);
    font-weight: 600;
    line-height: 1.15;
}

/* ==================== BUTTONS ==================== */
.pos-landing .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-dark);
    color: white;
    padding: 1.125rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0rem;
    letter-spacing: 0.01em;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.pos-landing .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-highlight);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.pos-landing .btn-primary span {
    position: relative;
    z-index: 1;
}

.pos-landing .btn-primary svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.pos-landing .btn-primary:hover::before {
    transform: translateY(0);
}

.pos-landing .btn-primary:hover {
    color: var(--color-dark);
}

.pos-landing .btn-primary:hover svg {
    transform: translateX(4px);
}

.pos-landing .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.0rem;
    letter-spacing: 0.01em;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(29, 37, 81, 0.15);
    transition: all 0.3s ease;
}

.pos-landing .btn-secondary:hover {
    border-color: var(--color-highlight);
    color: var(--color-dark);
}

.pos-landing .btn-secondary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pos-landing .btn-secondary:hover svg {
    transform: translateX(3px);
}

/* ==================== HERO ==================== */
.pos-landing .hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pos-landing .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 4rem 0 8rem;
}

.pos-landing .hero-text {
    animation: posLandingFadeUp 1s var(--ease-out) 0.2s both;
}

.pos-landing .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.pos-landing .hero-eyebrow::before {
    content: '';
    width: 3px;
    height: 40px;
    background: var(--color-highlight);
}

.pos-landing .hero-title {
    font-size: clamp(2.0rem, 4vw, 2.6rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pos-landing .hero-title em {
    font-style: italic;
    color: var(--color-highlight);
    padding-right: 6px;
}

.pos-landing .hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.pos-landing .hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
    flex-direction: column;
}

.pos-landing .hero-trust {
    margin-top: 1rem;
    font-size: .95rem;
    color: var(--color-text-muted);
}

.pos-landing .hero-visual {
    position: relative;
    animation: posLandingFadeUp 1s var(--ease-out) 0.4s both;
    padding-bottom: 4rem;
}

.pos-landing .hero-image-wrapper {
    position: relative;
    aspect-ratio: 5/4;
    overflow: visible;
}

.pos-landing .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: all 0.6s var(--ease-out);
}

.pos-landing .hero-image-wrapper:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.pos-landing .hero-badge {
    position: absolute;
    bottom: 1.0rem;
    left: -1rem;
    background: var(--color-dark);
    color: white;
    padding: 1.25rem 1.75rem;
    z-index: 3;
}

.pos-landing .hero-badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-highlight);
    line-height: 1;
}

.pos-landing .hero-badge-text {
    font-size: 1.0rem;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.pos-landing .hero-quote {
    position: absolute;
    bottom: -3rem;
    right: -1rem;
    top: auto;
    background: white;
    padding: 1.5rem 2rem;
    max-width: 280px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
    z-index: 3;
}

.pos-landing .hero-quote p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--color-text);
}

.pos-landing .hero-quote cite {
    display: block;
    font-style: normal;
    font-size: 1.0rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
}

@keyframes posLandingFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==================== SECTION EYEBROW ==================== */
.pos-landing .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.pos-landing .section-eyebrow__line {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #FFC700;
    flex-shrink: 0;
}

.pos-landing .section-eyebrow--light { color: #414974; }
.pos-landing .section-eyebrow--dark  { color: var(--color-highlight); }

/* ==================== SECTION DIVIDER ==================== */
.pos-landing .section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-highlight), transparent);
    margin: 0;
}

/* ==================== DESIRES ==================== */
.pos-landing .desires {
    padding: 8rem 0;
    background: white;
    position: relative;
}

.pos-landing .desires::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-highlight), transparent);
}

.pos-landing .desires-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.pos-landing .desires-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.pos-landing .desires-header p {
    color: var(--color-text);
    font-size: 1.1rem;
}

/* Intro grid: text left, image right */
.pos-landing .desires-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 4rem;
}

.pos-landing .desires-intro-text {
    max-width: 640px;
}

.pos-landing .desires-intro-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.pos-landing .desires-intro-text p {
    font-size: 1.1rem;
    color: var(--color-text);
}

.pos-landing .desires-intro-image img {
    width: 100%;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.pos-landing .desires-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(29, 37, 81, 0.08);
    border: 1px solid rgba(29, 37, 81, 0.08);
}

.pos-landing .desires-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.pos-landing .desire-card {
    background: white;
    padding: 2.0rem;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.pos-landing .desire-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-highlight);
    transition: width 0.4s var(--ease-out);
}

.pos-landing .desire-card:hover { background: var(--color-bg-alt); }
.pos-landing .desire-card:hover::before { width: 100%; }

.pos-landing .desire-icon {
    width: 20px;
    height: 20px;
    color: var(--color-highlight);
    margin-bottom: 1.0rem;
}

.pos-landing .desire-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pos-landing .desire-card p {
    font-size: 1.0rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.pos-landing .desires-cta {
    text-align: center;
    margin-top: 4rem;
}

.pos-landing .desires-cta-text {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* ==================== CHALLENGES ==================== */
.pos-landing .challenges {
    padding: 8rem 0;
    background: var(--color-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.fp-system .pos-landing .challenges h2,
.fp-system .pos-landing .challenges h3,
.fp-system .pos-landing .challenges .challenges-pivot {
    color: white !important;
}

.fp-system .pos-landing .challenges p,
.fp-system .pos-landing .challenges .challenges-sub,
.fp-system .pos-landing .challenges .challenge-item p {
    color: #FFFFFF !important;
}

.fp-system .pos-landing .challenges .section-eyebrow,
.fp-system .pos-landing .challenges .section-eyebrow--dark {
    color: var(--color-highlight) !important;
}

.pos-landing .challenges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-highlight), transparent);
}

.pos-landing .challenges--cta {
    padding: 6rem 0;
}

.pos-landing .challenges-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.pos-landing .challenges-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.pos-landing .challenges-sub {
    color: #FFFFFF;
    font-size: 1.05rem;
    margin-top: .5rem;
}

.pos-landing .challenges-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.pos-landing .challenges-list-3col {
    grid-template-columns: repeat(3, 1fr);
}

.pos-landing .challenge-item {
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.pos-landing .challenge-item:last-child { border-right: none; }
.pos-landing .challenge-item:hover { background: rgba(255, 255, 255, 0.03); }

.pos-landing .challenge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-highlight);
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
}

.pos-landing .challenge-number-sm {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-highlight);
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 1rem;
}

.pos-landing .challenge-item:hover .challenge-number,
.pos-landing .challenge-item:hover .challenge-number-sm {
    opacity: 1.0;
}

.pos-landing .challenge-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.pos-landing .challenge-item p {
    font-size: 1.0rem;
    line-height: 1.6;
}

.pos-landing .challenges-cta {
    text-align: center;
    margin-top: 4rem;
}

.pos-landing .challenges-cta--spaced {
    margin-top: 3rem;
}

.pos-landing .challenges-pivot {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.pos-landing .challenges .btn-primary {
    background: var(--color-highlight);
    color: var(--color-dark);
}

.pos-landing .challenges .btn-primary::before { background: white; }

.pos-landing .cta-footnote {
    margin-top: 1rem;
    font-size: .9rem;
    color: #FFFFFF;
}

/* ==================== DIFFERENTIATORS ==================== */
.pos-landing .differentiators {
    padding: 8rem 0;
    background: var(--color-bg-alt);
}

.pos-landing .differentiators-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.pos-landing .differentiators-intro {
    position: sticky;
    top: 4rem;
}

.pos-landing .differentiators-intro h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.pos-landing .differentiators-intro p {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pos-landing .diff-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pos-landing .diff-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1px solid rgba(29, 37, 81, 0.08);
    transition: all 0.4s var(--ease-out);
}

.pos-landing .diff-item:hover {
    border-color: var(--color-highlight);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transform: translateX(8px);
}

.pos-landing .diff-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.pos-landing .diff-item:hover .diff-icon { background: var(--color-highlight); }

.pos-landing .diff-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-dark);
    transition: color 0.3s ease;
}

.pos-landing .diff-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pos-landing .diff-item p {
    font-size: 1.0rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==================== PROGRAM ==================== */
.pos-landing .program {
    padding: 8rem 0;
    background: white;
}

.pos-landing .program-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.pos-landing .program-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.pos-landing .program-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.pos-landing .program-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pos-landing .program-cards-single {
    grid-template-columns: 1fr;
    max-width: 860px;
}

.pos-landing .program-card {
    border: 1px solid rgba(29, 37, 81, 0.08);
    padding: 3.2rem 2.5rem;
    position: relative;
    transition: all 0.4s var(--ease-out);
    border-radius: 4px;
}

.pos-landing .program-card:hover {
    border-color: var(--color-highlight);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.pos-landing .program-card.featured { border-color: var(--color-highlight); }

.pos-landing .program-card.featured::before {
    content: 'Empfohlen';
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--color-highlight);
    color: var(--color-dark);
    padding: 0.5rem 1rem;
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 0 0 4px 4px;
}

.pos-landing .program-type {
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-highlight);
    margin-bottom: 0.75rem;
}

.pos-landing .program-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pos-landing .program-sessions {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(29, 37, 81, 0.08);
}

.pos-landing .program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pos-landing .program-list li {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.65;
    padding: 0.45rem 0 0.45rem 1.35rem;
    position: relative;
}

.pos-landing .program-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: 700;
}

.pos-landing .program-cta {
    text-align: center;
    max-width: 620px;
    margin: 3rem auto 0;
}

.pos-landing .program-cta-intro {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.pos-landing .program-cta-note {
    display: block;
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-top: 0.85rem;
}

/* ==================== RESULTS ==================== */
.pos-landing .results {
    background: var(--color-dark);
    color: white;
    padding: 6rem 2rem;
    position: relative;
}

.fp-system .pos-landing .results h2,
.fp-system .pos-landing .results .results-sub-heading,
.fp-system .pos-landing .results .results-card h3,
.fp-system .pos-landing .results .challenges-pivot {
    color: white !important;
}

.fp-system .pos-landing .results p,
.fp-system .pos-landing .results .results-header-sub,
.fp-system .pos-landing .results .results-card p {
    color: #FFFFFF !important;
}

.fp-system .pos-landing .results .section-eyebrow,
.fp-system .pos-landing .results .section-eyebrow--dark {
    color: var(--color-highlight) !important;
}

.pos-landing .results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-highlight), transparent);
}

.pos-landing .results-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pos-landing .results-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pos-landing .results-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.pos-landing .results-header-sub {
    color: #FFFFFF;
    font-size: 1.1rem;
}

.pos-landing .results-block {
    margin-bottom: 3.5rem;
}

.pos-landing .results-sub-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.pos-landing .results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pos-landing .results-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pos-landing .results-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-highlight);
    transform: translateY(-4px);
}

.pos-landing .results-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 199, 0, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.pos-landing .results-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-highlight);
}

.pos-landing .results-card h3 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.pos-landing .results-card p {
    color: #FFFFFF;
    font-size: 1.0rem;
    line-height: 1.6;
}

.pos-landing .results .btn-primary {
    background: var(--color-highlight);
    color: var(--color-dark);
}

.pos-landing .results .btn-primary::before { background: white; }

/* ==================== TESTIMONIALS ==================== */
.pos-landing .testimonials {
    padding: 8rem 0;
    background: white;
}

.pos-landing .testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.pos-landing .testimonials-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.pos-landing .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pos-landing .testimonial-card {
    background: var(--color-bg-alt);
    padding: 2rem;
    position: relative;
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 4px;
}

.pos-landing .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.pos-landing .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-highlight);
    opacity: 0.3;
    line-height: 1;
}

.pos-landing .testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.pos-landing .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(29, 37, 81, 0.08);
}

.pos-landing .testimonial-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.pos-landing .testimonial-name {
    font-weight: 600;
    font-size: 1.0rem;
    margin-bottom: 0.25rem;
}

.pos-landing .testimonial-role {
    font-size: 1.0rem;
    color: var(--color-text-muted);
}

.pos-landing .testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0rem;
    color: var(--color-dark);
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
}

.pos-landing .testimonial-link svg {
    width: 14px;
    height: 14px;
}

/* ==================== ABOUT ==================== */
.pos-landing .about {
    padding: 8rem 2rem;
    background: white;
}

.pos-landing .about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
}

.pos-landing .about-image { position: relative; }

.pos-landing .about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.pos-landing .about-credential {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--color-dark);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

.pos-landing .about-credential strong {
    display: block;
    font-size: 1.5rem;
    color: var(--color-highlight);
}

.pos-landing .about-credential span { font-size: 1.0rem; }

.pos-landing .about-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.pos-landing .about-content p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-size: 1.0rem;
}

.pos-landing .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.0rem;
    padding-top: 3.0rem;
}

.pos-landing .about-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--color-highlight);
}

.pos-landing .about-stat span {
    font-size: 1.0rem;
    color: var(--color-text);
    font-weight: 600;
}

/* ==================== PILLARS ==================== */
.pos-landing .pillars {
    padding: 8rem 0;
    background: var(--color-bg-alt);
}

.pos-landing .pillars-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.pos-landing .pillars-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.pos-landing .pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid rgba(29, 37, 81, 0.08);
}

.pos-landing .pillar-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(29, 37, 81, 0.08);
    background: white;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.pos-landing .pillar-item:last-child { border-right: none; }

.pos-landing .pillar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-highlight);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.pos-landing .pillar-item:hover { background: var(--color-bg-alt); }
.pos-landing .pillar-item:hover::after { transform: scaleX(1); }

.pos-landing .pillar-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-highlight);
    margin-bottom: 1rem;
}

.pos-landing .pillar-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pos-landing .pillar-item p {
    font-size: 1.0rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.pos-landing .pillars-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ==================== FAQ ==================== */
.pos-landing .faq {
    padding: 8rem 0;
    background: white;
}

.pos-landing .faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
}

.pos-landing .faq-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.pos-landing .faq-intro p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.pos-landing .faq-list { display: flex; flex-direction: column; }

.pos-landing .faq-item {
    border-bottom: 1px solid rgba(29, 37, 81, 0.08);
}

.pos-landing .faq-question {
    padding: 1.5rem 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.pos-landing .faq-question:hover { color: var(--color-highlight); }

.pos-landing .faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-highlight);
    transition: transform 0.3s ease;
}

.pos-landing .faq-item.open .faq-question svg { transform: rotate(45deg); }

.pos-landing .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.pos-landing .faq-item.open .faq-answer { max-height: 300px; }

.pos-landing .faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.0rem;
    line-height: 1.7;
}

.pos-landing .faq-answer a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
}

.pos-landing .faq-answer a:hover { color: var(--color-highlight); }

/* ==================== SESSIONS ==================== */
.pos-landing .sessions {
    padding: 8rem 0;
    background: white;
}

.pos-landing .sessions-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.pos-landing .sessions-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.pos-landing .session-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pos-landing .session-card {
    background: var(--color-bg-alt);
    border: 1px solid rgba(29, 37, 81, 0.08);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.pos-landing .session-card:hover {
    border-color: var(--color-highlight);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.pos-landing .session-card.session-extra {
    background: linear-gradient(135deg, rgba(255, 199, 0, 0.12) 0%, var(--color-bg-alt) 100%);
    border-color: rgba(255, 199, 0, 0.4);
}

.pos-landing .session-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-highlight);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pos-landing .session-label {
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-dark);
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

.pos-landing .session-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--color-text);
}

.pos-landing .session-results {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pos-landing .session-results li {
    font-size: 1.0rem;
    color: var(--color-text-muted);
    padding: 0.4rem 0 0.4rem 1.25rem;
    position: relative;
}

.pos-landing .session-results li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-highlight);
}

.pos-landing .session-badge {
    display: inline-block;
    background: var(--color-highlight);
    color: var(--color-dark);
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    margin-top: 1rem;
}

.pos-landing .sessions-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ==================== RESULTS ALT ==================== */
.pos-landing .results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.pos-landing .results-image img {
    width: 100%;
    height: auto;
    filter: grayscale(15%);
    border-radius: 4px;
}

.pos-landing .results-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 2rem;
}

.pos-landing .results-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.pos-landing .result-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pos-landing .result-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-highlight);
    flex-shrink: 0;
    margin-top: 2px;
}

.pos-landing .result-item span {
    font-size: 1rem;
    line-height: 1.5;
}

.pos-landing .results-cta { margin-top: 3rem; }

/* ==================== BOOKING ==================== */
.pos-landing .booking {
    padding: 0 0 6rem;
    background: white;
}

.pos-landing .booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(29, 37, 81, 0.08);
}

/* ==================== PROGRAM INCLUDES ==================== */
.pos-landing .program-includes {
    font-size: 1.0rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}


/* ==================== HERO GOOGLE RATING ==================== */
.pos-landing .hero-google-rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    background: white;
    border: 1px solid rgba(29, 37, 81, 0.1);
    border-radius: 6px;
    padding: .75rem 1.25rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.pos-landing .hero-google-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.pos-landing .hero-google-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--color-text-muted);
    margin-bottom: .2rem;
}

.pos-landing .hero-google-score {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.pos-landing .hero-google-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.pos-landing .hero-google-stars {
    display: flex;
    gap: 2px;
}

.pos-landing .hero-google-stars svg {
    width: 16px;
    height: 16px;
}

/* ==================== FAQ CTA ==================== */
.pos-landing .faq-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(29, 37, 81, 0.08);
}

.pos-landing .faq-cta p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    a.elementor-button.elementor-button-link.elementor-size-lg.elementor-animation-grow {
        display: none;
    }

    .pos-landing .hero-content {
        padding: 0 0 4rem;
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .pos-landing .hero-visual {
        margin: 0 auto;
        padding-bottom: 0;
    }

    .pos-landing .hero-badge { bottom: -1rem; left: 0; }

    .pos-landing .hero-image-wrapper {
        aspect-ratio: 1;
    }

    .pos-landing .hero-quote {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        max-width: 100%;
    }

    .pos-landing .desires-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pos-landing .desires-intro-image { display: none; }

    .pos-landing .desires-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pos-landing .challenges-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .pos-landing .challenge-item:nth-child(4),
    .pos-landing .challenge-item:nth-child(5) {
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .pos-landing .differentiators-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pos-landing .differentiators-intro { position: static; }

    .pos-landing .results-grid { grid-template-columns: 1fr; }
    .pos-landing .results-content { grid-template-columns: 1fr; }
    .pos-landing .results-image { order: 2; }

    .pos-landing .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pos-landing .about-container { grid-template-columns: 1fr; }

    .pos-landing .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pos-landing .pillar-item:nth-child(3) { border-right: none; }

    .pos-landing .pillar-item:nth-child(4),
    .pos-landing .pillar-item:nth-child(5) {
        border-top: 1px solid rgba(29, 37, 81, 0.08);
    }

    .pos-landing .faq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pos-landing .session-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pos-landing .desires-grid,
    .pos-landing .desires-grid-2col { grid-template-columns: 1fr; }

    .pos-landing .desires-intro-image { display: none; }

    .pos-landing .challenges-list,
    .pos-landing .challenges-list-3col { grid-template-columns: 1fr; }

    .pos-landing .challenge-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .pos-landing .challenge-item:last-child { border-bottom: none; }

    .pos-landing .program-cards { grid-template-columns: 1fr; }

    .pos-landing .testimonials-grid { grid-template-columns: 1fr; }

    .pos-landing .pillars-grid { grid-template-columns: 1fr; }

    .pos-landing .pillar-item {
        border-right: none;
        border-bottom: 1px solid rgba(29, 37, 81, 0.08);
    }

    .pos-landing .pillar-item:last-child { border-bottom: none; }

    .pos-landing .session-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .pos-landing .hero { min-height: auto; }

    .pos-landing .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .pos-landing .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .pos-landing .hero-cta-group .btn-secondary { justify-content: center; }

    .pos-landing .desires {
        padding: 6rem 0;
    }

    .pos-landing .about-content { padding-top: 3rem; }

    .pos-landing .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pos-landing .about-credential { bottom: -4rem; }

    .pos-landing .about-stat {
        background: var(--color-bg-alt);
        padding: 1rem;
        border-radius: 4px;
    }
}

/* ==================== BLAUE ZUSATZTEMPLATES ==================== */
.fp-template-original-blue {
    background: var(--fp-blue) !important;
}

.fp-template-original-blue .pos-landing > section {
    background: var(--color-dark) !important;
    color: white !important;
}

.fp-template-original-blue .pos-landing h1,
.fp-template-original-blue .pos-landing h2,
.fp-template-original-blue .pos-landing h3,
.fp-template-original-blue .pos-landing .section-eyebrow,
.fp-template-original-blue .pos-landing .program-cta-intro,
.fp-template-original-blue .pos-landing .desires-cta-text {
    color: white !important;
}

.fp-template-original-blue .pos-landing p,
.fp-template-original-blue .pos-landing li,
.fp-template-original-blue .pos-landing .results-header-sub {
    color: #FFFFFF !important;
}

.fp-template-original-blue .pos-landing .desire-card,
.fp-template-original-blue .pos-landing .program-card,
.fp-template-original-blue .pos-landing .testimonial-card,
.fp-template-original-blue .pos-landing .about-stat {
    background: rgba(255, 255, 255, .045) !important;
    border-color: rgba(255, 255, 255, .16) !important;
    color: white !important;
}

.fp-template-original-blue .pos-landing .desire-card h3,
.fp-template-original-blue .pos-landing .program-card h3,
.fp-template-original-blue .pos-landing .program-sessions,
.fp-template-original-blue .pos-landing .testimonial-card p,
.fp-template-original-blue .pos-landing .testimonial-name,
.fp-template-original-blue .pos-landing .about-stat strong,
.fp-template-original-blue .pos-landing .about-stat span {
    color: white !important;
}

.fp-template-original-blue .pos-landing .program-sessions {
    font-weight: 800;
    border-bottom-color: rgba(255, 255, 255, .18) !important;
}

.fp-template-original-blue .pos-landing .desire-card p,
.fp-template-original-blue .pos-landing .program-card p,
.fp-template-original-blue .pos-landing .program-list li,
.fp-template-original-blue .pos-landing .testimonial-role {
    color: #FFFFFF !important;
}
/* Ausgelagerte Utility-Klassen aus ehemaligen Inline-Styles */
.fp-mt-15 { margin-top: 1.5rem; }
.fp-mt-16 { margin-top: 1.6rem; }
.fp-mt-20 { margin-top: 2rem; }
.fp-mt-22 { margin-top: 2.2rem; }
.fp-mt-25 { margin-top: 2.5rem; }
.fp-media-full { width: 100%; display: block; border-radius: 4px; object-fit: cover; }
.fp-text-blue-large { color: var(--fp-blue); font-size: 2rem; }

/* ==================== ERFOLGSGESCHICHTEN SINGLE TEMPLATES ==================== */
.pos-story-single .story-breadcrumb {
    padding: 1.1rem 0;
    background: var(--color-bg-alt);
    border-bottom: 1px solid rgba(29, 37, 81, .08);
}

.pos-story-single .story-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-wrap: wrap;
    font-size: .9rem;
    color: var(--color-text-muted);
}

.pos-story-single .story-breadcrumb a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
}

.pos-story-single .story-breadcrumb a:hover {
    color: var(--color-highlight);
}

.pos-story-single .story-single-hero {
    padding: 6.5rem 0 7.5rem;
    background: var(--color-bg);
    overflow: hidden;
}

.pos-story-single .story-single-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.pos-story-single .story-single-hero-text h1 {
    line-height: 1.05;
    letter-spacing: -.01em;
    max-width: 920px;
    margin-bottom: 1.35rem;
}

.pos-story-single .story-single-lead {
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.75;
    max-width: 760px;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.pos-story-single .story-single-opening-quote {
    position: relative;
    max-width: 760px;
    padding: 2rem 2.2rem 2rem 5.25rem;
    background: var(--color-bg-alt);
    border: 1px solid rgba(29, 37, 81, .08);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.pos-story-single .story-single-opening-quote .quote-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 2rem;
    height: 2rem;
    color: var(--color-highlight);
}

.pos-story-single .story-single-opening-quote p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: .85rem;
}

.pos-story-single .story-single-opening-quote cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    color: var(--color-text);
}

.pos-story-single .story-single-nav {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    max-width: 820px;
}

.pos-story-single .story-single-nav-label {
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-highlight);
}

.pos-story-single .story-single-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    padding-bottom: .15rem;
    border-bottom: 2px solid rgba(255, 199, 0, .85);
}

.pos-story-single .story-single-nav a:hover {
    color: var(--color-highlight);
}

.pos-story-single .story-single-hero-image {
    position: relative;
    min-height: 520px;
}

.pos-story-single .story-single-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(12%);
}

.pos-story-single .story-single-badge {
    position: absolute;
    left: -1.5rem;
    bottom: 2rem;
    max-width: 260px;
    padding: 1.2rem 1.4rem;
    background: var(--color-dark);
    color: white;
    border-radius: 4px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
}

.pos-story-single .story-single-badge strong,
.pos-story-single .story-single-badge span {
    display: block;
}

.pos-story-single .story-single-badge strong {
    color: var(--color-highlight);
    font-size: 1rem;
    margin-bottom: .25rem;
}

.pos-story-single .story-single-badge span {
    color: #FFFFFF;
    font-size: .92rem;
}

.pos-story-single .story-single-results {
    padding: 7rem 0;
    background: var(--color-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.pos-story-single .story-single-results::before,
.pos-story-single .story-single-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-highlight), transparent);
}

.pos-story-single .story-results-grid {
    display: grid;
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.pos-story-single .story-results-intro {
    position: sticky;
    top: 4rem;
}

.pos-story-single .story-results-intro h2 {
    font-size: clamp(1.9rem, 3.4vw, 3.1rem);
    color: white !important;
    margin-bottom: 1rem;
}

.pos-story-single .story-results-intro p {
    color: #FFFFFF !important;
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.pos-story-single .story-single-results .section-eyebrow {
    color: var(--color-highlight) !important;
}

.pos-story-single .story-single-results .btn-primary,
.pos-story-single .story-single-cta .btn-primary {
    background: var(--color-highlight);
    color: var(--color-dark);
}

.pos-story-single .story-single-results .btn-primary::before,
.pos-story-single .story-single-cta .btn-primary::before {
    background: white;
}

.pos-story-single .story-results-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.pos-story-single .story-result-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1.4rem;
    align-items: start;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .045);
    border-radius: 4px;
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.pos-story-single .story-result-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 199, 0, .75);
    background: rgba(255, 255, 255, .07);
}

.pos-story-single .story-result-card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(255, 199, 0, .14);
    color: var(--color-highlight);
}

.pos-story-single .story-result-card-icon svg {
    width: 28px;
    height: 28px;
}

.pos-story-single .story-result-card h3 {
    color: white !important;
    font-size: 1.25rem;
    margin-bottom: .55rem;
}

.pos-story-single .story-result-card p {
    color: #FFFFFF !important;
    line-height: 1.7;
    font-size: 1rem;
}


.pos-story-single .story-single-cta {
    position: relative;
    padding: 7rem 0;
    background: var(--color-dark);
    color: white;
    text-align: center;
}

.pos-story-single .story-single-cta-inner {
    max-width: 820px;
    margin: 0 auto;
}

.pos-story-single .story-single-cta .section-eyebrow {
    color: var(--color-highlight) !important;
}

.pos-story-single .story-single-cta h2 {
    color: white !important;
    font-size: clamp(2.1rem, 4vw, 4rem);
    margin-bottom: 1rem;
}

.pos-story-single .story-single-cta p {
    color: #FFFFFF !important;
    font-size: 1.12rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 1.2rem;
}

.pos-story-single .story-single-cta-note {
    color: var(--color-highlight) !important;
    font-weight: 800;
    margin-bottom: 2rem !important;
}

.pos-story-single .story-single-cta .btn-large {
    padding: 1.25rem 2.25rem;
}

.pos-stories .story-block {
    padding: 7rem 0;
    background: var(--color-bg);
    position: relative;
}

.pos-stories .story-block--alt {
    background: var(--color-bg-alt);
}

.pos-stories .story-grid {
    display: grid;
    grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.pos-stories .story-grid--reversed {
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
}

.pos-stories .story-image-col {
    position: relative;
}

.pos-stories .story-image-col img {
    width: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(12%);
}

.pos-stories .story-role-badge {
    position: absolute;
    left: -1.25rem;
    bottom: 2rem;
    padding: .95rem 1.2rem;
    background: var(--color-dark);
    color: var(--color-highlight);
    border-radius: 4px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
}

.pos-stories .story-grid--reversed .story-role-badge {
    left: auto;
    right: -1.25rem;
}

.pos-stories .story-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.1rem;
    color: var(--color-text-muted);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pos-stories .story-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.15rem;
    height: 2.15rem;
    padding: 0 .65rem;
    border-radius: 999px;
    background: var(--color-highlight);
    color: var(--color-dark);
    letter-spacing: .02em;
    font-size: .74rem;
}

.pos-stories .story-content-col h1,
.pos-stories .story-content-col h2 {
    font-size: clamp(1.9rem, 3.5vw, 3.4rem);
    line-height: 1.08;
    margin-bottom: 1rem;
}

.pos-stories .story-intro {
    max-width: 780px;
    color: var(--color-text);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.pos-stories .story-quote {
    margin: 0 0 2rem;
    padding: 1.45rem 1.7rem;
    background: white;
    border: 1px solid rgba(29, 37, 81, .08);
    border-radius: 4px;
    color: var(--color-text);
    font-size: 1.08rem;
    line-height: 1.65;
    font-weight: 600;
}

.pos-stories .story-block:not(.story-block--alt) .story-quote {
    background: var(--color-bg-alt);
}

.pos-stories .story-phases {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 2rem;
    overflow: hidden;
    background: transparent;
    border: 1px solid rgba(29, 37, 81, .16);
    border-radius: 4px;
}

.pos-stories .story-phase {
    background: white;
    border-right: 1px solid rgba(29, 37, 81, .14);
    border-bottom: 1px solid rgba(29, 37, 81, .14);
    padding: 1.35rem;
}

.pos-stories .story-phase:nth-child(2n) {
    border-right: 0;
}

.pos-stories .story-phase:nth-last-child(-n+2) {
    border-bottom: 0;
}

.pos-stories .story-block:not(.story-block--alt) .story-phase {
    background: var(--color-bg-alt);
}

.pos-stories .phase-label {
    display: block;
    margin-bottom: .45rem;
    color: var(--color-highlight);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pos-stories .story-phase p {
    color: var(--color-text-muted);
    font-size: .95rem;
    line-height: 1.65;
}

.pos-stories .story-results {
    display: grid;
    gap: .75rem;
    margin-bottom: 2rem;
}

.pos-stories .story-result-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: .8rem;
    align-items: start;
    color: var(--color-text);
    font-weight: 700;
}

.pos-stories .story-result-item svg {
    width: 22px;
    height: 22px;
    color: var(--color-highlight);
    margin-top: .12rem;
}

.pos-stories .story-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 800;
    border-bottom: 2px solid var(--color-highlight);
    padding-bottom: .25rem;
}

.pos-stories .story-link svg {
    width: 17px;
    height: 17px;
    transition: transform .3s ease;
}

.pos-stories .story-link:hover {
    color: var(--color-highlight);
}

.pos-stories .story-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .pos-story-single .story-single-hero-grid,
    .pos-story-single .story-results-grid,
    .pos-stories .story-grid,
    .pos-stories .story-grid--reversed {
        grid-template-columns: 1fr;
    }

    .pos-story-single .story-results-intro {
        position: static;
    }

    .pos-story-single .story-single-hero-image,
    .pos-story-single .story-single-hero-image img,
    .pos-stories .story-image-col img {
        min-height: 420px;
    }

    .pos-stories .story-grid--reversed .story-image-col {
        order: -1;
    }

    .pos-stories .story-role-badge,
    .pos-stories .story-grid--reversed .story-role-badge {
        left: 1rem;
        right: auto;
    }
}

@media (max-width: 768px) {
    .pos-story-single .story-single-hero {
        padding: 3rem 0 5rem;
    }

    .pos-story-single .story-single-opening-quote {
        padding: 1.5rem;
    }

    .pos-story-single .story-single-opening-quote .quote-icon {
        position: static;
        display: block;
        margin-bottom: 1rem;
    }

    .pos-story-single .story-single-badge {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }

    .pos-story-single .story-result-card {
        grid-template-columns: 1fr;
    }

    .pos-stories .story-block {
        padding: 5rem 0;
    }

    .pos-stories .story-phases {
        grid-template-columns: 1fr;
    }

    .pos-stories .story-phase,
    .pos-stories .story-phase:nth-child(2n) {
        border-right: 0;
        border-bottom: 1px solid rgba(29, 37, 81, .14);
    }

    .pos-stories .story-phase:last-child {
        border-bottom: 0;
    }

    .pos-stories .story-eyebrow {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: .55rem;
        margin-bottom: 1.35rem;
    }

    .pos-stories .story-number {
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        height: auto;
        min-height: 2.15rem;
        padding: .55rem 1rem;
        line-height: 1.25;
    }

    .pos-stories .story-role-badge,
    .pos-stories .story-grid--reversed .story-role-badge {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        text-align: center;
    }
}

/* Webinar: Verkaufen wie du coachst */
.fp-page-webinar-verkaufen-coach #unterschied .fp-pain-item h3 {
    margin-bottom: .85rem !important;
}

.fp-page-webinar-verkaufen-coach #unterschied .fp-pain-item p {
    margin-top: 0 !important;
}

.fp-page-webinar-verkaufen-coach .pos-landing .about-image {
    aspect-ratio: 4 / 5;
}

.fp-page-webinar-verkaufen-coach .pos-landing .about-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.fp-page-webinar-verkaufen-coach .pos-landing .about-credential {
    background: var(--color-dark) !important;
    color: #ffffff !important;
}

.fp-page-webinar-verkaufen-coach .pos-landing .about-credential strong {
    color: var(--color-highlight) !important;
}

.fp-page-webinar-verkaufen-coach .pos-landing .about-credential span {
    color: #ffffff !important;
}

.fp-page-webinar-verkaufen-coach #webinar-inhalte .fp-strong-note {
    max-width: 680px;
    margin: clamp(2rem, 4vw, 3rem) auto 0 !important;
    color: #ffffff !important;
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.fp-page-webinar-verkaufen-coach #webinar-inhalte .fp-tag {
    font-size: 1.05rem !important;
    line-height: 1;
}

.fp-page-webinar-verkaufen-coach #webinar-inhalte .fp-card h3 {
    margin-bottom: 1rem !important;
}

.fp-page-webinar-verkaufen-coach #webinar-inhalte .fp-card p {
    margin-top: 0 !important;
}

/* ==================== GLOBAL RESPONSIVE NORMALIZATION ==================== */
:root {
    --fp-content-max: 1400px;
    --fp-page-gutter: clamp(1.5rem, 5vw, 4rem);
    --fp-h1-size: clamp(2rem, 4vw, 2.6rem);
    --fp-h2-size: clamp(1.75rem, 3vw, 2.55rem);
    --fp-h3-size: clamp(1.1rem, 1.55vw, 1.35rem);
    --fp-eyebrow-size: .78rem;
}

.fp-container,
.pos-landing .container,
.pos-story-single .container,
.pos-stories .container {
    width: 100% !important;
    max-width: calc(var(--fp-content-max) + (var(--fp-page-gutter) * 2)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--fp-page-gutter) !important;
    padding-right: var(--fp-page-gutter) !important;
}

.pos-landing .about {
    padding-left: var(--fp-page-gutter) !important;
    padding-right: var(--fp-page-gutter) !important;
}

.fp-system h1,
.pos-landing h1,
.pos-story-single h1,
.pos-stories h1 {
    font-size: var(--fp-h1-size) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
}

.fp-system h2,
.pos-landing h2,
.pos-story-single h2,
.pos-stories h2 {
    font-size: var(--fp-h2-size) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
}

.fp-system h3,
.pos-landing h3,
.pos-story-single h3,
.pos-stories h3 {
    font-size: var(--fp-h3-size) !important;
    line-height: 1.22 !important;
    letter-spacing: 0 !important;
}

.fp-system .fp-eyebrow,
.pos-landing .section-eyebrow,
.pos-landing .hero-eyebrow,
.pos-story-single .section-eyebrow,
.pos-stories .story-eyebrow {
    font-size: var(--fp-eyebrow-size) !important;
    line-height: 1.25 !important;
    letter-spacing: .13em !important;
}

.fp-card h3,
.fp-card-soft h3,
.fp-pain-item h3,
.fp-result-card h3,
.fp-learning-item h3,
.fp-process-step h3,
.fp-offer-card h3,
.fp-ratgeber-card h3,
.pos-landing .desire-card h3,
.pos-landing .challenge-item h3,
.pos-landing .diff-item h3,
.pos-landing .program-card h3,
.pos-landing .results-card h3,
.pos-landing .pillar-item h3,
.pos-landing .session-card h3,
.pos-story-single .story-result-card h3,
.pos-stories .story-phase h3 {
    margin-bottom: .95rem !important;
}

.fp-card h3 + p,
.fp-card h3 + ul,
.fp-card h3 + ol,
.fp-card-soft h3 + p,
.fp-card-soft h3 + ul,
.fp-card-soft h3 + ol,
.fp-pain-item h3 + p,
.fp-pain-item h3 + ul,
.fp-pain-item h3 + ol,
.fp-result-card h3 + p,
.fp-result-card h3 + ul,
.fp-result-card h3 + ol,
.fp-learning-item h3 + p,
.fp-learning-item h3 + ul,
.fp-learning-item h3 + ol,
.fp-process-step h3 + p,
.fp-process-step h3 + ul,
.fp-process-step h3 + ol,
.fp-offer-card h3 + p,
.fp-offer-card h3 + ul,
.fp-offer-card h3 + ol,
.fp-ratgeber-card h3 + p,
.fp-ratgeber-card h3 + ul,
.fp-ratgeber-card h3 + ol,
.pos-landing .desire-card h3 + p,
.pos-landing .desire-card h3 + ul,
.pos-landing .desire-card h3 + ol,
.pos-landing .challenge-item h3 + p,
.pos-landing .challenge-item h3 + ul,
.pos-landing .challenge-item h3 + ol,
.pos-landing .diff-item h3 + p,
.pos-landing .diff-item h3 + ul,
.pos-landing .diff-item h3 + ol,
.pos-landing .program-card h3 + p,
.pos-landing .program-card h3 + ul,
.pos-landing .program-card h3 + ol,
.pos-landing .results-card h3 + p,
.pos-landing .results-card h3 + ul,
.pos-landing .results-card h3 + ol,
.pos-landing .pillar-item h3 + p,
.pos-landing .pillar-item h3 + ul,
.pos-landing .pillar-item h3 + ol,
.pos-landing .session-card h3 + p,
.pos-landing .session-card h3 + ul,
.pos-landing .session-card h3 + ol,
.pos-story-single .story-result-card h3 + p,
.pos-story-single .story-result-card h3 + ul,
.pos-story-single .story-result-card h3 + ol,
.pos-stories .story-phase h3 + p,
.pos-stories .story-phase h3 + ul,
.pos-stories .story-phase h3 + ol {
    margin-top: 0 !important;
}

/* Globale Typografie-Verträge für alle Template-Familien. */
.fp-system h1,
.pos-landing h1,
.pos-story-single h1,
.pos-stories h1 {
    font-weight: 700 !important;
}

.fp-system h2,
.fp-system h3,
.pos-landing h2,
.pos-landing h3,
.pos-story-single h2,
.pos-story-single h3,
.pos-stories h2,
.pos-stories h3 {
    font-weight: 800 !important;
}

.fp-system .fp-eyebrow,
.pos-landing .section-eyebrow,
.pos-landing .hero-eyebrow,
.pos-story-single .section-eyebrow,
.pos-stories .story-eyebrow {
    font-weight: 800 !important;
}

.fp-system .fp-btn,
.pos-landing .btn-primary,
.pos-landing .btn-secondary,
.pos-story-single .story-single-cta .btn-primary,
.pos-stories .story-block-cta {
    font-weight: 800 !important;
}

/* Die ursprünglichen Positionierungs-Templates behalten ihren eigenen
   Hero-Maßstab, verwenden aber den regulären kräftigen Poppins-Schnitt. */
.fp-system .pos-landing h1,
.fp-system .pos-landing h2,
.fp-system .pos-landing h3 {
    font-weight: 700 !important;
}

.fp-system .pos-landing .hero-title {
    font-size: clamp(2rem, 4vw, 2.6rem) !important;
    font-weight: 700 !important;
}

.fp-system .pos-landing .hero-eyebrow,
.fp-system .pos-landing .section-eyebrow,
.fp-system .pos-landing .btn-primary {
    font-weight: 600 !important;
}

.fp-system .pos-landing .btn-secondary {
    font-weight: 500 !important;
}

@media (max-width: 760px) {
    :root {
        --fp-page-gutter: 1.5rem;
        --fp-h1-size: clamp(2rem, 4vw, 2.6rem);
        --fp-h2-size: clamp(1.7rem, 7vw, 2.2rem);
        --fp-h3-size: clamp(1.08rem, 4.8vw, 1.28rem);
    }

    .fp-template,
    .pos-landing .desires,
    .pos-landing .challenges,
    .pos-landing .differentiators,
    .pos-landing .program,
    .pos-landing .results,
    .pos-landing .testimonials,
    .pos-landing .about,
    .pos-landing .pillars,
    .pos-landing .faq,
    .pos-landing .sessions,
    .pos-story-single .story-single-hero,
    .pos-story-single .story-single-results,
    .pos-story-single .story-single-cta,
    .pos-stories .story-block {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }
}


/* Template 65: Original Über mich. Übernommen aus dem bisherigen Seitenlayout. */
/* ==================== VARIABLES ==================== */
.fp-page-about {
  --color-bg: #ffffff;
  --color-bg-alt: #F5F5F5;
  --color-text: #1D2551;
  --color-text-muted: #414974;
  --color-accent: #1D2551;
  --color-accent-light: #e8e9f0;
  --color-highlight: #FFC700;
  --color-dark: #1D2551;
  --color-on-dark: #FFFFFF;
  --font-main: 'Poppins', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1400px;
  --pad: clamp(1.5rem, 5vw, 4rem);
}

.fp-page-about, .fp-page-about *, .fp-page-about *::before, .fp-page-about *::after { margin: 0; padding: 0; box-sizing: border-box; }

.fp-page-about {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.fp-page-about .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.fp-page-about h2, .fp-page-about h3 {
  font-family: var(--font-main);
  font-weight: 800 !important;
  line-height: 1.15;
}

.fp-page-about h1 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 2.6rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.08 !important;
}

/* ==================== BUTTONS ==================== */
.fp-page-about .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-dark);
  color: var(--color-on-dark) !important;
  padding: 1.125rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.fp-page-about .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-highlight);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.fp-page-about .btn-primary span { position: relative; z-index: 1; }
.fp-page-about .btn-primary svg { width: 18px; height: 18px; position: relative; z-index: 1; transition: transform 0.3s ease; }
.fp-page-about .btn-primary:hover::before { transform: translateY(0); }
.fp-page-about .btn-primary:hover { color: var(--color-dark) !important; }
.fp-page-about .btn-primary:hover svg { transform: translateX(4px); }

.fp-page-about .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(29,37,81,0.15);
  transition: all 0.3s ease;
}
.fp-page-about .btn-secondary:hover { border-color: var(--color-highlight); }
.fp-page-about .btn-secondary svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.fp-page-about .btn-secondary:hover svg { transform: translateX(3px); }

/* ==================== HERO ==================== */
.fp-page-about .hero {
  background: var(--color-bg);
  padding: 5rem 0 0;
  overflow: hidden;
}
.fp-page-about .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding-bottom: 6rem;
}
.fp-page-about .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
}
.fp-page-about .hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-highlight);
}
.fp-page-about .hero h1 {
  margin-bottom: 1.5rem;
}
.fp-page-about .hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.fp-page-about .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}
.fp-page-about .hero-visual {
  position: relative;
  padding-bottom: 3rem;
}
.fp-page-about .hero-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.fp-page-about .hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.fp-page-about .hero-img-frame:hover img { transform: scale(1.03); }
.fp-page-about .hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--color-dark);
  color: var(--color-on-dark);
  padding: 1.25rem 1.75rem;
  z-index: 3;
}
.fp-page-about .hero-badge strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-highlight);
  line-height: 1;
}
.fp-page-about .hero-badge span {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--color-on-dark);
  opacity: 1;
  display: block;
  margin-top: 0.2rem;
}

/* ==================== BELIEFS / MANIFEST ==================== */
.fp-page-about .beliefs {
  background: var(--color-dark);
  padding: 8rem 0;
  color: var(--color-on-dark);
  position: relative;
  overflow: hidden;
}
.fp-page-about .beliefs::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--color-highlight), transparent);
}
.fp-page-about .beliefs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.fp-page-about .beliefs-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--color-on-dark) !important;
  margin-bottom: 0.75rem;
}
.fp-page-about .beliefs-header p {
  font-size: 1.05rem;
  color: var(--color-on-dark);
}
.fp-page-about .beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto 4rem;
}
.fp-page-about .beliefs-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
}
.fp-page-about .beliefs-col-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fp-page-about .beliefs-col-header.yes {
  color: var(--color-highlight);
  background: rgba(255,199,0,0.06);
}
.fp-page-about .beliefs-col-header.no {
  color: var(--color-on-dark);
  background: rgba(255,255,255,0.02);
}
.fp-page-about .belief-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.fp-page-about .belief-item:last-child { border-bottom: none; }
.fp-page-about .belief-item:hover { background: rgba(255,255,255,0.03); }
.fp-page-about .belief-number {
  color: var(--color-highlight);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.fp-page-about .belief-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-on-dark);
}
.fp-page-about .beliefs-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-on-dark);
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.fp-page-about .beliefs-quote em { color: var(--color-highlight); font-style: normal; font-weight: 600; }

/* ==================== PERSONAL STORY ==================== */
.fp-page-about .story {
  padding: 8rem 0;
  background: var(--color-bg);
}
.fp-page-about .story-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}
.fp-page-about .story-visual {
  position: sticky;
  top: 5rem;
}
.fp-page-about .story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.5s ease;
}
.fp-page-about .story-img:hover { filter: grayscale(0%); }
.fp-page-about .story-caption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1rem;
}
.fp-page-about .story-text .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.fp-page-about .story-text .section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-highlight);
}
.fp-page-about .story-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.fp-page-about .story-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.fp-page-about .story-text p:last-child { margin-bottom: 0; }
.fp-page-about .story-pull {
  border-left: 3px solid var(--color-highlight);
  padding: 1.5rem 2rem;
  background: var(--color-bg-alt);
  margin: 2rem 0;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.65;
}
.fp-page-about .story-conclusion {
  font-size: 1.2rem !important;
  font-style: normal;
  color: var(--color-text-muted) !important;
  text-align: center;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid rgba(29,37,81,0.08);
  margin-top: 2rem;
}

/* ==================== THREE WORLDS ==================== */
.fp-page-about .worlds {
  padding: 8rem 0;
  background: var(--color-bg-alt);
}
.fp-page-about .worlds-header {
  max-width: 640px;
  margin: 0 auto 5rem;
  text-align: center;
}
.fp-page-about .worlds-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.fp-page-about .worlds-header .section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--color-highlight);
  display: inline-block;
}
.fp-page-about .worlds-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.fp-page-about .worlds-header p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}
.fp-page-about .worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fp-page-about .world-card {
  background: white;
  border: 1px solid rgba(29,37,81,0.07);
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s var(--ease-out);
  border-radius: 4px;
  overflow: hidden;
}
.fp-page-about .world-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-highlight);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.fp-page-about .world-card:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}
.fp-page-about .world-card:hover::after { transform: scaleX(1); }
.fp-page-about .world-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.fp-page-about .world-card p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.fp-page-about .world-result {
  padding: 1rem 1.25rem;
  background: var(--color-bg-alt);
  border-left: 2px solid var(--color-highlight);
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
  border-radius: 0 4px 4px 0;
}
.fp-page-about .world-result strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-highlight);
  margin-bottom: 0.3rem;
}

/* ==================== FOGELPERSPEKTIVE ==================== */
.fp-page-about .perspective {
  padding: 8rem 0;
  background: var(--color-dark);
  color: var(--color-on-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.fp-page-about .perspective-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(6rem, 14vw, 16rem);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.fp-page-about .perspective .container {
  position: relative;
  z-index: 2;
}
.fp-page-about .perspective .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-highlight);
  margin-bottom: 1.5rem;
}
.fp-page-about .perspective .section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--color-highlight);
  display: inline-block;
}
.fp-page-about .perspective h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--color-on-dark) !important;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  line-height: 1.15;
}
.fp-page-about .perspective-body {
  max-width: 680px;
  margin: 0 auto;
}
.fp-page-about .perspective-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-on-dark);
  margin-bottom: 1.5rem;
}
.fp-page-about .perspective-body strong {
  color: var(--color-on-dark);
  font-weight: 600;
}
.fp-page-about .perspective-final {
  font-size: 1.2rem !important;
  font-style: normal;
  color: var(--color-on-dark) !important;
  margin-top: 2.5rem !important;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0 !important;
}
.fp-page-about .perspective-final em { color: var(--color-highlight); font-style: normal; }

/* ==================== 1:1 WHY ==================== */
.fp-page-about .oneonone {
  padding: 8rem 0;
  background: var(--color-bg);
}
.fp-page-about .oneonone-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 6rem;
  align-items: start;
}
.fp-page-about .oneonone-text .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.fp-page-about .oneonone-text .section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--color-highlight);
}
.fp-page-about .oneonone-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.fp-page-about .oneonone-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.fp-page-about .moments-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2.5rem 0;
}
.fp-page-about .moment-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(29,37,81,0.07);
  background: var(--color-bg-alt);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.fp-page-about .moment-item:hover {
  border-color: var(--color-highlight);
  background: white;
}
.fp-page-about .moment-emoji {
  width: 56px; height: 56px;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-highlight);
  letter-spacing: 0.05em;
  border: 1px solid rgba(29,37,81,0.06);
}
.fp-page-about .moment-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.fp-page-about .moment-item p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
.fp-page-about .oneonone-pull {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(29,37,81,0.08);
}
.fp-page-about .oneonone-visual {
  position: sticky;
  top: 5rem;
}
.fp-page-about .oneonone-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.5s ease;
}
.fp-page-about .oneonone-img:hover { filter: grayscale(0%); }

/* ==================== STATS ==================== */
.fp-page-about .stats {
  background: var(--color-dark);
  padding: 5rem 0;
}
.fp-page-about .stats-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-on-dark);
  margin-bottom: 3rem;
}
.fp-page-about .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.fp-page-about .stat-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.fp-page-about .stat-item:last-child { border-right: none; }
.fp-page-about .stat-item:hover { background: rgba(255,255,255,0.03); }
.fp-page-about .stat-item strong {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-highlight);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.fp-page-about .stat-item span {
  font-size: 0.9rem;
  color: var(--color-on-dark);
  line-height: 1.4;
}

/* ==================== TESTIMONIALS ==================== */
.fp-page-about .testimonials {
  padding: 8rem 0;
  background: var(--color-bg-alt);
}
.fp-page-about .testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.fp-page-about .testimonials-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.fp-page-about .testimonials-header .section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--color-highlight);
  display: inline-block;
}
.fp-page-about .testimonials-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}
.fp-page-about .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fp-page-about .testimonial-card {
  background: white;
  padding: 2.5rem;
  border: 1px solid rgba(29,37,81,0.06);
  border-radius: 4px;
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.fp-page-about .testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-highlight);
  opacity: 0.3;
  font-family: Georgia, serif;
}
.fp-page-about .testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}
.fp-page-about .testimonial-card p {
  font-size: 1.05rem;
  font-style: normal;
  line-height: 1.75;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

/* ==================== CTA FINAL ==================== */
.fp-page-about .cta-final {
  padding: 8rem 0;
  background: var(--color-bg);
  text-align: center;
}
.fp-page-about .cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.fp-page-about .cta-final .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  justify-content: center;
}
.fp-page-about .cta-final .section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--color-highlight);
  display: inline-block;
}
.fp-page-about .cta-final h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.fp-page-about .cta-final p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.fp-page-about .cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.fp-page-about .cta-trust {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: normal;
}

/* ==================== DIVIDERS ==================== */
.fp-page-about .divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-highlight), transparent);
  opacity: 0.4;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fpAboutFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fp-page-about .hero-text { animation: fpAboutFadeUp 0.9s var(--ease-out) 0.1s both; }
.fp-page-about .hero-visual { animation: fpAboutFadeUp 0.9s var(--ease-out) 0.3s both; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .fp-page-about .hero-inner { grid-template-columns: 1fr; gap: 4rem; }
  .fp-page-about .hero-visual { max-width: 520px; }
  .fp-page-about .story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .fp-page-about .story-visual { position: static; }
  .fp-page-about .story-img { aspect-ratio: 16/9; object-position: 50% 20%; }
  .fp-page-about .worlds-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .fp-page-about .oneonone-inner { grid-template-columns: 1fr; gap: 3rem; }
  .fp-page-about .oneonone-visual { display: none; }
  .fp-page-about .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-page-about .stat-item:nth-child(2) { border-right: none; }
  .fp-page-about .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
  .fp-page-about .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .fp-page-about .beliefs-grid { grid-template-columns: 1fr; max-width: 540px; }
}

@media (max-width: 768px) {
  .fp-page-about .hero { padding: 3rem 0 0; }
  .fp-page-about .hero-badge { left: 0; }
  .fp-page-about .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-page-about .worlds-grid { max-width: 100%; }
  .fp-page-about .cta-buttons { flex-direction: column; align-items: stretch; }
  .fp-page-about .btn-primary { justify-content: center; }
}

@media (max-width: 480px) {
  .fp-page-about .stats-grid { grid-template-columns: 1fr; }
  .fp-page-about .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .fp-page-about .stat-item:last-child { border-bottom: none; }
}
.fp-page-about h2,
.fp-page-about h3,
.fp-page-about .hero-eyebrow,
.fp-page-about .section-label,
.fp-page-about .btn-primary,
.fp-page-about .btn-secondary { font-weight: 800 !important; }

