/* ===== VARIABLES ===== */
:root {
    --olive: #5a6b3d;
    --olive-light: #6e8249;
    --olive-dark: #4a5a32;
    --sand: #c4b8a8;
    --sand-light: #d6cdbf;
    --sand-lighter: #ece8e2;
    --dark-green: #2d3d2d;
    --dark-green-deep: #1e2b1e;
    --brown: #6b5344;
    --accent-green: #00c853;
    --accent-green-hover: #00b348;

    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #999;
    --gray-400: #777;
    --gray-500: #555;
    --gray-600: #333;
    --gray-700: #222;
    --gray-800: #1a1a1a;

    --white: #fff;
    --black: #111;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --header-height: 72px;
    --container-max: 1140px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--olive); text-decoration: none; transition: color .2s; }
a:hover { color: var(--olive-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--olive), var(--accent-green));
    z-index: 1001;
    width: 0;
    transition: width .1s linear;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(30, 43, 30, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
    background: rgba(30, 43, 30, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color .2s;
}

.header-nav a:hover {
    color: var(--white);
}

.header-nav .btn-header {
    margin-left: 8px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all .25s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
}

.btn-primary:hover {
    background: var(--olive-light);
    border-color: var(--olive-light);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--olive);
    border-color: var(--olive);
}

.btn-secondary:hover {
    background: var(--olive);
    color: var(--white);
}

.btn-green {
    background: var(--accent-green);
    color: var(--white);
    border-color: var(--accent-green);
    font-weight: 700;
}

.btn-green:hover {
    background: var(--accent-green-hover);
    border-color: var(--accent-green-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,200,83,0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,43,30,0.88) 0%, rgba(45,61,45,0.75) 50%, rgba(90,107,61,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 100px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--accent-green);
}

.hero-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(90,107,61,0.35);
    color: var(--accent-green);
    border: 1px solid rgba(90,107,61,0.5);
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 36px;
}

.hero-lead strong {
    color: var(--accent-green);
    font-weight: 700;
}

.hero-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 36px;
}

.hero-sub li {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    padding-left: 20px;
    position: relative;
}

.hero-sub li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-top: 8px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.trust-badge-tarn {
    background: rgba(90,107,61,0.3);
    border-color: rgba(90,107,61,0.4);
    color: rgba(255,255,255,0.9);
}

.trust-badge-google {
    background: rgba(255,255,255,0.96);
    color: #202124;
    border-color: rgba(0,0,0,0.06);
    padding: 8px 14px 8px 12px;
    gap: 8px;
}
.trust-badge-google .g-mini {
    font-family: 'Product Sans','Inter',sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: -0.5px;
    display: inline-flex;
}
.trust-badge-google .g-mini .b{color:#4285F4}
.trust-badge-google .g-mini .r{color:#EA4335}
.trust-badge-google .g-mini .y{color:#FBBC05}
.trust-badge-google .g-mini .g{color:#34A853}
.trust-badge-google .stars-mini {
    display: inline-flex; gap: 1px; color: #FBBC05;
}
.trust-badge-google .stars-mini svg { display: block; }
.trust-badge-google .count-mini { color: #5f6368; font-size: 0.75rem; font-weight: 700; }

.trust-badge-ihk {
    background: rgba(184,138,62,0.22);
    border-color: rgba(184,138,62,0.42);
    color: rgba(255,255,255,0.95);
}
.trust-badge-ihk svg { color: #b88a3e; }

/* ===== SECTION SHARED ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(90,107,61,0.12);
    color: var(--olive);
    margin-bottom: 16px;
}

.section-tag-tarn {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--gray-700);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--gray-400);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== TEAM SECTION (TARN BG) ===== */
.section-tarn {
    background: linear-gradient(135deg, var(--dark-green-deep) 0%, var(--dark-green) 50%, var(--olive-dark) 100%);
    color: var(--white);
}

.section-tarn .section-header h2 {
    color: var(--white);
}

.section-tarn .section-subtitle {
    color: rgba(255,255,255,0.75);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.team-card-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.15);
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.team-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--white);
}

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

.problem-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--olive);
}

.problem-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(90,107,61,0.1);
    color: var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 10px;
    line-height: 1.4;
}

.problem-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== LOESUNG SECTION ===== */
.loesung-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.loesung-step {
    text-align: center;
    position: relative;
}

.loesung-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-green);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.loesung-step h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.loesung-step p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.loesung-cta {
    text-align: center;
}

/* ===== RECHNER SECTION ===== */
.rechner-section {
    background: var(--gray-100);
}

.rechner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.rechner-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.rechner-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.rechner-field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
    transition: border-color .2s;
}

.rechner-field select:focus {
    outline: none;
    border-color: var(--olive);
}

.rechner-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.rechner-result-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
}

.rechner-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.rechner-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-700);
}

.rechner-value-green {
    color: var(--accent-green);
}

.rechner-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-300);
    margin-top: 4px;
}

.rechner-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.rechner-summary-box {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border: 2px solid var(--gray-200);
}

.rechner-summary-highlight {
    background: rgba(0,200,83,0.06);
    border-color: var(--accent-green);
}

.rechner-summary-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.rechner-summary-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-700);
}

.rechner-summary-highlight .rechner-summary-value {
    color: var(--accent-green);
}

.rechner-disclaimer {
    font-size: 0.78rem;
    color: var(--gray-300);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 28px;
}

.rechner-cta {
    text-align: center;
}

/* ===== STORY / SOCIAL PROOF ===== */
.story-section {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    margin-bottom: 64px;
}

.story-card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.story-card-featured {
    border: 2px solid var(--olive);
}

.story-card-photo {
    height: 320px;
    overflow: hidden;
}

.story-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}

.story-card-photo-florian {
    background: linear-gradient(180deg, #a3b186 0%, var(--olive) 100%);
}

.story-card-photo-florian img {
    object-fit: cover;
    object-position: 38% center;
}

.story-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-card-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(0,200,83,0.1);
    color: var(--accent-green);
    margin-bottom: 12px;
    align-self: flex-start;
}

.story-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.story-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
    flex: 1;
}

.story-card p strong {
    color: var(--olive);
}

.story-card-name {
    display: block;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-400);
}

/* Testimonials */
.testimonials-block {
    margin-bottom: 48px;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 28px;
}

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

.testimonial-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--gray-200);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #f5a623;
    margin-bottom: 14px;
}

.testimonial-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 14px;
}

.testimonial-author {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-400);
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: linear-gradient(135deg, var(--dark-green-deep), var(--dark-green));
    border-radius: var(--radius-lg);
    padding: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-green);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-green);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    font-weight: 500;
}

/* ===== VORTEILE ===== */
.vorteile-section {
    background: var(--gray-100);
}

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

.vorteil-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
    border: 1px solid var(--gray-200);
}

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

.vorteil-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(90,107,61,0.1);
    color: var(--olive);
    margin-bottom: 20px;
}

.vorteil-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.vorteil-card p {
    color: var(--gray-400);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===== AUTHENTICITY SECTION ===== */
.auth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.auth-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
}

.auth-card svg {
    flex-shrink: 0;
    color: var(--accent-green);
    margin-top: 2px;
}

.auth-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.auth-cta {
    text-align: center;
}

.auth-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    font-style: italic;
    margin-bottom: 24px;
}

/* ===== CONTACT OPTIONS ===== */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.contact-option-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    text-align: left;
    transition: border-color .3s, background .3s;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
}

.contact-option-card > h3,
.contact-option-card > p {
    grid-column: 2;
}
.contact-option-card > .contact-option-btn {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    white-space: nowrap;
}
.contact-option-card > .contact-option-icon {
    grid-column: 1;
    grid-row: 1 / span 4;
    margin: 0;
}

.contact-option-card:hover {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
}

.contact-option-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-option-icon-wa {
    background: rgba(37,211,102,0.15);
    color: #25d366;
}

.contact-option-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-option-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-option-btn {
    width: 100%;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #1fb855;
    border-color: #1fb855;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}

/* ===== ANGEBOT ===== */
.angebot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}

.angebot-kachel {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--olive-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    color: var(--white);
    transition: transform .3s, box-shadow .3s;
}

.angebot-kachel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.angebot-kachel h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.angebot-kachel p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* ===== BEISPIELOBJEKT ===== */
.beispielobjekt-section {
    background: var(--gray-100);
}

