/* ============================================
   Academy of Life Balance — v4
   BOLD COLORS · Hero Carousel · Praxis als USP
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --rosa: #d4789a;
    --rosa-light: #f2d0dd;
    --tuerkis: #2ba5a5;
    --tuerkis-dark: #1e8a8a;
    --tuerkis-light: #c8ecec;
    --gelb: #e8c84a;
    --lachs: #d9956e;
    --lachs-light: #f0d5c2;

    --text: #1e1e1e;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --bg: #fefefe;
    --bg-alt: #f5f3f0;
    --bg-warm: #faf7f4;
    --white: #ffffff;
    --border: #e0dcd7;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    --max-width: 1100px;
    --nav-height: 68px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Georgia', serif; font-weight: 400; color: var(--text); }
h1 { font-size: 3.2rem; line-height: 1.12; letter-spacing: -0.01em; }
h2 { font-size: 2rem; line-height: 1.3; margin-bottom: var(--space-md); text-align: center; }
h3 { font-size: 1.2rem; line-height: 1.4; margin-bottom: var(--space-xs); }
p { margin-bottom: var(--space-sm); }
em { font-style: italic; }
strong { font-weight: 600; }

a { color: var(--tuerkis); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--tuerkis-dark); }

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md); }
.container-narrow { max-width: 740px; }


/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary { background: var(--tuerkis); color: var(--white); }
.btn-primary:hover { background: var(--tuerkis-dark); color: var(--white); }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.05rem; }

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--tuerkis);
    border: 1.5px solid var(--tuerkis);
}
.btn-outline:hover { background: var(--tuerkis); color: var(--white); }


/* --- Nav --- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-height);
    background: rgba(254,254,254,0.97);
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 10px rgba(0,0,0,0.1); }

.nav-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md);
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a, .nav-links .nav-dropdown-trigger { font-size: 0.88rem; color: var(--text); letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--tuerkis); }
.nav-links .nav-cta {
    padding: 0.45rem 1.1rem; border: 1.5px solid var(--tuerkis);
    border-radius: 4px; color: var(--tuerkis);
}
.nav-links .nav-cta:hover { background: var(--tuerkis); color: var(--white); }

.nav-lang { position: absolute; right: var(--space-md); display: flex; gap: 0.2rem; font-size: 0.75rem; align-items: center; }
.nav-lang a {
    padding: 0.25rem 0.45rem; border-radius: 3px; text-decoration: none;
    color: var(--text-muted); border: 1px solid transparent;
}
.nav-lang a:hover { color: var(--text); border-color: var(--border); }
.nav-lang a.active { color: var(--text); background: var(--bg-alt); border-color: var(--border); font-weight: 600; }
.nav-dark .nav-lang a { color: rgba(255,255,255,0.5); }
.nav-dark .nav-lang a:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.nav-dark .nav-lang a.active { color: var(--white); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
span.nav-dropdown-trigger { cursor: default; }
a.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-trigger::after { content: ' ▾'; font-size: 0.7em; opacity: 0.6; }

.nav-dropdown-menu {
    display: none; position: absolute; top: 100%; left: -12px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 0.5rem 0; min-width: 200px; z-index: 110;
}

/* Invisible bridge between trigger and menu so hover stays connected */
.nav-dropdown::after {
    content: ''; position: absolute; top: 100%; left: 0;
    width: 100%; height: 8px;
    display: none;
}
.nav-dropdown:hover::after { display: block; }

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
    display: block; padding: 0.5rem 1.2rem;
    font-size: 0.85rem; color: var(--text) !important;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--bg-alt); color: var(--tuerkis) !important; }

/* Dark nav for sub-pages */
.nav-dark { background: transparent; box-shadow: none; }
.nav-dark .nav-links a { color: rgba(255,255,255,0.85); }
.nav-dark .nav-links a:hover { color: var(--white); }
.nav-dark .nav-links .nav-cta { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.9); }
.nav-dark .nav-links .nav-cta:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.nav-dark .nav-logo img { filter: brightness(0) invert(1); }
.nav-dark .nav-toggle span { background: var(--white); }
.nav-dark .nav-dropdown-trigger { color: rgba(255,255,255,0.85); }
.nav-dark .nav-dropdown-trigger::after { color: rgba(255,255,255,0.5); }

