/*
Theme Name: WZTH Premium
Theme URI: https://wegzumtraumhaus.de/
Author: ProCon Solutions
Author URI: https://wegzumtraumhaus.de/
Description: Premium Theme für wegzumtraumhaus.de
Version: 1.0.0
Text Domain: wzth-premium
Requires at least: 6.0
Requires PHP: 8.0
*/

:root {
    --wzth-bg: #f6f3ee;
    --wzth-surface: #ffffff;
    --wzth-surface-soft: #fbf8f3;
    --wzth-text: #17202a;
    --wzth-text-soft: #5e6874;
    --wzth-border: #ddd4c7;
    --wzth-accent: #9a7746;
    --wzth-accent-dark: #7d5f36;
    --wzth-shadow: 0 24px 60px rgba(23, 32, 42, 0.10);
    --wzth-radius-xl: 28px;
    --wzth-radius-lg: 20px;
    --wzth-radius-md: 14px;
    --wzth-radius-sm: 10px;
    --wzth-container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--wzth-bg);
    color: var(--wzth-text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    min-height: 100vh;
}

.wzth-container {
    width: min(100% - 32px, var(--wzth-container));
    margin: 0 auto;
}

/* =========================
   HEADER
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(246, 243, 238, 0.86);
    border-bottom: 1px solid rgba(23, 32, 42, 0.06);
}

.site-header__top,
.site-header__bottom {
    display: flex;
    align-items: center;
}

.site-header__top {
    justify-content: space-between;
    min-height: 52px;
    padding-top: 10px;
}

.site-header__bottom {
    min-height: 82px;
    padding-bottom: 12px;
}

.site-header__top-spacer {
    flex: 1 1 auto;
}

.site-header__top--funnel {
    justify-content: space-between;
    gap: 16px;
}

.site-header__bottom-inner {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.site-header__process {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.site-brand--aligned {
    justify-content: flex-start;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo {
    display: block;
    width: auto;
    max-height: 78px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--wzth-text-soft);
    font-weight: 500;
}

.site-nav a:hover {
    color: var(--wzth-text);
}

.site-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 22px;
white-space: nowrap;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--wzth-accent) 0%, var(--wzth-accent-dark) 100%);
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(125, 95, 54, 0.24);
}

.site-nav--funnel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.site-nav__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(23, 32, 42, 0.10);
    background: rgba(255, 255, 255, 0.72);
    color: var(--wzth-text-soft);
    font-weight: 600;
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.site-nav__back:hover {
    transform: translateY(-1px);
    color: var(--wzth-text);
    border-color: rgba(23, 32, 42, 0.16);
}

.site-process-indicator {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 32, 42, 0.08);
    color: var(--wzth-text-soft);
    line-height: 1.35;
}

.site-process-indicator__label {
    color: var(--wzth-accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-process-indicator__step {
    font-weight: 700;
    color: var(--wzth-text);
}

.site-process-indicator__title {
    color: var(--wzth-text-soft);
}

/* =========================
   HERO + GENERAL SECTIONS
   ========================= */

