/* ========================================
   CSS VARIABLES
======================================== */
:root {
    --bg: #FFFFFF;
    --surface: #EDF2F7;
    --text: #0B1220;
    --text2: #334155;
    --muted: #64748B;
    --border: #CBD5E1;
    --accent: #FF2D7D;
    --accent-hover: #e6296f;
    --accent2: #2563EB;
    --success: #16A34A;
    --danger: #DC2626;
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    
    --radius-card: 20px;
    --radius-btn: 14px;
    --radius-input: 12px;
    
    --shadow: 0 8px 24px rgba(2,6,23,0.06);
    --shadow-lg: 0 16px 48px rgba(2,6,23,0.08);
    
    --max-width: 1120px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    /* Exception: marquee should still animate slowly */
    .marquee {
        animation-duration: 60s !important;
    }
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--accent2);
}

ul, ol {
    padding-left: 1.5em;
}

li {
    margin-bottom: 8px;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
}

h1 {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 36px;
    font-weight: 650;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 24px;
    font-weight: 650;
    line-height: 1.25;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }
}

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

.lead {
    font-size: 20px;
    color: var(--text2);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lead { font-size: 18px; }
}

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

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

section {
    padding: 80px 0;
}

@media (max-width: 1024px) {
    section { padding: 72px 0; }
}

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

.section-surface {
    background: var(--surface);
}

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

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

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

.brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    flex-shrink: 0;
    gap: 2px;
}

.brand-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

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

@media (max-width: 480px) {
    .brand-name {
        font-size: 14px;
    }
    .brand-sub {
        font-size: 10px;
        padding-left: 40px;
    }
    .brand-logo {
        height: 26px;
        width: auto;
    }
}

.nav {
    display: none;
    align-items: center;
    gap: 32px;
}

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

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

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

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

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text2);
    cursor: pointer;
}

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

.nav-dropdown-trigger.active {
    color: var(--text);
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: none;
    white-space: nowrap;
    font-size: 14px;
    min-width: 260px;
}

.nav-dropdown-menu a:first-child {
    border-top: 1px solid var(--border);
    border-radius: 8px 8px 0 0;
}

.nav-dropdown-menu a:last-child {
    border-radius: 0 0 8px 8px;
}

.nav-dropdown-menu a:hover {
    background: var(--surface);
    color: var(--accent);
}

.nav-dropdown-menu a.active {
    color: var(--accent);
    background: rgba(255, 45, 125, 0.05);
}

/* Header Actions (CTA + Mobile Toggle) */
.header-actions {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 6px;
}

@media (min-width: 1024px) {
    .header-actions {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
}

/* Header-CTA auf Mobile ausblenden (Sticky-CTA reicht) */
.header-cta {
    display: none !important;
}

@media (min-width: 1024px) {
    .header-cta { 
        display: inline-flex !important;
        font-size: 15px;
        height: 48px;
        padding: 14px 18px;
    }
}

/* Mobile Menu */
.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: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 100%;
    background: var(--bg);
    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: 24px;
}

.mobile-menu nav a {
    font-size: 18px;
    font-weight: 500;
}

.mobile-menu nav a.mobile-nav-parent {
    color: var(--text);
}

.mobile-menu nav a.mobile-nav-child {
    font-size: 16px;
    padding-left: 16px;
    color: var(--text2);
}

.mobile-menu nav a.mobile-nav-child.active {
    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: 48px;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

@media (max-width: 768px) {
    .btn { height: 44px; font-size: 14px; }
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 45, 125, 0.3);
}

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

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

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

.btn-accent:hover {
    background: #E6296F;
    color: white;
}

.btn:focus-visible {
    outline: 2px solid var(--accent2);
    outline-offset: 2px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.micro-copy {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted);
}

/* ========================================
   PAGE HERO
======================================== */
.page-hero {
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 64px;
}

.page-hero h1 {
    margin-bottom: 24px;
    max-width: 800px;
}

