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

:root {
    /* Colors - Natürliche, warme Palette für Coaching & Gesundheit */
    --primary: #2D5F5D;        /* Tiefes Petrol - beruhigend, vertrauensvoll */
    --primary-dark: #1E4240;
    --primary-light: #4A8280;
    --secondary: #D4A574;      /* Warmes Gold/Sand - einladend */
    --accent: #D4A574;         /* Terrakotta - energetisch, natürlich */
    --dark: #2C3639;           /* Dunkelgrau statt schwarz */
    --dark-light: #3F4E4F;
    --gray: #6B7C7C;
    --gray-light: #D1D9D9;
    --light: #F5F7F7;
    --white: #FFFFFF;
    --cream: #FBF9F6;          /* Cremeton für wärmere Hintergründe */
    
    /* Keine aufdringlichen Gradienten mehr */
    --gradient-primary: linear-gradient(135deg, #2D5F5D 0%, #4A8280 100%);
    --gradient-subtle: linear-gradient(180deg, #F5F7F7 0%, #FFFFFF 100%);
    --gradient-warm: linear-gradient(135deg, #FBF9F6 0%, #F5F7F7 100%);
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;
    
    /* Transitions */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Subtile, moderne Schatten */
    --shadow-sm: 0 1px 3px rgba(44, 54, 57, 0.08);
    --shadow-md: 0 4px 12px rgba(44, 54, 57, 0.08);
    --shadow-lg: 0 8px 30px rgba(44, 54, 57, 0.12);
    --shadow-hover: 0 12px 40px rgba(44, 54, 57, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(45, 95, 93, 0.15);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 95, 93, 0.25);
}

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

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

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

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
    width: 42px;
    height: 42px;
    overflow: visible;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-text {
    color: var(--dark);
}

.logo-text .accent {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--dark);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION (Main Page) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 30%, var(--cream) 70%, var(--primary-light) 100%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 95, 93, 0.08) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--dark);
    z-index: 2;
    animation: fadeInUp 1s ease;
    max-width: 900px;
    margin: 0 auto;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    animation: fadeInDown 1s ease 0.2s both;
    white-space: nowrap;
}

.hero-badge span {
    display: inline-block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    color: var(--dark);
    margin-bottom: 28px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease 0.4s both;
    font-size: clamp(2rem, 3.6vw, 3rem);
}

.gradient-text {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 16px;
    background: var(--secondary);
    opacity: 0.25;
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    margin-bottom: 48px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    opacity: 0.6;
    animation: bounce 2s infinite;
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--gray);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--gray);
    border-bottom: 2px solid var(--gray);
    transform: translateX(-50%) rotate(45deg);
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: var(--section-padding);
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.intro-paragraph strong {
    color: var(--dark);
    font-weight: 600;
}

