/* ==========================================================================
   Glenk Performance Coaching - Enhanced Stylesheet
   Modern, Responsive, Animated Design
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-blue: #1a4d8f;
    --primary-blue-dark: #0f2d54;
    --primary-blue-light: #2563ab;
    --primary-blue-ultra-light: #e8f2ff;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    --star-yellow: #fbbf24;
    --gradient-blue: linear-gradient(135deg, #1a4d8f 0%, #2563ab 100%);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

/* Remove Astra Theme Side Padding and Constraints - AGGRESSIVE OVERRIDE */
body,
html,
#page,
#content,
.site,
.site-content,
.site-main,
.ast-container,
.ast-page-builder-template,
.ast-separate-container,
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-separate-container .site-main > .ast-row,
body .site .site-content,
.entry-content,
.entry-content > *,
article,
main,
.hfeed,
.site-content > *,
#primary,
.content-area,
body.ast-separate-container #primary,
body.ast-page-builder-template #primary,
.ast-page-builder-template .entry-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Force remove all nested padding */
* {
    box-sizing: border-box !important;
}

body, html {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Completely override Astra container system */
body.ast-separate-container .ast-article-single,
body.ast-separate-container .ast-article-post,
body.ast-page-builder-template .entry-content,
body.ast-plain-container .entry-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove any auto margins */
.ast-container,
.ast-container > *,
.entry-content > * {
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remove all underlines globally */
a,
a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none !important;
    text-underline-offset: unset !important;
}

/* Ensure proper text visibility on hover */
.glenk-btn,
.glenk-btn *,
.glenk-btn svg,
.glenk-btn:hover,
.glenk-btn:hover *,
.glenk-btn:hover svg,
.glenk-btn:focus,
.glenk-btn:focus *,
.glenk-btn:focus svg,
.glenk-btn:active,
.glenk-btn:active *,
.glenk-btn:active svg {
    color: white !important;
    text-decoration: none !important;
    fill: white !important;
}

.glenk-btn-secondary,
.glenk-btn-secondary *,
.glenk-btn-secondary svg {
    color: var(--text-dark) !important;
    fill: var(--text-dark) !important;
}

.glenk-btn-secondary:hover,
.glenk-btn-secondary:hover *,
.glenk-btn-secondary:hover svg,
.glenk-btn-secondary:focus,
.glenk-btn-secondary:focus *,
.glenk-btn-secondary:focus svg,
.glenk-btn-secondary:active,
.glenk-btn-secondary:active *,
.glenk-btn-secondary:active svg {
    color: var(--primary-blue) !important;
    text-decoration: none !important;
    fill: var(--primary-blue) !important;
}

/* Container & Layout */
.glenk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glenk-section {
    padding: 120px 0;
}

.glenk-section-alt {
    background-color: var(--bg-light);
}

.glenk-section-header {
    margin-bottom: 80px;
}

/* Typography */
.glenk-heading-xl {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.glenk-heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.glenk-heading-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.glenk-text-lg {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-gray);
}

.glenk-text-base {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.glenk-text-sm {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-light);
}

.glenk-text-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glenk-text-blue {
    color: var(--primary-blue);
}

.glenk-text-center {
    text-align: center;
}

.glenk-max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.glenk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.glenk-btn-primary {
    background: var(--gradient-blue);
    box-shadow: 0 4px 20px rgba(26, 77, 143, 0.4);
    color: white !important;
    transition: all 0.3s ease;
}

.glenk-btn-primary:hover {
    background: linear-gradient(135deg, #0f2d54 0%, #1a4d8f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 77, 143, 0.5);
    color: white !important;
}

.glenk-btn-primary,
.glenk-btn-primary *,
.glenk-btn-primary span,
.glenk-btn-primary svg,
.glenk-btn-primary path {
    color: white !important;
    fill: white !important;
    stroke: white !important;
}

.glenk-btn-primary:hover,
.glenk-btn-primary:hover *,
.glenk-btn-primary:hover span,
.glenk-btn-primary:hover svg,
.glenk-btn-primary:hover path,
.glenk-btn-primary:focus,
.glenk-btn-primary:focus *,
.glenk-btn-primary:active,
.glenk-btn-primary:active * {
    color: white !important;
    fill: white !important;
    stroke: white !important;
    text-decoration: none !important;
}

.glenk-btn-secondary {
    background-color: transparent;
    color: var(--text-dark) !important;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.glenk-btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue) !important;
    background-color: var(--primary-blue-ultra-light);
    transform: translateY(-2px);
}

.glenk-btn-secondary,
.glenk-btn-secondary *,
.glenk-btn-secondary svg,
.glenk-btn-secondary path {
    color: var(--text-dark) !important;
    fill: var(--text-dark) !important;
    stroke: var(--text-dark) !important;
}

.glenk-btn-secondary:hover,
.glenk-btn-secondary:hover *,
.glenk-btn-secondary:hover svg,
.glenk-btn-secondary:hover path {
    color: var(--primary-blue) !important;
    fill: var(--primary-blue) !important;
    stroke: var(--primary-blue) !important;
    text-decoration: none !important;
}

.glenk-btn-lg {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.glenk-btn-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Icons */
.icon-sm {
    width: 20px;
    height: 20px;
}

.icon-md {
    width: 24px;
    height: 24px;
}

.icon-lg {
    width: 32px;
    height: 32px;
}

/* Ensure SVG icons inherit colors properly */
svg {
    fill: currentColor;
    color: inherit;
}

svg path,
svg circle,
svg rect,
svg line {
    fill: inherit;
    stroke: inherit;
}

/* Badges */
.glenk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--bg-light);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.glenk-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.glenk-badge-accent {
    background: linear-gradient(135deg, #e8f2ff 0%, #d1e7ff 100%);
    color: var(--primary-blue);
    border-color: var(--primary-blue-light);
    box-shadow: 0 4px 12px rgba(26, 77, 143, 0.15);
}

.glenk-hero-badges {
    display: flex;
    gap: 12px;
    margin: 32px 0;
    flex-wrap: wrap;
}

/* Hero Section */
.glenk-hero-section {
    padding-top: 0;
    padding-bottom: 0;
    background: #1a1a1a;
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    overflow: hidden;
}

/* Hero background mit img (wie subpage-hero) */
.glenk-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.glenk-hero-bg img {
    display: block;
    width: 100%;
    height: max(100%, 700px);
    object-fit: cover;
    object-position: 20% 30%;
}

/* Dunkler Overlay für bessere Textlesbarkeit - rechts dunkler */
.glenk-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.glenk-hero-section .glenk-hero {
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.glenk-hero-section .glenk-hero-content {
    animation: fadeInUp 0.8s ease-out;
    width: 45%;
    max-width: 580px;
    padding: 60px;
    padding-right: 80px;
    margin-right: 0;
    margin-left: auto;
    text-align: left;
}

/* Hero Title - GLENK PERFORMANCE */
.glenk-hero-title {
    display: block;
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.25em;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    text-transform: uppercase;
}

/* Hero Text Styles - Weiß für dunklen Hintergrund */
.glenk-hero-section .glenk-hero-content .glenk-heading-xl {
    color: #ffffff !important;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 8px 40px rgba(0, 0, 0, 0.4);
}

.glenk-hero-section .glenk-hero-content .glenk-heading-xl .glenk-text-gradient {
    color: #3b82f6 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #3b82f6 !important;
    background-clip: unset !important;
    white-space: nowrap;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.glenk-hero-title {
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 15px rgba(0, 0, 0, 0.5);
}

.glenk-hero-content .glenk-text-lg {
    color: rgba(255, 255, 255, 0.95);
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 3px 10px rgba(0, 0, 0, 0.5);
}

.glenk-hero-content .glenk-badge {
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.glenk-hero-content .glenk-badge-accent {
    background: rgba(37, 99, 235, 0.5);
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.6);
}

.glenk-hero-content .glenk-rating .glenk-text-sm {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.glenk-hero-content .glenk-btn-secondary {
    background: #ffffff;
    color: var(--primary-blue);
    border: 2px solid #ffffff;
}

.glenk-hero-content .glenk-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #ffffff;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Rating */
.glenk-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.glenk-stars {
    display: flex;
    gap: 4px;
    color: var(--star-yellow);
}

/* Feature Cards */
.glenk-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

/* Intelligentes Grid für 4 Items: 3 oben, 1 zentriert unten */
.glenk-features-grid:has(.glenk-feature-card:nth-child(4):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.glenk-features-grid:has(.glenk-feature-card:nth-child(4):last-child) .glenk-feature-card:nth-child(4) {
    grid-column: 2 / 3;
}

.glenk-feature-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, #fafbfc 100%);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.glenk-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glenk-feature-card:hover::before {
    opacity: 1;
}

.glenk-feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.glenk-feature-card:hover::after {
    opacity: 1;
    transform: translate(-25%, -25%);
}

.glenk-card-hover:hover,
.glenk-feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px -12px rgba(26, 77, 143, 0.35);
}

.glenk-feature-icon {
    width: 72px;
    height: 64px;
    background: var(--gradient-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    transition: all var(--transition-base);
}

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

.glenk-icon-primary {
    background: var(--primary-blue-ultra-light);
    color: var(--primary-blue);
}

/* Content Section with Image */
.glenk-content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.glenk-content-section.reverse,
.glenk-content-section.glenk-content-reverse {
    direction: rtl;
}

.glenk-content-section.reverse > *,
.glenk-content-section.glenk-content-reverse > * {
    direction: ltr;
}

.glenk-content-image img,
.glenk-content-image > div {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.glenk-content-list {
    list-style: none;
    margin-top: 32px;
}

.glenk-content-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-gray);
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
}

.glenk-content-list li:hover {
    background: linear-gradient(135deg, #e8f2ff 0%, #d1e7ff 100%);
    border-color: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    transform: translateX(12px);
    box-shadow: 0 4px 16px rgba(26, 77, 143, 0.15);
}

.glenk-content-list svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* Enhanced Icon List for All-in-One Coaching */
.glenk-content-list-icons li {
    padding: 18px 20px;
    background: linear-gradient(145deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.glenk-content-list-icons li:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-color: var(--primary-blue);
    color: white;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 24px rgba(26, 77, 143, 0.25);
}

.glenk-content-list-icons li:hover span {
    color: white;
}

.glenk-list-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.glenk-list-icon svg {
    width: 22px;
    height: 22px;
    color: white;
    stroke: white;
}

.glenk-content-list-icons li:hover .glenk-list-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.glenk-content-list-icons li:hover .glenk-list-icon svg {
    color: white;
    stroke: white;
}

/* Dark Section */
.glenk-dark-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 100px 0;
}

.glenk-dark-section .glenk-heading-lg,
.glenk-dark-section .glenk-heading-md {
    color: white;
}

.glenk-dark-section .glenk-text-lg,
.glenk-dark-section .glenk-text-base {
    color: #cbd5e1;
}

.glenk-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.glenk-checklist-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.glenk-checklist-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.glenk-check-icon {
    width: 28px;
    height: 28px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

/* Enhanced Checklist with Custom Icons */
.glenk-checklist-icons {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.glenk-checklist-icons .glenk-checklist-item {
    padding: 20px 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
}

.glenk-checklist-icons .glenk-checklist-item:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.glenk-checklist-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glenk-checklist-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke: white;
    transition: all 0.3s ease;
}

.glenk-checklist-icons .glenk-checklist-item:hover .glenk-checklist-icon {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    border-color: transparent;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(26, 77, 143, 0.4);
}

.glenk-checklist-icons .glenk-checklist-item span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

/* Responsive Checklist */
@media (max-width: 768px) {
    .glenk-checklist-icons {
        grid-template-columns: 1fr;
    }

    .glenk-checklist-icons .glenk-checklist-item {
        padding: 18px 20px;
    }

    .glenk-checklist-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .glenk-checklist-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Process Steps */
.glenk-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.glenk-process-step {
    position: relative;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.glenk-process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.glenk-step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue-ultra-light);
    line-height: 1;
    margin-bottom: 24px;
}

/* Stats Section */
.glenk-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 48px;
}

.glenk-stat-item {
    padding: 32px;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.glenk-stat-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.glenk-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.glenk-stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Reviews / Testimonials */
.glenk-reviews-header {
    text-align: center;
    margin-bottom: 80px;
}

.glenk-rating-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 48px;
    padding: 48px;
    background-color: var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.glenk-rating-score {
    text-align: center;
}

.glenk-rating-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.glenk-reviews-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.glenk-filter-btn {
    padding: 12px 24px;
    border-radius: 100px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.glenk-filter-btn:hover {
    border-color: var(--primary-blue);
    background-color: var(--primary-blue-ultra-light);
}

.glenk-filter-btn.active {
    background: var(--gradient-blue);
    border-color: var(--primary-blue);
    color: white;
}

.glenk-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.glenk-review-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.glenk-review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-blue-light);
}

.glenk-review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.glenk-review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.glenk-review-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.glenk-review-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.glenk-review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.glenk-review-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.glenk-review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.glenk-review-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.glenk-review-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-blue-ultra-light);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.glenk-review-category {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Contact Form */
.glenk-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.glenk-contact-image img,
.glenk-contact-image > div {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 32px;
}

.glenk-contact-details {
    background: transparent;
    padding: 40px;
    border-radius: 20px;
    border: none;
}

.glenk-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.glenk-contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.glenk-contact-icon svg {
    width: 24px;
    height: 24px;
    fill: none !important;
    stroke: white !important;
    color: white !important;
}

.glenk-contact-icon svg path,
.glenk-contact-icon svg line,
.glenk-contact-icon svg rect {
    stroke: white !important;
    fill: none !important;
}

.glenk-contact-text h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.glenk-contact-text p {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 600;
}

.glenk-form-container {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(26, 77, 143, 0.1);
    border: 2px solid var(--border-color);
}

.glenk-form-group {
    margin-bottom: 24px;
}

.glenk-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.glenk-form-label .required {
    color: var(--primary-blue);
}

.glenk-form-input,
.glenk-form-select,
.glenk-form-textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-base);
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.glenk-form-input:focus,
.glenk-form-select:focus,
.glenk-form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px var(--primary-blue-ultra-light);
    transform: translateY(-2px);
}

.glenk-form-input::placeholder,
.glenk-form-textarea::placeholder {
    color: var(--text-light);
}

.glenk-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.glenk-form-benefits {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.glenk-form-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.glenk-form-benefit::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--success-green);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.75rem;
}

.glenk-form-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 1rem;
    font-weight: 500;
}

.glenk-form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 2px solid var(--success-green);
}