.page-hero .lead {
    max-width: 700px;
    margin-bottom: 0;
}

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

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

.page-hero-content .lead {
    max-width: none;
}

.page-hero-image {
    border-radius: var(--radius-card);
    overflow: hidden;
}

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

/* ========================================
   SECTION HEADER
======================================== */
.section-header {
    max-width: 720px;
    margin-bottom: 48px;
}

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

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

/* ========================================
   CARDS
======================================== */
.card-grid {
    display: grid;
    gap: 24px;
}

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

.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .card-grid-3, .card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .card-grid-2, .card-grid-3, .card-grid-4 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
    transition: box-shadow 0.2s ease;
}

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

.card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.card p {
    color: var(--text2);
    font-size: 16px;
    margin: 0;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
}

.card-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Offer Cards (Large) */
.offer-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.offer-card-large {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 40px;
}

.offer-card-large h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.offer-meta {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.offer-desc {
    font-size: 18px;
    color: var(--text2);
    margin-bottom: 16px;
}

.offer-ideal {
    font-size: 16px;
    color: var(--text2);
    margin-bottom: 24px;
    font-style: italic;
}

.offer-outputs {
    margin-bottom: 32px;
}

.offer-outputs h4 {
    color: var(--accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-outputs ul {
    list-style: none;
    padding: 0;
}

.offer-outputs li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

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

.offer-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Detail Sections */
.detail-section {
    max-width: 900px;
}

.detail-section h2 {
    margin-bottom: 16px;
}

.detail-section .lead {
    margin-bottom: 48px;
}

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

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

.detail-block h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent);
}

.detail-block p {
    color: var(--text2);
}

.detail-block ul, .detail-block ol {
    color: var(--text2);
}

.process-list {
    list-style: none;
    padding: 0;
    counter-reset: process;
}

.process-list li {
    counter-increment: process;
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
}

.process-list li::before {
    content: counter(process);
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Principle Cards */
.principle-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
}

.principle-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--accent);
}

.principle-card p {
    color: var(--text2);
    margin: 0;
}

/* Process Steps (Full) */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 640px) {
    .process-step {
        grid-template-columns: 1fr;
    }
}

.process-step-num {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-step-content p {
    color: var(--text2);
    margin-bottom: 16px;
}

.process-step-questions {
    font-size: 15px;
    color: var(--muted);
    font-style: italic;
}

/* ========================================
   FAQ ACCORDION
======================================== */
.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

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

.faq-button:hover {
    color: var(--accent);
}

.faq-button:focus-visible {
    outline: 2px solid var(--accent2);
    outline-offset: 2px;
}

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

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

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-button[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

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

.faq-content-inner {
    padding-bottom: 24px;
    color: var(--text2);
    font-size: 16px;
    line-height: 1.7;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    font-weight: 600;
    color: var(--accent);
}

.faq-link:hover {
    text-decoration: underline;
}

/* ========================================
   CTA BAND
======================================== */
.cta-band {
    position: relative;
    background: url('/images/cta-background.webp') center center / cover no-repeat;
    text-align: center;
    padding: 80px 24px;
}

/* Helles Overlay für Textlesbarkeit */
.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.82);
    z-index: 1;
}

/* Container über dem Overlay */
.cta-band .container {
    position: relative;
    z-index: 2;
}

.cta-band h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text);
}

@media (max-width: 768px) {
    .cta-band h3 { font-size: 26px; }
}

.cta-band p {
    color: var(--text2);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-band .cta-row {
    justify-content: center;
    margin-top: 0;
}

/* Extended CTA Band with Counter Boxes */
.cta-band--extended {
    padding-bottom: 60px;
}

.counter-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
}

.counter-box {
    background: white;
    border-radius: 12px;
    padding: 24px 28px;
    text-align: center;
    min-width: 160px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.counter-box__num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}