.beispielobjekt-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.beispielobjekt-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    height: 100%;
}

.beispielobjekt-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beispielobjekt-info {
    padding: 40px 40px 40px 0;
}

.beispielobjekt-list {
    margin-bottom: 20px;
}

.beispielobjekt-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 1rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
}

.beispielobjekt-list li:last-child {
    border-bottom: none;
}

.beispielobjekt-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
}

.beispielobjekt-info p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

.beispielobjekt-info .btn {
    display: block;
    margin-bottom: 12px;
}

/* ===== ABLAUF ===== */
.ablauf-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.ablauf-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: var(--gray-200);
}

.ablauf-step {
    text-align: center;
    position: relative;
}

.ablauf-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.ablauf-step h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.ablauf-step p {
    color: var(--gray-400);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--gray-100);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: left;
    transition: color .2s;
}

.faq-question:hover {
    color: var(--olive);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gray-300);
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--dark-green-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section .section-header h2 {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: rgba(255,255,255,0.65);
}

.has-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-green);
    top: -200px;
    right: -150px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--olive);
    bottom: -150px;
    left: -100px;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Form Progress */
.multistep-form {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all .3s;
}

.progress-step.active .step-circle,
.progress-step.done .step-circle {
    background: var(--accent-green);
    color: var(--white);
    border-color: var(--accent-green);
}

.step-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    transition: color .3s;
}

.progress-step.active .step-label,
.progress-step.done .step-label {
    color: rgba(255,255,255,0.85);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.12);
    margin: 0 12px;
    margin-bottom: 28px;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeUp .35s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 28px;
}

/* Interest Cards */
.interest-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.interest-card {
    cursor: pointer;
}

.interest-card input {
    display: none;
}

.interest-card-inner {
    padding: 24px 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all .25s;
}

.interest-card-inner:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
}

.interest-card input:checked + .interest-card-inner {
    border-color: var(--accent-green);
    background: rgba(0,200,83,0.1);
}

.interest-card-inner h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.interest-card-inner p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}

/* Form Fields */
.form-row {
    margin-bottom: 18px;
}

.form-row label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 1rem;
    transition: border-color .2s, background .2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(255,255,255,0.1);
}

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

.form-row select option {
    background: var(--gray-800);
    color: var(--white);
}

.form-row textarea {
    resize: vertical;
    min-height: 100px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.optional-hint {
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}

/* Consent */
.consent-row {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    position: relative;
    transition: all .2s;
    margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: var(--accent-green);
}

/* Step Buttons */
.step-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.step-buttons .btn {
    flex: 1;
}

.step-buttons .btn-secondary {
    color: rgba(255,255,255,0.6);
    border-color: rgba(255,255,255,0.2);
}

.step-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.form-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 20px;
}

.form-privacy a {
    color: rgba(255,255,255,0.55);
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-success.visible {
    display: block;
    animation: fadeUp .5s ease forwards;
}

.success-icon {
    color: var(--accent-green);
    margin-bottom: 24px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.form-success p {
    color: rgba(255,255,255,0.7);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-800);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color .2s;
}

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

.footer-impressum {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-impressum strong {
    color: rgba(255,255,255,0.75);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ===== STICKY CONTACT BUTTON ===== */
.sticky-contact-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,200,83,0.4);
    z-index: 999;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
}

.sticky-contact-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(0,200,83,0.5);
}

.sticky-contact-btn .icon-close { display: none; }
.sticky-contact-btn.open .icon-msg { display: none; }
.sticky-contact-btn.open .icon-close { display: block; }

/* Contact Panel */
.contact-panel {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.95);
    transition: all .3s ease;
}

.contact-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.contact-panel-header {
    padding: 20px 24px 12px;
}

.contact-panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-700);
}

.contact-panel-content {
    padding: 0 12px 16px;
}

.contact-panel-item {
    display: block;
    padding: 16px;
    border-radius: var(--radius-sm);
    transition: background .2s;
}

.contact-panel-item:hover {
    background: var(--gray-100);
}

.contact-panel-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 2px;
}

.contact-panel-item span {
    font-size: 0.82rem;
    color: var(--gray-400);
}

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .3s;
    border: 1px solid var(--gray-200);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: var(--accent-green);
    color: var(--white);
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 996;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sticky-mobile-cta:hover {
    color: var(--white);
    background: var(--accent-green-hover);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all .4s ease;
}

.cookie-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 24px;
    background: var(--gray-800);
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.cookie-banner-text a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all .2s;
}

.cookie-btn-accept {
    background: var(--accent-green);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--accent-green-hover);
}