.glenk-form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* Coaching Choice Cards */
.glenk-coaching-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 12px;
}

.glenk-choice-card {
    position: relative;
    cursor: pointer;
    height: 100%;
}

.glenk-choice-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.glenk-choice-content {
    background: var(--bg-light);
    border: 3px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.glenk-choice-content:hover {
    border-color: var(--primary-blue-light);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(26, 77, 143, 0.2);
}

.glenk-choice-card input[type="radio"]:checked + .glenk-choice-content {
    background: linear-gradient(135deg, #1a4d8f 0%, #2563ab 100%);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(26, 77, 143, 0.4);
}

.glenk-choice-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    transition: transform var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.glenk-choice-card input[type="radio"]:checked + .glenk-choice-content .glenk-choice-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.glenk-choice-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--primary-blue);
}

.glenk-choice-card input[type="radio"]:checked + .glenk-choice-content .glenk-choice-icon svg {
    fill: white;
}

.glenk-choice-card:hover .glenk-choice-icon {
    transform: scale(1.15) rotate(5deg);
}

.glenk-choice-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: inherit;
}

.glenk-choice-content p {
    font-size: 0.938rem;
    margin: 0;
    opacity: 0.85;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .glenk-coaching-choice {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .glenk-choice-content {
        min-height: 160px;
        padding: 28px 20px;
    }
}

/* Quote Section */
.glenk-quote-section {
    background: linear-gradient(135deg, #1a4d8f 0%, #0f2d54 100%);
    color: white;
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    margin: 80px 0;
    box-shadow: 0 25px 50px -12px rgba(26, 77, 143, 0.4);
    position: relative;
    overflow: hidden;
}

.glenk-quote-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
}

.glenk-quote-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.glenk-quote-author {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

/* CTA Section */
.glenk-cta-section {
    background: linear-gradient(135deg, #1a4d8f 0%, #0f2d54 100%);
    color: white;
    padding: 80px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(26, 77, 143, 0.4);
    position: relative;
    overflow: hidden;
}

.glenk-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.glenk-cta-section .glenk-heading-lg {
    color: white;
    position: relative;
    z-index: 1;
}

.glenk-cta-section .glenk-text-lg {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.glenk-cta-section .glenk-btn {
    position: relative;
    z-index: 1;
}

/* Placeholder Images */
.glenk-placeholder-img {
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    min-height: 400px;
}

/* Image Float Animation - DISABLED */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.glenk-image-float {
    /* animation: float 6s ease-in-out infinite; */
}

/* Fade In Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glenk-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll Reveal Animation */
@keyframes revealFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glenk-scroll-reveal {
    opacity: 0;
    animation: revealFromBottom 0.8s ease-out forwards;
}

/* Staggered animations for feature cards */
.glenk-feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.glenk-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.glenk-feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.glenk-feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Pulse effect for badges */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.glenk-badge-accent {
    /* Animation disabled per user request */
    /* animation: pulse 2s ease-in-out infinite; */
}

/* Shine effect on hover */
.glenk-btn-primary {
    position: relative;
    overflow: hidden;
}

.glenk-btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.glenk-btn-primary:hover::after {
    transform: translateX(100%);
}

/* Smooth shadow transitions */
.glenk-card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glenk-card-hover:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Icon rotation on hover */
.glenk-feature-card:hover .glenk-feature-icon svg {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(10deg);
    }
    75% {
        transform: scale(1.1) rotate(-5deg);
    }
}

/* Gradient text shine */
@keyframes gradientShine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.glenk-text-gradient {
    background: linear-gradient(
        90deg,
        #1a4d8f 0%,
        #2563ab 25%,
        #3b82f6 50%,
        #2563ab 75%,
        #1a4d8f 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShine 3s ease infinite;
}

/* Loading State */
.glenk-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.glenk-mt-60 {
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .glenk-section {
        padding: 80px 0;
    }

    .glenk-content-section,
    .glenk-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Hero Section - Person im Background auf Tablet/iPad */
    .glenk-hero-section {
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
        height: 100vh;
        height: 100dvh;
        min-height: 550px;
    }

    .glenk-hero-bg img {
        object-position: 15% center;
    }

    .glenk-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.1) 25%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 0.5) 75%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }

    .glenk-hero {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

    .glenk-hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 25px 50px;
        margin-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .glenk-hero-section .glenk-hero-title {
        margin-bottom: 20px;
        transform: translateY(-70px) !important;
    }

    .glenk-hero-content .glenk-heading-xl {
        margin-bottom: 0;
        margin-top: 25vh;
        font-size: 3.5rem;
        line-height: 1.15;
    }

    .glenk-hero-content .glenk-btn-group {
        margin-top: auto;
        padding-top: 20vh;
        justify-content: center;
    }

    .glenk-content-text .glenk-btn-group {
        justify-content: center;
        width: 100%;
    }

    .glenk-content-section.reverse,
    .glenk-content-section.glenk-content-reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .glenk-container {
        padding: 0 20px;
    }

    .glenk-section {
        padding: 60px 0;
    }

    .glenk-hero-section {
        padding-top: 0;
        padding-bottom: 0;
        height: 100vh;
        height: 100dvh;
        min-height: 500px;
    }

    .glenk-hero-bg img {
        object-position: 25% center;
    }

    .glenk-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.5) 100%
        );
    }

    .glenk-hero {
        height: 100%;
        align-items: flex-start;
        justify-content: flex-end;
        padding-bottom: 50px;
    }

    .glenk-hero-content {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        text-align: left;
        display: block;
    }

    .glenk-hero-content .glenk-heading-xl {
        margin-top: 0;
        font-size: revert;
        line-height: revert;
    }

    .glenk-hero-content .glenk-btn-group {
        padding-top: 0;
        margin-top: 24px;
    }

    .glenk-features-grid,
    .glenk-process-grid,
    .glenk-reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .glenk-btn-group {
        flex-direction: column;
        width: 100%;
    }

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

    .glenk-form-container,
    .glenk-cta-section {
        padding: 32px 24px;
    }

    .glenk-quote-section {
        padding: 48px 32px;
    }

    .glenk-rating-overview {
        padding: 32px 24px;
    }

    .glenk-form-benefits {
        flex-direction: column;
        gap: 12px;
    }

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