.quote-card {
    background: var(--cream);
    padding: 48px;
    border-radius: 16px;
    border-left: 4px solid var(--secondary);
    color: var(--dark);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.quote-card img {
    display: block;
    max-width: 260px;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.4;
    margin-bottom: 20px;
}

.quote-card blockquote p {
    font-size: 1.1875rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 400;
}

.quote-card cite {
    font-style: normal;
    color: var(--gray);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: transparent;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.section-title {
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--light);
}

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

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 8rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    border-radius: 16px;
    opacity: 0.15;
    z-index: -1;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    box-shadow: none;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== STATS / COUNT-UP SECTION ===== */
.stats-section {
    padding: 60px 0;
    background: var(--white);
    color: var(--primary);
    border-width: 0px 0px 1px 0px;
    border-style: solid;
    border-color: var(--gray-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 2px 4px;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-plus {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    opacity: 0.95;
}

.stat-postfix {
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stat-item {
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}

/* ===== COACHING SECTION ===== */
.coaching-section {
    padding: var(--section-padding);
    background: var(--white);
}

/* Index: coaching teaser cards */
#coaching .container {
    max-width: 1320px;
    padding: 0 16px;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 60px;
}

.coaching-card {
    background: var(--white);
    padding: 44px;
    border-radius: 16px;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    border: 1.5px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.coaching-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.coaching-card.featured {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.coaching-card.featured:hover {
    box-shadow: var(--shadow-hover);
}

.coaching-card.featured .card-title,
.coaching-card.featured .card-description,
.coaching-card.featured .card-features {
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 28px;
}

.coaching-card.featured .card-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.card-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9375rem;
}

.coaching-card.featured .card-features li {
    color: rgba(255, 255, 255, 0.95);
}

.card-features i {
    color: var(--accent);
    font-size: 1rem;
}

.coaching-card.featured .card-features i {
    color: rgba(255, 255, 255, 0.9);
}

.card-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    margin-top: auto;
}

.card-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.coaching-card.featured .card-btn {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.coaching-card.featured .card-btn:hover {
    background: transparent;
    color: var(--white);
}

.coaching-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.feature-box {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-box:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-box i {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.feature-box:hover i {
    color: var(--white);
}

.feature-box h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.feature-box:hover h4 {
    color: var(--secondary);
}

.feature-box p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===== NATURE SECTION ===== */
.nature-section {
    padding: var(--section-padding);
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.nature-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 130, 128, 0.3) 100%);
    pointer-events: none;
}

.nature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nature-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.nature-text .btn {
    margin-top: 20px;
}

.nature-placeholder {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: var(--section-padding);
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--gray-light);
    box-shadow: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.product-header {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 48px 40px;
    text-align: center;
    position: relative;
}

.product-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
}

.product-header h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.product-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.product-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.product-benefits {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.product-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--dark);
}

.product-benefits i {
    color: var(--accent);
    font-size: 1.125rem;
}

.product-btn {
    display: block;
    width: calc(100% - 80px);
    margin: 0 auto 30px;
    text-align: center;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.product-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

/* ===== PRODUCTS PAGE: Ergänzende Angebote (aufklappbar) ===== */
.products-extra-section {
    padding: 40px 0 60px;
    background: var(--white);
}

.products-extra-details {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    background: var(--cream);
    overflow: hidden;
}

.products-extra-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    list-style: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.products-extra-summary::-webkit-details-marker {
    display: none;
}

.products-extra-summary:hover {
    background: var(--light);
    color: var(--dark);
}

.products-extra-summary i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
    opacity: 0.7;
}

.products-extra-details[open] .products-extra-summary i {
    transform: rotate(180deg);
}

.products-extra-content {
    padding: 20px 20px 24px;
    border-top: 1px solid var(--gray-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray);
}

.products-extra-content p {
    margin: 0 0 12px;
}

.products-extra-content p:last-child {
    margin-bottom: 0;
}

.products-extra-item {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

.products-extra-item h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.products-extra-item p {
    margin-bottom: 12px;
}

.products-extra-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

.products-extra-link:hover {
    color: var(--primary-dark);
}

.products-extra-link i {
    font-size: 0.75rem;
}

.products-extra-note {
    font-size: 0.875rem;
    opacity: 0.85;
    font-style: italic;
}

/* ===== PODCAST SECTION ===== */
.podcast-section {
    padding: var(--section-padding);
    background: var(--white);
}

.podcast-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    padding: 64px;
    border-radius: 20px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.podcast-icon {
    font-size: 8rem;
    opacity: 0.9;
}

.podcast-content .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.podcast-content .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.podcast-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.podcast-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.topic-tag {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--light);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
    display: grid;
}

.testimonial-card {
    background: var(--white);
    padding: 56px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-light);
    box-shadow: none;
    text-align: center;
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.125rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.9375rem;
    color: var(--gray);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -70px;
}

.carousel-btn.next {
    right: -70px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 54px;
    height: 54px;
    background: var(--light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.method-info p {
    color: var(--gray);
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--cream);
    padding: 52px;
    border-radius: 16px;
    border: 1px solid var(--gray-light);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(74, 130, 128, 0.3) 100%);
    pointer-events: none;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.newsletter-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.newsletter-content p {
    font-size: 1.0625rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 600px;
}

.newsletter-form input {
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    flex: 1;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-description {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-light);
    color: var(--gray-light);
    font-size: 0.9375rem;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ===== CALENDLY FLOATING BUTTON & POPUP ===== */
.calendly-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.calendly-float-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.calendly-float-btn i {
    font-size: 1.25rem;
}

.calendly-float-label {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .calendly-float-label {
        display: none;
    }
    .calendly-float-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

.calendly-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(44, 54, 57, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.calendly-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.calendly-popup-overlay.is-open .calendly-popup {
    transform: scale(1);
}

.calendly-popup {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 85vh;
    max-height: 720px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.calendly-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.calendly-popup-close:hover {
    background: var(--light);
    color: var(--primary);
}

.calendly-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-social {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }

    .intro-content,
    .about-grid,
    .nature-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .podcast-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }

    .podcast-icon {
        font-size: 5rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Hero highlight: simplify on mobile so it doesn't misalign on line breaks */
    .gradient-text::after {
        display: none;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 8px 20px;
        margin-bottom: 24px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

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

    .coaching-features {
        grid-template-columns: 1fr;
    }

    .product-btn {
        width: calc(100% - 40px);
        margin-bottom: 20px;
    }

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

    .contact-form-wrapper {
        padding: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    .testimonial-card {
        padding: 30px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Über mich - Stärken Grid auf Tablet */
    .distinguishes-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Letzte Karte bei ungerader Anzahl auf volle Breite */
    .distinguishes-grid-modern .distinguish-modern-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Vita Timeline responsive */
    .vita-timeline .timeline-card {
        flex-direction: column;
        gap: 20px;
        padding: 32px;
    }

    .vita-timeline .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .vita-timeline .timeline-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }

    .card-icon,
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .coaching-card,
    .benefit-item {
        padding: 25px;
    }

    .product-header,
    .product-content {
        padding: 30px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }

    /* Stärken Grid auf Mobile */
    .distinguishes-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Letzte Karte zentriert zurücksetzen */
    .distinguishes-grid-modern .distinguish-modern-item:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }

    .distinguish-modern-item {
        padding: 28px;
    }

    /* Vita Timeline auf Mobile */
    .vita-timeline .timeline-card {
        padding: 24px;
    }

    .vita-timeline .timeline-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 0.8s ease;
}

.slide-up {
    animation: slideUp 0.8s ease;
}

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

/* ===== PAGE HERO (for subpages) ===== */
.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient-subtle);
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 0;
}

/* ===== ABOUT HERO (Improved) ===== */
.about-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

/* Bokeh decoration removed per user request */

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-side .section-tag {
    margin-bottom: 20px;
}

.hero-text-side .page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-intro {
    font-size: 1.375rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(45, 95, 93, 0.2);
    position: relative;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary);
    font-size: 1rem;
}

.badge-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== ABOUT ALEX PAGE (Improved) ===== */
.about-alex-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-intro-card {
    max-width: 900px;
    margin: 0 auto 80px;
    background: var(--cream);
    padding: 60px;
    border-radius: 20px;
    border-left: 6px solid var(--secondary);
    position: relative;
}

.intro-icon {
    position: absolute;
    top: -30px;
    left: 50px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.highlight-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--dark);
    font-weight: 400;
    margin: 0;
}

.about-story-section {
    max-width: 1100px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.story-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.story-card:hover::before {
    height: 100%;
}

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

.story-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.story-card:hover .story-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.story-card h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: var(--dark);
}

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

/* ===== DISTINGUISHES SECTION (Improved) ===== */
.distinguishes-section {
    padding: var(--section-padding);
    background: var(--light);
}

.distinguishes-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.distinguish-card {
    background: var(--white);
    padding: 40px 36px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-light);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.distinguish-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.distinguish-card:hover::after {
    transform: scaleX(1);
}

.distinguish-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1;
}

.distinguish-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.distinguish-card:hover .distinguish-icon-new {
    transform: rotateY(360deg);
}

.distinguish-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.distinguish-card p {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== VITA SECTION (Improved) ===== */
.vita-section {
    padding: var(--section-padding);
    background: var(--white);
}

.vita-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-card {
    background: var(--cream);
    padding: 48px;
    border-radius: 20px;
    border: 1.5px solid var(--gray-light);
    position: relative;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(45, 95, 93, 0.2);
}

.timeline-card h3 {
    font-size: 1.625rem;
    margin-bottom: 32px;
    color: var(--dark);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.timeline-badge {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1rem;
}

.timeline-text p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--dark);
    margin: 0;
    padding-top: 6px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-content .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-content .btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-gradient {
    color: var(--primary);
    font-weight: 600;
}

/* ===== COACHING PAGE STYLES ===== */
.coaching-hero {
    padding: 140px 0 80px;
    background: var(--gradient-subtle);
}

.coaching-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.coaching-hero-content .page-title {
    text-align: center;
    margin-bottom: 48px;
}

.coaching-hero-content .highlight {
    color: var(--primary);
}

.coaching-benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.coaching-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.0625rem;
    color: var(--dark);
}

.coaching-benefits-list i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Coaching: Vielleicht erkennst du dich hier wieder */
.coaching-match-section {
    padding: 60px 0;
    background: var(--white);
}

.coaching-match-section .section-description {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.coaching-match-list {
    list-style: none;
    max-width: 640px;
    margin: 0 auto 28px;
}

.coaching-match-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.0625rem;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.6;
}

.coaching-match-list li i {
    color: var(--secondary);
    font-size: 1.125rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.coaching-match-cta-text {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.coaching-match-cta {
    text-align: center;
}

/* Coaching: So arbeite ich – und so nicht */
.coaching-how-section {
    padding: 60px 0 80px;
    background: var(--light);
}

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

.coaching-how-card {
    padding: 32px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-light);
}

.coaching-how-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.coaching-how-card ul {
    list-style: none;
}

.coaching-how-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--dark);
}