.hero {
    padding: 56px 0 28px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.hero__content {
    min-width: 0;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(154, 119, 70, 0.12);
    color: var(--wzth-accent-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero__title {
    margin: 18px 0 16px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero__title span {
    color: var(--wzth-accent-dark);
}

.hero__lead {
    max-width: 62ch;
    margin: 0 0 22px;
    color: var(--wzth-text-soft);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hero__meta-item {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(23, 32, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.70);
    color: var(--wzth-text-soft);
    font-size: 0.95rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.wzth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wzth-btn:hover {
    transform: translateY(-1px);
}

.wzth-btn--primary {
    background: linear-gradient(180deg, var(--wzth-accent) 0%, var(--wzth-accent-dark) 100%);
    color: #fff;
    box-shadow: 0 14px 34px rgba(125, 95, 54, 0.26);
}

.wzth-btn--ghost {
    border: 1px solid rgba(23, 32, 42, 0.10);
    background: rgba(255, 255, 255, 0.72);
    color: var(--wzth-text);
}

.hero__panel {
    background: var(--wzth-surface);
    border: 1px solid rgba(23, 32, 42, 0.07);
    border-radius: var(--wzth-radius-xl);
    box-shadow: var(--wzth-shadow);
    padding: 24px;
}

.hero__image {
    margin: 0 0 18px;
    overflow: hidden;
    border-radius: var(--wzth-radius-lg);
}

.hero__image img {
    display: block;
    width: 100%;
    height: auto;
}

.hero__panel h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.2;
}

.hero__panel p {
    margin: 0 0 18px;
    color: var(--wzth-text-soft);
}

.hero__panel-list {
    display: grid;
    gap: 14px;
}

.hero__panel-item {
    padding: 14px 16px;
    border-radius: var(--wzth-radius-md);
    background: var(--wzth-surface-soft);
    border: 1px solid rgba(154, 119, 70, 0.12);
}

.hero__panel-item strong {
    display: block;
    margin-bottom: 4px;
}

.trust-strip {
    padding: 8px 0 20px;
}

.trust-strip__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.trust-strip__item {
    padding: 14px 16px;
    border-radius: var(--wzth-radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 32, 42, 0.07);
    color: var(--wzth-text-soft);
    font-weight: 600;
}

.section {
    padding: 28px 0;
}

.section__head {
    max-width: 760px;
    margin-bottom: 24px;
}

.section__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--wzth-accent-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section__title {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.section__lead {
    margin: 0;
    color: var(--wzth-text-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}

.proof-grid,
.promise-grid,
.difference-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.proof-card,
.promise-card,
.difference-card,
.faq-card {
    padding: 22px;
    background: var(--wzth-surface);
    border: 1px solid rgba(23, 32, 42, 0.07);
    border-radius: var(--wzth-radius-lg);
    box-shadow: 0 10px 28px rgba(23, 32, 42, 0.04);
}

.proof-card h3,
.promise-card h3,
.difference-card h3,
.faq-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.2;
}

.proof-card p,
.promise-card p,
.difference-card p,
.faq-card p {
    margin: 0;
    color: var(--wzth-text-soft);
}

.section--personal-trust {
    padding-top: 10px;
}

.personal-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: var(--wzth-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(251, 248, 243, 0.95) 100%);
    border: 1px solid rgba(23, 32, 42, 0.06);
    box-shadow: var(--wzth-shadow);
}

.personal-trust__media img,
.personal-trust__placeholder {
    display: block;
    width: 100%;
    border-radius: 24px;
    background: #eae5dd;
}

.personal-trust__placeholder {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wzth-text-soft);
    font-weight: 700;
}

.personal-trust__role {
    margin: -4px 0 14px;
    color: var(--wzth-accent-dark);
    font-weight: 600;
}

.personal-trust__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.personal-trust__point {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 32, 42, 0.08);
    color: var(--wzth-text-soft);
    font-size: 0.92rem;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.image-grid__item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--wzth-radius-lg);
    background: var(--wzth-surface);
    border: 1px solid rgba(23, 32, 42, 0.07);
    box-shadow: 0 10px 28px rgba(23, 32, 42, 0.04);
}

.image-grid__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consulting {
    padding: 36px 0;
}

.consulting__box {
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(251, 248, 243, 0.95) 100%);
    border: 1px solid rgba(23, 32, 42, 0.06);
    border-radius: var(--wzth-radius-xl);
    box-shadow: var(--wzth-shadow);
}

.consulting__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.consulting__text p {
    margin: 0 0 14px;
    color: var(--wzth-text-soft);
}

.consulting__list {
    display: grid;
    gap: 12px;
}

.consulting__item {
    padding: 14px 16px;
    border-radius: var(--wzth-radius-md);
    background: #fff;
    border: 1px solid rgba(154, 119, 70, 0.14);
}

.cta-band {
    padding: 12px 0 22px;
}

.cta-band__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
    padding: 28px;
    border-radius: var(--wzth-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(251, 248, 243, 0.95) 100%);
    border: 1px solid rgba(23, 32, 42, 0.06);
    box-shadow: var(--wzth-shadow);
}

.cta-band__action {
    display: flex;
    align-items: center;
}

.form-section {
    padding: 40px 0 56px;
}

