:root {
    --color-primary: #0f766e;
    --color-primary-dark: #115e59;
    --color-accent: #f59e0b;
    --color-bg: #f8fafc;
    --color-white: #ffffff;
    --color-text: #1f2937;
    --color-muted: #64748b;
    --color-border: #e5e7eb;

    --font-main: Arial, Helvetica, sans-serif;

    --container: 1180px;
    --radius: 18px;
    --shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--color-text);
    background: #ffffff;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.eyebrow {
    display: inline-block;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 13px;
}

.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #111827;
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #111827;
}

.lead-form .btn-primary {
    min-height: 58px;
    font-size: 17px;
    font-weight: 800;
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

/* Header */

.site-header {
    background: rgba(255, 255, 255, 0.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.55);
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.035);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    height: 64px;
    width: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.site-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0;
    margin: 0;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 26px 0;
    font-weight: 800;
    font-size: 15px;
    color: #334155;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

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

.site-nav a:hover::after {
    transform: scaleX(1);
}

.header-cta {
    background: linear-gradient(135deg, var(--color-primary), #0d9488);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(15, 118, 110, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(15, 118, 110, 0.24);
    background: linear-gradient(135deg, #0f766e, #0f9f92);
}

/* Hero */

.hero-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.14), transparent 32%),
        radial-gradient(circle at 10% 10%, rgba(15, 118, 110, 0.14), transparent 30%),
        linear-gradient(135deg, #f8ffff 0%, #ffffff 55%, #fff7e6 100%);
    padding: 74px 0 68px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content h1 {
    margin: 0 0 18px;
    line-height: 1.08;
    color: #0f172a;
    font-size: clamp(42px, 4.1vw, 56px);
    max-width: 720px;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 620px;
    font-size: 20px;
    color: var(--color-muted);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-proof {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    max-width: 640px;
}

.hero-proof span {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.72);
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 800;
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
    display: inline-flex;
}

.hero-visual {
    position: relative;
    min-height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
    background: #e5e7eb;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.hero-floating-card {
    position: absolute;
    left: 26px;
    bottom: 26px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 18px 22px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
}

.hero-floating-card span {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.hero-floating-card strong {
    display: block;
    font-size: 26px;
    color: #0f172a;
    line-height: 1.1;
}

.hero-floating-card small {
    display: block;
    margin-top: 4px;
    color: #64748b;
}

/* Section Heads */

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head h2,
.cta-box h2 {
    margin: 0 0 18px;
    line-height: 1.1;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 44px);
}

.section-head p {
    color: var(--color-muted);
    font-size: 18px;
}

/* Trust Strip */

.zahn-trust {
    background: #ffffff;
    padding-top: 46px;
    padding-bottom: 46px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 32px;
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.06),
        0 2px 10px rgba(15, 23, 42, 0.03);
    overflow: hidden;
    max-width: 1180px;
    margin: 0 auto;
}

.trust-strip div {
    text-align: center;
    padding: 34px 20px;
    position: relative;
}

.trust-strip div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 26px;
    right: 0;
    width: 1px;
    height: calc(100% - 52px);
    background: linear-gradient(
        180deg,
        rgba(226,232,240,0),
        rgba(226,232,240,0.9),
        rgba(226,232,240,0)
    );
}

.trust-strip strong {
    display: block;
    font-size: 26px;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.trust-strip span {
    color: #64748b;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
}

/* Partner / Trust */

.zahn-partner {
    background: #ffffff;
    padding-top: 76px;
    padding-bottom: 104px;
}

.zahn-partner .section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
}

.zahn-partner .section-head h2 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.zahn-partner .section-head p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.care-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    align-items: start;
}

.care-benefit-item {
    text-align: center;
}

.care-benefit-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f4fffd 0%, #eefcf9 100%);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow:
        0 14px 34px rgba(15, 118, 110, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.care-benefit-item h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.care-benefit-item p {
    margin: 0;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.72;
}

@media (max-width: 1000px) {
    .care-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 28px;
    }
}

