/* ========================================
   Training & Workshops | Pink Elephants
   Design System CSS
======================================== */

/* CSS Variables */
:root {
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --accent: #FF2D7D;
    --accent-hover: #e6296f;
    --text: #1a1a2e;
    --text2: #4a5568;
    --text3: #718096;
    --bg: #f7fafc;
    --bg-alt: #edf2f7;
    --white: #FFFFFF;
    --border: #e2e8f0;
    --border-light: #F0F0F0;
    --max-width: 1200px;
    --header-height: 72px;
    --radius: 4px;
    --radius-card: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: 0.2s ease;
}

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

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

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--header-height);
}

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

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

/* ========================================
   LAYOUT
======================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

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

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

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text2);
}

.lead {
    font-size: 1.125rem;
    color: var(--text2);
    max-width: 720px;
}

.label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header .container {
    height: 100%;
}

.header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo with Pink Elephants branding */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-main {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.logo-sub {
    font-size: 11px;
    color: var(--accent);
    font-weight: 500;
    line-height: 1.2;
}

/* Legacy brand classes */
.brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brand-main {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.brand-sub {
    font-size: 11px;
    color: var(--accent);
    font-weight: 500;
}

/* Navigation Links Container */
.nav-links {
    display: none;
    align-items: center;
    gap: 28px;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links .btn {
    margin-left: 8px;
}

/* Legacy nav styles */
.nav {
    display: none;
    align-items: center;
    gap: 28px;
}

@media (min-width: 1024px) {
    .nav { display: flex; }
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    position: relative;
}

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

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta { display: block; }
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 1024px) {
    .mobile-toggle { display: none; }
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 100%;
    background: var(--white);
    z-index: 2000;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu nav a {
    font-size: 17px;
    font-weight: 500;
    color: var(--text2);
}

.mobile-menu nav a:hover {
    color: var(--accent);
}

.mobile-menu .btn {
    margin-bottom: 32px;
    width: 100%;
    justify-content: center;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 20px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--text);
}

.btn-ghost {
    background: transparent;
    color: var(--accent);
    padding: 0;
    height: auto;
}

.btn-ghost:hover {
    color: var(--accent-hover);
}

.btn-ghost svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.btn-ghost:hover svg {
    transform: translateX(4px);
}

/* ========================================
   HERO
======================================== */
.hero {
    padding: 80px 0 96px;
    background: var(--bg);
}

.hero-content {
    max-width: 720px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero .lead {
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text2);
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 48px 0 64px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================================
   STATS SECTION
======================================== */
.stats {
    background: var(--white);
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}

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

.stat-card {
    background: var(--bg);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 28px 24px;
    }
}

/* ========================================
   TRUST STATS SECTION (NEW)
======================================== */
.trust-stats {
    background: var(--white);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.trust-stat-item {
    background: var(--bg);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
}

.trust-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.trust-stat-label {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.5;
}

.trust-link {
    text-align: center;
}

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

@media (max-width: 600px) {
    .trust-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .trust-stat-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   CLIENTS MARQUEE
======================================== */
.clients-marquee {
    background: var(--bg);
    padding: 48px 0;
    overflow: hidden;
}

.clients-intro {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text3);
    margin-bottom: 32px;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee 60s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 0 24px;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text2);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.client-name:hover {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .clients-marquee {
        padding: 32px 0;
    }
    .clients-intro {
        padding: 0 20px;
        margin-bottom: 24px;
    }
    .marquee-content {
        gap: 32px;
    }
    .client-name {
        font-size: 0.95rem;
    }
}

/* ========================================
   TRUST / EXPERIENCE
======================================== */
.trust {
    background: var(--white);
    padding: 96px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.trust-content .label {
    margin-bottom: 16px;
}

.trust-content h2 {
    margin-bottom: 20px;
}

.trust-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.trust-content .btn-ghost {
    margin-top: 8px;
}

.trust-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.value-card {
    background: var(--bg);
    border-radius: var(--radius-card);
    padding: 24px;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(45, 125, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: #2d7dff;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6;
    margin: 0;
}

.trust-note {
    font-size: 13px;
    color: var(--text3);
    padding: 20px 24px;
    background: var(--bg);
    border-radius: var(--radius-card);
    border-left: 3px solid var(--accent);
    max-width: 900px;
}

.trust-note strong {
    color: var(--text2);
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

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

/* ========================================
   TRAININGS GRID
======================================== */
.trainings {
    background: var(--bg);
    padding: 96px 0;
}

.trainings-header {
    max-width: 640px;
    margin-bottom: 48px;
}

.trainings-header .label {
    margin-bottom: 16px;
}

.trainings-header h2 {
    margin-bottom: 16px;
}

.trainings-header .lead {
    margin: 0;
}

.trainings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

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

.training-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.training-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.training-card h3 {
    font-size: 1.1rem;
    line-height: 1.3;
}

.training-badge {
    font-size: 12px;
    font-weight: 500;
    color: var(--text3);
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.training-card p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========================================
   FORMATS HIGHLIGHT (Dark Section)
======================================== */
.formats-highlight {
    background: #0d1b2a;
    padding: 96px 0;
}

.formats-highlight-inner {
    color: #fff;
}

.formats-highlight-header {
    max-width: 640px;
    margin-bottom: 48px;
}

.formats-highlight-header .label {
    color: var(--accent);
}

.formats-highlight-header h2 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 20px;
}

.formats-highlight-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.formats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.format-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 32px;
    color: var(--text);
}

.format-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(45, 125, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.format-card-icon svg {
    width: 28px;
    height: 28px;
    color: #2d7dff;
}

.format-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.format-card p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
    margin: 0;
}

.format-card p a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.format-card p a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .formats-highlight {
        padding: 64px 0;
    }
}

/* ========================================
   OCCASIONS (ANLÄSSE)
======================================== */
.occasions {
    background: var(--bg);
    padding: 96px 0;
}

.occasions .label {
    margin-bottom: 16px;
}

.occasions h2 {
    margin-bottom: 32px;
}

.occasions-list {
    max-width: 680px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.occasions-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text2);
    line-height: 1.6;
}

.occasions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
    background: var(--white);
    padding: 96px 0;
}

.testimonials .label {
    margin-bottom: 16px;
}

.testimonials h2 {
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial {
    background: var(--bg);
    border-radius: var(--radius-card);
    padding: 28px;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text3);
}

/* ========================================
   TESTIMONIALS NEW (Card Style)
======================================== */
.testimonials-new {
    background: var(--bg);
    padding: 96px 0;
}

.testimonials-new-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-new-header .label {
    margin-bottom: 16px;
}

.testimonials-new-header h2 {
    margin-bottom: 0;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border-light);
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text2);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text3);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .testimonials-new-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FAQ
======================================== */
.faq {
    background: var(--bg);
    padding: 96px 0;
}