.cookie-btn-decline {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.18);
    color: var(--white);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .vorteile-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .rechner-inputs {
        grid-template-columns: 1fr;
    }

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

    .rechner-card {
        padding: 32px 24px;
    }

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

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

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

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

    .contact-options {
        max-width: 100%;
        margin: 0 auto 40px;
    }
    .contact-option-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 24px;
    }
    .contact-option-card > .contact-option-icon,
    .contact-option-card > h3,
    .contact-option-card > p,
    .contact-option-card > .contact-option-btn {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
    }
    .contact-option-card > .contact-option-icon {
        margin: 0 auto 20px;
    }

    .ablauf-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }

    .ablauf-steps::before {
        display: none;
    }

    .beispielobjekt-block {
        grid-template-columns: 1fr;
    }

    .beispielobjekt-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .beispielobjekt-info {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    section {
        padding: 72px 0;
    }

    .header-nav a:not(.btn-header) {
        display: none;
    }

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

    .hero-sub {
        flex-direction: column;
        gap: 8px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

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

    .rechner-summary {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

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

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px;
        gap: 20px;
    }

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

    .ablauf-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .interest-cards {
        grid-template-columns: 1fr;
    }

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

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .sticky-mobile-cta {
        display: block;
    }

    .sticky-contact-btn {
        bottom: 68px;
    }

    .beispielobjekt-images {
        grid-template-columns: 1fr;
    }
}

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

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

    .section-header h2 {
        font-size: 1.4rem;
    }

    .step-buttons {
        flex-direction: column;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* ===== RECHNER: fixes Objekt + Donut-Diagramm (wer zahlt was) ===== */
.rechner-fixed {
    display: flex; flex-direction: column; gap: 2px;
    padding: 11px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--sand-lighter);
}
.rechner-fixed strong { font-family: var(--font-heading); font-size: 1.05rem; color: var(--dark-green); }
.rechner-fixed span { font-size: 0.74rem; color: var(--gray-400); }

.rechner-chart-row {
    display: grid; grid-template-columns: 200px 1fr; gap: 36px;
    align-items: center; margin: 8px 0 18px;
}
.rechner-donut-wrap { position: relative; width: 200px; height: 200px; }
.rechner-donut { width: 200px; height: 200px; transform: rotate(0deg); }
.donut-base { stroke: #ece8e2; }
.donut-seg { transition: stroke-dasharray .9s cubic-bezier(.2,.8,.2,1), stroke-dashoffset .9s cubic-bezier(.2,.8,.2,1); }
.seg-mieter { stroke: var(--accent-green); }
.seg-steuer { stroke: var(--olive); }
.seg-eigen { stroke: #c4b8a8; }
.donut-center {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; pointer-events: none;
}
.donut-center-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-400); }
.donut-center-value { font-family: var(--font-heading); font-weight: 800; font-size: 1.9rem; line-height: 1; color: var(--dark-green); margin: 2px 0; }
.donut-center-sub { font-size: 0.7rem; color: var(--gray-400); }

.rechner-legend { display: flex; flex-direction: column; }
.rechner-legend-title { font-family: var(--font-heading); font-weight: 700; color: var(--dark-green); margin-bottom: 6px; }
.legend-row { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-bottom: 1px solid var(--gray-200); }
.legend-row:last-child { border-bottom: none; }
.legend-dot { width: 13px; height: 13px; border-radius: 4px; flex-shrink: 0; }
.dot-rate { background: var(--gray-600); }
.dot-mieter { background: var(--accent-green); }
.dot-steuer { background: var(--olive); }
.dot-eigen { background: #c4b8a8; }
.legend-label { flex: 1; color: var(--gray-600); font-size: 0.94rem; }
.legend-value { font-family: var(--font-heading); font-weight: 700; color: var(--dark-green); white-space: nowrap; }
.legend-row-you .legend-label { font-weight: 600; color: var(--dark-green); }
.legend-row-you .legend-value { color: var(--accent-green); }

@media (max-width: 640px) {
    .rechner-chart-row { grid-template-columns: 1fr; justify-items: center; gap: 22px; }
    .rechner-legend { width: 100%; }
}

/* ===== NART-Band + Google-Bewertungen ===== */
.nart-band {
    margin-top: 28px;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 22px 32px;
    padding: 24px 28px;
    background: var(--sand-lighter);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}
.nart-band-text { flex: 1 1 380px; }
.nart-band-text strong { display: block; font-family: var(--font-heading); font-size: 1.1rem; color: var(--dark-green); margin-bottom: 4px; }
.nart-band-text span { font-size: 0.92rem; color: var(--gray-500); line-height: 1.55; }
.google-reviews {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 14px 24px; background: var(--white);
    border: 1px solid var(--gray-200); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.google-logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.google-logo .g-b { color: #4285F4; } .google-logo .g-r { color: #EA4335; }
.google-logo .g-y { color: #FBBC05; } .google-logo .g-g { color: #34A853; }
.google-stars { display: flex; gap: 2px; color: #FBBC05; }
.google-count { font-size: 0.88rem; color: var(--gray-600); }
.google-count strong { color: var(--dark-green); font-family: var(--font-heading); }
@media (max-width: 560px) {
    .nart-band { flex-direction: column; align-items: stretch; text-align: center; }
    .google-reviews { align-self: center; }
}

/* ===== Datenschutz-Hinweis im Formular (Soldaten-Sensibilität) ===== */
.form-datenschutz-hinweis {
    display: flex; gap: 12px; align-items: flex-start;
    margin: 4px 0 18px;
    padding: 14px 16px;
    background: var(--sand-lighter);
    border-left: 3px solid var(--olive);
    border-radius: var(--radius-sm);
}
.form-datenschutz-hinweis svg { flex-shrink: 0; color: var(--olive); margin-top: 1px; }
.form-datenschutz-hinweis span { font-size: 0.86rem; line-height: 1.5; color: var(--gray-600); }
.form-datenschutz-hinweis strong { color: var(--dark-green); }

/* ===== Rechner: Startnote (ab Gefreiter) ===== */
.rechner-startnote {
    text-align: center;
    font-size: 0.92rem;
    color: var(--gray-600);
    background: var(--sand-lighter);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    margin: 4px 0 20px;
}
.rechner-startnote strong { color: var(--dark-green); }

/* ===== Strategie-Block (jedes Jahr eine + Kosten des Wartens) ===== */
.strat-year-badge {
    display: inline-block;
    font-family: var(--font-heading); font-weight: 800;
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--olive); background: rgba(90,107,61,0.10);
    border: 1px solid rgba(90,107,61,0.25);
    padding: 5px 12px; border-radius: 100px; margin-bottom: 12px;
}
.strat-payoff { display: flex; flex-wrap: wrap; gap: 18px; align-items: stretch; margin-top: 28px; }
.strat-anchor {
    flex: 1 1 300px; background: var(--dark-green); color: #fff;
    border-radius: var(--radius-lg); padding: 24px 28px;
    display: flex; flex-direction: column; justify-content: center;
}
.strat-anchor-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.strat-anchor-num { font-family: var(--font-heading); font-weight: 900; font-size: clamp(1.7rem,3.2vw,2.4rem); color: var(--accent-green); line-height: 1.1; margin: 4px 0 8px; }
.strat-anchor-sub { font-size: 0.9rem; line-height: 1.5; color: rgba(255,255,255,0.8); }
.strat-warning {
    flex: 1 1 300px; display: flex; align-items: center; gap: 14px;
    background: #fbf3ec; border: 1px solid #ecd6c6; border-left: 4px solid var(--brown);
    border-radius: var(--radius-lg); padding: 20px 24px;
    font-size: 0.95rem; line-height: 1.5; color: var(--gray-700);
}
.strat-warning svg { flex-shrink: 0; color: var(--brown); }
.strat-warning strong { color: var(--brown); }

/* ===== Trust-Strip am End-CTA + Reassurance ===== */
.contact-trust {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 18px 36px; margin: 0 auto 36px; max-width: 860px;
}
.contact-trust-stats {
    display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: center;
}
.contact-trust-stats span { color: rgba(255,255,255,0.75); font-size: 0.95rem; white-space: nowrap; }
.contact-trust-stats strong { color: #fff; font-family: var(--font-heading); font-weight: 800; }

.contact-option-primary { box-shadow: 0 0 0 2px var(--accent-green), var(--shadow-lg); }

.form-reassurance {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px;
    margin-top: 14px;
}
.form-reassurance span { font-size: 0.85rem; color: var(--accent-green); font-weight: 600; white-space: nowrap; }

/* Kontakt-Optionen zentrieren (robust für 2 oder 3 Karten) */
.contact-options {
    grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
    justify-content: center;
}

/* ===== BEWEIS: Bezügemitteilung Vorher/Nachher ===== */
.beweis-section {
    background: linear-gradient(180deg, var(--sand-lighter) 0%, #fff 100%);
    padding: clamp(56px, 8vw, 96px) 0;
}
.beweis-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(14px, 2vw, 28px);
    align-items: stretch;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto 24px;
}

/* — Payslip-Karte — */
.payslip {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex; flex-direction: column;
    position: relative;
}
.payslip-vorher { border-top: 3px solid #c4736b; }
.payslip-nachher { border-top: 3px solid var(--accent-green); }

.payslip-header {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}
.payslip-stamp {
    font-family: var(--font-heading); font-weight: 800;
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    background: #c4736b; color: #fff;
    padding: 5px 12px; border-radius: 100px;
}
.payslip-stamp-success { background: var(--accent-green); }
.payslip-title {
    font-size: 0.78rem; color: var(--gray-500);
    letter-spacing: 0.05em; text-transform: uppercase;
    font-weight: 600;
}

.payslip-body { padding: 16px 18px 18px; flex: 1; }

.payslip-row {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 10px; padding: 5px 0;
    font-size: 0.86rem; line-height: 1.4;
}
.ps-label { color: var(--gray-500); }
.ps-value {
    color: var(--gray-700);
    font-variant-numeric: tabular-nums;
    font-family: 'Inter', sans-serif;
    text-align: right;
    white-space: nowrap;
}
.ps-redacted {
    font-family: monospace; letter-spacing: -0.05em;
    color: var(--gray-700);
}

.payslip-sep { height: 1px; background: var(--gray-200); margin: 8px 0; }

.payslip-row-subtotal {
    font-weight: 600;
    padding-top: 8px; padding-bottom: 4px;
    border-top: 1px dashed var(--gray-200);
}
.payslip-row-subtotal .ps-label { color: var(--gray-600); }
.payslip-row-subtotal .ps-value { color: var(--gray-700); font-weight: 700; }

.payslip-row-total {
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 10px 12px;
    margin: 4px -4px 0;
    background: var(--sand-lighter);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}
.payslip-row-total .ps-label { color: var(--dark-green); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.76rem; }
.payslip-row-total .ps-value { color: var(--dark-green); font-size: 1.1rem; }
.payslip-row-total-success {
    background: rgba(0, 200, 83, 0.12);
}
.payslip-row-total-success .ps-label { color: var(--accent-green); }
.payslip-row-total-success .ps-value { color: var(--accent-green); }

/* Highlight-Zeilen (Lohnsteuer Vorher rot, Nachher grün/durchgestrichen) */
.ps-highlight-vorher {
    background: rgba(196, 115, 107, 0.10);
    border-left: 3px solid #c4736b;
    padding-left: 9px; margin-left: -12px;
    border-radius: 0 4px 4px 0;
}
.ps-highlight-vorher .ps-label { color: #a14e44; font-weight: 600; }
.ps-highlight-vorher .ps-value { color: #a14e44; font-weight: 700; }
.ps-highlight-nachher {
    background: rgba(0, 200, 83, 0.10);
    border-left: 3px solid var(--accent-green);
    padding-left: 9px; margin-left: -12px;
    border-radius: 0 4px 4px 0;
}
.ps-highlight-nachher .ps-label { color: var(--accent-green); font-weight: 600; }
.ps-highlight-nachher .ps-value s { color: var(--gray-400); font-weight: 400; }
.ps-highlight-nachher .ps-value strong { color: var(--accent-green); font-weight: 800; }

/* Callout unter Nachher */
.payslip-callout {
    margin: 0 14px 14px;
    padding: 12px 14px;
    background: rgba(0, 200, 83, 0.10);
    border: 1px solid rgba(0, 200, 83, 0.30);
    border-radius: var(--radius-sm);
    font-size: 0.86rem; line-height: 1.5; color: var(--gray-700);
}
.payslip-callout strong { color: var(--accent-green); display: block; font-family: var(--font-heading); font-size: 1.02rem; margin-bottom: 2px; }

/* Pfeil zwischen Vorher und Nachher */
.beweis-arrow {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; padding: 0 4px;
    align-self: center;
}
.beweis-arrow-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--accent-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
}
.beweis-arrow-label {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.74rem; color: var(--olive);
    text-align: center; line-height: 1.2;
    letter-spacing: 0.04em;
}

/* Disclaimer + CTA */
.beweis-disclaimer {
    max-width: 880px; margin: 0 auto 28px;
    font-size: 0.78rem; color: var(--gray-400);
    text-align: center; line-height: 1.55;
}
.beweis-cta {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 14px;
}

/* Mobile: Pfeil rotiert, Karten stapeln */
@media (max-width: 880px) {
    .beweis-grid { grid-template-columns: 1fr; }
    .beweis-arrow { padding: 6px 0; }
    .beweis-arrow-icon svg { transform: rotate(90deg); }
    .beweis-arrow-label br { display: none; }
}

/* ===== NART-Team-Foto + Ansprechpartner-Sub-Sektion ===== */
.nart-team-photo {
    margin: 8px auto 40px;
    max-width: 1080px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-200);
}
.nart-team-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center 35%;
}
.nart-team-photo figcaption {
    padding: 12px 18px;
    background: var(--white);
    font-size: 0.86rem;
    color: var(--gray-500);
    border-top: 1px solid var(--gray-200);
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: center;
    gap: 8px 16px;
}
.nart-team-photo figcaption a {
    color: var(--olive);
    font-weight: 600;
    text-decoration: none;
}
.nart-team-photo figcaption a:hover { color: var(--olive-dark); }

.ansprechpartner-head {
    text-align: center;
    margin: 18px auto 28px;
    max-width: 720px;
}
.ansprechpartner-head h3 {
    font-family: var(--font-heading); font-weight: 700;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    color: var(--dark-green);
    margin-bottom: 6px;
    line-height: 1.2;
}
.ansprechpartner-head p {
    color: var(--gray-500);
    font-size: 1.02rem;
    line-height: 1.5;
}

/* "Foto folgt"-Badge auf KI-Platzhalter */
.story-card-photo { position: relative; }
.foto-folgt-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--gray-600);
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Rolle/Dienstgrad-Sub statt einfacher Namens-Zeile */
.story-card-role {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
    line-height: 1.45;
}

/* ===== Rechner BFD-Hinweis (über dem Rechner-Card) ===== */
.rechner-bfd-note {
    display: flex; align-items: flex-start; gap: 12px;
    max-width: 880px; margin: 0 auto 20px;
    padding: 14px 18px;
    background: linear-gradient(90deg, rgba(0,200,83,0.10) 0%, rgba(0,200,83,0.04) 100%);
    border-left: 3px solid var(--accent-green);
    border-radius: var(--radius-sm);
    font-size: 0.92rem; line-height: 1.55; color: var(--gray-700);
}
.rechner-bfd-note svg { flex-shrink: 0; color: var(--accent-green); margin-top: 2px; }
.rechner-bfd-note strong { color: var(--dark-green); }

/* ===== Mobile-Optimierungen: alle Hot-Spots ===== */
@media (max-width: 640px) {
    /* Hero: H1 etwas enger */
    .hero h1 { font-size: clamp(1.8rem, 7.5vw, 2.4rem); line-height: 1.15; }
    .hero-lead { font-size: 0.98rem; line-height: 1.55; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .hero-trust { gap: 8px; }
    .trust-badge { font-size: 0.78rem; padding: 6px 11px; }

    /* Story / NART-Sektion */
    .nart-team-photo { margin-bottom: 24px; }
    .nart-team-photo img { aspect-ratio: 4 / 3; }
    .ansprechpartner-head h3 { font-size: 1.3rem; }
    .story-grid { grid-template-columns: 1fr; gap: 18px; }
    .story-card-photo { height: 340px; }

    /* Vorteile-Header bekommt etwas mehr Luft */
    .vorteile-section h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }

    /* Section-Header Subtitles enger */
    .section-subtitle { font-size: 0.98rem; line-height: 1.55; }

    /* Stats-Bar untereinander */
    .stats-bar { gap: 18px; }
    .stat-number { font-size: 2rem; }

    /* Beweis-Sektion: Disclaimer kleiner */
    .beweis-disclaimer { font-size: 0.74rem; }
    .payslip-callout { font-size: 0.82rem; }
    .payslip-row { font-size: 0.82rem; }

    /* CTAs in der Beweis-Sektion: stacken */
    .beweis-cta { flex-direction: column; align-items: stretch; }
    .beweis-cta .btn { width: 100%; text-align: center; }
}

/* ===== NART-Band auf Mobile aufräumen ===== */
@media (max-width: 640px) {
    .nart-band { padding: 18px 20px; gap: 16px; }
    .nart-band-text strong { font-size: 1rem; }
    .nart-band-text span { font-size: 0.88rem; }
    .google-reviews { padding: 12px 18px; }
}

/* ===== Reveal-Animationen auf Mobile sicher anschalten ===== */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    .reveal { transition-duration: 0.6s; }
}

/* ===== Beweis: echte (anonymisierte) Bezügemitteilung als Foto ===== */
.payslip-photo {
    margin: 0;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex; flex-direction: column;
}
.payslip-photo.payslip-vorher { border-top: 3px solid #c4736b; }
.payslip-photo.payslip-nachher { border-top: 3px solid var(--accent-green); }
.payslip-photo img {
    display: block;
    width: 100%;
    height: auto;
    background: #fafafa;
}
.payslip-figcap {
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: baseline;
    gap: 8px 16px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-600);
}
.payslip-figcap span { white-space: nowrap; }
.payslip-figcap strong {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-green);
    font-variant-numeric: tabular-nums;
}
.payslip-figcap-tax strong { color: #a14e44; }
.payslip-figcap-success strong { color: var(--accent-green); font-size: 1.05rem; }

/* ===== Beweis: Vertikale Werte-Liste + Marker im Dokument ===== */
.payslip-image-wrap {
    position: relative;
    display: block;
    background: #fafafa;
}
.payslip-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    background: #fafafa;
}
.payslip-marker {
    position: absolute;
    border-radius: 6px;
    pointer-events: none;
    border: 2.5px solid;
    background: transparent;
    z-index: 2;
}
.payslip-vorher .payslip-marker {
    border-color: #c4736b;
    animation: markerPulseRed 2.4s ease-in-out infinite;
}
.payslip-nachher .payslip-marker {
    border-color: var(--accent-green);
    animation: markerPulseGreen 2.4s ease-in-out infinite;
}
.payslip-marker-payout { animation-delay: 0.6s; }
@keyframes markerPulseRed {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196,115,107,0.55), 0 0 0 0 rgba(196,115,107,0); }
    50%      { box-shadow: 0 0 0 4px rgba(196,115,107,0.40), 0 0 0 14px rgba(196,115,107,0); }
}
@keyframes markerPulseGreen {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,83,0.55), 0 0 0 0 rgba(0,200,83,0); }
    50%      { box-shadow: 0 0 0 4px rgba(0,200,83,0.40), 0 0 0 14px rgba(0,200,83,0); }
}