@media (max-width: 600px) {
    .care-benefit-grid {
        grid-template-columns: 1fr;
    }
}

/* Preisvergleich */

.zahn-price {
    text-align: center;
    background: #ffffff;
}

.zahn-price .section-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.zahn-price .section-head h2 {
    font-size: clamp(34px, 5vw, 54px);
}

.price-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.price-comparison-card {
    text-align: left;
    position: relative;
    overflow: hidden;
}

.price-comparison-card.featured {
    border: 2px solid var(--color-primary);
    transform: translateY(-8px);
}

.price-comparison-card h3 {
    margin-top: 0;
    font-size: 24px;
    color: #0f172a;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.price-row span {
    color: var(--color-muted);
    font-weight: 800;
}

.price-row strong {
    font-size: 22px;
    color: #0f172a;
}

.price-row.highlight strong {
    color: var(--color-primary);
}

.saving-pill {
    margin-top: 18px;
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900;
    text-align: center;
}

.price-note {
    max-width: 820px;
    margin: 0 auto 26px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 18px;
    padding: 16px 20px;
    color: #7c2d12;
}

/* Premium Cost Calculator */

.zahn-calculator {
    background: #ffffff;
    padding-top: 84px;
    padding-bottom: 94px;
}

.zahn-calculator .section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

.zahn-calculator .section-head h2 {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.zahn-calculator .section-head p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.premium-cost-box {
    background: #ffffff;
    border: 1px solid rgba(226,232,240,0.8);
    border-radius: 34px;
    overflow: hidden;
    box-shadow:
        0 28px 70px rgba(15,23,42,0.08),
        0 4px 14px rgba(15,23,42,0.04);
}

.premium-treatment-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 34px;
    border-bottom: 1px solid rgba(226,232,240,0.7);
}

.premium-treatment-tabs button {
    border: none;
    border-radius: 16px;
    padding: 18px 18px;
    background: #f5f7fb;
    color: #0f172a;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.premium-treatment-tabs button.active {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(15,118,110,0.18);
}

.premium-cost-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 34px;
    align-items: center;
    padding: 42px 34px 24px;
}

.premium-country-box {
    border-radius: 24px;
    padding: 34px;
    text-align: center;
}

.premium-country-box span {
    display: block;
    margin-bottom: 12px;
    color: #64748b;
    font-weight: 700;
}

.premium-country-box strong {
    display: block;
    font-size: 52px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.premium-country-de {
    background: #ffffff;
    border: 1px solid rgba(226,232,240,0.7);
}

.premium-country-de strong {
    color: #0f172a;
}

.premium-country-tr {
    background: linear-gradient(180deg, #f4fffd 0%, #eefcf9 100%);
    border: 2px solid rgba(15,118,110,0.8);
    box-shadow: 0 20px 50px rgba(15,118,110,0.08);
}

.premium-country-tr strong {
    color: var(--color-primary);
}

.premium-saving-pill {
    background: #ecfdf3;
    color: #15803d;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 900;
    white-space: nowrap;
}

.premium-saving-total {
    text-align: center;
    padding: 10px 20px 42px;
}

.premium-saving-total span {
    display: block;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 20px;
}

.premium-saving-total strong {
    font-size: 58px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #f59e0b;
}

.premium-cost-footer {
    background: linear-gradient(135deg, #0f766e, #115e59);
    padding: 24px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.premium-cost-benefits {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.92);
    font-weight: 700;
}

.premium-cost-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.premium-cost-note {
    max-width: 820px;
    margin: 22px auto 0;
    text-align: center;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.6;
}

.premium-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    font-weight: 900;
}

@media (max-width: 900px) {
    .premium-treatment-tabs {
        grid-template-columns: 1fr;
    }

    .premium-cost-content {
        grid-template-columns: 1fr;
    }

    .premium-saving-total strong {
        font-size: 54px;
    }

    .premium-cost-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Treatments */

.zahn-treatments {
    background: #ffffff;
    padding-top: 96px;
    padding-bottom: 104px;
}

.treatment-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.treatment-head h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(34px, 4vw, 48px);
}

.treatment-head p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.treatment-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    color: inherit;
    border-radius: 26px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    min-height: 500px;
}

.treatment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 118, 110, 0.28);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.treatment-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #eef2f7;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.treatment-card-body {
    padding: 28px 28px 30px;
    display: flex;
    flex-direction: column;
    min-height: 210px;
}