/* Light nav for light hero backgrounds (hormone/ernährung) */
.nav-light { background: transparent; box-shadow: none; }
.nav-light .nav-links a { color: var(--text); }
.nav-light .nav-links .nav-cta { border-color: var(--text); color: var(--text); }
.nav-light .nav-links .nav-cta:hover { background: var(--text); color: var(--gelb); }


/* ============================================
   HERO — Bold Gradient + Carousel
   ============================================ */
.hero {
    min-height: 92vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, #1a3a3a 0%, #0d4f4f 30%, #1a5a5a 60%, #2d3a45 100%);
    padding-top: var(--nav-height);
    position: relative; overflow: hidden;
}

.hero::before {
    content: ''; position: absolute; top: -20%; right: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgba(43, 165, 165, 0.15); filter: blur(100px);
}
.hero::after {
    content: ''; position: absolute; bottom: -15%; left: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(212, 120, 154, 0.1); filter: blur(80px);
}

.hero-content {
    position: relative; z-index: 1; text-align: center;
    padding: var(--space-lg) var(--space-md); max-width: 800px; width: 100%;
}

.hero-kicker {
    font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--tuerkis-light); margin-bottom: var(--space-lg); opacity: 0.8;
}

.hero-sub-page .hero-kicker {
    font-size: 1rem; letter-spacing: 0.1em;
}

.hero-sub-page .hero-sub {
    margin-top: 0.8rem;
}

/* Carousel */
.hero-carousel { position: relative; min-height: 260px; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 0.8s ease;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    pointer-events: none;
}
.hero-slide.active { opacity: 1; position: relative; pointer-events: auto; }

.hero-slide h1 { color: var(--white); margin-bottom: var(--space-sm); }
.hero-slide h1 em { color: var(--tuerkis-light); }

.hero-sub {
    font-size: 1.15rem; line-height: 1.7;
    color: rgba(255,255,255,0.78); margin: 0 auto; max-width: 660px;
    text-align: center;
}

.hero-ctas { margin-top: var(--space-lg); display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

.hero-dots { display: flex; gap: 8px; justify-content: center; margin-top: var(--space-md); }
.hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.3s;
}
.hero-dot.active { background: var(--tuerkis-light); transform: scale(1.3); }


/* --- Sub-Page Hero --- */
.hero-sub-page {
    min-height: 55vh;
    padding-top: calc(var(--nav-height) + var(--space-sm));
}

.hero-sub-page .hero-content {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

/* Hero background motif — positioned left, fades into hero color */
.hero-bg-motif {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 65%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-motif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10% center;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, transparent 85%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, transparent 85%);
}

@media (max-width: 640px) {
    .hero-bg-motif {
        left: 0;
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }
    .hero-bg-motif img {
        mask-image: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 80%);
        -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 80%);
    }
}

.hero-kinder {
    background: linear-gradient(145deg, #1a3530 0%, #1f4038 30%, #264a40 60%, #1a3028 100%);
}
.hero-kinder h1, .hero-kinder .hero-sub { color: var(--white); }
.hero-kinder .hero-content { max-width: 900px; }
.hero-kinder .hero-kicker { color: rgba(255,255,255,0.7); }

.hero-paare {
    background: linear-gradient(145deg, #3d1a30 0%, #4a2038 30%, #552540 60%, #351828 100%);
}

.hero-trauma {
    background: linear-gradient(145deg, #2a2a50 0%, #303068 30%, #383880 60%, #252550 100%);
}

.hero-hormone {
    background: linear-gradient(180deg, #d499ab 0%, #e3a4b5 30%, #f7afbb 60%, #ffbfc7 100%);
}
.hero-hormone .hero-bg-motif { left: -35%; width: 100%; top: -25%; bottom: auto; height: 125%; }
.hero-hormone .hero-bg-motif img {
    object-position: center center;
    transform: none;
    opacity: 0.5;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.4) 70%, transparent 90%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.4) 70%, transparent 90%);
}
.hero-hormone h1, .hero-hormone .hero-sub, .hero-hormone .hero-kicker { color: var(--white); }
.hero-hormone .hero-trust-bottom { color: rgba(255,255,255,0.6); }
.hero-hormone .hero-trust-bottom .trust-dot { background: rgba(255,255,255,0.3); }
.hero-hormone .btn-primary { background: var(--tuerkis); color: var(--white); }
.hero-hormone .btn-primary:hover { background: var(--tuerkis-dark); }

/* Home hero motif */
.hero-bg-home {
    left: -42%;
    width: 100%;
    bottom: 0;
    height: 100%;
}
.hero-bg-home img {
    object-position: 10% 50%;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,0.4) 50%, transparent 70%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,0.4) 50%, transparent 70%);
}