/* Vertikale Wert-Liste (Brutto / Lohnsteuer / Auszahlung) — überschreibt vorigen Flex-Row */
.payslip-figcap {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    padding: 4px 18px 14px !important;
    gap: 0 !important;
    background: #fff !important;
    border-top: 1px solid var(--gray-200);
}
.figcap-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 11px 0;
    border-bottom: 1px solid var(--gray-200);
}
.figcap-row:last-child { border-bottom: none; }
.figcap-label {
    font-size: 0.88rem;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}
.figcap-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gray-700);
    font-variant-numeric: tabular-nums;
    font-size: 1.05rem;
}

/* Lohnsteuer-Zeile: dezent farbig markiert */
.figcap-row-tax {
    margin: 0 -18px;
    padding-left: 22px;
    padding-right: 18px;
    border-left: 3px solid #c4736b;
    background: rgba(196, 115, 107, 0.08);
}
.figcap-row-tax .figcap-label { color: #a14e44; font-weight: 600; }
.figcap-row-tax .figcap-value { color: #a14e44; font-size: 1.18rem; }
.payslip-nachher .figcap-row-tax {
    border-left-color: var(--accent-green);
    background: rgba(0, 200, 83, 0.10);
}
.payslip-nachher .figcap-row-tax .figcap-label { color: var(--accent-green); }
.payslip-nachher .figcap-row-tax .figcap-value { color: var(--accent-green); font-size: 1.35rem; }

/* Auszahlung-Zeile: Total-Stil */
.figcap-row-payout {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 2px solid var(--gray-200);
    border-bottom: none;
}
.figcap-row-payout .figcap-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark-green);
}
.figcap-row-payout .figcap-value {
    font-size: 1.35rem;
    color: var(--dark-green);
    font-weight: 800;
}
.payslip-nachher .figcap-row-payout .figcap-value {
    color: var(--accent-green);
}