.treatment-card-body h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    min-height: 72px;
}

.treatment-card-body p {
    margin: 0 0 22px;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.65;
    min-height: 54px;
}

.treatment-card-body span {
    color: var(--color-primary);
    font-weight: 900;
    margin-top: auto;
}

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

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

    .treatment-image {
        height: 220px;
    }
}

/* Prozess */

.zahn-process {
    background: #ffffff;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.process-grid h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    margin: 0 0 22px;
    color: #0f172a;
    letter-spacing: -0.035em;
}

.process-grid p {
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.75;
}

.process-intro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    max-width: 360px;
}

.process-intro-badges span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 9px 14px;
    background: #f0fdfa;
    color: var(--color-primary);
    font-weight: 900;
    border: 1px solid rgba(15, 118, 110, 0.14);
    font-size: 15px;
}

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.process-step {
    position: relative;
    padding: 34px 32px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    min-height: 235px;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 118, 110, 0.24);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.11);
}

.process-step span {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 14px 28px rgba(15, 118, 110, 0.24);
}

.process-step h3 {
    margin: 0 0 14px;
    color: var(--color-primary);
    font-size: 22px;
    line-height: 1.25;
}

.process-step p {
    margin: 0;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.7;
}

/* Results */

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

.result-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 26px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.result-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 118, 110, 0.26);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.result-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #e5e7eb;
}

.result-image::before,
.result-image::after {
    position: absolute;
    top: 14px;
    z-index: 2;
    background: rgba(15, 23, 42, 0.82);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 6px 10px;
    border-radius: 999px;
}

.result-image::before {
    content: "VORHER";
    left: 14px;
}

.result-image::after {
    content: "NACHHER";
    right: 14px;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.result-card:hover .result-image img {
    transform: scale(1.035);
}

.result-card-body {
    padding: 30px 30px 32px;
}

.result-card-body h3 {
    font-size: 23px;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #0f172a;
}

.result-card-body p {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 18px;
    color: var(--color-muted);
}

.result-card-body strong {
    display: block;
    color: var(--color-primary);
    font-weight: 900;
    font-size: 15px;
}

.result-disclaimer {
    margin-top: 26px;
    max-width: 980px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-muted);
}

/* Testimonials */

.zahn-testimonials {
    background: #ffffff;
}

.testimonial-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.testimonial-rating span,
.testimonial-card .stars {
    color: #f59e0b;
    font-weight: 900;
    letter-spacing: 0.04em;
    font-size: 18px;
}

.testimonial-rating strong {
    color: #0f172a;
    font-size: 20px;
}

.testimonial-rating small {
    color: var(--color-muted);
    font-size: 15px;
}

.testimonial-google-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-muted);
    font-weight: 700;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.testimonial-google-note span {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #3b82f6;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

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

.testimonial-card {
    position: relative;
    border-radius: 24px;
    padding: 32px;
    min-height: 300px;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 118, 110, 0.22);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #ecfeff;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 17px;
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.10);
}

.testimonial-header strong {
    display: block;
    color: #0f172a;
    font-size: 17px;
}

.testimonial-header span {
    display: block;
    color: var(--color-muted);
    line-height: 1.4;
    font-size: 14px;
}

.testimonial-card .stars {
    margin-bottom: 18px;
    margin-top: 22px;
    letter-spacing: 0.08em;
}

.testimonial-card p {
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}

.testimonial-disclaimer {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 980px;
    color: var(--color-muted);
}

.testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin-top: 4px;
}