.coaching-how-card li:last-child {
    margin-bottom: 0;
}

.coaching-how-yes {
    background: var(--white);
}

.coaching-how-yes li i {
    color: var(--secondary);
}

.coaching-how-no {
    background: var(--white);
    border-color: var(--gray-light);
}

.coaching-how-no li i {
    color: var(--gray);
}

.coaching-how-closing {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dark);
    max-width: 560px;
    margin: 0 auto 32px;
}

.coaching-how-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .coaching-how-grid {
        grid-template-columns: 1fr;
    }
}

/* Coaching Overview Section */
.coaching-overview-section {
    padding: var(--section-padding);
    padding-top: 50px;
    background: var(--white);
}

.coaching-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.coaching-overview-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-light);
    text-align: center;
    transition: var(--transition);
}

.coaching-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.coaching-overview-card .card-image {
    width: 64px;
    height: 64px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.coaching-overview-card h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.35;
}

.coaching-overview-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.coaching-overview-card .card-link:hover {
    gap: 12px;
}

/* Coaching Detail Sections */
.coaching-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.coaching-detail-section.alt {
    background: var(--light);
}

.coaching-detail-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.coaching-detail-header .detail-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

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

.detail-block {
    margin-bottom: 48px;
}

.detail-block h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.detail-block p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
}