.form-frame {
    padding: 20px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(23, 32, 42, 0.05);
}

.form-frame--elevated {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(251, 248, 243, 0.96) 100%);
    box-shadow: var(--wzth-shadow);
}

/* =========================
   GENERIC PAGE
   ========================= */

.wzth-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 12px 0 28px;
}

.wzth-page__header {
    margin-bottom: 22px;
}

.wzth-page__title {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.wzth-page__content {
    padding: 28px;
    background: var(--wzth-surface);
    border: 1px solid rgba(23, 32, 42, 0.07);
    border-radius: var(--wzth-radius-xl);
    box-shadow: var(--wzth-shadow);
}

.wzth-page__content > *:first-child {
    margin-top: 0;
}

.wzth-page__content > *:last-child {
    margin-bottom: 0;
}

.wzth-page__content p,
.wzth-page__content li {
    color: var(--wzth-text-soft);
    line-height: 1.8;
}

.wzth-page__content h2,
.wzth-page__content h3,
.wzth-page__content h4 {
    color: var(--wzth-text);
    line-height: 1.2;
    margin-top: 1.4em;
}

/* =========================
   SIGNATURE / CONTACT BLOCK
   ========================= */

.signature-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: var(--wzth-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(251, 248, 243, 0.96) 100%);
    border: 1px solid rgba(23, 32, 42, 0.06);
    box-shadow: var(--wzth-shadow);
}

.signature-card__media img,
.signature-card__placeholder {
    display: block;
    width: 100%;
    max-width: 220px;
    border-radius: 24px;
    background: #eae5dd;
}

.signature-card__placeholder {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wzth-text-soft);
    font-weight: 700;
}

.signature-card__name {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.signature-card__role {
    margin: 0 0 14px;
    color: var(--wzth-accent-dark);
    font-weight: 600;
    line-height: 1.5;
}

.signature-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.signature-card__meta-item {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(23, 32, 42, 0.08);
    color: var(--wzth-text-soft);
    font-size: 0.92rem;
}

/* =========================
   PROJECT STAGE LAYOUT
   ========================= */

.project-stage-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.project-stage-layout__intro,
.project-stage-layout__form {
    min-width: 0;
}

.project-stage-note {
    margin-top: 20px;
    padding: 20px;
    border-radius: var(--wzth-radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(251, 248, 243, 0.95) 100%);
    border: 1px solid rgba(23, 32, 42, 0.07);
    box-shadow: 0 10px 28px rgba(23, 32, 42, 0.04);
}

.project-stage-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--wzth-text);
    font-size: 1rem;
}

.project-stage-note p {
    margin: 0;
    color: var(--wzth-text-soft);
    line-height: 1.7;
}

.project-stage-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.project-stage-point {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(23, 32, 42, 0.08);
    color: var(--wzth-text-soft);
    font-size: 0.92rem;
}

/* =========================
   FORM SYSTEM
   ========================= */

.wzth-form-card--embedded {
    width: 100%;
    max-width: none;
    background: var(--wzth-surface);
    border: 1px solid rgba(23, 32, 42, 0.08);
    border-radius: var(--wzth-radius-xl);
    box-shadow: var(--wzth-shadow);
    overflow: hidden;
}

.wzth-form-card--embedded .wzth-form-card__head {
    padding: 30px 30px 22px;
    border-bottom: 1px solid rgba(24, 32, 42, 0.08);
    background: linear-gradient(180deg, rgba(154, 119, 70, 0.08) 0%, rgba(154, 119, 70, 0.03) 100%);
}

.wzth-form-card--embedded .wzth-form-step {
    display: inline-block;
    color: var(--wzth-accent-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wzth-form-card--embedded .wzth-form-card__head h3 {
    margin: 8px 0 10px;
    font-size: 1.55rem;
    line-height: 1.2;
    color: var(--wzth-text);
}

.wzth-form-card--embedded .wzth-form-card__head p {
    margin: 0;
    color: var(--wzth-text-soft);
    line-height: 1.65;
}

.wzth-form-card--embedded .wzth-form {
    padding: 30px;
    margin: 0;
}

.wzth-form-card--embedded .wzth-form-grid {
    display: grid;
    gap: 18px;
}

.wzth-form-card--embedded .wzth-form-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wzth-form-card--embedded .wzth-field {
    margin: 0 0 18px;
    min-width: 0;
}

.wzth-form-card--embedded .wzth-field label {
    display: block;
    margin: 0 0 8px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--wzth-text);
}

.wzth-form-card--embedded .wzth-field input,
.wzth-form-card--embedded .wzth-field select,
.wzth-form-card--embedded .wzth-field textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid var(--wzth-border);
    border-radius: var(--wzth-radius-sm);
    background: #fff;
    color: var(--wzth-text);
    font: inherit;
    line-height: 1.45;
    box-shadow: none;
    appearance: none;
}