.testimonial-flag {
    font-size: 15px;
    line-height: 1;
    transform: translateY(1px);
}

.testimonial-meta-text {
    font-size: 14px;
    color: var(--color-muted);
    display: inline;
}

/* FAQ */

.zahn-faq {
    background: #ffffff;
}

.zahn-faq .section-head {
    max-width: 760px;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    gap: 18px;
    max-width: 980px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 26px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 118, 110, 0.14);
}

.faq-item summary {
    cursor: pointer;
    padding: 26px 30px;
    font-weight: 900;
    color: #0f172a;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f0fdfa;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] summary::after {
    content: "–";
    background: var(--color-primary);
    color: #ffffff;
}

.faq-item p {
    margin: 0;
    padding: 0 30px 28px;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 900px;
}

.faq-item:not([open]) summary {
    min-height: 76px;
}

/* SEO Links */

.zahn-seo-links {
    background: #ffffff;
}

.seo-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.seo-link-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 28px 32px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.seo-link-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 118, 110, 0.18);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.09);
}

.seo-link-category {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f0fdfa;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.seo-link-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #0f172a;
}

.seo-link-card p {
    color: var(--color-muted);
    margin-bottom: 20px;
}

.seo-link-arrow {
    margin-top: auto;
    color: var(--color-primary);
    font-weight: 900;
}

.zahn-related-links {
    background: #ffffff;
    padding-top: 52px;
}

.related-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.related-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 900;
    color: #0f172a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-link-card::after {
    content: "→";
    color: var(--color-primary);
}

.related-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
}

.zahn-dynamic-seo {
    background: #ffffff;
    padding-top: 42px;
}

.dynamic-seo-box {
    max-width: 940px;
    padding: 42px;
}

.dynamic-seo-box h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    color: #0f172a;
}

.dynamic-seo-box p {
    max-width: 760px;
    color: var(--color-muted);
    font-size: 18px;
    margin-bottom: 24px;
}

/* Final CTA */

.cta-section {
    padding-top: 40px;
}