.counter-box__label {
    display: block;
    font-size: 14px;
    color: var(--text2);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .counter-boxes {
        gap: 12px;
    }
    
    .counter-box {
        padding: 18px 20px;
        min-width: 140px;
        flex: 1 1 calc(50% - 12px);
        max-width: calc(50% - 6px);
    }
    
    .counter-box__num {
        font-size: 26px;
    }
    
    .counter-box__label {
        font-size: 13px;
    }
}

/* ========================================
   MARQUEE SECTION
======================================== */
.marquee-section {
    background: var(--surface);
    padding: 48px 0;
}

.marquee-intro {
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
    background: var(--surface);
    position: relative;
}

/* Fade-Effekt links und rechts */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

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

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

.marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

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

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

.marquee-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Trennpunkt nach jedem Item */
.marquee-item::after {
    content: '·';
    margin-left: 24px;
    color: var(--muted);
    opacity: 0.5;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 14px;
    }
    .marquee-content {
        gap: 20px;
        padding-right: 20px;
    }
    .marquee-item::after {
        margin-left: 20px;
    }
    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 60px;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

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

.footer-grid-4 {
    grid-template-columns: 2fr 1.2fr 1fr 1fr;
}

@media (max-width: 1024px) {
    .footer-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}

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

.footer-brand p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted);
    max-width: 300px;
}

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

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text2) !important;
    text-decoration: none;
}

.footer-social:hover {
    color: var(--accent) !important;
}

.footer-social svg {
    flex-shrink: 0;
}




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

.footer-contact span {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.footer h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 16px;
}

.footer nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer nav a {
    font-size: 15px;
    color: var(--text2);
}

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

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding-top: 32px;
    border-top: none;
    font-size: 14px;
    color: var(--muted);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: var(--border);
}

.footer-copy {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.footer-author-link {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-author-link:hover {
    color: var(--accent);
}

.footer-right {
    text-align: right;
    align-self: flex-end;
}

.footer-powered {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: block;
}

.footer-powered:hover {
    opacity: 0.8;
}

.footer-trademark {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

.footer-crosslinks {
    margin-top: 20px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
    text-align: center;
}

.footer-crosslinks a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ========================================
   FORMS
======================================== */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-main);
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-input);
    background: var(--bg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent2);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: var(--danger);
}

.form-error {
    font-size: 14px;
    color: var(--danger);
    margin-top: 6px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text2);
    margin-bottom: 0;
}

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

.form-success,
.form-error-message {
    padding: 24px;
    border-radius: var(--radius-card);
    margin-top: 24px;
}

.form-success {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid var(--success);
}

.form-success h3 {
    color: var(--success);
    margin-bottom: 8px;
}

.form-error-message {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--danger);
}

.form-error-message h3 {
    color: var(--danger);
    margin-bottom: 8px;
}

/* ========================================
   PROFILE / ABOUT
======================================== */
.profile-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.profile-image {
    border-radius: var(--radius-card);
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: auto;
}

.profile-content h2 {
    margin-bottom: 24px;
}

.profile-content ul {
    color: var(--text2);
    margin-bottom: 24px;
}

.profile-subtitle {
    font-size: 18px;
    color: var(--text2);
    margin-bottom: 24px;
    font-weight: 500;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

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

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text2);
}

/* Work Style */
.work-style-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 640px) {
    .work-style-grid {
        grid-template-columns: 1fr;
    }
}

.work-style-item {
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius-card);
}

.work-style-item p {
    margin: 0;
    color: var(--text2);
}

/* Einordnung Block */
.einordnung-block {
    background: linear-gradient(135deg, rgba(255, 45, 125, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-card);
    padding: 32px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.einordnung-block h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text);
}

.einordnung-block p {
    color: var(--text2);
    margin-bottom: 16px;
}

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

@media (max-width: 640px) {
    .einordnung-block {
        padding: 24px;
    }
}

/* ========================================
   CONTACT
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

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

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

.contact-info p {
    color: var(--text2);
    margin-bottom: 32px;
}

.contact-alt {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.contact-alt h4 {
    margin-bottom: 12px;
}

.contact-alt a {
    color: var(--accent);
}

/* Fit Section */
.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

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