.hero-ernaehrung {
    background: linear-gradient(145deg, #1a3a2a 0%, #1e4535 30%, #224f3d 60%, #183025 100%);
}
.hero-ernaehrung .hero-content { max-width: 900px; }
.hero-ernaehrung h1, .hero-ernaehrung .hero-sub, .hero-ernaehrung .hero-kicker { color: var(--white); }

.hero-trauma .hero-bg-motif { left: -10%; width: 70%; }
.hero-trauma .hero-bg-motif img {
    object-position: 30% 100%;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.2) 55%, transparent 75%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.2) 55%, transparent 75%);
}
.hero-trauma .hero-content { max-width: 950px; }
.hero-trauma h1, .hero-trauma .hero-sub, .hero-trauma .hero-kicker { color: var(--white); }

.hero-paare .hero-bg-motif img {
    object-position: 0% center;
}
.hero-paare h1, .hero-paare .hero-sub, .hero-paare .hero-kicker { color: var(--white); }

/* Sub-page nav white text */
.hero-sub-page ~ .nav,
.hero-sub-page + .section { /* fallback */ }

.hero-trust-bottom {
    display: flex; align-items: center; justify-content: center;
    gap: 0.6rem; font-size: 0.78rem; color: rgba(255,255,255,0.5);
    margin-top: var(--space-lg); flex-wrap: wrap;
    position: relative; z-index: 3;
}

.hero-trust-bottom .trust-dot {
    background: rgba(255,255,255,0.25);
}

/* ============================================
   PRAXIS — USP Section (early)
   ============================================ */
.section-praxis { padding: var(--space-lg) 0 var(--space-xl); }

.praxis-hero-grid {
    display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto;
    gap: var(--space-sm);
}

.praxis-img-main { grid-row: 1 / 3; }
.praxis-img-main img,
.praxis-img-side img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 6px;
}

.praxis-caption {
    padding: var(--space-md) 0 0;
    text-align: left;
}
.praxis-caption h2 { text-align: left; font-size: 1.4rem; margin-bottom: var(--space-xs); }
.praxis-caption p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 0.3rem; }


/* ============================================
   Sections
   ============================================ */
.section { padding: var(--space-xl) 0; }
.section-alt { background: var(--bg-alt); }
.section-highlight { background: linear-gradient(180deg, var(--bg-warm) 0%, var(--tuerkis-light) 100%); }
.section-final { background: var(--text); color: var(--white); padding: var(--space-xl) 0; text-align: center; }
.section-final h2 { color: var(--white); }

.section-intro {
    text-align: center; color: var(--text-light); font-size: 1.02rem;
    max-width: 560px; margin: -0.5rem auto var(--space-lg);
}
.section-cta { text-align: center; margin-top: var(--space-lg); }
.cta-hint { font-size: 0.88rem; color: var(--text-muted); margin-top: var(--space-sm); }
.cta-hint a { color: var(--tuerkis); }
.section-label {
    text-align: center; font-size: 0.82rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--tuerkis); margin-bottom: var(--space-md);
}


/* ============================================
   15 MINUTEN — Kern-USP
   ============================================ */