/* ===== Beweis: persönliches Statement von Philipp ===== */
.beweis-quote {
    max-width: 880px;
    margin: 0 auto 28px;
    padding: 22px 28px;
    background: var(--sand-lighter);
    border-left: 4px solid var(--olive);
    border-radius: var(--radius);
}
.beweis-quote p {
    font-style: italic;
    margin: 0 0 10px;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.65;
}
.beweis-quote p strong { font-style: normal; color: var(--dark-green); }
.beweis-quote-author {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-green);
    font-size: 0.9rem;
}

/* ===== Termin-Karte: Empathie-Text (Bude/Kameraden) ===== */
.contact-option-empathy {
    font-size: 0.86rem !important;
    line-height: 1.5 !important;
    color: rgba(255,255,255,0.78);
    background: rgba(0, 200, 83, 0.10);
    border-left: 3px solid var(--accent-green);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    margin: 6px 0 14px !important;
    text-align: left;
}
.contact-option-empathy strong { color: #fff; }

/* ===== Section-Rhythmus: helle Akzent-Sektionen für visuelle Trennung ===== */
/* Sand-Hintergründe wechseln sich mit weißen Sektionen ab — gibt der Seite Atemräume */
.rechner-section,
.story-section,
.ablauf-section {
    background: var(--sand-lighter);
}

/* Sanfte Übergänge an Sektions-Grenzen, wo zwei verschiedenfarbige Sektionen treffen */
.beweis-section {
    background: linear-gradient(180deg, var(--sand-lighter) 0%, #fff 100%);
}

/* Subtile Divider-Linie zwischen weißen Sektionen, damit nichts ineinander zerläuft */
.problem-section + .loesung-section,
.vorteile-section + .vorteile-section,
.beispielobjekt-section {
    position: relative;
}
.vorteile-section + .vorteile-section::before,
.beispielobjekt-section::before {
    content: "";
    display: block;
    width: 60px; height: 2px;
    background: var(--olive);
    margin: 0 auto 24px;
    opacity: 0.4;
    position: relative;
    top: 8px;
}

/* Strategie-Sektion (vorteile-section reused) auf weiß für Kontrast nach Rechner (sand) */
#strategie {
    background: #fff;
}
/* Vorteile-Sektion mit dezenten Sand */
#vorteile {
    background: var(--sand-lighter);
}

/* ===== Sanfte SVG-Wave-Übergänge an Tarn-Sektionen ===== */
/* Tarn-Sektionen bekommen unten eine subtile "Welle" zur nächsten hellen Sektion */
.section-tarn {
    position: relative;
    padding-bottom: 96px; /* mehr Atem für die Wave */
}
.section-tarn::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    pointer-events: none;
}

/* Wave-SVG für Tarn → Sand (ehrlichkeit → ablauf) */
.section-tarn::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'><path d='M0,32 C200,16 400,0 600,8 C800,16 1000,32 1200,24 L1200,48 L0,48 Z' fill='%23ece8e2'/></svg>");
}

/* Spezifisch: nach .loesung-section kommt .rechner-section (sand) — perfekt */
/* Spezifisch: nach .authenticity-section kommt .ablauf-section (sand) — perfekt */

/* Header-Anker bei Tarn-Sektionen leicht angehoben (kompensiert Wave-Padding bei #-Links) */
.section-tarn[id] { scroll-margin-top: 0; }

/* ===== Section-Tag Polish: einheitlich, dezent stärker ===== */
.section-tag {
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* ===== Story-Sektion Hintergrund: Sand-Akzent klar abgrenzbar ===== */
.story-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ======================== RENTENLÜCKE ======================== */
.rente-section {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--dark-green-deep) 0%, var(--dark-green) 55%, var(--dark-green-deep) 100%);
    color: var(--sand-lighter);
}
.rente-section .section-tag { background: rgba(196,184,168,0.14); color: var(--sand); }
.rente-section h2 { color: var(--white); }
.rente-section .section-subtitle { color: var(--sand-light); }

.rente-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 28px;
    align-items: start;
    margin-top: 44px;
}
.rente-calc {
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(196,184,168,0.20);
    border-radius: var(--radius);
    overflow: hidden;
}
.rente-calc-head {
    padding: 14px 24px;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(196,184,168,0.20);
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--sand);
}
.rente-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    padding: 13px 24px;
    border-bottom: 1px solid rgba(196,184,168,0.10);
    font-size: 0.95rem;
    color: var(--sand-light);
}
.rente-row:last-child { border-bottom: 0; }
.rente-row b {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.rente-row-total {
    background: rgba(0,200,83,0.10);
    border-top: 1px solid rgba(0,200,83,0.35);
    padding-top: 18px;
    padding-bottom: 18px;
}
.rente-row-total span { color: var(--white); font-weight: 600; }
.rente-row-total b { color: var(--accent-green); font-size: 1.75rem; }

.rente-side { display: flex; flex-direction: column; gap: 16px; }
.rente-variant {
    background: rgba(196,184,168,0.08);
    border: 1px solid rgba(196,184,168,0.18);
    border-radius: var(--radius);
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.rente-variant-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.3rem;
    line-height: 1;
    color: var(--white);
    font-variant-numeric: tabular-nums;
}
.rente-variant-label {
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sand);
}
.rente-note {
    font-size: 0.82rem;
    line-height: 1.62;
    color: rgba(214,205,191,0.72);
    margin: 4px 0 0;
}

.rente-turn {
    margin-top: 36px;
    padding: 28px 32px;
    background: rgba(196,184,168,0.07);
    border: 1px solid rgba(196,184,168,0.18);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.rente-turn p {
    margin: 0;
    flex: 1 1 460px;
    font-size: 1.02rem;
    line-height: 1.68;
    color: var(--sand-lighter);
}
.rente-turn strong { color: var(--white); }

@media (max-width: 900px) {
    .rente-grid { grid-template-columns: 1fr; }
    .rente-side { flex-direction: row; flex-wrap: wrap; }
    .rente-variant { flex: 1 1 160px; }
    .rente-note { flex: 1 1 100%; }
}
@media (max-width: 600px) {
    .rente-section { padding: 70px 0; }
    .rente-row { padding: 12px 16px; font-size: 0.88rem; gap: 12px; }
    .rente-calc-head { padding: 12px 16px; }
    .rente-row-total b { font-size: 1.45rem; }
    .rente-turn { padding: 22px 20px; }
}

/* ======================== RUNDUM-SERVICE ======================== */
.service-section { padding: 96px 0; background: var(--sand-lighter); }
.service-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 44px;
}
.service-step {
    background: var(--white);
    border: 1px solid rgba(90,107,61,0.14);
    border-radius: var(--radius);
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-step-num {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
}
.service-step h3 {
    font-size: 1.09rem;
    margin: 0;
    color: var(--dark-green);
    line-height: 1.3;
}
.service-step p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.62;
    color: var(--gray-500);
}
.service-step strong { color: var(--olive-dark); }
.service-note {
    margin: 30px auto 0;
    max-width: 640px;
    text-align: center;
    font-size: 1.02rem;
    line-height: 1.66;
    color: var(--gray-500);
}