.cta-box {
    background: linear-gradient(135deg, #0f172a, #134e4a);
    color: var(--color-white);
    border-radius: 28px;
    padding: 46px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.cta-box h2 {
    color: var(--color-white);
}

.cta-box p {
    color: rgba(255,255,255,0.75);
    font-size: 18px;
}

.zahn-final-cta {
    background: #f8fafc;
    padding-top: 40px;
}

.final-cta-box {
    background: linear-gradient(135deg, #0f172a, #134e4a);
    color: #ffffff;
    border-radius: 32px;
    padding: 54px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
    text-align: center;
}

.final-cta-box .eyebrow {
    color: #fbbf24;
}

.final-cta-box h2 {
    max-width: 820px;
    margin: 0 auto 18px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.08;
}

.final-cta-box p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.final-cta-box .btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.zahn-final-cta .final-cta-box {
    position: relative;
    overflow: hidden;
    padding: 74px 52px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 82% 22%, rgba(20, 184, 166, 0.26), transparent 34%),
        radial-gradient(circle at 18% 80%, rgba(245, 158, 11, 0.12), transparent 30%),
        linear-gradient(135deg, #0f172a 0%, #0f4f4b 100%);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
}

.zahn-final-cta .final-cta-box::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 33px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    pointer-events: none;
}

.zahn-final-cta .final-cta-box h2 {
    max-width: 900px;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: clamp(38px, 4.3vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.zahn-final-cta .final-cta-box p {
    max-width: 720px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.7;
}

.zahn-final-cta .eyebrow {
    color: #fbbf24;
}

.zahn-final-cta .final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.zahn-final-cta .btn-primary {
    box-shadow: 0 18px 42px rgba(245, 158, 11, 0.28);
}

.zahn-final-cta .btn-primary:hover {
    transform: translateY(-2px);
}

.zahn-final-cta .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.zahn-final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Lead Form */

.lead-form-section {
    background:
        radial-gradient(circle at 90% 20%, rgba(15, 118, 110, 0.10), transparent 28%),
        #f8fafc;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: start;
}

.lead-form-grid h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    margin: 0 0 18px;
    color: #0f172a;
}

.lead-form-grid p {
    color: var(--color-muted);
    font-size: 18px;
}

.lead-trust-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.lead-trust-list div {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 900;
    color: #0f172a;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.lead-note {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: var(--radius);
    padding: 18px;
    margin-top: 24px;
}

.lead-form {
    display: grid;
    gap: 18px;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
}

.form-intro {
    background: linear-gradient(135deg, #eef8f7 0%, #f8f5ee 100%);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 18px;
    padding: 16px 20px;
    margin-bottom: 10px;
}

.form-intro strong {
    display: block;
    font-size: 18px;
    color: #0f172a;
}

.form-intro span {
    color: var(--color-muted);
    font-weight: 700;
}

.lead-form label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 13px 14px;
    font: inherit;
    background: var(--color-white);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: 2px solid rgba(15, 118, 110, 0.25);
    border-color: var(--color-primary);
}

.checkbox-label {
    display: flex !important;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px !important;
    font-weight: 400 !important;
    font-size: 14px;
    color: var(--color-muted);
}

.checkbox-label input {
    width: auto;
    margin-top: 4px;
}

.form-small-note {
    margin: -4px 0 0;
    font-size: 14px;
    color: var(--color-muted);
    text-align: center;
}

.form-message {
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 700;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer */

.site-footer {
    background: #0f172a;
    color: var(--color-white);
    padding: 56px 0 110px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
}

.site-footer p,
.site-footer a {
    color: rgba(255,255,255,0.75);
}

.footer-disclaimer {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-brand {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.footer-contact {
    margin-top: 28px;
}

.footer-contact strong {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 20px;
}

.site-footer a {
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #fbbf24;
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.footer-logo {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: 28px;
    transition: transform 0.25s ease;
}

.footer-logo:hover {
    transform: scale(1.03);
}

.site-footer .footer-grid > div:first-child {
    max-width: 460px;
}

.footer-contact a[href*="wa.me"] {
    color: #25D366;
    font-weight: 700;
}

/* Sticky CTA */

.sticky-lead-cta {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    gap: 8px;
    width: min(500px, calc(100% - 24px));
    background: rgba(15, 23, 42, 0.92);
    padding: 5px;
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.24);
}

.sticky-lead-cta a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
}

.sticky-cta-primary,
.sticky-lead-cta a:first-child {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #111827;
}

.sticky-cta-whatsapp,
.sticky-lead-cta a:last-child {
    background: #ffffff;
    color: var(--color-primary);
}

/* Standard Content */

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.15;
    margin-top: 0;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 34px;
}

.page-content p,
.page-content li {
    font-size: 18px;
    color: var(--color-text);
}

.page-content ul,
.page-content ol {
    padding-left: 24px;
}

/* SEO Page */

.seo-hero {
    padding: 92px 0 72px;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.14), transparent 32%),
        radial-gradient(circle at 10% 10%, rgba(15, 118, 110, 0.14), transparent 30%),
        linear-gradient(135deg, #f8ffff 0%, #ffffff 60%, #fff7e6 100%);
}

.seo-hero h1 {
    max-width: 900px;
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.seo-hero p {
    max-width: 760px;
    font-size: 20px;
    color: var(--color-muted);
}

.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.seo-main-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    color: #0f172a;
}

.seo-main-content h3 {
    font-size: 24px;
    margin-top: 34px;
    color: #0f172a;
}

.seo-main-content p,
.seo-main-content li {
    font-size: 18px;
    color: var(--color-text);
}

.seo-main-content ul,
.seo-main-content ol {
    padding-left: 24px;
}

.seo-sidebar {
    position: sticky;
    top: 98px;
}

.seo-sidebar h3 {
    margin-top: 0;
    color: #0f172a;
}

.seo-sidebar p {
    color: var(--color-muted);
}

/* Responsive */

@media (max-width: 1100px) {
    .site-nav ul {
        gap: 20px;
    }

    .site-nav a {
        font-size: 14px;
    }

    .site-logo img {
        height: 50px;
    }

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

@media (max-width: 1000px) {
    .price-comparison-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .price-comparison-card.featured {
        transform: none;
    }

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

@media (max-width: 900px) {
    .header-inner {
        min-height: 72px;
        gap: 16px;
    }

    .site-logo img {
        height: 42px;
    }

    .site-nav {
        display: none;
    }

    .header-cta {
        padding: 10px 16px;
        font-size: 14px;
    }

    .hero-section {
        padding: 72px 0 60px;
    }

    .hero-grid,
    .process-grid,
    .lead-form-grid,
    .footer-grid,
    .calculator-grid,
    .seo-content-grid {
        grid-template-columns: 1fr;
    }

    .seo-sidebar {
        position: static;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 320px;
    }

    .trust-strip,
    .trust-grid,
    .testimonial-grid,
    .seo-link-grid,
    .related-link-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip div {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .trust-strip div:last-child {
        border-bottom: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .testimonial-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .seo-hero {
        padding: 64px 0 54px;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .section {
        padding: 45px 0;
    }

    .hero-visual {
        border-radius: 22px;
    }

    .hero-floating-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .treatment-grid,
    .partner-logo-grid {
        grid-template-columns: 1fr;
    }

    .treatment-image {
        height: 240px;
    }

    .treatment-card-body {
        padding: 22px;
    }

    .cta-box,
    .final-cta-box {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .sticky-lead-cta {
        width: calc(100% - 24px);
        justify-content: center;
        bottom: 12px;
        border-radius: 22px;
    }

    .sticky-lead-cta a {
        flex: 1;
        text-align: center;
        padding: 12px 10px;
        font-size: 14px;
    }

    .dynamic-seo-box {
        padding: 28px 22px;
    }
}

@media (max-width: 520px) {
    .site-logo img {
        height: 36px;
    }

    .header-cta {
        padding: 10px 14px;
        font-size: 13px;
    }

    .hero-section {
        padding: 54px 0 46px;
    }

    .hero-content h1 {
        font-size: 34px;
        letter-spacing: -0.03em;
    }

    .hero-content p {
        font-size: 17px;
    }

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

    .hero-proof span {
        width: 100%;
        text-align: center;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 260px;
    }

    .section-head h2,
    .lead-form-grid h2 {
        font-size: 30px;
    }

    .section-head p,
    .process-grid p,
    .lead-form-grid p {
        font-size: 16px;
    }

    .price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .partner-logo-card {
        min-height: 110px;
    }

    .result-image {
        height: 200px;
    }

    .faq-item summary {
        padding: 22px 30px;
        font-size: 16px;
    }

    .faq-item p {
        padding: 0 22px 22px;
    }

    .lead-form {
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    }

    .site-footer {
        padding-bottom: 90px;
    }

    .sticky-lead-cta {
        bottom: 10px;
        border-radius: 22px;
    }

    .sticky-lead-cta a {
        font-size: 11px;
        min-height: 34px;
        padding: 10px 8px;
    }

.zahn-final-cta h2,
.final-cta-box h2 {
    font-size: 42px;
    line-height: 1.1;
}

}

/* Zahn-Unterseiten */

.zahn-single-page {
    overflow: hidden;
}

.zahn-single-hero {
    padding: 120px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(15,118,110,0.08), transparent 40%),
        #f8fafc;
}

.zahn-single-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.zahn-single-hero-content h1 {
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 700px;
}

.zahn-single-hero-content p {
    max-width: 620px;
    font-size: 20px;
    line-height: 1.8;
    color: var(--color-muted);
}

.zahn-single-hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.zahn-single-hero-image img {
    width: 100%;
    border-radius: 32px;
    display: block;
    box-shadow: 0 30px 80px rgba(15,23,42,0.14);
}

@media (max-width: 980px) {
    .zahn-single-hero-grid {
        grid-template-columns: 1fr;
    }

    .zahn-single-hero {
        padding-top: 90px;
    }

    .zahn-single-hero-image {
        order: -1;
    }
}

.zahn-single-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.zahn-single-benefits span {
    background: #ffffff;
    border: 1px solid rgba(226,232,240,0.9);
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 800;
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(15,23,42,0.05);
}

/* Desktop Hintergrund-Feinschliff */

@media (min-width: 901px) {
    .zahn-price,
    .zahn-calculator,
    .zahn-treatments,
    .zahn-process,
    .zahn-testimonials,
    .zahn-faq,
    .zahn-seo-links,
    .zahn-related-links,
    .zahn-dynamic-seo {
        background: #ffffff;
    }

    .zahn-final-cta,
    .lead-form-section {
        background: #f8fafc;
    }
}

.zahn-treatments,
.zahn-faq,
.zahn-seo-links,
.zahn-related-links {
    background: #ffffff;
}

/* ========================================
   Mobile Optimierung D-CARE
======================================== */

@media (max-width: 900px) {

    .site-header {
        position: sticky;
    }

    .header-inner {
        min-height: 64px;
    }

    .site-logo img {
        height: 42px;
    }

    .header-cta {
        font-size: 13px;
        padding: 9px 14px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 300px;
    }

    .section {
        padding: 58px 0;
    }

    .section-head {
        margin-bottom: 28px;
    }

    .section-head h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .trust-strip {
        border-radius: 24px;
    }

    .trust-strip div:not(:last-child)::after {
        display: none;
    }

    .care-benefit-grid,
    .treatment-grid,
    .process-steps,
    .testimonial-grid,
    .seo-link-grid,
    .related-link-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .treatment-card {
        min-height: auto;
    }

    .treatment-card-body h3,
    .treatment-card-body p {
        min-height: auto;
    }

    .premium-treatment-tabs {
        padding: 22px;
    }

    .premium-cost-content {
        padding: 26px 22px 20px;
        gap: 22px;
    }

    .premium-country-box {
        padding: 24px 18px;
    }

    .premium-country-box strong {
        font-size: 40px;
    }

    .premium-saving-total strong {
        font-size: 42px;
    }

    .premium-cost-footer {
        padding: 24px 22px;
    }

    .premium-cost-actions,
    .premium-cost-actions .btn,
    .premium-whatsapp-btn {
        width: 100%;
    }

    .process-grid {
        gap: 34px;
    }

    .process-step {
        min-height: auto;
        padding: 28px 24px;
    }

    .lead-form-grid {
        gap: 30px;
    }

    .lead-form {
        padding: 22px;
    }

    .footer-grid {
        gap: 28px;
    }
}

@media (max-width: 520px) {

    .container {
        width: calc(100% - 24px);
    }

    .hero-section {
        padding: 44px 0 42px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn,
    .zahn-single-hero-buttons .btn {
        width: 100%;
    }

    .hero-proof span {
        justify-content: center;
    }

    .hero-floating-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px 16px;
    }

    .hero-floating-card strong {
        font-size: 22px;
    }

    .card {
        padding: 22px;
        border-radius: 20px;
    }

    .treatment-image {
        height: 230px;
    }

    .result-image {
        height: 220px;
    }

    .faq-item summary {
        padding: 20px 22px;
        gap: 14px;
    }

    .faq-item p {
        padding: 0 22px 22px;
    }

    .final-cta-box,
    .zahn-final-cta .final-cta-box {
        padding: 36px 22px;
        border-radius: 24px;
    }

    .lead-form-section {
        padding-bottom: 90px;
    }

   .sticky-lead-cta {
    width: calc(100% - 30px);
    bottom: 12px;
    border-radius: 16px;
    padding: 6px;
}

.sticky-lead-cta a {
    font-size: 12px;
    min-height: 38px;
    line-height: 1.1;
    white-space: nowrap;
}
}