.kern-block { max-width: 620px; margin: 0 auto; }
.kern-block p { font-size: 1.02rem; line-height: 1.8; }
.kern-highlight {
    font-size: 1.08rem; color: var(--text); font-weight: 400;
    padding: var(--space-md); margin: var(--space-sm) 0;
    background: var(--tuerkis-light); border-radius: 6px;
    border-left: 4px solid var(--tuerkis);
}


/* ============================================
   WARUM WIR
   ============================================ */
.warum-block { max-width: 620px; margin: 0 auto var(--space-lg); }
.warum-lead { font-size: 1.2rem; font-style: italic; color: var(--text); margin-bottom: var(--space-md); }
.warum-block p { font-size: 1.02rem; line-height: 1.8; }

.portrait-banner { max-width: 500px; margin: 0 auto; }
.portrait-banner img { border-radius: 6px; width: 100%; }


/* ============================================
   Angebot
   ============================================ */
.angebot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }

.angebot-card {
    background: var(--white); padding: 1.5rem; border-radius: 6px;
    border: 1px solid var(--border); transition: border-color 0.2s, transform 0.2s;
}
.angebot-card:hover { border-color: var(--tuerkis); transform: translateY(-2px); }
.angebot-card h3 { color: var(--tuerkis); font-size: 1.05rem; }
.angebot-card p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 0; }
.angebot-link { display: inline-block; margin-top: 0.6rem; font-size: 0.85rem; color: var(--tuerkis); font-weight: 400; }
.angebot-link:hover { color: var(--tuerkis-dark); }


/* ============================================
   Personen
   ============================================ */
.person {
    display: grid; grid-template-columns: 260px 1fr; gap: var(--space-lg);
    align-items: start; margin-bottom: var(--space-xl);
}
.person:last-child { margin-bottom: 0; }
.person-reverse { grid-template-columns: 1fr 260px; }
.person-reverse .person-img { order: 2; }
.person-reverse .person-text { order: 1; }

.person-img img { border-radius: 6px; width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.person-title { color: var(--tuerkis); font-size: 0.93rem; margin-bottom: var(--space-sm); }

.person-quali {
    list-style: none; padding: 0; margin-top: var(--space-sm);
    border-top: 1px solid var(--border); padding-top: var(--space-sm);
}
.person-quali li {
    font-size: 0.83rem; color: var(--text-light); padding: 0.2rem 0 0.2rem 1.2rem; position: relative;
}
.person-quali li::before {
    content: ''; position: absolute; left: 0; top: 0.55rem;
    width: 6px; height: 6px; border-radius: 50%; background: var(--tuerkis-light);
}


/* ============================================
   Preis
   ============================================ */
.preis-context { max-width: 580px; margin: 0 auto var(--space-lg); text-align: center; }
.preis-context p { font-size: 1.02rem; line-height: 1.8; color: var(--text-light); }

.preis-box {
    text-align: center; max-width: 480px; margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
    background: var(--white); border-radius: 8px; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.preis-amount { font-size: 2rem; color: var(--tuerkis); margin-bottom: var(--space-xs); letter-spacing: -0.02em; }

.preis-detail { font-size: 1.35rem; font-weight: 600; color: var(--text); margin-bottom: var(--space-sm); }
.preis-kasse { font-size: 1.1rem; color: var(--text); margin-bottom: var(--space-md); line-height: 1.6; }


/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 620px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-item summary {
    font-family: 'Georgia', serif; font-size: 0.95rem;
    color: var(--text); cursor: pointer; padding: 0.8rem 0;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--tuerkis); margin-left: var(--space-sm); }
.faq-item[open] summary::after { content: '–'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: var(--text-light); font-size: 0.9rem; padding: 0 0 0.8rem; line-height: 1.65; }


/* ============================================
   Final CTA
   ============================================ */
.final-text { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto var(--space-sm); }

.section-final .kontakt-grid { margin-top: var(--space-lg); }
.section-final .kontakt-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.section-final .kontakt-card h3 { color: var(--tuerkis-light); }
.section-final .kontakt-link { color: var(--white); font-size: 1.1rem; }

.kontakt-grid { display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: center; text-align: center; }
.kontakt-card { padding: var(--space-sm) var(--space-md); border-radius: 6px; border: 1px solid var(--border); display: flex; align-items: center; gap: 0.6rem; white-space: nowrap; }
.kontakt-card h3 { color: var(--tuerkis); margin-bottom: 0; font-size: 1rem; }
.kontakt-link { font-size: 1.05rem; margin-bottom: 0; }


/* ============================================
   Footer
   ============================================ */
.footer {
    background: #141414; color: rgba(255,255,255,0.5); padding: var(--space-md) 0; font-size: 0.82rem;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-sm); }
.footer-logo img { height: 26px; filter: brightness(0) invert(1); opacity: 0.4; }
.footer-links { display: flex; gap: var(--space-md); }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-links a:hover { color: var(--white); }
.footer-copy { width: 100%; text-align: center; margin-top: var(--space-sm); padding-top: var(--space-sm); border-top: 1px solid rgba(255,255,255,0.06); }

/* ============================================
   CTA Popup Modal
   ============================================ */
.cta-modal {
    position: fixed; inset: 0; z-index: 99990;
    display: none; align-items: center; justify-content: center;
}
.cta-modal.open { display: flex; }

.cta-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.5);
    animation: cta-fade-in 0.3s ease;
}