@media (max-width: 980px) { .service-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
    .service-section { padding: 70px 0; }
    .service-steps { grid-template-columns: 1fr; gap: 14px; }
    .service-step { padding: 22px 20px; }
}

/* Rechner v3: Leitzahl-Kachel + versteckte Altfelder */
.nart-kpi-item.nart-kpi-lead {
    background: var(--white) !important;
    border-color: rgba(0,200,83,0.42) !important;
    box-shadow: 0 2px 14px rgba(0,200,83,0.10) !important;
}
.nart-kpi-item.nart-kpi-lead .nart-kpi-value { color: var(--olive-dark) !important; }
.nart-kpi-item.nart-kpi-lead .nart-kpi-value.positive { color: var(--accent-green) !important; }
.nart-multiplier-hidden { display: none !important; }

/* ===== Mobile-Fixes ab 320px ===== */
/* Der Header-CTA war mit 240px zu breit: Logo (53) + Button (240) + Padding (32)
   ergaben 325px bei 320px Viewport und damit 25px horizontalen Ueberlauf. */
@media (max-width: 400px) {
    .header-inner { padding-left: 12px !important; padding-right: 12px !important; }
    .header-nav .btn-header {
        padding: 10px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .header-logo { flex-shrink: 0; }
}

/* Touch-Targets im Cookie-Banner auf 44px (WCAG / Invictus-Standard) */
.cookie-banner button,
.cookie-banner .btn,
#cookieBanner button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Sicherheitsnetz gegen horizontales Scrollen. clip statt hidden, damit
   position:sticky im Header weiter funktioniert. */
html { overflow-x: clip; }
body { overflow-x: clip; }

/* ======================== HERO-WEGWEISER ========================
   Nimmt direkt im Hero vorweg, was auf der Seite kommt - und ist
   gleichzeitig Sprungnavigation in die drei Kernsektionen. */
.hero-wegweiser {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    max-width: 780px;
}
.hero-wegweiser-label {
    grid-column: 1 / -1;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.62);
    padding: 0 0 6px;
    margin: 0;
    border-bottom: 2px solid var(--accent-green);
    justify-self: start;
}
.hero-wegweiser-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-wegweiser-item:hover,
.hero-wegweiser-item:focus-visible {
    background: rgba(255,255,255,0.13);
    border-color: rgba(0,200,83,0.5);
    transform: translateY(-2px);
}
.hero-wegweiser-item strong {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
}
.hero-wegweiser-item span {
    font-size: 0.79rem;
    line-height: 1.42;
    color: rgba(255,255,255,0.78);
}

@media (max-width: 880px) {
    .hero-wegweiser { grid-template-columns: 1fr 1fr; gap: 8px; }
}
@media (max-width: 520px) {
    .hero-wegweiser { grid-template-columns: 1fr; margin-top: 22px; }
    .hero-wegweiser-item { padding: 10px 12px; flex-direction: row; align-items: baseline; gap: 8px; }
    .hero-wegweiser-item strong { flex: 0 0 auto; font-size: 0.94rem; }
    .hero-wegweiser-item span { font-size: 0.76rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-wegweiser-item { transition: none; }
    .hero-wegweiser-item:hover { transform: none; }
}

/* ======================== DREI FRAGEN (EINSTIEG) ======================== */
.fragen-section { padding: 92px 0; background: var(--white); }
.fragen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 42px;
}
.frage-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 26px 24px;
    background: var(--sand-lighter);
    border: 1px solid rgba(90,107,61,0.16);
    border-radius: var(--radius);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.frage-card:hover, .frage-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--olive);
}
.frage-num {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--olive);
}
.frage-card h3 {
    font-size: 1.16rem;
    line-height: 1.32;
    margin: 0;
    color: var(--dark-green);
}
.frage-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.62;
    color: var(--gray-500);
    flex: 1;
}
.frage-link {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--olive);
    margin-top: 4px;
}
.frage-link::after { content: " \2192"; }

/* ======================== WAS WIR VERMITTELN ======================== */
.objekt-section { padding: 96px 0; background: var(--sand-lighter); }
.objekt-merkmale {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 42px;
}
.objekt-merkmal {
    background: var(--white);
    border: 1px solid rgba(90,107,61,0.14);
    border-radius: var(--radius);
    padding: 28px 26px;
}
.objekt-merkmal h3 {
    font-size: 1.18rem;
    margin: 0 0 10px;
    color: var(--dark-green);
    line-height: 1.3;
}
.objekt-merkmal p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.68;
    color: var(--gray-500);
}
.objekt-merkmal strong { color: var(--olive-dark); }

/* Marktdaten */
.markt-block {
    margin-top: 28px;
    background: var(--dark-green-deep);
    border-radius: var(--radius-lg);
    padding: 40px 38px 30px;
    color: var(--sand-lighter);
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 34px;
    align-items: start;
}
.markt-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 0 14px;
    line-height: 1.25;
}
.markt-text p {
    margin: 0 0 12px;
    font-size: 1rem;
    line-height: 1.68;
    color: var(--sand-light);
}
.markt-text strong { color: var(--white); }
.markt-fazit {
    border-left: 2px solid var(--accent-green);
    padding-left: 14px;
    color: var(--sand-lighter) !important;
    font-weight: 500;
}
.markt-zahlen { display: flex; flex-direction: column; gap: 12px; }
.markt-zahl {
    background: rgba(196,184,168,0.08);
    border: 1px solid rgba(196,184,168,0.16);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
}
.markt-zahl strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    line-height: 1;
    color: var(--white);
    font-variant-numeric: tabular-nums;
    margin-bottom: 5px;
}
.markt-zahl span { font-size: 0.85rem; line-height: 1.45; color: var(--sand); }
.markt-zahl-luecke { border-color: rgba(0,200,83,0.35); }
.markt-zahl-luecke strong { color: var(--accent-green); }
.markt-quelle {
    grid-column: 1 / -1;
    margin: 6px 0 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(214,205,191,0.6);
}

@media (max-width: 900px) {
    .fragen-grid { grid-template-columns: 1fr; gap: 14px; }
    .objekt-merkmale { grid-template-columns: 1fr; }
    .markt-block { grid-template-columns: 1fr; gap: 24px; padding: 30px 24px 24px; }
}
@media (max-width: 560px) {
    .fragen-section, .objekt-section { padding: 68px 0; }
    .frage-card { padding: 22px 20px; }
    .objekt-merkmal { padding: 22px 20px; }
    .markt-zahl strong { font-size: 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
    .frage-card { transition: none; }
    .frage-card:hover { transform: none; }
}

/* ======================== SEKTIONS-CTA ========================
   Wiederkehrender Abschluss je Sektion. Bewusst zurueckhaltend:
   eine Zeile plus Button, kein zweiter Hero. */
.sektion-cta {
    margin-top: 44px;
    padding-top: 26px;
    border-top: 1px solid rgba(90,107,61,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    text-align: center;
}
.sektion-cta p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--gray-500);
    max-width: 46ch;
}
/* Auf dunklen Sektionen die Kontraste drehen */
.rente-section .sektion-cta,
.markt-block ~ .sektion-cta,
.section-tarn .sektion-cta,
.objekt-section .sektion-cta {
    border-top-color: rgba(196,184,168,0.22);
}
.rente-section .sektion-cta p,
.section-tarn .sektion-cta p {
    color: var(--sand-light);
}
@media (max-width: 620px) {
    .sektion-cta { flex-direction: column; gap: 16px; margin-top: 32px; padding-top: 22px; }
    .sektion-cta p { font-size: 0.96rem; }
    .sektion-cta .btn { width: 100%; max-width: 340px; }
}