.fit-box {
    padding: 32px;
    border-radius: var(--radius-card);
}

.fit-box.positive {
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.fit-box.negative {
    background: var(--surface);
    border: 1px solid var(--border);
}

.fit-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.fit-box.positive h3 {
    color: var(--success);
}

.fit-box ul {
    margin: 0;
    color: var(--text2);
}

/* ========================================
   LEGAL PAGES
======================================== */
.legal-content {
    max-width: 760px;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 96px;
}

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

.legal-content h2 {
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
}

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

.legal-content ul, .legal-content ol {
    color: var(--text2);
    margin-bottom: 16px;
}

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

/* ========================================
   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;
}

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

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

.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ========================================
   WORK STYLE CARDS
======================================== */
.work-style-card {
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.work-style-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.work-style-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.work-style-card h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 12px;
}

.work-style-card p {
    font-size: 15px;
    color: var(--text2);
    margin: 0;
}

/* ========================================
   CREDENTIAL CARDS (Über-Seite)
======================================== */
.credential-highlight {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius-card);
    padding: 32px 40px;
    margin-bottom: 40px;
}

.credential-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.credential-content h3 {
    font-size: 22px;
    color: var(--text);
    margin-bottom: 8px;
}

.credential-content p {
    font-size: 16px;
    color: var(--text2);
    margin: 0;
}

@media (max-width: 640px) {
    .credential-highlight {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }
    
    .credential-icon {
        font-size: 40px;
    }
    
    .credential-content h3 {
        font-size: 18px;
    }
    
    .credential-content p {
        font-size: 14px;
    }
}

.credentials-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 20px;
    text-align: center;
}

.credential-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 20px 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.credential-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.credential-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.credential-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

/* ========================================
   MARQUEE / LOGO TICKER
======================================== */
.marquee-intro {
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 32px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
    background: var(--surface);
}

.marquee {
    display: flex;
    width: max-content;
    animation-name: marquee-scroll;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

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

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 64px;
    padding-right: 64px;
}

.marquee-item {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    opacity: 0.6;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 16px;
    }
    .marquee-content {
        gap: 40px;
        padding-right: 40px;
    }
}

/* ========================================
   COUNTER SECTION (for pages that need it)
======================================== */
.counter-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background: linear-gradient(rgba(11, 18, 32, 0.75), rgba(11, 18, 32, 0.75)), url('/images/hero-fallback.jpg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 640px) {
    .counter-section {
        padding: 64px 0;
    }
}

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

@media (max-width: 1024px) {
    .counter-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.counter-item {
    text-align: center;
}

.counter-num {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #FF2D7D;
    line-height: 1;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .counter-num {
        font-size: 36px;
    }
}

.counter-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 180px;
    width: 48px;
    height: 48px;
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 900;
    box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   STICKY CTA (Mobile Only)
======================================== */
.sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 16px;
        background: var(--bg);
        border-top: 1px solid var(--border);
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: 950;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    }
    
    .sticky-cta.show {
        transform: translateY(0);
    }
    
    .sticky-cta .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    
    /* Adjust back-to-top when sticky CTA is visible */
    .sticky-cta.show ~ .back-to-top,
    .back-to-top.with-sticky {
        bottom: 80px;
    }
}

/* ========================================
   FOCUS STATES (Accessibility)
======================================== */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Remove default outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}






/* ========================================
   Footer Contact List - Unified Styles
======================================== */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-list a,
.footer-contact-list p,
.footer-contact-list span {
    display: block;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--text2);
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
}

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

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: var(--bg);
    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(--bg);
}

.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-btn);
    cursor: pointer;
    transition: opacity var(--transition);
}

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

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

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

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

    .footer-right {
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-text {
        min-width: auto;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   BREADCRUMB
======================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--text2);
}

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

.breadcrumb span {
    color: var(--muted);
}