.wzth-form-card--embedded .wzth-field textarea {
    min-height: 140px;
    resize: vertical;
}

.wzth-form-card--embedded .wzth-field input:focus,
.wzth-form-card--embedded .wzth-field select:focus,
.wzth-form-card--embedded .wzth-field textarea:focus {
    outline: none;
    border-color: var(--wzth-accent);
    box-shadow: 0 0 0 4px rgba(154, 119, 70, 0.12);
}

.wzth-form-card--embedded .wzth-field select {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--wzth-text-soft) 50%),
        linear-gradient(135deg, var(--wzth-text-soft) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 2px),
        calc(100% - 16px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 46px;
}

.wzth-form-card--embedded .wzth-form-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 6px 0 22px;
}

.wzth-form-card--embedded .wzth-form-meta__item {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid rgba(24, 32, 42, 0.10);
    border-radius: 999px;
    background: var(--wzth-surface-soft);
    color: var(--wzth-text-soft);
    font-size: 0.92rem;
    line-height: 1.35;
}

.wzth-form-card--embedded .wzth-form-actions {
    display: grid;
    gap: 10px;
}

.wzth-form-card--embedded .wzth-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--wzth-accent) 0%, var(--wzth-accent-dark) 100%);
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(124, 95, 54, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.wzth-form-card--embedded .wzth-button:hover,
.wzth-form-card--embedded .wzth-button:focus {
    transform: translateY(-1px);
}

.wzth-form-card--embedded .wzth-button[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wzth-form-card--embedded .wzth-button[disabled]:hover,
.wzth-form-card--embedded .wzth-button[disabled]:focus {
    transform: none;
}

.wzth-form-card--embedded .wzth-form-note {
    margin: 0;
    color: var(--wzth-text-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}

.wzth-form-notice {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: var(--wzth-radius-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.wzth-form-notice--error {
    background: rgba(176, 42, 55, 0.08);
    border: 1px solid rgba(176, 42, 55, 0.18);
    color: #7f1d1d;
}

.wzth-form-notice--warning {
    background: rgba(154, 119, 70, 0.10);
    border: 1px solid rgba(154, 119, 70, 0.20);
    color: var(--wzth-accent-dark);
}

.wzth-field--honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.wzth-consent {
    margin: 6px 0 22px;
}

.wzth-consent__label {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--wzth-text-soft);
    line-height: 1.65;
    cursor: pointer;
}

.wzth-consent__label input[type="checkbox"] {
    margin: 3px 0 0;
    width: 18px;
    height: 18px;
    accent-color: var(--wzth-accent-dark);
}

/* =========================
   STAGE 2 – QUIETER EMBEDDED
   ========================= */

.wzth-form-card--embedded-plain {
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.wzth-form-card--embedded-plain .wzth-form {
    padding: 0;
}

.project-stage-layout .wzth-form {
    margin: 0;
}

.project-stage-layout .wzth-form-card--embedded-plain .wzth-form-meta {
    margin: 0 0 22px;
}

.project-stage-layout .wzth-form-card--embedded-plain .wzth-field {
    margin-bottom: 20px;
}

.project-stage-layout .wzth-form-card--embedded-plain .wzth-field label {
    margin-bottom: 9px;
    font-size: 0.98rem;
}

.project-stage-layout .wzth-form-card--embedded-plain .wzth-field input,
.project-stage-layout .wzth-form-card--embedded-plain .wzth-field select,
.project-stage-layout .wzth-form-card--embedded-plain .wzth-field textarea {
    background: rgba(255, 255, 255, 0.92);
}

.project-stage-layout .wzth-form-card--embedded-plain .wzth-form-actions {
    gap: 12px;
    margin-top: 4px;
}

.project-stage-layout .wzth-form-card--embedded-plain .wzth-button {
    width: 100%;
}

/* =========================
   LEGAL
   ========================= */

.wzth-page--legal .wzth-page__content {
    padding: 34px;
}

.legal-block + .legal-block {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid rgba(23, 32, 42, 0.08);
}

.legal-block h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--wzth-text);
}

.legal-block h3 {
    margin: 22px 0 10px;
    font-size: 1.05rem;
    line-height: 1.3;
    color: var(--wzth-text);
}

.legal-block p {
    margin: 0 0 14px;
    color: var(--wzth-text-soft);
    line-height: 1.8;
}

.legal-block ul {
    margin: 0 0 14px 20px;
    padding: 0;
}

.legal-block li {
    margin: 0 0 8px;
    color: var(--wzth-text-soft);
    line-height: 1.7;
}

.legal-note {
    margin-top: 30px;
    padding: 18px 20px;
    border-radius: var(--wzth-radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(251, 248, 243, 0.96) 100%);
    border: 1px solid rgba(23, 32, 42, 0.08);
}

.legal-note p {
    margin: 0;
    color: var(--wzth-text-soft);
    line-height: 1.7;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
    padding: 44px 0 56px;
    color: var(--wzth-text-soft);
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(23, 32, 42, 0.08);
}

.site-footer__brand-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.site-footer__brand-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
}

.site-footer__logo .custom-logo {
    max-height: 62px;
    width: auto;
}

.site-footer__brand {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--wzth-text);
    margin-bottom: 4px;
}

.site-footer__subbrand {
    color: var(--wzth-text-soft);
    line-height: 1.6;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
}

.site-footer__nav a {
    color: var(--wzth-text-soft);
    font-weight: 500;
    white-space: nowrap;
}

.site-footer__nav a:hover {
    color: var(--wzth-text);
}

.site-footer__legal {
    color: var(--wzth-text-soft);
    line-height: 1.7;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 767px) {
    .wzth-page__content {
        padding: 20px;
    }

    .site-header__top {
        min-height: 46px;
        padding-top: 8px;
    }

    .site-header__bottom {
        min-height: 72px;
        padding-bottom: 10px;
    }

    .site-header__bottom-inner {
        justify-content: center;
    }

    .custom-logo {
        max-height: 68px;
    }

    .site-nav {
        gap: 12px;
    }

    .site-nav a {
        font-size: 0.94rem;
    }

    .site-nav__back {
        min-height: 40px;
        padding: 8px 14px;
        font-size: 0.92rem;
    }

    .site-header__top--funnel {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header__process,
    .site-nav--funnel {
        width: 100%;
    }

    .site-nav--funnel {
        justify-content: flex-start;
    }

    .site-process-indicator {
        width: 100%;
        border-radius: 18px;
    }

    .site-process-indicator__title {
        display: none;
    }

    .wzth-form-card--embedded .wzth-form-card__head,
    .wzth-form-card--embedded .wzth-form {
        padding: 20px;
    }

    .wzth-form-card--embedded .wzth-form-grid--2 {
        grid-template-columns: 1fr;
    }

    .wzth-consent__label {
        grid-template-columns: 18px 1fr;
        gap: 10px;
    }

    .project-stage-layout .wzth-form-card--embedded-plain .wzth-form-meta {
        margin-bottom: 18px;
    }

    .project-stage-layout .wzth-form-card--embedded-plain .wzth-field {
        margin-bottom: 18px;
    }

    .site-footer__logo .custom-logo {
        max-height: 54px;
    }

    .wzth-page--legal .wzth-page__content {
        padding: 22px;
    }

    .legal-block + .legal-block {
        margin-top: 24px;
        padding-top: 22px;
    }

    .legal-block h2 {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 72px 0 34px;
    }

    .hero__grid,
    .consulting__grid {
        grid-template-columns: 1fr 1fr;
    }

    .custom-logo {
        max-height: 96px;
    }

    .proof-grid,
    .promise-grid,
    .difference-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cta-band__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .hero__panel,
    .consulting__box,
    .personal-trust {
        padding: 28px;
    }

    .personal-trust {
        grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    }

    .image-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .image-grid__item img {
        min-height: 280px;
    }

    .form-frame {
        padding: 28px;
    }

    .site-header__top {
        min-height: 56px;
        padding-top: 12px;
    }

    .site-header__bottom {
        min-height: 96px;
        padding-bottom: 14px;
    }

    .site-header__bottom-inner {
        justify-content: flex-start;
    }

    .site-footer__logo .custom-logo {
        max-height: 64px;
    }

    .site-footer__brand-row {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
    }

    .site-footer__nav {
        justify-content: flex-end;
        margin-left: auto;
        text-align: right;
    }

    .signature-card {
        grid-template-columns: 220px minmax(0, 1fr);
    }
}

@media (min-width: 980px) {
    .project-stage-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 32px;
    }
}

@media (min-width: 1100px) {
    .proof-grid,
    .promise-grid,
    .difference-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* =========================
   FRONT PAGE REFINEMENTS
   ========================= */

.hero__grid--single {
    grid-template-columns: minmax(0, 860px);
}

.section--compact {
    padding: 18px 0;
}

.section__head--compact {
    margin-bottom: 18px;
}

.trust-strip--compact {
    padding: 4px 0 18px;
}

/* kompakter Step-Bereich */

.consulting__list--steps {
    gap: 10px;
}

.consulting__item--step {
    padding: 16px 18px;
    line-height: 1.55;
}

/* kompakter Ansprechpartner-Block */

.mini-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: var(--wzth-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(251, 248, 243, 0.96) 100%);
    border: 1px solid rgba(23, 32, 42, 0.06);
    box-shadow: 0 12px 34px rgba(23, 32, 42, 0.06);
}

.mini-trust__media img,
.mini-trust__placeholder {
    display: block;
    width: 100%;
    max-width: 150px;
    border-radius: 20px;
    background: #eae5dd;
}

.mini-trust__placeholder {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wzth-text-soft);
    font-weight: 700;
}