/* ======================== AUSSCHEIDERGELD-VERGLEICH ======================== */
.exit-vergleich {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 22px;
    align-items: stretch;
    margin: 40px 0 28px;
}
.exit-spalte {
    padding: 28px 26px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Die Sektion hat hellen Grund - Farben entsprechend, nicht auf Dunkel gebaut. */
.exit-ohne {
    background: var(--gray-100);
    border: 1px solid rgba(90,107,61,0.14);
}
.exit-mit {
    background: rgba(0,200,83,0.07);
    border: 1px solid rgba(0,200,83,0.38);
}
.exit-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-400);
}
.exit-zahl {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gray-400);
}
/* Kein #00c853 als Text auf Weiss - Kontrast nur rund 2:1. Dunkleres Gruen
   traegt dieselbe Bedeutung und erfuellt WCAG AA. */
.exit-mit .exit-zahl { color: #0b7a3b; }
.exit-mit .exit-label { color: #0b7a3b; }
.exit-spalte p {
    margin: 4px 0 0;
    font-size: 0.94rem;
    line-height: 1.62;
    color: var(--gray-500);
}
.exit-pfeil {
    align-self: center;
    color: var(--olive);
    display: flex;
}

.fragen-ueberleitung {
    margin: 34px auto 0;
    max-width: 56ch;
    text-align: center;
    font-size: 1.02rem;
    line-height: 1.66;
    color: var(--gray-500);
}
.strat-beleg {
    margin: 22px 0 0;
    font-size: 0.98rem;
    line-height: 1.66;
    color: var(--gray-500);
}
.strat-beleg strong { color: var(--dark-green); }
.strat-beleg a { color: #0b7a3b; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 800px) {
    .exit-vergleich { grid-template-columns: 1fr; gap: 14px; }
    .exit-pfeil { transform: rotate(90deg); justify-self: center; }
    .exit-spalte { padding: 22px 20px; }
    .exit-zahl { font-size: 1.7rem; }
}

/* ======================== ETF VS. IMMOBILIE ======================== */
.vergleich-section { padding: 96px 0; background: var(--white); }
.vgl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 42px;
}
.vgl-karte {
    border: 1px solid rgba(90,107,61,0.16);
    border-radius: var(--radius);
    padding: 28px 26px 24px;
    background: var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vgl-karte-stark {
    background: rgba(0,200,83,0.055);
    border-color: rgba(0,200,83,0.36);
}
.vgl-label {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-400);
    font-weight: 600;
}
.vgl-karte-stark .vgl-label { color: #0b7a3b; }
.vgl-zeilen { display: flex; flex-direction: column; }
.vgl-zeile {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(90,107,61,0.10);
    font-size: 0.93rem;
    color: var(--gray-500);
}
.vgl-zeile b {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-green);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.vgl-summe {
    border-bottom: 0;
    border-top: 2px solid rgba(90,107,61,0.22);
    margin-top: 6px;
    padding-top: 13px;
}
.vgl-summe span { font-weight: 600; color: var(--gray-600); }
.vgl-summe b { font-size: 1.32rem; }
.vgl-karte-stark .vgl-summe { border-top-color: rgba(0,200,83,0.4); }
.vgl-karte-stark .vgl-summe b { color: #0b7a3b; }
.vgl-note {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--gray-400);
}
.vgl-note strong { color: var(--gray-600); }

.vgl-fazit {
    margin-top: 28px;
    background: var(--sand-lighter);
    border-radius: var(--radius);
    padding: 30px 32px;
}
.vgl-fazit h3 { margin: 0 0 12px; font-size: 1.28rem; color: var(--dark-green); }
.vgl-fazit p { margin: 0 0 14px; font-size: 1rem; line-height: 1.7; color: var(--gray-500); }
.vgl-fazit p:last-child { margin: 0; }
.vgl-fazit strong { color: var(--dark-green); }
.vgl-fair {
    border-left: 3px solid var(--olive);
    padding-left: 16px;
    font-size: 0.94rem !important;
}

/* ======================== WOFÜR DAS GANZE ======================== */
.traum-section {
    padding: 96px 0;
    background: linear-gradient(150deg, var(--dark-green-deep) 0%, var(--dark-green) 60%, var(--dark-green-deep) 100%);
    color: var(--sand-lighter);
}
.traum-section h2 { color: var(--white); }
.traum-section .section-subtitle { color: var(--sand-light); }
.traum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 42px;
}
.traum-karte {
    background: rgba(196,184,168,0.07);
    border: 1px solid rgba(196,184,168,0.18);
    border-radius: var(--radius);
    padding: 28px 26px;
}
.traum-karte h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.28;
}
.traum-karte p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.68;
    color: var(--sand-light);
}

@media (max-width: 880px) {
    .vgl-grid { grid-template-columns: 1fr; }
    .traum-grid { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 560px) {
    .vergleich-section, .traum-section { padding: 68px 0; }
    .vgl-karte { padding: 22px 20px; }
    .vgl-fazit { padding: 24px 20px; }
    .vgl-zeile { font-size: 0.87rem; gap: 10px; }
    .traum-karte { padding: 22px 20px; }
}

/* ======================== GRÜNDER-ZITAT ======================== */
.zitat-section {
    padding: 64px 0;
    background: var(--sand-lighter);
    border-bottom: 1px solid rgba(90,107,61,0.12);
}
.zitat-block {
    margin: 0 auto;
    max-width: 840px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.zitat-block blockquote { margin: 0; }
.zitat-block blockquote p {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.18rem, 2.5vw, 1.62rem);
    line-height: 1.42;
    color: var(--dark-green);
    text-wrap: balance;
}
.zitat-block figcaption {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.zitat-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--olive-dark);
}
.zitat-rolle {
    font-size: 0.86rem;
    color: var(--gray-400);
}
/* Platzhalter-Regel: sobald ein echtes Philipp-Foto vorliegt, hier als
   runder Avatar über dem Zitat einsetzen (.zitat-foto img, 72px, border-radius 50%). */
.zitat-foto img {
    width: 72px; height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(90,107,61,0.25);
}
@media (max-width: 560px) {
    .zitat-section { padding: 46px 0; }
}

/* Hero: Anmoderation über den Buttons */
.hero-cta-frage {
    margin: 26px 0 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.06rem;
    letter-spacing: 0.01em;
    color: var(--white);
}
@media (max-width: 560px) {
    .hero-cta-frage { margin: 20px 0 8px; font-size: 1rem; }
}

/* Im Hero-Lead traegt nur die Kernzahl die Akzentfarbe. Zwei weitere
   Hervorhebungen bleiben betont, aber in Textfarbe - sonst sind ueber 30 %
   des Absatzes gruen und der Blick findet keinen Halt mehr. */
.hero-lead b {
    font-weight: 700;
    color: var(--white);
}

/* Hero: vier Kernpunkte statt Fliesstext */
.hero-punkte {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-width: 620px;
}
.hero-punkte li {
    position: relative;
    padding-left: 28px;
    font-size: 1.04rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}
.hero-punkte li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.58em;
    width: 11px;
    height: 2px;
    background: var(--accent-green);
}
.hero-punkte strong { color: var(--accent-green); font-weight: 700; white-space: nowrap; }
@media (max-width: 560px) {
    .hero-punkte li { font-size: 0.97rem; padding-left: 22px; }
    .hero-punkte li::before { width: 8px; }
}

/* Service-Schritte untereinander statt nebeneinander: auf dem Handy stehen sie
   ohnehin so, und als Abfolge liest sich ein Ablauf besser als ein Raster. */
.service-steps {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.service-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 6px 20px;
    align-items: start;
    padding: 24px 26px;
}
.service-step-num {
    grid-row: 1 / 3;
    margin-bottom: 0;
}
.service-step h3 { align-self: center; }
.service-step p { grid-column: 2; }
@media (max-width: 560px) {
    .service-step { grid-template-columns: 38px 1fr; gap: 6px 14px; padding: 20px 18px; }
    .service-step-num { width: 34px; height: 34px; font-size: 0.95rem; }
}

/* Merkmal-Tag: kennzeichnet, ob ein Punkt fuer Neubau oder Bestand gilt */
.merkmal-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 3px;
    background: rgba(90,107,61,0.12);
    color: var(--olive-dark);
    margin-right: 9px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}
.merkmal-tag-alt {
    background: rgba(107,83,68,0.14);
    color: var(--brown);
}