/* ========================================
   PAGE HERO COMPACT
======================================== */
.page-hero-compact {
    padding: 120px 0 48px;
}

.page-hero-compact h1 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 16px;
}

.page-hero-compact .lead {
    font-size: 18px;
}

/* ========================================
   TOOLS HUB PAGE
======================================== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

.tool-teaser-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.tool-teaser-card h2 {
    font-size: 24px;
    margin: 12px 0 16px;
}

.tool-teaser-card > p {
    color: var(--text2);
    margin-bottom: 20px;
}

.tool-teaser-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.tool-teaser-features li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: var(--text2);
}

.tool-teaser-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.tool-teaser-time {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    margin-top: auto;
}

.tool-teaser-card .btn {
    align-self: flex-start;
}

/* Tool Status Badges */
.tool-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tool-status-dev {
    background: var(--surface2);
    color: var(--text2);
}

.tool-status-live {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

/* Decision Help */
.decision-help {
    margin-top: 32px;
}

.decision-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.decision-row:last-child {
    border-bottom: none;
}

.decision-question {
    flex: 1;
}

.decision-question p {
    margin: 0;
    color: var(--text);
}

.decision-answer {
    flex-shrink: 0;
}

.decision-answer a {
    color: var(--accent);
    font-weight: 500;
}

.decision-answer a:hover {
    text-decoration: underline;
}

.decision-answer span {
    color: var(--text2);
    font-size: 15px;
}

@media (max-width: 600px) {
    .decision-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Next Tool Hint */
.next-tool-hint {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 24px 32px;
    margin: 48px 0;
    text-align: center;
}

.next-tool-hint p {
    margin: 0;
}

.next-tool-hint p:first-child {
    margin-bottom: 8px;
}

.next-tool-hint a {
    color: var(--accent);
    font-weight: 500;
}

.next-tool-hint a:hover {
    text-decoration: underline;
}

/* ========================================
   TOOLS PAGE STYLES
======================================== */

/* Stepper Progress */
.tool-stepper {
    margin-top: 48px;
}

.stepper-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    padding: 0 16px;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.stepper-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.3s ease;
}

.stepper-label {
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
}

.stepper-step.active .stepper-num {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.stepper-step.active .stepper-label {
    color: var(--text);
    font-weight: 500;
}

.stepper-step.completed .stepper-num {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.stepper-step.completed .stepper-num::after {
    content: '✓';
}

.stepper-line {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin: 0 8px;
    margin-bottom: 28px;
}

@media (max-width: 600px) {
    .stepper-progress {
        gap: 0;
    }
    .stepper-line {
        width: 24px;
    }
    .stepper-label {
        display: none;
    }
    .stepper-num {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* Tool Steps */
.tool-step {
    display: none;
}

.tool-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Tool Card */
.tool-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.tool-card h3 {
    margin-bottom: 8px;
}

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

/* Tool Form Groups */
.tool-form-group {
    margin-bottom: 28px;
}

.tool-label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.tool-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-input);
    transition: all 0.2s ease;
}

.tool-radio:hover {
    border-color: var(--accent);
    background: rgba(255, 45, 125, 0.03);
}

.tool-radio input {
    display: none;
}

.tool-radio-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.tool-radio input:checked + .tool-radio-box {
    border-color: var(--accent);
}

.tool-radio input:checked + .tool-radio-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.tool-radio-text {
    color: var(--text);
    font-size: 15px;
}

.tool-radio input:checked ~ .tool-radio-text {
    font-weight: 500;
}

/* Tool Actions */
.tool-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.tool-actions-result {
    flex-wrap: wrap;
}

/* Tool Hint */
.tool-hint {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
    padding: 10px 14px;
    background: var(--surface);
    border-radius: 8px;
}

.tool-hint.valid {
    color: var(--success);
    background: rgba(22, 163, 74, 0.1);
}

/* Tension Grid */
.tension-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

.tension-card {
    cursor: pointer;
}

.tension-card input {
    display: none;
}

.tension-card-inner {
    display: block;
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-card);
    transition: all 0.2s ease;
    height: 100%;
}

.tension-card:hover .tension-card-inner {
    border-color: var(--accent);
}

.tension-card input:checked + .tension-card-inner {
    border-color: var(--accent);
    background: rgba(255, 45, 125, 0.05);
}

.tension-card.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.tension-card-title {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.tension-card-desc {
    display: block;
    font-size: 14px;
    color: var(--text2);
    line-height: 1.5;
}

/* Progress Text */
.tool-progress-text {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
}

/* Tension Questions */
.tension-question-title {
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.tension-question {
    margin-bottom: 28px;
}

.tension-question-text {
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text);
}

.tension-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tension-note {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.tool-textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-input);
    font-family: inherit;
    font-size: 15px;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.tool-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Result Sections */
.tool-result h3 {
    margin-bottom: 24px;
}

.result-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.result-section:last-of-type {
    border-bottom: none;
}

.result-section h4 {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 12px;
}

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

.result-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

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

.result-list li.muted {
    color: var(--muted);
    font-style: italic;
}

.result-list li.muted::before {
    background: var(--muted);
}

/* Cluster Cards */
.result-clusters {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cluster-card {
    padding: 20px;
    background: var(--surface);
    border-radius: var(--radius-card);
    border-left: 4px solid var(--accent);
}

.cluster-card h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

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

/* Likert Scale */
.resilience-dimension {
    margin-bottom: 32px;
}

.resilience-dimension h4 {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.likert-row {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--surface);
    border-radius: var(--radius-card);
}

.likert-statement {
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text);
    line-height: 1.5;
}

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

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

.likert-option input {
    display: none;
}

.likert-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.2s ease;
    background: var(--bg);
}

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

.likert-option input:checked + .likert-box {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.likert-label {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .likert-scale {
        gap: 4px;
    }
    .likert-box {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .likert-label {
        font-size: 10px;
    }
}

/* Resilience Bars */
.resilience-bars {
    margin-bottom: 32px;
}

.resilience-bar-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: var(--surface);
    border-radius: var(--radius-input);
    transition: all 0.2s ease;
}

.resilience-bar-row.focus {
    background: rgba(255, 45, 125, 0.08);
    border: 1px solid var(--accent);
}

.bar-label {
    width: 180px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
}

.bar-container {
    flex: 1;
    height: 12px;
    background: var(--border);
    border-radius: 6px;
    overflow: hidden;
}

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

.bar-fill.low {
    background: var(--danger);
}

.bar-fill.medium {
    background: #F59E0B;
}

.bar-fill.high {
    background: var(--success);
}

.bar-level {
    width: 60px;
    font-size: 13px;
    font-weight: 500;
    text-align: right;
}

@media (max-width: 600px) {
    .resilience-bar-row {
        flex-wrap: wrap;
    }
    .bar-label {
        width: 100%;
        margin-bottom: 8px;
    }
    .bar-container {
        flex: 1;
    }
}

/* Copy Feedback */
.copy-feedback {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Button Outline Variant */
.btn-outline {
    background: transparent;
    color: var(--text2);
    border: 1px solid var(--border);
}

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

/* Tool Version / Denkstand */
.tool-version {
    text-align: center;
    color: var(--text3);
    font-size: 0.875rem;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.tool-version a {
    color: var(--text3);
    text-decoration: underline;
}

.tool-version a:hover {
    color: var(--accent);
}

/* Result Intro */
.result-intro {
    color: var(--text2);
    font-style: italic;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

/* Vapi Widget immer im Vordergrund */
#vapi-widget,
.vapi-widget-container,
[data-vapi-widget],
div[style*="position: fixed"][style*="bottom"],
#vapi-container,
iframe[src*="vapi"],
div[class*="vapi"] {
    z-index: 999999 !important;
    pointer-events: auto !important;
}

/* Sicherstellen dass keine Section das Widget überdeckt */
section, .section, main {
    z-index: auto !important;
}

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

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