.cta-modal-box {
    position: relative; z-index: 1;
    background: var(--white); border-radius: 16px;
    padding: var(--space-lg) var(--space-md);
    max-width: 440px; width: 90%; text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    animation: cta-pop-in 0.35s ease;
}

@keyframes cta-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes cta-pop-in { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.cta-modal-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; font-size: 1.6rem;
    color: var(--text-muted); cursor: pointer; line-height: 1;
}
.cta-modal-close:hover { color: var(--text); }

.cta-modal-icon { margin-bottom: var(--space-sm); }
.cta-modal-icon img { margin: 0 auto; }

.cta-modal-title {
    font-size: 1.3rem; color: var(--text);
    margin-bottom: var(--space-sm); line-height: 1.3;
}

.cta-modal-text {
    font-size: 0.95rem; color: var(--text-light);
    line-height: 1.6; margin-bottom: var(--space-md);
}

.cta-modal-btn { width: 100%; text-align: center; }

.cta-modal-phone {
    font-size: 0.85rem; color: var(--text-muted);
    margin-top: var(--space-sm); margin-bottom: 0;
}
.cta-modal-phone a { color: var(--tuerkis); }


.sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    padding: var(--space-sm); background: rgba(254,254,254,0.97); box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
.btn-sticky { display: block; text-align: center; width: 100%; }


/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
    h1 { font-size: 2.4rem; }
    .angebot-grid { grid-template-columns: 1fr 1fr; }
    .person, .person-reverse { grid-template-columns: 1fr; gap: var(--space-md); }
    .person-reverse .person-img, .person-reverse .person-text { order: unset; }
    .person-img img { max-width: 260px; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .praxis-hero-grid { grid-template-columns: 1fr; }
    .praxis-img-main { grid-row: auto; }
    .praxis-img-main img { aspect-ratio: 16/9; }
    .praxis-caption { text-align: center; }
    .praxis-caption h2 { text-align: center; }
}

@media (max-width: 640px) {
    :root { --space-xl: 3.5rem; --space-lg: 2.5rem; }
    body { font-size: 16px; }
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.5rem; }
    .hero { min-height: 94vh; }
    .hero-carousel { min-height: 220px; }
    .hero-sub { font-size: 1rem; }

    .nav-toggle { display: flex; }
    .nav-links {
        display: none; position: absolute; top: var(--nav-height); left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: var(--space-md); gap: var(--space-sm);
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links a { color: var(--text); font-size: 1rem; }
    .nav-lang {
        position: static; margin-top: var(--space-xs);
        padding-top: var(--space-xs); border-top: 1px solid var(--border);
        justify-content: flex-start;
    }

    .angebot-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { text-align: center; }

    .sticky-cta { display: block; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer { padding-bottom: 5rem; }
}