@media (max-width: 480px) {
    .glenk-heading-xl {
        font-size: 1.75rem;
    }

    .glenk-heading-lg {
        font-size: 1.5rem;
    }

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

    .glenk-hero-section {
        padding-top: 0;
        padding-bottom: 0;
        height: 100vh;
        height: 100dvh;
        min-height: 500px;
    }

    .glenk-hero-bg img {
        object-position: 20% center;
    }

    .glenk-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.5) 100%
        );
    }

    .glenk-hero {
        height: 100%;
        padding: 20px 0;
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px;
    }

    .glenk-hero-content {
        padding: 20px 20px;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .glenk-hero-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .glenk-hero-title {
        font-size: 1.1rem;
        letter-spacing: 0.2em;
        margin-bottom: 10px;
        text-align: center;
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 4px 15px rgba(0, 0, 0, 0.6);
    }

    .glenk-hero-content .glenk-heading-xl {
        font-size: 2.5rem;
        line-height: 1.2;
        text-align: center;
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 4px 15px rgba(0, 0, 0, 0.7),
            0 8px 30px rgba(0, 0, 0, 0.5);
    }

    .glenk-hero-content .glenk-btn-group {
        justify-content: center;
    }

    .glenk-hero-content .glenk-badge {
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.4);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
        flex: 0 1 auto;
        min-width: auto;
        text-align: center;
        justify-content: center;
    }

    .glenk-hero-badges {
        display: flex;
        gap: 8px;
        justify-content: center;
    }

    .glenk-feature-card,
    .glenk-form-container,
    .glenk-contact-details {
        padding: 24px;
    }

    .glenk-btn {
        padding: 14px 24px;
        font-size: 0.938rem;
    }

    /* Mobile: Reset intelligentes Grid zu Stack */
    .glenk-features-grid:has(.glenk-feature-card:nth-child(4):last-child) {
        grid-template-columns: 1fr;
    }

    .glenk-features-grid:has(.glenk-feature-card:nth-child(4):last-child) .glenk-feature-card:nth-child(4) {
        grid-column: 1;
    }
}

/* ========== KRASSE NEUE ANIMATIONEN ========== */

/* Magnetischer Button Effekt */
.glenk-btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glenk-btn:hover {
    transform: translateY(-3px);
}

.glenk-btn:active {
    transform: translateY(-1px);
}

/* Smooth Scroll Reveal Animation */
@keyframes smoothReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.glenk-feature-card,
.glenk-process-step,
.glenk-review-card {
    animation: smoothReveal 0.8s ease-out backwards;
}

/* Glow Effekt für CTA Buttons */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(26, 77, 143, 0.4), 0 0 0 0 rgba(26, 77, 143, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(26, 77, 143, 0.4), 0 0 0 8px rgba(26, 77, 143, 0);
    }
}

.glenk-btn-primary:hover {
    animation: glowPulse 2s infinite;
}

/* Shimmer Effekt für Feature Icons */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.glenk-feature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 3s infinite;
}

/* Gradient Text Animation */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.glenk-text-gradient {
    background: linear-gradient(135deg, #1a4d8f, #2563ab, #3b82f6, #1a4d8f);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

/* Scale Animation für Cards on Scroll */
.glenk-feature-card {
    will-change: transform;
}

/* Parallax Effect für Hero Section */
.glenk-hero {
    position: relative;
}

/* Ripple Effect für Buttons */
.glenk-btn {
    position: relative;
    overflow: hidden;
}

.glenk-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.glenk-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Breathing Animation für Badges */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.glenk-badge-accent:hover {
    /* Animation disabled per user request */
    /* animation: breathe 2s ease-in-out infinite; */
}

/* Slide In from Sides */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.glenk-content-section:nth-child(odd) .glenk-content-image {
    animation: slideInRight 1s ease-out;
}

.glenk-content-section:nth-child(even) .glenk-content-image {
    animation: slideInLeft 1s ease-out;
}

/* Bounce In Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.glenk-feature-icon:hover {
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Text Typing Effect für Headings */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Floating Labels */
@keyframes floatLabel {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.glenk-badge {
    /* Animation disabled per user request */
    /* animation: floatLabel 3s ease-in-out infinite; */
}

/* Rotate on Scroll */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Neon Glow Effect */
.glenk-btn-primary:focus {
    box-shadow: 0 0 20px rgba(26, 77, 143, 0.6), 0 0 40px rgba(26, 77, 143, 0.4), 0 0 60px rgba(26, 77, 143, 0.2);
}

/* ==========================================================================
   Video Hero Styles - Über Uns Page
   ========================================================================== */

/* Video Wrapper mit Animation */
.glenk-video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue-dark) 100%);
    animation: videoFadeIn 1.2s ease-out;
}

/* Video Element */
.glenk-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover Effekt auf Video */
.glenk-video-wrapper:hover .glenk-hero-video {
    transform: scale(1.05);
}

/* Gradient Overlay für bessere Lesbarkeit */
.glenk-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glenk-video-wrapper:hover::before {
    opacity: 1;
}

/* Glowing Border Effekt */
.glenk-video-wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue), transparent);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: glowPulse 3s ease-in-out infinite;
}

.glenk-video-wrapper:hover::after {
    opacity: 1;
}

/* Video Fade In Animation */
@keyframes videoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Scroll-triggered centering animation */
@keyframes videoCenterZoom {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Video skaliert beim Scroll in den Viewport */
.glenk-video-wrapper.in-view {
    animation: videoCenterZoom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Responsive Design für Video */
@media (max-width: 768px) {
    .glenk-video-wrapper {
        height: 400px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .glenk-video-wrapper {
        height: 300px;
        border-radius: 12px;
    }
}

/* Play Button Overlay (Optional - falls gewünscht) */
.glenk-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.glenk-video-wrapper.paused .glenk-video-play-btn {
    opacity: 1;
    pointer-events: all;
}

.glenk-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glenk-video-play-btn svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-blue);
    margin-left: 5px;
}

/* ==========================================================================
   Video Poster & Play Button Styles
   ========================================================================== */

/* Video Poster Image */
.glenk-video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    transition: opacity 0.5s ease;
}

.glenk-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Video Overlay mit Play Button */
.glenk-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    opacity: 1;
    transition: all 0.4s ease;
}

.glenk-video-overlay:hover {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* Play Button */
.glenk-play-button {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.glenk-play-button:hover {
    transform: scale(1.1);
}

.glenk-play-button svg {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}

.glenk-play-button:hover svg {
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5));
}

.glenk-play-button:hover svg circle {
    fill: rgba(26, 77, 143, 1);
}

.glenk-play-button span {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Loading Indicator */
.glenk-video-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 24px;
    z-index: 10;
}