.detail-block .intro-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--dark);
}

.detail-lead {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px !important;
}

.detail-note {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary);
}

.detail-benefits {
    list-style: none;
    display: grid;
    gap: 16px;
}

.detail-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
}

.detail-benefits i {
    color: var(--secondary);
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cta-box {
    background: var(--cream);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    text-align: center;
    margin-top: 48px;
}

.cta-box p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
}

.cta-box .btn + .btn {
    margin-left: 12px;
}

@media (max-width: 480px) {
    .cta-box .btn + .btn {
        margin-left: 0;
        margin-top: 12px;
        display: block;
    }
}

/* Coaching FAQ Section (gesamte Sektion aufklappbar) */
.coaching-faq-section {
    padding: 60px 0 80px;
    background: var(--light);
}

.faq-intro {
    max-width: 920px;
    margin: 0 auto 32px;
    padding: 28px 32px;
    background: var(--white);
    border-left: 4px solid var(--secondary);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-intro p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--dark);
    margin: 0 0 12px;
}

.faq-intro p:last-child {
    margin-bottom: 0;
}

.faq-details {
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
}

.faq-summary {
    padding: 20px 24px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.faq-summary::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-details[open] .faq-summary::after {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 24px 28px;
    border-top: 1px solid var(--gray-light);
}

.faq-block {
    margin-top: 24px;
}

.faq-block:first-child {
    margin-top: 0;
}

.faq-q {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 8px;
}

.faq-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin: 0 0 12px;
}

.faq-block p:last-child {
    margin-bottom: 0;
}

/* Coaching Pricing / Kosten Section */
.coaching-pricing-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.pricing-content {
    max-width: 680px;
    margin: 0 auto;
}

.pricing-lead {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.pricing-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin: 24px 0 16px;
}

.pricing-benefits {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 10px;
}

.pricing-benefits li i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-closing {
    font-weight: 500;
    color: var(--dark);
}

/* Coaching Formats Section */
.coaching-formats-section {
    padding: var(--section-padding);
    padding-bottom: 0px;
    background: var(--light);
}

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

.format-card {
    background: var(--white);
    padding: 44px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-light);
    transition: var(--transition);
}

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

.format-card .format-icon {
    width: 72px;
    height: 72px;
    background: var(--light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.format-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.format-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 24px;
}

.format-advantages {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.format-advantages li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--dark);
}

.format-advantages i {
    color: var(--accent);
    font-size: 1rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
}

.final-cta-content .btn {
    background: var(--white);
    color: var(--primary);
}

.final-cta-content .btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* ===== IMPROVED ABOUT PAGE STYLES ===== */
.about-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Bokeh decoration removed per user request */

.about-hero-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image-large {
    position: relative;
}

.image-placeholder-hero {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 6rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.image-placeholder-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Hero Badge für Unterseiten (Über mich, etc.) */
.page-hero .hero-badge,
.coaching-hero .hero-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--secondary);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: none;
    border: none;
    color: var(--dark);
    white-space: nowrap;
}