/* ======================== KURZFASSUNG (start.html) ======================== */
.eintragen-section {
    padding: 68px 0;
    background: var(--sand-lighter);
    border-top: 1px solid rgba(90,107,61,0.12);
    border-bottom: 1px solid rgba(90,107,61,0.12);
}
.eintragen-kopf {
    max-width: 640px;
    margin: 0 auto 30px;
    text-align: center;
}
.eintragen-kopf h2 {
    font-size: clamp(1.5rem, 3vw, 2.05rem);
    line-height: 1.22;
    margin: 0 0 12px;
    color: var(--dark-green);
    text-wrap: balance;
}
.eintragen-kopf p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--gray-500);
}
/* Das Formular steht hier immer offen, nicht erst nach Klick */
.eintragen-section .multistep-form {
    display: block !important;
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(90,107,61,0.16);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    box-shadow: var(--shadow-sm);
}
.eintragen-section .form-step { display: none; }
.eintragen-section .form-step.active { display: block; }
.eintragen-section .form-success { display: none; }
.eintragen-section .form-success.active { display: flex; }

@media (max-width: 560px) {
    .eintragen-section { padding: 48px 0; }
    .eintragen-section .multistep-form { padding: 24px 18px; }
    .eintragen-kopf { margin-bottom: 22px; }
}

/* Das Lead-Formular ist der Kern der Kurzseite und darf nicht von einer
   Scroll-Animation abhaengen: Wenn JavaScript aussetzt, waere es sonst
   unsichtbar und die Seite ohne Funktion. */
.eintragen-section .multistep-form,
.eintragen-section .multistep-form.reveal {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Die Kurzseite nutzt eigene Klassennamen fuer die Formularschritte, damit
   main.js (das mit festen IDs auf .form-step arbeitet) nicht dazwischenfunkt. */
.eintragen-section .lead-step { display: none; }
.eintragen-section .lead-step.active { display: block; }
.eintragen-section .lead-success { display: none; }
.eintragen-section .lead-success.active { display: flex; }
.eintragen-section .lead-progress { display: flex; }

/* ======================== EIGNUNGS-CHECK ========================
   Eigenstaendige Seite, eine Frage pro Bildschirm. Branding der Kampagne:
   Olive/Sand, Montserrat/Inter, Signalgruen nur fuer Aktion und Ergebnis. */
.check-body { background: var(--sand-lighter); }

.check-header {
    background: var(--dark-green-deep);
    padding: 16px 0;
}
.check-header-inner { display: flex; align-items: center; }
.check-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.check-logo img { height: 26px; width: auto; opacity: 0.95; }
.check-logo span {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sand);
}

.check-fortschritt-leiste {
    height: 4px;
    background: rgba(90,107,61,0.18);
}
.check-fortschritt {
    height: 100%;
    width: 0;
    background: var(--accent-green);
    transition: width 0.35s ease;
}

.check-main { padding: 0 0 80px; min-height: 70vh; }
.check-container { max-width: 660px; padding-top: 44px; }
.check-zaehler {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--olive);
    font-weight: 700;
    margin-bottom: 18px;
}
.check-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--olive-dark);
    background: rgba(90,107,61,0.12);
    padding: 5px 11px;
    border-radius: 3px;
    margin-bottom: 16px;
}

.check-start h1 {
    font-size: clamp(1.7rem, 4.4vw, 2.6rem);
    line-height: 1.16;
    margin: 0 0 16px;
    color: var(--dark-green);
    text-wrap: balance;
}
.check-lead {
    font-size: 1.06rem;
    line-height: 1.66;
    color: var(--gray-500);
    margin: 0 0 26px;
}
.check-meta {
    font-size: 0.86rem;
    color: var(--gray-400);
    margin: 14px 0 0;
}
.check-vorteile {
    list-style: none;
    margin: 30px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(90,107,61,0.16);
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.check-vorteile li {
    position: relative;
    padding-left: 26px;
    font-size: 0.94rem;
    color: var(--gray-500);
}
.check-vorteile li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.55em;
    width: 12px; height: 2px;
    background: var(--olive);
}

/* Fragen */
.check-frage-titel {
    font-size: clamp(1.4rem, 3.4vw, 2rem);
    line-height: 1.22;
    margin: 0 0 10px;
    color: var(--dark-green);
    text-wrap: balance;
}
.check-hinweis {
    font-size: 0.96rem;
    color: var(--gray-400);
    margin: 0 0 26px;
}
.check-optionen { display: flex; flex-direction: column; gap: 11px; }
.check-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    text-align: left;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid rgba(90,107,61,0.18);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1.02rem;
    color: var(--dark-green);
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    min-height: 62px;
}
.check-option:hover, .check-option:focus-visible {
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.check-option svg { color: var(--olive); flex-shrink: 0; }
.check-option:hover svg { color: var(--accent-green); }
.check-zurueck {
    margin-top: 22px;
    background: none;
    border: 0;
    color: var(--gray-400);
    font-family: var(--font-body);
    font-size: 0.92rem;
    cursor: pointer;
    padding: 6px 0;
}
.check-zurueck::before { content: "\2190  "; }
.check-zurueck:hover { color: var(--olive); }

/* Ergebnis */
.check-ergebnis-titel {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    line-height: 1.18;
    margin: 0 0 14px;
    color: var(--dark-green);
}
.check-ergebnis[data-ton="gut"] .check-ergebnis-titel { color: #0b7a3b; }
.check-ergebnis-text {
    font-size: 1.04rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin: 0 0 30px;
}
.check-abschluss, .check-danke {
    background: var(--white);
    border: 1px solid rgba(90,107,61,0.18);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
}
.check-abschluss h3, .check-danke h3 {
    margin: 0 0 8px;
    font-size: 1.24rem;
    color: var(--dark-green);
}
.check-abschluss > p, .check-danke p {
    margin: 0 0 22px;
    font-size: 0.98rem;
    line-height: 1.64;
    color: var(--gray-500);
}
.check-danke p { margin-bottom: 0; }
.check-felder { display: flex; flex-direction: column; gap: 6px; }
.check-felder label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 10px;
}
.check-felder input {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 13px 15px;
    border: 1px solid rgba(90,107,61,0.24);
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    color: var(--dark-green);
}
.check-felder input:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 1px;
    background: var(--white);
}
.check-felder input.error { border-color: #c0392b; }
.check-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 20px 0 22px;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--gray-500);
    cursor: pointer;
}
.check-consent input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; }
.check-consent a { color: var(--olive-dark); }
.check-abschluss .btn { width: 100%; }

@media (max-width: 560px) {
    .check-container { padding-top: 30px; }
    .check-main { padding-bottom: 54px; }
    .check-option { padding: 17px 18px; font-size: 0.97rem; min-height: 58px; }
    .check-abschluss, .check-danke { padding: 24px 20px; }
    .check-logo span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .check-option, .check-fortschritt { transition: none; }
    .check-option:hover { transform: none; }
}

/* ======================== EIGNUNGS-CHECK, eingebettet ========================
   Auf der Kurzfassung sitzt der Check in einer Sektion statt auf einer eigenen
   Seite: Fortschritt gehoert in die Karte, nicht an den Viewport-Rand. */
.check-inline .check-fortschritt-leiste {
    height: 3px;
    background: rgba(90,107,61,0.16);
    border-radius: 2px;
    max-width: 680px;
    margin: 0 auto 8px;
}
.check-inline .check-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
    background: var(--white);
    border: 1px solid rgba(90,107,61,0.16);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
}
.check-inline .check-zaehler { margin-bottom: 14px; }
.check-inline-titel {
    font-size: clamp(1.25rem, 2.8vw, 1.6rem);
    line-height: 1.24;
    margin: 0 0 12px;
    color: var(--dark-green);
}
.check-inline .check-lead { font-size: 0.99rem; margin-bottom: 20px; }
.check-inline .check-vorteile { margin-top: 22px; padding-top: 18px; }
.check-inline .check-frage-titel { font-size: clamp(1.2rem, 2.7vw, 1.55rem); }
.check-inline .check-abschluss,
.check-inline .check-danke {
    border: 0;
    padding: 24px 0 0;
    border-top: 1px solid rgba(90,107,61,0.16);
    border-radius: 0;
    background: transparent;
}
.check-inline .check-ergebnis-titel { font-size: clamp(1.35rem, 3vw, 1.85rem); }
.check-inline .check-start { text-align: left; }

@media (max-width: 560px) {
    .check-inline .check-container { padding: 22px 18px; }
}