.faq .label {
    margin-bottom: 16px;
}

.faq h2 {
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text2);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
}


/* ========================================
   HERO WITH IMAGE
======================================== */
.hero-with-image {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    overflow: hidden;
}

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

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.92) 35%,
        rgba(255, 255, 255, 0.75) 60%,
        rgba(255, 255, 255, 0.3) 100%
    );
}

.hero-with-image .container {
    position: relative;
    z-index: 1;
}

.hero-with-image .hero-content {
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-with-image {
        min-height: 500px;
        padding: 100px 0 64px;
    }
    
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 60%,
            rgba(255, 255, 255, 0.7) 100%
        );
    }
}


/* Contact with image */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-image {
    border-radius: 12px;
    overflow: hidden;
    max-width: 400px;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .contact-image {
        max-width: 100%;
    }
}


/* Content Image */
.content-image-section {
    padding: 48px 0;
    background: var(--bg);
}

.content-image {
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-image-medium {
    max-width: 800px;
}

/* Workshop Impressions */
.workshop-impressions {
    background: var(--bg);
    padding: 48px 0;
}

.impression-single {
    border-radius: 12px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.impression-single img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   CONTACT
======================================== */
.contact {
    background: var(--white);
    padding: 96px 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-text .label {
    margin-bottom: 16px;
}

.contact-text h2 {
    margin-bottom: 16px;
}

.contact-text p {
    font-size: 15px;
    line-height: 1.7;
}

.contact-form {
    background: var(--bg);
    border-radius: var(--radius-card);
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text3);
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
}

/* ========================================
   PRE-FOOTER CTA
======================================== */
.pre-footer {
    background: var(--bg);
    padding: 80px 0;
    text-align: center;
}

.pre-footer h2 {
    margin-bottom: 16px;
}

.pre-footer p {
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 64px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand-col h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.footer-brand-col p {
    font-size: 14px;
    color: var(--text2);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 14px;
    color: var(--text2);
    margin-bottom: 12px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 13px;
    color: var(--text3);
}

.footer-note {
    font-size: 12px;
    color: var(--text3);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ========================================
   COOKIE BANNER
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: var(--white);
    padding: 20px 24px;
    z-index: 3000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 8px;
    line-height: 1.5;
}

.cookie-text p:last-child {
    margin-bottom: 0;
}

.cookie-text strong {
    color: var(--white);
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: opacity var(--transition);
}

.cookie-btn.cookie-accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-btn.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   UTILITIES
======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Legal Pages */
.legal {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
}

.legal-content h1 {
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 1.25rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--accent);
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text2);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    z-index: 9999;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

/* Über Section */
.ueber {
    padding: 96px 0;
    background: var(--bg);
}
.ueber-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}
.ueber-content .label { margin-bottom: 12px; }
.ueber-content h2 { margin-bottom: 20px; }
.ueber-content p {
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 16px;
}
.ueber-credentials {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.credential strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 4px;
}
.credential span {
    font-size: 13px;
    color: var(--text3);
}
.ueber-philosophy {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}
.ueber-philosophy h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.ueber-philosophy ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ueber-philosophy li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text2);
}
.ueber-philosophy li:last-child { border-bottom: none; }
.ueber-philosophy li strong { color: var(--text); }
@media (max-width: 900px) {
    .ueber-grid { grid-template-columns: 1fr; gap: 40px; }
    .ueber-credentials { flex-direction: column; gap: 20px; }
}