.hero-text-content .page-title {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Philosophy Section */
.about-philosophy-section {
    padding: var(--section-padding);
    background: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.philosophy-card {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.philosophy-card.highlight {
    background: var(--primary);
    color: var(--white);
}

.philosophy-card.highlight .philosophy-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.philosophy-card.highlight h3,
.philosophy-card.highlight p {
    color: var(--white);
}

.philosophy-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.philosophy-card h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
}

.philosophy-card p {
    line-height: 1.7;
    color: var(--gray);
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto;
    background: var(--cream);
    padding: 48px;
    border-radius: 16px;
    border-left: 4px solid var(--secondary);
    position: relative;
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.mission-statement blockquote {
    font-size: 1.1875rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark);
    margin: 0;
}

/* Modern Distinguishes */
.distinguishes-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Letzte Karte zentrieren, wenn ungerade Anzahl */
.distinguishes-grid-modern .distinguish-modern-item:last-child:nth-child(3n + 1) {
    grid-column: 2;
}

.distinguish-modern-item {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    border: 2px solid var(--gray-light);
    position: relative;
    transition: var(--transition);
}

.distinguish-modern-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.distinguish-modern-item:hover .distinguish-number {
    background: var(--primary);
    color: var(--white);
}

.distinguish-number {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
}

.distinguish-icon-modern {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.distinguish-modern-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.distinguish-modern-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* About page banner image (after "Was meine Arbeit auszeichnet") */
.about-banner-section {
    padding: 30px;
    background: var(--white);
}

.about-banner-wrap {
    width: 80vw;
    max-width: 1200px;
    height: 50vh;
    min-height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.about-banner-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Vita Modern */
.vita-section-modern {
    padding: var(--section-padding);
    background: var(--light);
}

.vita-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.vita-timeline .timeline-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    display: flex;
    gap: 32px;
    transition: var(--transition);
}

.vita-timeline .timeline-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.vita-timeline .timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.vita-timeline .timeline-content {
    flex: 1;
}

.vita-timeline .timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vita-timeline .vita-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vita-timeline .vita-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--dark);
    font-size: 1.0625rem;
    line-height: 1.6;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

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

.vita-timeline .vita-list li i {
    color: var(--primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.vita-timeline .vita-list li:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.vita-timeline .vita-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.0625rem;
}

.vita-timeline .vita-description:last-child {
    margin-bottom: 0;
}

/* CTA Modern */
.cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-modern-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    flex-shrink: 0;
}

.cta-modern-content {
    flex: 1;
}

.cta-modern-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-modern-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: var(--white);
    color: var(--primary);
}

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

.cta-buttons .btn:hover {
    transform: translateY(-2px);
}

/* ===== CONTACT PAGE - BEAUTIFUL NEW DESIGN ===== */
.contact-hero-new {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 50%, var(--cream) 100%);
    position: relative;
}

.contact-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title-big {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.highlight-word {
    color: var(--primary);
    position: relative;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--secondary);
    opacity: 0.3;
    z-index: -1;
}

.hero-description-big {
    font-size: 1.1875rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.trust-item span {
    font-size: 1.0625rem;
    color: var(--dark);
    font-weight: 500;
}

.quick-contact-box {
    background: var(--white);
    padding: 44px;
    border-radius: 20px;
    border: 1.5px solid var(--gray-light);
    box-shadow: var(--shadow-lg);
}

.quick-contact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light);
}

.quick-contact-header i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.quick-contact-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    margin-bottom: 24px;
}

.quick-contact-item i {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.quick-contact-item .label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.quick-contact-item a {
    font-size: 1.0625rem;
    color: var(--primary);
    font-weight: 600;
}

.social-links-box {
    text-align: center;
}

.social-label {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 16px;
    font-weight: 500;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: var(--light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Options */
.contact-options-section {
    padding: 80px 0;
    background: var(--white);
}

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

.option-card {
    background: var(--white);
    padding: 44px 36px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.option-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
}

.featured-label {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.option-card:hover .option-icon {
    transform: scale(1.1) rotate(5deg);
}

.option-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.option-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 24px;
}

.option-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.option-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Form Section Beautiful */
.form-section-beautiful {
    padding: 100px 0;
    background: var(--light);
}

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

.form-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.form-card-beautiful {
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--gray-light);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9375rem;
}

.form-field label i {
    color: var(--primary);
    font-size: 1rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 16px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 95, 93, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-label-beautiful {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 16px 0;
}

.checkbox-label-beautiful input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: var(--white);
}

.checkbox-label-beautiful input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label-beautiful input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.checkbox-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray);
}

.checkbox-text a {
    color: var(--primary);
    text-decoration: underline;
}

.submit-btn-beautiful {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(45, 95, 93, 0.2);
}

.submit-btn-beautiful:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45, 95, 93, 0.3);
}

.submit-btn-beautiful i {
    font-size: 1.125rem;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1.5px solid var(--light);
}

.form-note i {
    color: var(--primary);
    font-size: 1.125rem;
}

.form-note p {
    font-size: 0.9375rem;
    color: var(--gray);
    margin: 0;
}

/* FAQ Section Beautiful */
.faq-section-beautiful {
    padding: 100px 0;
    background: var(--white);
}

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

.faq-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-light);
    transition: var(--transition);
}

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