.mini-trust__name {
    margin: 0 0 6px;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--wzth-text);
}

.mini-trust__role {
    margin: 0 0 10px;
    color: var(--wzth-accent-dark);
    font-weight: 600;
    line-height: 1.5;
}

.mini-trust__text {
    margin: 0;
    color: var(--wzth-text-soft);
    line-height: 1.7;
}

.mini-trust__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.mini-trust__point {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 32, 42, 0.08);
    color: var(--wzth-text-soft);
    font-size: 0.92rem;
}

/* Hero etwas ruhiger, wenn ohne Bild */

.hero__grid--single .hero__lead {
    max-width: 58ch;
}

.hero__grid--single .hero__actions {
    margin-top: 4px;
}

@media (min-width: 768px) {
    .hero__grid--single {
        grid-template-columns: minmax(0, 860px);
    }

    .mini-trust {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 24px;
        padding: 24px 26px;
    }
}

/* =========================
   HEADER CLEANUP
   ========================= */

.site-header__top--default-cta {
    justify-content: flex-end;
}

.site-nav--single-cta {
    justify-content: flex-end;
    gap: 0;
}

/* =========================
   HOME HERO REFINEMENT
   ========================= */

.hero--home .hero__grid--single {
    grid-template-columns: minmax(0, 1120px);
}

.hero__title--home {
    max-width: 1320px;
    font-size: clamp(2.8rem, 7vw, 6.2rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero__lead--home {
    max-width: 880px;
    font-size: 1.12rem;
    line-height: 1.65;
}

@media (min-width: 768px) {
    .hero--home .hero__grid--single {
        grid-template-columns: minmax(0, 1120px);
    }

    .hero__lead--home {
        max-width: 860px;
    }
}

@media (max-width: 767px) {
    .hero__title--home {
        font-size: clamp(2.4rem, 12vw, 4.4rem);
        line-height: 0.98;
        text-wrap: initial;
    }

    .hero__lead--home {
        max-width: 100%;
        font-size: 1.02rem;
        line-height: 1.7;
    }
}