/* Glossar Section */
.glossar {
    padding: 96px 0;
    background: var(--white);
}
.glossar-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}
.glossar-header .label { margin-bottom: 12px; }
.glossar-header h2 { margin-bottom: 12px; }
.glossar-header p { color: var(--text2); }
.glossar-filter {
    max-width: 400px;
    margin: 0 auto 40px;
}
.glossar-filter input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    background: var(--bg);
}
.glossar-filter input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}
.glossar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.glossar-item {
    background: var(--bg);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.glossar-term {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
}
.glossar-def {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.5;
}
.glossar-tag {
    font-size: 11px;
    padding: 3px 8px;
    background: rgba(45, 125, 255, 0.1);
    color: #2d7dff;
    border-radius: 4px;
    align-self: flex-start;
    margin-top: 4px;
}
.glossar-item[style*="display: none"] { display: none !important; }

/* Scroll-Offset für fixierten Header */
section[id] {
    scroll-margin-top: 100px;
}

/* ========================================
   TOOLS PAGE - AGILE CHALLENGE & EXEC CHECK
======================================== */

/* Tools Hero */
.tools-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 100%);
    color: #fff;
    padding: 140px 0 80px;
    text-align: center;
}

.tools-hero .label {
    color: var(--accent);
}

.tools-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    max-width: 800px;
    margin: 0 auto 20px;
}

.tools-hero .lead {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

.tools-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tools-hero .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.tools-hero .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Tool Sections */
.tool-section {
    padding: 80px 0;
}

.tool-section-alt {
    background: var(--bg);
}

.tool-intro {
    max-width: 600px;
    margin-bottom: 48px;
}

.tool-intro h2 {
    margin-top: 8px;
    margin-bottom: 16px;
}

.tool-intro p {
    color: var(--text2);
    margin-bottom: 24px;
}

/* Quiz Container */
.quiz-container,
.check-container {
    max-width: 700px;
}

/* Progress Bar */
.quiz-progress {
    margin-bottom: 32px;
}

.quiz-progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--accent);
    transition: width 0.3s ease;
}

.quiz-progress-text {
    font-size: 13px;
    color: var(--text2);
}

/* Question Card */
.quiz-question-card,
.check-statement-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.tool-section-alt .quiz-question-card,
.tool-section-alt .check-statement-card {
    background: #fff;
}

.quiz-question,
.check-statement {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 28px;
}

/* Quiz Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.quiz-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quiz-option:hover {
    background: #f0f4f8;
}

.quiz-option.selected {
    border-color: var(--accent);
    background: rgba(255, 45, 125, 0.05);
}

.quiz-option input {
    margin-top: 3px;
    accent-color: var(--accent);
}

.quiz-option-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

.quiz-next-btn {
    width: 100%;
}

.quiz-next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Likert Scale */
.likert-scale {
    margin-bottom: 28px;
}

.likert-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text2);
    margin-bottom: 12px;
}

.likert-options {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.likert-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.likert-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.likert-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text2);
    transition: all 0.2s ease;
}

.likert-option:hover .likert-circle {
    border-color: var(--accent);
    color: var(--accent);
}

.likert-option.selected .likert-circle {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

@media (max-width: 480px) {
    .likert-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Result Card */
.quiz-result,
.check-result {
    max-width: 700px;
}

.result-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
}

.tool-section-alt .result-card {
    background: #fff;
}

.result-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.result-header h3 {
    font-size: 24px;
    color: var(--accent);
    margin: 8px 0;
}

.result-score {
    font-size: 14px;
    color: var(--text2);
}

.result-description {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 32px;
}

.result-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

@media (max-width: 600px) {
    .result-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.result-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.result-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-column li {
    font-size: 14px;
    color: var(--text2);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.result-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.result-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.result-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.result-actions .btn svg {
    flex-shrink: 0;
}

/* Dimension Results */
.dimension-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.dimension-item {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

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

.dimension-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.dimension-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.dimension-level {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dimension-level.level-low {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.dimension-level.level-medium {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.dimension-level.level-high {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.dimension-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.dimension-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.dimension-bar-fill.level-low {
    background: #ef4444;
}

.dimension-bar-fill.level-medium {
    background: #f59e0b;
}

.dimension-bar-fill.level-high {
    background: #22c55e;
}

/* Focus Area */
.focus-area {
    background: rgba(255, 45, 125, 0.05);
    border: 1px solid rgba(255, 45, 125, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 32px;
}

.focus-area h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.focus-area p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* Recommendations */
.recommendations h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.recommendations ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.recommendations li {
    font-size: 14px;
    color: var(--text2);
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.recommendations li:last-child {
    border-bottom: none;
}

.recommendations li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.next-steps {
    background: var(--bg);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.next-steps h4 {
    margin-bottom: 8px;
}

.next-steps p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 100%);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

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

.cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    animation: slideUp 0.3s ease;
}

.copy-notification[hidden] {
    display: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Nav active state */
.nav-links a.active {
    color: var(--accent);
}