.glenk-video-loading p {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Spinner Animation */
.glenk-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Video Element Fade In */
.glenk-hero-video {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .glenk-play-button svg {
        width: 50px;
        height: 50px;
    }

    .glenk-play-button span {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .glenk-spinner {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .glenk-play-button svg {
        width: 40px;
        height: 40px;
    }

    .glenk-play-button span {
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   YouTube Video Embed - Duplicate removed (main version is below)
   ========================================================================== */

/* ==========================================================================
   Über Uns Hero - Video Layout Override
   ========================================================================== */

/* Override Hero Grid für Über Uns Seite - Video GROSS und ZENTRAL */
.glenk-hero:has(.glenk-youtube-wrapper) {
    display: flex !important;
    flex-direction: column !important;
    gap: 80px;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 100px 0;
}

.glenk-hero:has(.glenk-youtube-wrapper) .glenk-hero-content {
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.glenk-hero:has(.glenk-youtube-wrapper) .glenk-hero-image {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* YouTube Wrapper - GROSS, ZENTRAL mit KRASSER Reinscroll-Animation */
.glenk-youtube-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 60px 150px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue-dark) 100%);

    /* Start: Weit weg, stark angewinkelt, klein, transparent - Reinscroll Effekt */
    transform: perspective(2000px) rotateY(-35deg) rotateX(25deg) scale(0.65) translateZ(-300px);
    opacity: 0;
    transition: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* YouTube Video Iframe - absolute positioning für aspect ratio */
.glenk-youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

/* Scroll Animation - Video SCROLLT REIN: wird GERADE, ZENTRAL, GROSS */
.glenk-youtube-wrapper.in-view {
    transform: perspective(2000px) rotateY(0deg) rotateX(0deg) scale(1) translateZ(0);
    opacity: 1;
    box-shadow: 0 70px 180px rgba(0, 0, 0, 0.4);
}

/* Hover Effect - Noch dramatischer mit leichtem "Rauskommen" */
.glenk-youtube-wrapper:hover {
    box-shadow: 0 80px 200px rgba(0, 0, 0, 0.45);
    transform: perspective(2000px) rotateY(0deg) rotateX(-1deg) scale(1.04) translateZ(20px);
}

/* KRASSE Glowing Border Animation - Größer für großes Video */
.glenk-youtube-wrapper::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(
        135deg,
        var(--primary-blue-light),
        var(--primary-blue),
        var(--primary-blue-dark),
        var(--primary-blue),
        var(--primary-blue-light)
    );
    background-size: 300% 300%;
    border-radius: 48px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease;
    animation: gradientShift 4s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.glenk-youtube-wrapper.in-view::before {
    opacity: 0.8;
}

.glenk-youtube-wrapper:hover::before {
    opacity: 1;
    animation: gradientShift 2s ease-in-out infinite, glowPulse 1.5s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .glenk-hero:has(.glenk-youtube-wrapper) {
        padding: 60px 0;
        gap: 60px;
    }

    .glenk-hero:has(.glenk-youtube-wrapper) .glenk-hero-image {
        max-width: 1200px;
    }
}

@media (max-width: 768px) {
    .glenk-hero:has(.glenk-youtube-wrapper) {
        gap: 40px;
        padding: 40px 0;
        min-height: auto;
    }

    .glenk-hero:has(.glenk-youtube-wrapper) .glenk-hero-image {
        max-width: 100%;
    }

    .glenk-youtube-wrapper {
        border-radius: 20px;
    }

    .glenk-youtube-video {
        border-radius: 20px;
    }

    .glenk-youtube-wrapper::before {
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .glenk-hero:has(.glenk-youtube-wrapper) {
        gap: 30px;
        padding: 30px 0;
    }

    .glenk-youtube-wrapper {
        border-radius: 16px;
    }

    .glenk-youtube-video {
        border-radius: 16px;
    }

    .glenk-youtube-wrapper::before {
        border-radius: 22px;
    }
}

/* Fade Out Animation for Review Filters */
@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ==========================================================================
   Performance Optimizations for Mobile
   ========================================================================== */

/* Reduce Animations on Mobile/iPad for Performance */
@media (max-width: 1024px) {
    /* Slow down ALL animations significantly */
    *,
    *::before,
    *::after {
        animation-duration: 1.2s !important;
        animation-timing-function: ease-out !important;
        transition-duration: 0.5s !important;
    }

    /* Simplify transitions - MUCH SLOWER */
    .glenk-feature-card,
    .glenk-review-card,
    .glenk-process-step,
    .glenk-choice-card {
        transition: all 0.6s ease !important;
    }

    /* Disable the white flash/glow effects on cards */
    .glenk-feature-card::before,
    .glenk-feature-card::after,
    .glenk-review-card::before,
    .glenk-review-card::after,
    .glenk-process-step::before,
    .glenk-process-step::after,
    .glenk-choice-card::before,
    .glenk-choice-card::after {
        display: none !important;
        opacity: 0 !important;
    }

    /* Disable CTA rotation animation on iPad/tablet */
    .glenk-cta-section::before {
        animation: none !important;
    }

    /* Disable hover transform effects on mobile/tablet */
    .glenk-btn-primary:hover,
    .glenk-btn-secondary:hover,
    .glenk-feature-card:hover,
    .glenk-review-card:hover,
    .glenk-process-step:hover,
    .glenk-social-icon:hover,
    .glenk-choice-card:hover {
        transform: none !important;
    }

    /* Disable parallax on mobile */
    .glenk-hero-person {
        transform: none !important;
    }

    /* Reduce glow effects */
    .glenk-feature-icon::before {
        animation: none !important;
    }

    /* Keep shimmer disabled on mobile as well */
    .glenk-feature-icon::after {
        animation: none !important;
        content: none !important;
    }

    /* YouTube scroll animation is handled by JavaScript */

    /* Slow down fade animations */
    .fadeIn,
    .fadeInUp,
    .slideInUp,
    .glenk-fade-in,
    .glenk-hero-content,
    .glenk-hero-image {
        animation-duration: 1.2s !important;
        animation-delay: 0s !important;
    }

    /* Staggered card animations - slower */
    .glenk-feature-card:nth-child(1),
    .glenk-feature-card:nth-child(2),
    .glenk-feature-card:nth-child(3),
    .glenk-feature-card:nth-child(4) {
        animation-delay: 0.15s !important;
    }
}

/* Prefer Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   Professional Placeholder Images
   ========================================================================== */

.glenk-placeholder-img {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.glenk-placeholder-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shimmerPlaceholder 2s infinite;
}

@keyframes shimmerPlaceholder {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN - Mobile & iPad
   ========================================================================== */

/* iPad Pro (1024px) */
@media (max-width: 1024px) {
    /* Hero Layout - Text über Bild mit Gradient Overlay */
    .glenk-hero {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        min-height: 100vh;
        position: relative !important;
    }

    .glenk-hero-content {
        position: relative !important;
        width: 100% !important;
        text-align: center !important;
        z-index: 2;
        padding: 10px 20px 50px !important;
        background: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .glenk-hero-image {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1;
    }

    .glenk-hero-person-wrapper {
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
    }

    .glenk-hero-person {
        width: auto;
        height: 65%;
        max-width: 100%;
        object-fit: contain;
        object-position: bottom center;
    }

    .glenk-hero-section {
        padding-top: 100px;
        padding-bottom: 0;
        overflow: hidden;
    }

    /* Hero mit YouTube Video */
    .glenk-hero:has(.glenk-youtube-wrapper) {
        min-height: auto !important;
        padding: 40px 0;
    }

    .glenk-hero:has(.glenk-youtube-wrapper) .glenk-hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    /* Content Sections */
    .glenk-content-section {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .glenk-content-section.reverse,
    .glenk-content-section.glenk-content-reverse {
        direction: ltr !important;
    }

    .glenk-content-image {
        order: 2;
    }

    .glenk-content-text {
        order: 1;
        text-align: center;
    }

    .glenk-content-list {
        text-align: left;
    }

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

    .glenk-contact-info {
        order: 2;
    }

    .glenk-form-container {
        order: 1;
    }

    /* Features Grid - 2 columns on iPad */
    .glenk-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }

    /* Process Grid - 2 columns on iPad */
    .glenk-process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }

    /* Stats Grid */
    .glenk-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* Quote Section */
    .glenk-quote-section {
        padding: 60px 40px;
        margin: 40px 0;
    }

    /* CTA Section */
    .glenk-cta-section {
        padding: 60px 40px;
    }

    /* YouTube Wrapper - Animation handled by JavaScript */
    .glenk-youtube-wrapper {
        border-radius: 24px;
    }
}

/* iPad Mini & Tablet (768px) */
@media (max-width: 768px) {
    /* Container */
    .glenk-container {
        padding: 0 16px;
    }

    /* Sections */
    .glenk-section {
        padding: 50px 0;
    }

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

    /* Typography */
    .glenk-heading-xl {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .glenk-heading-lg {
        font-size: 1.625rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .glenk-heading-md {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .glenk-text-lg {
        font-size: 1rem;
    }

    .glenk-text-base {
        font-size: 0.938rem;
    }

    /* Hero Section - Overlay Style */
    .glenk-hero {
        min-height: 80vh;
    }

    .glenk-hero-content {
        padding: 15px 15px 40px;
        background: none !important;
    }

    .glenk-hero-person {
        height: 55%;
    }

    .glenk-hero-badges {
        justify-content: flex-start;
        gap: 8px;
    }

    /* Badges */
    .glenk-badge {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    /* Buttons */
    .glenk-btn {
        padding: 14px 24px;
        font-size: 0.938rem;
        width: 100%;
    }

    .glenk-btn-group {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

    .glenk-btn-lg {
        padding: 16px 28px;
    }

    /* Features Grid - Single Column */
    .glenk-features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .glenk-feature-card {
        padding: 28px 24px;
    }

    .glenk-feature-icon {
        width: 56px;
        height: 48px;
        margin-bottom: 16px;
    }

    /* Process Grid - Single Column */
    .glenk-process-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .glenk-process-step {
        padding: 24px;
    }

    .glenk-step-number {
        font-size: 3rem;
        margin-bottom: 16px;
    }

    /* Reviews Grid */
    .glenk-reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .glenk-review-card {
        padding: 24px;
    }

    /* Stats Grid */
    .glenk-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .glenk-stat-item {
        padding: 24px 16px;
    }

    .glenk-stat-number {
        font-size: 2.5rem;
    }

    .glenk-stat-label {
        font-size: 0.75rem;
    }

    /* Content Sections */
    .glenk-content-image img {
        border-radius: 16px;
    }

    .glenk-content-list li {
        padding: 14px;
        font-size: 0.938rem;
    }

    /* Contact Form */
    .glenk-form-container {
        padding: 28px 20px;
    }

    .glenk-contact-details {
        padding: 28px 20px;
    }

    .glenk-coaching-choice {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .glenk-choice-content {
        min-height: 140px;
        padding: 24px 16px;
    }

    .glenk-choice-icon {
        width: 52px;
        height: 52px;
    }

    .glenk-choice-icon svg {
        width: 28px;
        height: 28px;
    }

    /* Quote Section */
    .glenk-quote-section {
        padding: 40px 24px;
        margin: 30px 0;
        border-radius: 16px;
    }

    .glenk-quote-text {
        font-size: 1.125rem;
    }

    .glenk-quote-author {
        font-size: 0.938rem;
    }

    /* CTA Section */
    .glenk-cta-section {
        padding: 40px 24px;
        border-radius: 16px;
    }

    /* Checklist */
    .glenk-checklist {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .glenk-checklist-item {
        padding: 18px 16px;
    }

    /* Rating */
    .glenk-rating {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .glenk-rating-overview {
        grid-template-columns: 1fr;
        padding: 28px 20px;
    }

    /* Reviews Filter */
    .glenk-reviews-filter {
        gap: 8px;
    }

    .glenk-filter-btn {
        padding: 10px 16px;
        font-size: 0.813rem;
    }

    /* YouTube Video - Animation handled by JavaScript */
    .glenk-youtube-wrapper {
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .glenk-youtube-video {
        border-radius: 16px;
    }

    /* Hero mit Video */
    .glenk-hero:has(.glenk-youtube-wrapper) {
        gap: 30px;
        padding: 20px 0;
    }

    .glenk-hero:has(.glenk-youtube-wrapper) .glenk-hero-content {
        padding: 0;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    /* Container */
    .glenk-container {
        padding: 0 12px;
    }

    /* Sections */
    .glenk-section {
        padding: 40px 0;
    }

    /* Typography */
    .glenk-heading-xl {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .glenk-heading-lg {
        font-size: 1.5rem;
    }

    .glenk-heading-md {
        font-size: 1.125rem;
    }

    .glenk-text-lg {
        font-size: 0.938rem;
    }

    /* Hero - Overlay Style */
    .glenk-hero {
        min-height: 75vh;
    }

    .glenk-hero-content {
        padding: 10px 15px 35px;
        background: none !important;
    }

    .glenk-hero-person {
        height: 50%;
    }

    .glenk-hero-section {
        padding-top: 85px;
        padding-bottom: 0;
    }

    .glenk-hero-badges {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 6px;
    }

    .glenk-hero-person {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

    .glenk-hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .glenk-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    /* Buttons */
    .glenk-btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .glenk-btn-group {
        gap: 10px;
        margin-top: 20px;
    }

    /* Feature Cards */
    .glenk-feature-card {
        padding: 24px 20px;
    }

    .glenk-feature-icon {
        width: 48px;
        height: 42px;
    }

    /* Process Steps */
    .glenk-process-step {
        padding: 20px;
    }

    .glenk-step-number {
        font-size: 2.5rem;
    }

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

    .glenk-stat-item {
        padding: 20px;
    }

    .glenk-stat-number {
        font-size: 2rem;
    }

    /* Content List */
    .glenk-content-list li {
        padding: 12px;
        gap: 12px;
    }

    .glenk-list-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .glenk-list-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Form */
    .glenk-form-container {
        padding: 24px 16px;
    }

    .glenk-form-input,
    .glenk-form-select,
    .glenk-form-textarea {
        padding: 14px 16px;
        font-size: 0.938rem;
    }

    .glenk-form-label {
        font-size: 0.813rem;
    }

    /* Contact Details */
    .glenk-contact-details {
        padding: 24px 16px;
    }

    .glenk-contact-item {
        gap: 14px;
    }

    .glenk-contact-icon {
        width: 48px;
        height: 48px;
    }

    .glenk-contact-text h4 {
        font-size: 0.688rem;
    }

    .glenk-contact-text p {
        font-size: 1rem;
    }

    /* Quote Section */
    .glenk-quote-section {
        padding: 32px 20px;
        border-radius: 12px;
    }

    .glenk-quote-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .glenk-quote-section::before {
        font-size: 100px;
        top: -10px;
        left: 15px;
    }

    /* CTA Section */
    .glenk-cta-section {
        padding: 32px 20px;
        border-radius: 12px;
    }

    /* Checklist */
    .glenk-checklist-item {
        padding: 16px 14px;
        gap: 12px;
    }

    .glenk-checklist-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .glenk-checklist-icon svg {
        width: 20px;
        height: 20px;
    }

    .glenk-checklist-icons .glenk-checklist-item span {
        font-size: 0.875rem;
    }

    /* Reviews */
    .glenk-review-card {
        padding: 20px;
    }

    .glenk-review-header {
        gap: 12px;
    }

    .glenk-review-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .glenk-review-info h4 {
        font-size: 1rem;
    }

    .glenk-review-title {
        font-size: 1.125rem;
    }

    .glenk-review-text {
        font-size: 0.938rem;
    }

    /* YouTube */
    .glenk-youtube-wrapper {
        border-radius: 12px;
    }

    .glenk-youtube-video {
        border-radius: 12px;
    }

    /* Images */
    .glenk-content-image img,
    .glenk-hero-image img {
        border-radius: 12px;
    }

    /* Choice Cards */
    .glenk-choice-content {
        min-height: 120px;
        padding: 20px 14px;
    }

    .glenk-choice-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .glenk-choice-content h4 {
        font-size: 1.125rem;
    }

    .glenk-choice-content p {
        font-size: 0.813rem;
    }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
    .glenk-heading-xl {
        font-size: 1.5rem;
    }

    .glenk-heading-lg {
        font-size: 1.375rem;
    }

    .glenk-container {
        padding: 0 10px;
    }

    .glenk-btn {
        padding: 11px 16px;
        font-size: 0.813rem;
    }

    .glenk-feature-card,
    .glenk-process-step,
    .glenk-review-card {
        padding: 18px 14px;
    }

    .glenk-form-container,
    .glenk-contact-details {
        padding: 20px 14px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .glenk-hero {
        flex-direction: row !important;
        gap: 24px;
    }

    .glenk-hero-content {
        flex: 1;
        text-align: left;
    }

    .glenk-hero-image {
        flex: 1;
        max-width: 50%;
    }

    .glenk-hero:has(.glenk-youtube-wrapper) {
        flex-direction: column !important;
    }

    .glenk-btn-group {
        flex-direction: row;
        justify-content: flex-start;
    }

    .glenk-btn {
        width: auto;
    }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .glenk-hero-image img,
    .glenk-content-image img {
        transform: translateZ(0);
    }

    .glenk-youtube-wrapper {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Hero PNG darf keinen Hintergrund bekommen */
.glenk-hero-person-wrapper {
  background: transparent !important;
  box-shadow: none !important;
}

/* Das PNG selbst ohne Card-Optik */
.glenk-hero-person {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* ==========================================================================
   Performance & Health Page Styles
   ========================================================================== */

/* Uppercase Label Style */
.glenk-text-uppercase {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.glenk-text-uppercase svg {
    width: 18px;
    height: 18px;
}

/* Performance/Health Hero Section (Standard Layout - heller Hintergrund) */
.glenk-section .glenk-hero {
    display: flex;
    gap: 60px;
    align-items: center;
    min-height: auto;
    padding: 40px 0;
}

.glenk-section .glenk-hero-content {
    flex: 1;
    padding: 0;
    width: auto;
    max-width: none;
    animation: none;
}

/* Performance/Health Hero - Dunkler Hintergrund mit weißem Text */
.glenk-section:not(.glenk-hero-section):has(.glenk-hero) {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.glenk-section:not(.glenk-hero-section) .glenk-hero-content .glenk-heading-xl {
    color: #ffffff;
}

.glenk-section:not(.glenk-hero-section) .glenk-hero-content .glenk-text-lg,
.glenk-section:not(.glenk-hero-section) .glenk-hero-content p {
    color: rgba(255, 255, 255, 0.9);
}

.glenk-section:not(.glenk-hero-section) .glenk-hero-content .glenk-text-uppercase {
    color: var(--primary-blue-light);
}

.glenk-section:not(.glenk-hero-section) .glenk-hero-content .glenk-text-blue {
    color: #3b82f6;
}

.glenk-section .glenk-hero-image {
    flex: 1;
    max-width: 500px;
}

.glenk-section .glenk-hero-image img,
.glenk-section .glenk-hero-image .glenk-placeholder-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

/* Responsive Performance/Health Pages */
@media (max-width: 1024px) {
    .glenk-section .glenk-hero {
        gap: 40px;
    }

    .glenk-section .glenk-hero-image {
        max-width: 400px;
    }

    .glenk-dark-section {
        padding: 80px 0;
    }

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

@media (max-width: 768px) {
    .glenk-section .glenk-hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 20px 0;
    }

    .glenk-section .glenk-hero-content {
        order: 1;
    }

    .glenk-section .glenk-hero-image {
        order: 2;
        max-width: 100%;
        width: 100%;
    }

    .glenk-section .glenk-btn-group {
        justify-content: center;
    }

    .glenk-dark-section {
        padding: 60px 0;
    }

    .glenk-checklist {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .glenk-checklist-item {
        padding: 16px 20px;
    }

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

    .glenk-process-step {
        padding: 24px;
    }

    .glenk-step-number {
        font-size: 2.5rem;
    }

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

    .glenk-content-section.reverse,
    .glenk-content-section.glenk-content-reverse {
        direction: ltr;
    }

    .glenk-content-image {
        order: 1;
    }

    .glenk-content-text {
        order: 2;
    }

    .glenk-content-list li {
        padding: 14px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .glenk-text-uppercase {
        font-size: 0.75rem;
        gap: 6px;
    }

    .glenk-text-uppercase svg {
        width: 16px;
        height: 16px;
    }

    .glenk-section .glenk-hero {
        gap: 30px;
    }

    .glenk-dark-section {
        padding: 50px 0;
    }

    .glenk-checklist-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .glenk-checklist-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .glenk-checklist-icon svg {
        width: 18px;
        height: 18px;
    }

    .glenk-checklist-icons .glenk-checklist-item span {
        font-size: 0.9rem;
    }

    .glenk-process-step {
        padding: 20px;
    }

    .glenk-step-number {
        font-size: 2rem;
    }

    .glenk-cta-section {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .glenk-cta-section h2 {
        font-size: 1.5rem;
    }

    .glenk-content-list li {
        padding: 12px;
        font-size: 0.9rem;
    }

    .glenk-list-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .glenk-list-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================================================
   Subpage Hero (Health & Performance Pages)
   ========================================================================== */

.glenk-subpage-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f172a;
}

/* Hintergrundbild */
.glenk-subpage-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.glenk-subpage-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* Overlay für Textlesbarkeit - ähnlich wie Home Hero */
.glenk-subpage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    );
}

/* Content */
.glenk-subpage-hero .glenk-container {
    position: relative;
    z-index: 2;
}

.glenk-subpage-hero-content {
    max-width: 550px;
    padding: 80px 0 150px;
}

/* Label (HEALTH COACHING / PERFORMANCE COACHING) */
.glenk-subpage-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #60a5fa;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.glenk-subpage-hero-label svg {
    width: 20px;
    height: 20px;
}

/* Titel */
.glenk-subpage-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6);
}

.glenk-subpage-hero-title span {
    color: #3b82f6;
}

/* Beschreibung */
.glenk-subpage-hero-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.glenk-subpage-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.glenk-subpage-hero-buttons .glenk-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.glenk-subpage-hero-buttons .glenk-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Subpage Hero - Tablet Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .glenk-subpage-hero {
        min-height: 100vh;
        display: flex;
        align-items: stretch;
        padding: 0;
    }

    .glenk-subpage-hero .glenk-container {
        display: flex;
        justify-content: center;
        flex: 1;
    }

    .glenk-subpage-hero-content {
        max-width: 700px;
        text-align: center;
        display: flex;
        flex-direction: column;
        padding: 20px 0 320px;
        flex: 1;
    }

    .glenk-subpage-hero-label {
        justify-content: center;
        font-size: 1.5rem;
        letter-spacing: 0.22em;
        margin-bottom: auto;
        padding-top: 40px;
    }

    .glenk-subpage-hero-title {
        font-size: clamp(2.8rem, 5.5vw, 4.2rem);
        margin-top: auto;
    }

    .glenk-subpage-hero-text {
        font-size: clamp(1.1rem, 1.8vw, 1.3rem);
        margin-left: auto;
        margin-right: auto;
    }

    .glenk-subpage-hero-buttons {
        justify-content: center;
    }

    .glenk-subpage-hero-buttons .glenk-btn {
        font-size: 1.1rem;
        padding: 18px 36px;
    }

    .glenk-subpage-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.70) 100%
        );
    }
}

/* ==========================================================================
   Subpage Hero - Mobile Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .glenk-subpage-hero {
        height: 100vh;
        height: 100dvh;
        min-height: 0;
        max-height: 100vh;
        max-height: 100dvh;
        display: flex;
        align-items: stretch;
        position: relative;
        overflow: hidden;
    }

    .glenk-subpage-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .glenk-subpage-hero-bg img {
        object-position: center center;
    }

    /* Overlay von unten nach oben - wie Home Hero auf Mobile */
    .glenk-subpage-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.6) 100%
        );
    }

    .glenk-subpage-hero .glenk-container {
        position: relative;
        z-index: 2;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 140px;
        display: flex;
        flex: 1;
    }

    .glenk-subpage-hero-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        min-height: 100dvh;
    }

    /* Label */
    .glenk-subpage-hero-label {
        justify-content: center;
        font-size: 0.9rem;
        margin-bottom: 0;
        padding-top: 20px;
    }

    /* Titel */
    .glenk-subpage-hero-title {
        font-size: 2rem;
        margin-top: 28vh;
        margin-bottom: 16px;
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 4px 20px rgba(0, 0, 0, 0.6);
    }

    .glenk-subpage-hero-title span {
        color: #60a5fa;
    }

    /* Text */
    .glenk-subpage-hero-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 28px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    }

    /* Buttons vertikal */
    .glenk-subpage-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .glenk-subpage-hero-buttons .glenk-btn {
        width: 100%;
        justify-content: center;
    }

    .glenk-subpage-hero-buttons .glenk-btn-secondary {
        background: rgba(255, 255, 255, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(12px);
    }
}

/* ==========================================================================
   Subpage Hero - Small Mobile
   ========================================================================== */

@media (max-width: 480px) {
    .glenk-subpage-hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .glenk-subpage-hero .glenk-container {
        bottom: 80px;
    }

    .glenk-subpage-hero-content {
        padding: 0;
    }

    .glenk-subpage-hero-title {
        font-size: 1.75rem;
    }

    .glenk-subpage-hero-text {
        font-size: 0.95rem;
    }

    .glenk-subpage-hero-buttons .glenk-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Testimonials Slider (Rezensionen Page)
   ========================================================================== */

.glenk-testimonials-hero {
    padding-bottom: 20px;
}

.glenk-testimonials-section {
    padding: 20px 0 80px;
    overflow: hidden;
}

.glenk-testimonials-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.glenk-testimonials-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.glenk-testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    opacity: 0.3;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.glenk-testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.glenk-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Großes Anführungszeichen als Text */
.glenk-testimonial-quote {
    color: #3b82f6;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.3;
}

.glenk-testimonial-quote svg {
    width: 48px;
    height: 48px;
}

.glenk-testimonial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #374151;
    margin: 0 0 32px;
    font-style: italic;
}

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

.glenk-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glenk-testimonial-info {
    text-align: left;
}

.glenk-testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 2px;
}

.glenk-testimonial-result {
    font-size: 0.85rem;
    color: #3b82f6;
    font-weight: 500;
}

/* Pfeil-Buttons links/rechts - Ovale mit Pfeil */
.glenk-testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 28px;
    font-weight: 300;
    color: #6b7280;
    line-height: 1;
}

.glenk-testimonial-prev {
    left: 0;
}

.glenk-testimonial-next {
    right: 0;
}

.glenk-testimonial-arrow:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

/* Dots Navigation unten */
.glenk-testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.glenk-testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glenk-testimonial-dot:hover {
    background: #d1d5db;
}

.glenk-testimonial-dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

/* Testimonials Mobile Responsive */
@media (max-width: 768px) {
    .glenk-testimonials-slider-wrapper {
        padding: 0 50px;
    }

    .glenk-testimonial-slide {
        padding: 0 10px;
    }

    .glenk-testimonial-card {
        padding: 36px 24px;
        border-radius: 16px;
    }

    .glenk-testimonial-quote svg {
        width: 36px;
        height: 36px;
    }

    .glenk-testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 24px;
    }

    .glenk-testimonial-avatar {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .glenk-testimonial-info h4 {
        font-size: 0.95rem;
    }

    .glenk-testimonial-arrow {
        width: 36px;
        height: 36px;
    }

    .glenk-testimonial-prev {
        left: 8px;
    }

    .glenk-testimonial-next {
        right: 8px;
    }

    .glenk-testimonials-dots {
        margin-top: 24px;
    }

    .glenk-testimonial-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .glenk-testimonials-slider-wrapper {
        padding: 0 48px;
    }

    .glenk-testimonial-card {
        padding: 30px 20px;
    }

    .glenk-testimonial-quote svg {
        width: 32px;
        height: 32px;
    }

    .glenk-testimonial-text {
        font-size: 0.95rem;
    }

    .glenk-testimonial-arrow {
        width: 32px;
        height: 32px;
    }

    .glenk-testimonial-prev {
        left: 10px;
    }

    .glenk-testimonial-next {
        right: 10px;
    }

    .glenk-testimonial-dot {
        width: 7px;
        height: 7px;
    }

    .glenk-testimonial-dot.active {
        width: 28px;
    }
}

/* ==========================================================================
   Contact Page Styles & Fixes
   ========================================================================== */

/* Contact Wrapper Layout */
.glenk-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Contact Info Card */
.glenk-contact-info {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 24px;
    overflow: hidden;
}

.glenk-contact-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.glenk-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glenk-contact-details {
    padding: 32px;
}

.glenk-contact-details h3 {
    color: #fff;
}

.glenk-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glenk-contact-item:last-child {
    border-bottom: none;
}

.glenk-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glenk-contact-text h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.glenk-contact-text p {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

/* Form Container */
.glenk-form-container {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

/* Coaching Choice Cards - FIXED FOR MOBILE */
.glenk-coaching-choice {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.glenk-choice-card {
    position: relative;
    cursor: pointer;
}

.glenk-choice-card input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.glenk-choice-content {
    padding: 24px 20px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.glenk-choice-card input:checked + .glenk-choice-content {
    background: linear-gradient(135deg, #1a4d8f 0%, #2563ab 100%);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(26, 77, 143, 0.2);
    color: white;
}

.glenk-choice-card input:checked + .glenk-choice-content h4 {
    color: white;
}

.glenk-choice-card input:checked + .glenk-choice-content p {
    color: rgba(255, 255, 255, 0.9);
}

.glenk-choice-card input:checked + .glenk-choice-content .glenk-choice-icon {
    background: rgba(255, 255, 255, 0.2);
}

.glenk-choice-card input:checked + .glenk-choice-content .glenk-choice-icon svg {
    color: white;
    stroke: white;
}

.glenk-choice-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--gradient-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.glenk-choice-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.glenk-choice-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.glenk-choice-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

/* Form Inputs */
.glenk-form-group {
    margin-bottom: 20px;
}

.glenk-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.glenk-form-label .required {
    color: #ef4444;
}

.glenk-form-input,
.glenk-form-select,
.glenk-form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    font-family: inherit;
}

.glenk-form-input:focus,
.glenk-form-select:focus,
.glenk-form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 77, 143, 0.1);
}

.glenk-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.glenk-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 48px;
}

/* Form Benefits */
.glenk-form-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.glenk-form-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.glenk-form-benefit::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .glenk-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .glenk-contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .glenk-contact-image {
        height: 100%;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .glenk-contact-wrapper {
        gap: 24px;
    }

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

    .glenk-contact-image {
        height: 220px;
        min-height: auto;
    }

    .glenk-contact-details {
        padding: 24px;
    }

    .glenk-form-container {
        padding: 28px 24px;
    }

    /* FIX: Coaching Choice Cards auf Mobile */
    .glenk-coaching-choice {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .glenk-choice-content {
        padding: 20px 16px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .glenk-choice-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        margin: 0;
        flex-shrink: 0;
    }

    .glenk-choice-icon svg {
        width: 24px;
        height: 24px;
    }

    .glenk-choice-text {
        flex: 1;
    }

    .glenk-choice-content h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .glenk-choice-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .glenk-form-benefits {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .glenk-contact-image {
        height: 180px;
    }

    .glenk-contact-details {
        padding: 20px;
    }

    .glenk-contact-item {
        padding: 14px 0;
        gap: 14px;
    }

    .glenk-contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .glenk-form-container {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .glenk-choice-content {
        padding: 16px 14px;
        gap: 14px;
    }

    .glenk-choice-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
    }

    .glenk-choice-icon svg {
        width: 22px;
        height: 22px;
    }

    .glenk-choice-content h4 {
        font-size: 0.9rem;
    }

    .glenk-choice-content p {
        font-size: 0.75rem;
    }

    .glenk-form-input,
    .glenk-form-select,
    .glenk-form-textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
}
/* ==========================================================================
   HOME HERO - TEXT RECHTS (Desktop Override)
   ========================================================================== */

@media (min-width: 1025px) {
    .glenk-hero-section .glenk-hero {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }
    
    .glenk-hero-section .glenk-hero-content {
        width: 45% !important;
        max-width: 580px !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        padding-right: 80px !important;
        text-align: left !important;
    }
    
    .glenk-hero-section .glenk-hero-content .glenk-heading-xl {
        color: #ffffff !important;
    }
}

/* ==========================================================================
   KONTAKT PAGE - Textfarben für bessere Sichtbarkeit
   ========================================================================== */

/* Hero Text auf Kontakt Seite */
.glenk-section .glenk-text-center .glenk-heading-xl,
.glenk-section .glenk-text-center .glenk-heading-lg,
.glenk-section .glenk-text-center .glenk-heading-md {
    color: var(--text-dark);
}

.glenk-section .glenk-text-center .glenk-text-lg,
.glenk-section .glenk-text-center p {
    color: var(--text-gray);
}

.glenk-section .glenk-text-center .glenk-text-uppercase {
    color: var(--primary-blue);
}

/* Form Container Text */
.glenk-form-container .glenk-heading-md {
    color: var(--text-dark);
}

.glenk-form-container .glenk-text-base,
.glenk-form-container p {
    color: var(--text-gray);
}

/* Contact Details Text (dunkler Hintergrund) */
.glenk-contact-details .glenk-heading-md,
.glenk-contact-details h3 {
    color: #ffffff;
}

.glenk-contact-text h4 {
    color: rgba(255, 255, 255, 0.7);
}

.glenk-contact-text p {
    color: #ffffff;
}

/* FAQ Section */
.glenk-section-alt .glenk-heading-lg {
    color: var(--text-dark);
}

.glenk-section-alt .glenk-text-lg {
    color: var(--text-gray);
}

/* CTA Section Text */
.glenk-cta-section .glenk-heading-lg,
.glenk-cta-section h2 {
    color: #ffffff;
}

.glenk-cta-section .glenk-text-lg,
.glenk-cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* Input Placeholder */
.glenk-form-input::placeholder,
.glenk-form-textarea::placeholder {
    color: #94a3b8;
}

/* Input Text */
.glenk-form-input,
.glenk-form-select,
.glenk-form-textarea {
    color: var(--text-dark);
}
/* Section Labels – nur Text, größer, ohne Rahmen & ohne Hover */
.glenk-badge,
.glenk-badge-accent {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;

    /* Größe & Typo */
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;

    /* Farbe */
    color: var(--primary-blue) !important;

    /* Kein Hover, keine Animation */
    transition: none !important;
}

/* Hover-Effekte komplett deaktivieren */
.glenk-badge:hover,
.glenk-badge-accent:hover {
    transform: none !important;
    box-shadow: none !important;
    background: none !important;
}
/* HERO Labels – bessere Farbe + maximaler Kontrast */
.glenk-hero-section .glenk-badge {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;

    /* Größe & Typo wie vorher */
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;

    /* Neue Hero-Farbe – helles Premium-Weiß */
    color: rgba(255, 255, 255, 0.95) !important;

    /* Kontrast über Schatten */
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.85),
        0 6px 20px rgba(0, 0, 0, 0.55);

    /* Kein Hover / keine Animation */
    transition: none !important;
}

/* Hover im Hero komplett tot */
.glenk-hero-section .glenk-badge:hover {
    transform: none !important;
    box-shadow: none !important;
    background: none !important;
}
/* =========================================================
   PERFORMANCE HERO (glenk-subpage-hero) – FINAL
   FIX: Desktop Gesicht sichtbar -> Bild deutlich nach OBEN
        (du meintest „weiter runter“, aber damit rutscht das
         Gesicht noch mehr raus. Für Gesicht: object-position
         Y kleiner = höher.)
   Mobile: ebenfalls höher, aber etwas anders gecroppt.
   ========================================================= */

.glenk-subpage-hero{
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
  color: #fff;
}

.glenk-subpage-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.glenk-subpage-hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* DESKTOP: Gesicht reinholen -> höher */
  object-position: 60% 18%;
  transform: none;
}

.glenk-subpage-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.48) 45%, rgba(15,23,42,0.18) 100%),
    linear-gradient(180deg, rgba(15,23,42,0.30) 0%, rgba(15,23,42,0.55) 100%);
  z-index: 1;
}

.glenk-subpage-hero .glenk-container{
  position: relative;
  z-index: 2;
}

.glenk-subpage-hero-content{
  max-width: 760px;
}

@media (min-width: 1025px){
  .glenk-subpage-hero .glenk-container{
    max-width: 100%;
    margin-left: 0;
    padding-left: clamp(60px, 8vw, 120px);
  }
  .glenk-subpage-hero-content{
    max-width: 560px;
  }
}

/* Label */
.glenk-subpage-hero-label{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 14px;
}

/* Title */
.glenk-subpage-hero-title{
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
  color: #fff;
}

.glenk-subpage-hero-title span{
  color: var(--primary-blue);
}

/* Text */
.glenk-subpage-hero-text{
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
  max-width: 640px;
  margin-bottom: 26px;
}

/* Buttons */
.glenk-subpage-hero-buttons{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.glenk-subpage-hero-buttons .glenk-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* =========================================================
   iPad / Tablet (<= 1024px)
   ========================================================= */
@media (max-width: 1024px){
  .glenk-subpage-hero{
    padding: 0;
    display: flex;
    align-items: stretch;
    min-height: 100vh;
  }

  .glenk-subpage-hero .glenk-container{
    display: flex;
    justify-content: center;
    flex: 1;
  }

  .glenk-subpage-hero-content{
    max-width: 700px;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 20px 0 320px;
    flex: 1;
  }

  .glenk-subpage-hero-label{
    justify-content: center;
    font-size: 1.5rem;
    letter-spacing: 0.22em;
    margin-bottom: auto;
    padding-top: 40px;
  }

  .glenk-subpage-hero-title{
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    margin-top: auto;
  }

  .glenk-subpage-hero-text{
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    margin-left: auto;
    margin-right: auto;
  }

  .glenk-subpage-hero-buttons{
    justify-content: center;
  }

  .glenk-subpage-hero-buttons .glenk-btn{
    font-size: 1.1rem;
    padding: 18px 36px;
  }

  /* Tablet: Gesicht reinholen, zentriert */
  .glenk-subpage-hero-bg img{
    object-position: 60% 22%;
  }

  .glenk-subpage-hero-overlay{
    background:
      linear-gradient(180deg, rgba(15,23,42,0.45) 0%, rgba(15,23,42,0.55) 50%, rgba(15,23,42,0.70) 100%);
  }
}

/* =========================================================
   Mobile (<= 768px) – Content mittiger + Gesicht sichtbar
   ========================================================= */
@media (max-width: 768px){
  .glenk-subpage-hero{
    padding: 0;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    max-height: 100vh;
    max-height: 100dvh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
  }

  .glenk-subpage-hero .glenk-container{
    position: relative;
    padding-bottom: 140px;
    display: flex;
    flex: 1;
  }

  .glenk-subpage-hero-content{
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    flex: 1;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .glenk-subpage-hero-label{
    margin-bottom: 0;
    padding-top: 20px;
    font-size: 0.9rem;
  }

  .glenk-subpage-hero-title{
    margin-top: 28vh;
  }

  /* Mobile: eher rechts + höher fürs Gesicht */
  .glenk-subpage-hero-bg img{
    object-position: 75% 16%;
  }

  .glenk-subpage-hero-overlay{
    background:
      linear-gradient(180deg, rgba(15,23,42,0.68) 0%, rgba(15,23,42,0.55) 55%, rgba(15,23,42,0.72) 100%);
  }

  .glenk-subpage-hero-buttons{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .glenk-subpage-hero-buttons .glenk-btn{
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   Small Mobile (<= 480px)
   ========================================================= */
@media (max-width: 480px){
  .glenk-subpage-hero{
    padding: 86px 0 56px;
    min-height: 82vh;
  }

  .glenk-subpage-hero-bg img{
    object-position: 78% 12%;
  }

  .glenk-subpage-hero-label{
    font-size: 0.85rem;
    letter-spacing: 0.16em;
  }

  .glenk-subpage-hero-text{
    font-size: 1.02rem;
  }
}
/* ================================= */
/* KONTAKTSEITE – BILD RECHTS BÜNDIG  */
/* ================================= */

.glenk-contact-info {
    padding: 0 !important;
}

.glenk-contact-image {
    width: 100%;
    margin: 0;
    padding: 0;
}

.glenk-contact-image img {
    width: 100% !important;
    max-width: none !important;      /* entfernt alte 450px Begrenzung */
    height: 100% !important;
    display: block !important;       /* entfernt Inline-Gaps */
    object-fit: cover;
    margin: 0 !important;
    border-radius: 24px 24px 0 0;     /* gleiche Rundung wie Card oben */
    box-shadow: none !important;
}
/* ================================ */
/* MOBILE: TELEFONFARBE FIXIEREN    */
/* ================================ */

/* iOS & Android Autolinks */
a[href^="tel"] {
    color: white !important;          /* oder deine Wunschfarbe */
    text-decoration: none !important;
    font-weight: inherit;
}

/* iOS spezielle Auto-Erkennung */
a[x-apple-data-detectors],
a[x-apple-data-detectors-type="phone"] {
    color: white !important;
    text-decoration: none !important;
}
/* =========================================
   CF7 SWITCH – NO GLITCH (MOBILE SAFE)
   ========================================= */

.glenk-dynamic-fields{
  display: block !important;           /* IMPORTANT: never display:none */
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .45s ease, opacity .25s ease, transform .25s ease;
  will-change: max-height, opacity, transform;
  pointer-events: none;
}

.glenk-dynamic-fields.active{
  max-height: 5000px;                  /* big enough for CF7 */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* ===================================================== */
/* FINAL FIX: FEATURE-ICONS – KEIN WEISS-FLASH BEIM HOVER */
/* ===================================================== */

/* Kill jegliche Transition/Animation/Filter, die kurz weiß "flasht" */
.glenk-feature-icon,
.glenk-feature-icon *,
.glenk-feature-card:hover .glenk-feature-icon,
.glenk-feature-card:hover .glenk-feature-icon * {
  transition: none !important;
  animation: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

/* Icon-Farben hart fixieren (auch auf :hover / :focus / :active) */
.glenk-feature-icon svg,
.glenk-feature-icon svg *,
.glenk-feature-card:hover .glenk-feature-icon svg,
.glenk-feature-card:hover .glenk-feature-icon svg *,
.glenk-feature-card:focus-within .glenk-feature-icon svg,
.glenk-feature-card:focus-within .glenk-feature-icon svg *,
.glenk-feature-card:active .glenk-feature-icon svg,
.glenk-feature-card:active .glenk-feature-icon svg * {
  color: #1a4d8f !important;
  stroke: #1a4d8f !important;
  fill: none !important;
}

/* Wrapper-Background fixieren (kein Hover-Wechsel) */
.glenk-feature-icon,
.glenk-feature-card:hover .glenk-feature-icon,
.glenk-feature-card:focus-within .glenk-feature-icon,
.glenk-feature-card:active .glenk-feature-icon {
  background: var(--primary-blue-ultra-light) !important;
}

/* Falls irgendwo "white" via currentColor reinkommt: currentColor fixieren */
.glenk-feature-card,
.glenk-feature-card:hover,
.glenk-feature-card:focus-within,
.glenk-feature-card:active {
  color: inherit !important;
}
/* =============================== */
/* PERFORMANCE – ELIGIBILITY LIST  */
/* =============================== */

.glenk-eligibility__list{
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.glenk-eligibility__list li{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(26,77,143,0.04);
  border: 1px solid rgba(26,77,143,0.16);
  transition: all .25s ease;
}

/* icon container */
.glenk-eligibility__list .glenk-li-icon{
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* svg base */
.glenk-eligibility__list .glenk-li-icon svg{
  width: 40px;
  height: 40px;
  display: block;
}

/* BLUE CIRCLE */
.glenk-eligibility__list 
.glenk-li-icon 
svg 
.glenk-check-badge-bg{
  fill: var(--primary-blue) !important;
  stroke: none !important;
}

/* WHITE CHECK MARK */
.glenk-eligibility__list 
.glenk-li-icon 
svg 
.glenk-check-badge-mark{
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 2.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke;
}

/* text */
.glenk-eligibility__list .glenk-li-text{
  line-height: 1.65;
  font-size: 1rem;
  color: var(--text-gray);
}

/* hover polish */
@media (hover:hover){
  .glenk-eligibility__list li:hover{
    background: rgba(26,77,143,0.07);
    border-color: rgba(26,77,143,0.30);
    box-shadow: 0 12px 32px rgba(26,77,143,0.14);
    transform: translateY(-2px);
  }
}
/* =============================== */
/* FINAL FIX: check-badge sichtbar */
/* (ans ENDE deiner CSS Datei)     */
/* =============================== */

/* Layout der Liste (optional, aber "sichtbar" als Änderung) */
.glenk-content-list--icons.glenk-eligibility__list{
  list-style: none !important;
  padding: 0 !important;
  margin: 28px 0 0 !important;
}
.glenk-content-list--icons.glenk-eligibility__list > li{
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 18px 20px !important;
  margin: 0 0 16px !important;
  border-radius: 18px !important;
  background: rgba(26,77,143,0.04) !important;
  border: 1px solid rgba(26,77,143,0.16) !important;
}

/* Icon-Box */
.glenk-content-list--icons .glenk-li-icon{
  width: 40px !important;
  height: 40px !important;
  flex: 0 0 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.glenk-content-list--icons .glenk-li-icon svg{
  width: 40px !important;
  height: 40px !important;
  display: block !important;
  overflow: visible !important;
}

/* >>> HIER ist der eigentliche Fix <<< */
/* Kreis: muss gefüllt sein (nicht "fill:none" von globalen Regeln) */
.glenk-content-list--icons .glenk-li-icon svg .glenk-check-badge-bg{
  fill: var(--primary-blue) !important;
  stroke: none !important;
  opacity: 1 !important;
}

/* Checkmark: muss Stroke bekommen (wird oft global gekillt) */
.glenk-content-list--icons .glenk-li-icon svg .glenk-check-badge-mark{
  fill: none !important;
  stroke: #fff !important;
  stroke-width: 3.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  opacity: 1 !important;
  display: block !important;
  vector-effect: non-scaling-stroke !important;
}

/* Text */
.glenk-content-list--icons .glenk-li-text{
  color: var(--text-gray) !important;
  line-height: 1.65 !important;
}

/* Mobile */
@media (max-width: 768px){
  .glenk-content-list--icons.glenk-eligibility__list > li{
    padding: 16px !important;
    gap: 14px !important;
  }
  .glenk-content-list--icons .glenk-li-icon{
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
  }
  .glenk-content-list--icons .glenk-li-icon svg{
    width: 36px !important;
    height: 36px !important;
  }
}
/* =============================== */
/* HEALTH HERO – BILD NACH OBEN    */
/* =============================== */

.glenk-subpage-hero-bg img{
  object-fit: cover;
  object-position: center 5%; /* Bild nach OBEN schieben */
}
/* ===================================== */
/* GLOBAL: BUTTON CLICK ANIMATION AUS    */
/* ===================================== */

.glenk-btn,
.glenk-btn:active,
.glenk-btn:focus,
.glenk-btn:focus-visible{
  transform: none !important;
  animation: none !important;
  box-shadow: inherit !important;
  transition: background-color .25s ease,
              color .25s ease,
              border-color .25s ease !important;
}

/* verhindert "Shrink" beim Klicken */
.glenk-btn:active{
  transform: none !important;
  scale: 1 !important;
}

/* verhindert Mobile Tap-Effekte */
.glenk-btn{
  -webkit-tap-highlight-color: transparent !important;
  touch-action: manipulation;
}

/* falls irgendwo Ripple / pseudo-effects drin sind */
.glenk-btn::before,
.glenk-btn::after{
  display: none !important;
}
/* =====================================================
   FINAL FOOTER FIX – CTA TEXT WHITE (OVERRIDES FOOTER LINK HOVER)
   + SOCIAL ICONS (Instagram/Mail) VISIBLE
   ===================================================== */

/* === FOOTER CTA: "Erstgespräch buchen" === */
/* Footer has: .glenk-footer-section a:hover { color: var(--primary-blue) !important; }
   This overrides your button text on hover. So we override it with higher specificity. */
.glenk-footer .glenk-footer-section a.glenk-footer-cta,
.glenk-footer .glenk-footer-section a.glenk-footer-cta:hover,
.glenk-footer .glenk-footer-section a.glenk-footer-cta:focus,
.glenk-footer .glenk-footer-section a.glenk-footer-cta:active,
.glenk-footer .glenk-footer-section a.glenk-footer-cta:visited,
.glenk-footer .glenk-footer-section a.glenk-footer-cta *,
.glenk-footer .glenk-footer-section a.glenk-footer-cta:hover *,
.glenk-footer .glenk-footer-section a.glenk-footer-cta:focus *,
.glenk-footer .glenk-footer-section a.glenk-footer-cta:active * {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* === FOOTER SOCIAL ICONS (Instagram / Mail) === */
.glenk-footer .glenk-social-icon {
    background-color: #ffffff;
    color: var(--text-gray);
}

.glenk-footer .glenk-social-icon svg {
    fill: currentColor !important;
    color: inherit !important;
}

.glenk-footer .glenk-social-icon:hover,
.glenk-footer .glenk-social-icon:focus,
.glenk-footer .glenk-social-icon:active {
    background-color: var(--primary-blue);
    color: #ffffff !important;
}

.glenk-footer .glenk-social-icon:hover svg,
.glenk-footer .glenk-social-icon:focus svg,
.glenk-footer .glenk-social-icon:active svg {
    fill: #ffffff !important;
    color: #ffffff !important;
}
@media (min-width: 1024px) {
  .glenk-hero-performance .glenk-subpage-hero-bg img {
    object-fit: cover;
    object-position: 70% 25% !important;
  }
}
/* =========================================
   FINAL MOBILE HERO POSITIONING
   Label hoch – Headline tiefer – CTA unten
   ========================================= */

@media (max-width: 768px){

  /* 1️⃣ Label deutlich höher */
  .glenk-hero-section .glenk-hero-title{
      transform: translateY(-50px) !important;
  }

  /* 2️⃣ Headline weiter nach unten für klare Hierarchie */
  .glenk-hero-section .glenk-heading-xl{
      transform: translateY(75px) !important;
  }

  /* 3️⃣ CTA Buttons deutlich tiefer */
  .glenk-hero-section .glenk-btn-group{
      transform: translateY(130px) !important;
  }

}

/* Extra kleine Geräte */

@media (max-width: 480px){

  .glenk-hero-section .glenk-hero-title{
      transform: translateY(-60px) !important;
  }

  .glenk-hero-section .glenk-heading-xl{
      transform: translateY(90px) !important;
  }

  .glenk-hero-section .glenk-btn-group{
      transform: translateY(150px) !important;
  }

}
/* Button in Values Section exakt mittig */
.glenk-center-btn{
    display: flex;
    justify-content: center !important;
    align-items: center;
    margin-top: 60px;
}
/* =========================================
   ABOUT STORY – FINAL CLEAN VERSION
   Einheitliche Textstärke
   ========================================= */

.glenk-about-story{
  padding: 110px 0;
  background: var(--bg-light);
}

.glenk-about-story .glenk-story-header{
  text-align: center;
  margin-bottom: 40px;
}

.glenk-about-story .glenk-story-header h2{
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #000;
  margin: 0;
}

.glenk-about-story .glenk-story-text{
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 55px;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);

  text-align: left;
}

.glenk-about-story .glenk-story-text p{
  font-size: 1.08rem;
  line-height: 1.9;
  font-weight: 400;      /* EINHEITLICH */
  color: #000;
  margin: 0 0 22px;
}

.glenk-about-story .glenk-story-text p:last-child{
  margin-bottom: 0;
}

/* =========================================
   Tablet
   ========================================= */
@media (max-width: 1024px){

  .glenk-about-story{
    padding: 90px 0;
  }

  .glenk-about-story .glenk-story-text{
    padding: 40px 35px;
    border-radius: 22px;
  }

  .glenk-about-story .glenk-story-text p{
    font-size: 1.02rem;
    line-height: 1.8;
  }
}

/* =========================================
   Mobile
   ========================================= */
@media (max-width: 768px){

  .glenk-about-story{
    padding: 70px 0;
  }

  .glenk-about-story .glenk-story-text{
    padding: 28px 20px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  }

  .glenk-about-story .glenk-story-text p{
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px){

  .glenk-about-story .glenk-story-text{
    padding: 24px 16px;
  }

}
/* =========================================
   HEALTH DISCLAIMER BOX
   (Style wie About-Story Frame)
   ========================================= */

.glenk-health-disclaimer{
  max-width: 900px;
  margin: 60px auto 0;
  padding: 40px 50px;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);

  text-align: center;
}

.glenk-health-disclaimer p{
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;
  color: #000;
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px){

  .glenk-health-disclaimer{
    padding: 32px 35px;
    border-radius: 22px;
  }

  .glenk-health-disclaimer p{
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 768px){

  .glenk-health-disclaimer{
    padding: 24px 20px;
    border-radius: 18px;
    margin-top: 40px;
  }

  .glenk-health-disclaimer p{
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* Instagram Link nicht blau */
.glenk-contact-text a{
  color: inherit;        /* übernimmt Textfarbe vom Container */
  text-decoration: none; /* kein Unterstrich */
}

.glenk-contact-text a:hover{
  opacity: 0.8;          /* dezenter Hover-Effekt */
}
.glenk-heading-md--small {
    font-size: 1.8rem; 
}
@media (max-width: 768px) {
    .glenk-trustindex-wrapper {
        padding-top: 300px;
        padding-bottom: 200px;
    }
}
.ti-header-write-btn-container {
    position: relative !important;
    left: -40px !important;
    top: 5px !important;
}

/* =========================================
   FINAL OVERRIDES
   - Mobile service hero should stay stable while scrolling
   - Disable shine hover effect globally
   ========================================= */

@media (max-width: 768px) {
    .glenk-hero-section {
        height: var(--glenk-mobile-hero-height, 100svh) !important;
        min-height: var(--glenk-mobile-hero-height, 100svh) !important;
        max-height: var(--glenk-mobile-hero-height, 100svh) !important;
        overflow: visible !important;
    }

    .glenk-hero-section .glenk-container,
    .glenk-hero-section .glenk-hero {
        height: var(--glenk-mobile-hero-height, 100svh) !important;
        min-height: var(--glenk-mobile-hero-height, 100svh) !important;
        max-height: var(--glenk-mobile-hero-height, 100svh) !important;
        overflow: visible !important;
    }

    .glenk-hero-bg,
    .glenk-hero-bg img {
        -webkit-transform: translate3d(0, 0, 0) scale(1) !important;
        transform: translate3d(0, 0, 0) scale(1) !important;
        transition: none !important;
        animation: none !important;
        will-change: auto !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }

    .glenk-hero-bg img {
        height: 100% !important;
    }

    .glenk-hero-bg {
        overflow: hidden !important;
    }

    .glenk-subpage-hero {
        height: var(--glenk-mobile-hero-height, 100svh) !important;
        min-height: var(--glenk-mobile-hero-height, 100svh) !important;
        max-height: var(--glenk-mobile-hero-height, 100svh) !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .glenk-subpage-hero .glenk-container,
    .glenk-subpage-hero-content {
        height: var(--glenk-mobile-hero-height, 100svh) !important;
        min-height: var(--glenk-mobile-hero-height, 100svh) !important;
        max-height: var(--glenk-mobile-hero-height, 100svh) !important;
    }

    .glenk-subpage-hero-title {
        margin-top: calc(var(--glenk-mobile-hero-height, 100svh) * 0.28) !important;
    }

    /* Ensure service hero label is always visible on mobile (Performance/Health/Hybrid) */
    .glenk-subpage-hero-label {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        z-index: 3;
        top: clamp(104px, 14vh, 142px);
        left: 50%;
        transform: translateX(-50%);
        margin: 0 !important;
        padding-top: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        color: #ffffff !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
        letter-spacing: 0.1em !important;
        white-space: nowrap;
    }

    .glenk-subpage-hero-label svg {
        color: #ffffff !important;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .glenk-subpage-hero-bg,
    .glenk-subpage-hero-bg img {
        -webkit-transform: translate3d(0, 0, 0) scale(1) !important;
        transform: translate3d(0, 0, 0) scale(1) !important;
        transition: none !important;
        animation: none !important;
        will-change: auto !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }
}

@media (max-width: 480px) {
    .glenk-subpage-hero {
        padding: 0 !important;
    }

    .glenk-subpage-hero-label {
        top: clamp(96px, 13vh, 124px);
    }
}

.glenk-btn::before,
.glenk-btn::after,
.glenk-btn-primary::before,
.glenk-btn-primary::after {
    content: none !important;
    display: none !important;
    animation: none !important;
    transition: none !important;
}

/* Disable shine/shimmer effects on cards globally */
.glenk-feature-card::before,
.glenk-feature-card::after,
.glenk-review-card::before,
.glenk-review-card::after,
.glenk-process-step::before,
.glenk-process-step::after,
.glenk-choice-card::before,
.glenk-choice-card::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    animation: none !important;
    transition: none !important;
    transform: none !important;
    background: none !important;
}

.glenk-feature-icon::after,
.glenk-feature-icon::before {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    animation: none !important;
    transition: none !important;
    transform: none !important;
    background: none !important;
}

.glenk-feature-card:hover .glenk-feature-icon svg {
    animation: none !important;
}