.faq-icon {
    width: 64px;
    height: 64px;
    background: var(--light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.faq-card:hover .faq-icon {
    background: var(--primary);
    color: var(--white);
}

.faq-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.faq-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

/* ===== OLD CONTACT PAGE STYLES (Improved) ===== */
.contact-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero .section-tag {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.contact-hero .page-title {
    color: var(--white);
    margin-bottom: 24px;
}

.contact-hero .hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.8;
    opacity: 0.95;
}

.contact-main-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
}

/* Contact Info Side */
.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 48px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-light);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
    box-shadow: none;
}

.contact-method-card:hover {
    transform: translateX(6px);
    background: var(--cream);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

.contact-method-card .method-icon-large {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.contact-method-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.contact-method-card p {
    font-size: 1rem;
    color: var(--gray);
}

.contact-socials h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.contact-social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--light);
    border-radius: 10px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.contact-social-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-social-btn i {
    font-size: 1.25rem;
}

/* Contact Form Side */
.form-card {
    background: var(--white);
    padding: 52px;
    border-radius: 20px;
    border: 1.5px solid var(--gray-light);
    box-shadow: var(--shadow-md);
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px 20px 0 0;
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.form-intro {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 36px;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-row .form-group {
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--light);
}

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

.faq-item {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--dark);
    line-height: 1.4;
}

.faq-answer {
    color: var(--gray);
    line-height: 1.7;
    padding-left: 48px;
}

/* ===== RESPONSIVE FOR NEW PAGES ===== */
@media (max-width: 1024px) {
    .about-hero-content,
    .about-alex-grid,
    .story-grid,
    .vita-timeline,
    .formats-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .coaching-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .floating-badge {
        display: none;
    }

    .coaching-benefits-list {
        grid-template-columns: 1fr;
    }

    .coaching-detail-header {
        flex-direction: column;
        text-align: center;
    }

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

    .distinguishes-grid-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero,
    .coaching-hero,
    .contact-hero,
    .contact-hero-new {
        padding: 120px 0 60px;
    }

    .contact-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content-right {
        order: -1;
    }

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

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

    .form-card-beautiful {
        padding: 36px 24px;
    }

    .faq-grid-beautiful {
        grid-template-columns: 1fr;
    }

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

    .coaching-overview-card h3 {
        min-height: auto;
    }

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

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

    .contact-social-links {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   COMPREHENSIVE RESPONSIVE OVERRIDES – Mobile & iPad
   ========================================================== */

/* ----- iPad landscape / small desktops (≤1024px) ----- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    /* Hero (index) */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 8px;
    }

    /* Stats */
    .stats-grid {
        gap: 24px;
    }

    /* Coaching overview cards: 1 column so each card is wider, less scroll */
    .coaching-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coaching-overview-card {
        padding: 28px 24px;
    }

    .coaching-overview-card .card-image {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .coaching-overview-card h3 {
        font-size: 1.0625rem;
        min-height: auto;
    }

    /* Coaching detail */
    .coaching-detail-section {
        padding: 60px 0;
    }

    /* Formats grid */
    .formats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Podcast */
    .podcast-wrapper {
        padding: 48px;
        gap: 40px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 44px;
    }

    .carousel-btn.prev {
        left: -24px;
    }

    .carousel-btn.next {
        right: -24px;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* About hero */
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-img {
        width: 280px;
        height: 280px;
    }

    .floating-badge {
        display: none;
    }

    /* About story & vita */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    /* Coaching benefits list */
    .coaching-benefits-list {
        grid-template-columns: 1fr;
    }

    .coaching-detail-header {
        flex-direction: column;
        text-align: center;
    }

    /* Coaching match list */
    .coaching-match-list {
        max-width: 100%;
    }

    /* Pricing */
    .pricing-content {
        max-width: 100%;
    }

    /* FAQ */
    .faq-details {
        max-width: 100%;
    }

    .faq-intro {
        max-width: 100%;
    }

    /* Contact page */
    .contact-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .options-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* Über mich strengths */
    .distinguishes-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .distinguishes-grid-modern .distinguish-modern-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ----- iPad portrait / tablets (≤768px) ----- */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 20px;
    }

    /* Global heading tightening */
    h1 { font-size: clamp(2rem, 6vw, 2.75rem); }
    h2 { font-size: clamp(1.75rem, 5vw, 2.25rem); }

    .section-header {
        margin-bottom: 40px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 28px;
    }

    /* ----- Navbar ----- */
    .nav-wrapper {
        padding: 16px 0;
    }

    .logo {
        font-size: 1.35rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    /* ----- Hero (index) ----- */
    .hero {
        min-height: auto;
        padding: 110px 0 60px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 5.5vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 8px 20px;
        margin-bottom: 24px;
    }

    /* ----- Intro section ----- */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .quote-card {
        padding: 32px;
    }

    .quote-card blockquote p {
        font-size: 1.0625rem;
    }

    /* ----- About section ----- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-item {
        padding: 24px;
    }

    /* ----- Stats ----- */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-item {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--gray-light);
    }

    .stat-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    /* ----- Coaching section (index) ----- */
    .coaching-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .coaching-card {
        padding: 32px;
    }

    .coaching-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-box {
        padding: 24px 20px;
    }

    /* ----- Products ----- */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-header {
        padding: 36px 28px;
    }

    .product-content {
        padding: 28px;
    }

    .product-btn {
        width: 100%;
        margin-bottom: 16px;
    }

    /* ----- Podcast ----- */
    .podcast-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 28px;
        gap: 28px;
    }

    .podcast-icon {
        font-size: 4rem;
    }

    .podcast-topics {
        justify-content: center;
    }

    /* ----- Testimonials ----- */
    .testimonials-carousel {
        max-width: 100%;
    }

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

    .testimonial-text {
        font-size: 1rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .carousel-btn.prev {
        left: -4px;
    }

    .carousel-btn.next {
        right: -4px;
    }

    /* ----- Contact form ----- */
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    /* ----- Newsletter ----- */
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    /* ----- Footer ----- */
    .footer {
        padding: 60px 0 24px;
    }

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

    .footer-bottom {
        font-size: 0.8125rem;
    }

    /* ----- Nature section ----- */
    .nature-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* ----- About hero (über mich) ----- */
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-img {
        width: 220px;
        height: 220px;
    }

    .hero-intro {
        font-size: 1.125rem;
    }

    /* ----- About philosophy cards (über mich) ----- */
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ----- About intro card ----- */
    .about-intro-card {
        padding: 36px 28px;
        margin-bottom: 48px;
    }

    .intro-icon {
        top: -24px;
        left: 28px;
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .highlight-text {
        font-size: 1.0625rem;
    }

    /* ----- Story cards ----- */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-card {
        padding: 28px;
    }

    .story-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    /* ----- Vita ----- */
    .vita-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .timeline-card {
        padding: 32px 24px;
        flex-direction: column;
        gap: 20px;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-card h3 {
        font-size: 1.375rem;
    }

    /* ----- Stärken Grid ----- */
    .distinguishes-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .distinguishes-grid-modern .distinguish-modern-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .distinguish-modern-item {
        padding: 28px;
    }

    /* ----- CTA section ----- */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content p {
        font-size: 1.0625rem;
    }

    /* ----- Coaching hero ----- */
    .coaching-hero,
    .page-hero {
        padding: 120px 0 60px;
    }

    .coaching-hero-content .page-title {
        margin-bottom: 32px;
    }

    .coaching-hero-content .section-description {
        font-size: 1rem;
    }

    /* ----- Coaching match section ----- */
    .coaching-match-section {
        padding: 48px 0;
    }

    .coaching-match-list li {
        font-size: 1rem;
    }

    /* ----- Coaching how section ----- */
    .coaching-how-section {
        padding: 48px 0 60px;
    }

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

    .coaching-how-card {
        padding: 24px;
    }

    /* ----- Coaching overview ----- */
    .coaching-overview-section {
        padding: 60px 0;
    }

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

    .coaching-overview-card {
        padding: 28px 24px;
    }

    .coaching-overview-card h3 {
        min-height: auto;
        font-size: 1.0625rem;
    }

    /* ----- Coaching detail ----- */
    .coaching-detail-section {
        padding: 60px 0;
    }

    .coaching-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        margin-bottom: 32px;
    }

    .coaching-detail-header .detail-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .detail-block {
        margin-bottom: 32px;
    }

    .detail-block h3 {
        font-size: 1.25rem;
    }

    .cta-box {
        padding: 28px 24px;
        margin-top: 32px;
    }

    .cta-box p {
        font-size: 1.0625rem;
    }

    .cta-box .btn + .btn {
        margin-left: 0;
        margin-top: 12px;
    }

    /* ----- Coaching formats ----- */
    .formats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .format-card {
        padding: 28px 24px;
    }

    /* ----- Coaching FAQ ----- */
    .coaching-faq-section {
        padding: 48px 0 60px;
    }

    .faq-intro {
        padding: 24px;
    }

    .faq-summary {
        padding: 16px 20px;
        font-size: 1.125rem;
    }

    .faq-content {
        padding: 0 20px 24px;
    }

    /* ----- Coaching pricing ----- */
    .coaching-pricing-section {
        padding: 48px 0 60px;
    }

    /* ----- Coaching page images ----- */
    .coaching-image-wrap {
        padding: 32px 0;
    }

    .coaching-page-img {
        max-width: 360px;
    }

    /* ----- Contact page (new) ----- */
    .contact-hero-new {
        padding: 120px 0 60px;
    }

    .contact-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content-right {
        order: -1;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .form-card-beautiful {
        padding: 32px 24px;
    }

    .contact-social-links {
        grid-template-columns: 1fr;
    }

    /* ----- Final CTA ----- */
    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-content h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .final-cta-content p {
        font-size: 1rem;
    }

    /* ----- Calendly ----- */
    .calendly-float-btn {
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .calendly-popup {
        max-width: 100%;
        height: 90vh;
        border-radius: 12px;
    }

    /* ----- Back to top ----- */
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ----- Mobile phones (≤480px) ----- */
@media (max-width: 480px) {
    :root {
        --container-padding: 0 16px;
    }

    h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
    h2 { font-size: clamp(1.5rem, 6vw, 1.875rem); }
    h3 { font-size: clamp(1.25rem, 4.5vw, 1.5rem); }

    .section-header {
        margin-bottom: 32px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 48px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    /* Coaching cards */
    .coaching-card,
    .benefit-item {
        padding: 24px;
    }

    .card-icon,
    .benefit-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    /* Products */
    .product-header {
        padding: 28px 20px;
    }

    .product-header h3 {
        font-size: 1.5rem;
    }

    .product-content {
        padding: 24px 20px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    /* Podcast */
    .podcast-wrapper {
        padding: 28px 20px;
    }

    .podcast-icon {
        font-size: 3rem;
    }

    .topic-tag {
        font-size: 0.8125rem;
        padding: 6px 14px;
    }

    /* About hero */
    .about-hero {
        padding: 100px 0 48px;
    }

    .hero-img {
        width: 180px;
        height: 180px;
    }

    .hero-text-side .page-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    /* About intro card */
    .about-intro-card {
        padding: 28px 20px;
        margin-bottom: 40px;
    }

    .highlight-text {
        font-size: 1rem;
    }

    /* Story cards */
    .story-card {
        padding: 24px 20px;
    }

    /* Vita */
    .timeline-card {
        padding: 24px 20px;
    }

    .timeline-icon {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .timeline-badge {
        width: 34px;
        height: 34px;
        font-size: 0.875rem;
    }

    /* Stärken */
    .distinguishes-grid-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .distinguishes-grid-modern .distinguish-modern-item:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }

    .distinguish-modern-item {
        padding: 24px 20px;
    }

    /* Stack philosophy cards also on portrait/narrow viewports */
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Coaching hero */
    .coaching-hero,
    .page-hero {
        padding: 100px 0 48px;
    }

    /* Coaching overview */
    .coaching-overview-card .card-image {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .coaching-overview-card {
        padding: 24px 20px;
    }

    .coaching-overview-card h3 {
        font-size: 1rem;
    }

    /* Coaching detail */
    .coaching-detail-header .detail-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }

    .coaching-detail-content {
        max-width: 100%;
    }

    .cta-box {
        padding: 24px 20px;
    }

    .cta-box p {
        font-size: 1rem;
    }

    /* Coaching how */
    .coaching-how-card {
        padding: 20px;
    }

    /* Formats */
    .format-card {
        padding: 24px 20px;
    }

    /* FAQ */
    .faq-intro {
        padding: 20px 16px;
    }

    .faq-summary {
        padding: 16px;
        font-size: 1rem;
    }

    .faq-content {
        padding: 0 16px 20px;
    }

    .faq-q {
        font-size: 1rem;
    }

    /* Pricing */
    .pricing-content {
        max-width: 100%;
    }

    .pricing-lead {
        font-size: 1rem;
    }

    /* Coaching images */
    .coaching-page-img {
        max-width: 100%;
    }

    .coaching-image-wrap {
        padding: 24px 0;
    }

    /* Contact page */
    .contact-hero-new {
        padding: 100px 0 48px;
    }

    .form-card-beautiful {
        padding: 24px 16px;
    }

    .option-card {
        padding: 24px 16px;
    }

    /* Final CTA */
    .final-cta-content {
        padding: 0 8px;
    }

    /* Footer */
    .footer {
        padding: 48px 0 20px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    /* Calendly */
    .calendly-float-label {
        display: none;
    }

    .calendly-float-btn {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    /* Back to top */
    .back-to-top {
        bottom: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
}

/* ===== LEGAL PAGES (Impressum, Datenschutz) ===== */
.legal-page {
    padding: 120px 0 80px;
    background: var(--light);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary);
}

.legal-content h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    color: var(--dark);
    margin-top: 48px;
    margin-bottom: 24px;
}

.legal-content h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h4 {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 28px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1rem;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.legal-footer-note {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
    text-align: center;
}

.legal-footer-note p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }

    .legal-content {
        padding: 40px 30px;
    }

    .legal-content h1 {
        margin-bottom: 30px;
    }

    .legal-content h2 {
        margin-top: 36px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-content ul {
        margin-left: 20px;
    }
}

