/* ============================================================
   w2Labs — Global Stylesheet
   Extracted from mockup-a2-experte-v2 and expanded for
   multi-page website with dark mode support.
   ============================================================ */

/* Self-hosted Fonts (muss vor allen anderen Regeln stehen) */
@import url('fonts.css');

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

:root {
    --green: #00E86C;
    --green-dark: #00cc5e;
    --green-hover: #00b857;
    --green-soft: #e8faf0;
    --green-glow: rgba(0, 232, 108, 0.15);
    --charcoal: #1a1a2e;
    --text: #3a3a4a;
    --text-light: #6b6b7b;
    --text-muted: #9a9aaa;
    --bg: #FAFAF9;
    --bg-alt: #f3f3f1;
    --white: #ffffff;
    --border: #e8e8ec;
    --border-light: #f0f0f2;
    --nav-bg: rgba(250, 250, 249, 0.88);
    --pain-icon-bg: #fff0f0;
    --pain-icon-color: #d44;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.09);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --code-bg: #1e1e2e;
    --code-text: #cdd6f4;
    --code-key: #89b4fa;
    --code-string: #a6e3a1;
    --code-number: #fab387;
    --code-null: #9399b2;
    --blue: #3b82f6;
    --blue-soft: #eff6ff;
    --orange: #f59e0b;
    --orange-soft: #fffbeb;
    --red: #ef4444;
    --red-soft: #fef2f2;
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
    --bg: #0f0f17;
    --bg-alt: #1a1a28;
    --white: #1e1e2e;
    --charcoal: #f0f0f5;
    --text: #c0c0d0;
    --text-light: #9090a5;
    --text-muted: #6a6a80;
    --border: #2a2a3a;
    --border-light: #222233;
    --nav-bg: rgba(15, 15, 23, 0.88);
    --pain-icon-bg: #2a1a1a;
    --pain-icon-color: #ff6666;
    --green-soft: #0a2a15;
    --blue-soft: #1a2a40;
    --orange-soft: #2a2210;
    --red-soft: #2a1a1a;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.2);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.25), 0 1px 2px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.35);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.4);
}

/* Smooth transitions for theme switching */
html,
body,
.nav,
.service-card,
.case-card,
.swiss-card,
.pain-card,
.tech-pill,
.trust-icon,
.hero-badge,
.process-number,
.footer,
.section-label,
.btn,
.detail-card,
.case-card-full,
.faq-item,
.contact-option,
.contact-form input,
.contact-form textarea,
.contact-form select,
.insight-card,
.about-section,
.timeline-item {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-light);
    line-height: 1.7;
}

a {
    color: inherit;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-soft);
    padding: 0.4em 1em;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header p {
    max-width: 600px;
    margin: 0.75rem auto 0;
    font-size: 1.1rem;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 9999px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--green);
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0, 232, 108, 0.25);
}

.btn-primary:hover {
    background: var(--green-hover);
    box-shadow: 0 4px 16px rgba(0, 232, 108, 0.35);
    transform: translateY(-1px);
}

/* Dark mode: primary button text stays dark for contrast */
[data-theme="dark"] .btn-primary {
    color: #1a1a2e;
}

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

.btn-outline:hover {
    border-color: var(--charcoal);
    background: var(--white);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ===== NAVIGATION ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, border-bottom-color 0.3s ease;
}

.nav.nav-scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-bottom-color: var(--border);
}

[data-theme="dark"] .nav.nav-scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.nav-logo span {
    color: var(--green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    margin-left: 8px;
}

/* Nav controls — dark mode toggle + language switcher + CTA */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    color: var(--text-light);
}

.theme-toggle:hover {
    border-color: var(--charcoal);
    background: var(--bg-alt);
    transform: scale(1.05);
}

[data-theme="dark"] .theme-toggle {
    background: var(--white);
    border-color: var(--border);
    color: var(--text-light);
}

[data-theme="dark"] .theme-toggle:hover {
    border-color: var(--charcoal);
    background: var(--bg-alt);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 2px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    gap: 0;
}

.lang-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 6px;
    transition: all 0.2s;
    letter-spacing: 0.03em;
}

.lang-option.lang-active {
    background: var(--white);
    color: var(--charcoal);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

[data-theme="dark"] .lang-switch {
    background: var(--bg-alt);
    border-color: var(--border);
}

[data-theme="dark"] .lang-option.lang-active {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Mobile nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile nav open state */
.nav-links.open {
    display: flex;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown-trigger::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.2s;
}

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

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 200;
    margin-top: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-alt);
    color: var(--charcoal);
}

.nav-dropdown-menu a .nav-dropdown-desc {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
}

[data-theme="dark"] .nav-dropdown-menu {
    background: var(--white);
    border-color: var(--border);
}

@media (max-width: 900px) {
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        margin-top: 0;
        min-width: 0;
        background: transparent;
    }

    .nav-dropdown-trigger::after {
        display: none;
    }
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

.hero h1 {
    max-width: 720px;
    margin: 0 auto 1.5rem;
}

.hero-sub {
    max-width: 620px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-light);
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
    padding: 48px 0 40px;
    text-align: center;
}

.page-hero h1 {
    max-width: 720px;
    margin: 0 auto 1rem;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-hero p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.page-hero .section-label {
    margin-bottom: 1rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* ===== PAIN SECTION ===== */
.pain-section {
    background: var(--white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pain-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.pain-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--pain-icon-bg);
    color: var(--pain-icon-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.pain-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
}

.pain-transition {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.pain-transition span {
    color: var(--green-dark);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.25s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateY(-2px);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.service-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 100px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ===== DETAIL CARD (Leistungen page) ===== */
.detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all 0.25s ease;
}

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

.detail-card .service-icon {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.detail-card p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.detail-card ul li {
    position: relative;
    padding-left: 24px;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 6px;
}

.detail-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green-dark);
    font-weight: 700;
}

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

.detail-cards-grid .detail-card.full-width {
    grid-column: 1 / -1;
}

/* ===== TECH STACK ===== */
.tech-section {
    background: var(--white);
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.2s;
}

.tech-pill:hover {
    border-color: var(--border);
    color: var(--charcoal);
}

/* ===== COMPARISON TABLE ===== */
.comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 640px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 20px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--charcoal);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table .highlight-col {
    background: var(--green-soft);
}

.comparison-table th.highlight-col {
    color: var(--green-dark);
    font-weight: 700;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check { color: var(--green-dark); font-weight: 700; font-size: 1.1rem; }
.cross { color: #ccc; font-size: 1.1rem; }
.partial { color: #e0a030; font-size: 1.1rem; }

[data-theme="dark"] .cross {
    color: #555;
}

/* ===== CASES ===== */
.cases-section {
    background: var(--white);
}

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

.case-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    opacity: 0;
    transition: opacity 0.25s;
}

.case-card:hover::before {
    opacity: 1;
}

.case-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.case-result {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.2;
}

.case-card p {
    font-size: 0.88rem;
}

/* ===== CASES FULL (cases.html) ===== */
.cases-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.case-card-full {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.25s ease;
}

.case-card-full:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.case-card-full-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-soft);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.case-card-full h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.case-card-full-section {
    margin-bottom: 12px;
}

.case-card-full-section h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.case-card-full-section p {
    font-size: 0.9rem;
    line-height: 1.55;
}

.case-card-full-result {
    margin-bottom: 16px;
    padding: 12px 16px;
    background: var(--green-soft);
    border-radius: var(--radius);
}

.case-card-full-result h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.case-card-full-result p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
}

.case-card-full-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.case-card-full-tech span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--border-light);
}

[data-theme="dark"] .case-card-full-result {
    background: var(--green-soft);
}

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

/* ===== ROI TEASER ===== */
.roi-teaser-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.roi-teaser-content h2 {
    margin-bottom: 0.75rem;
}

.roi-teaser-content p {
    font-size: 1rem;
}

.roi-teaser-slider-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 12px;
}

.roi-teaser-slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.roi-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    outline: none;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: var(--green);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 232, 108, 0.3);
    transition: transform 0.15s;
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.roi-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--green);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 232, 108, 0.3);
}

.roi-teaser-hours-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    min-width: 40px;
}

.roi-teaser-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.roi-teaser-result {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.roi-teaser-result-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-dark);
    letter-spacing: -0.02em;
}

.roi-teaser-result-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.roi-teaser-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.roi-teaser-link:hover {
    color: var(--green-hover);
}

@media (max-width: 900px) {
    .roi-teaser-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .roi-teaser-card {
        padding: 24px;
    }

    .roi-teaser-results {
        grid-template-columns: 1fr;
    }
}

/* ===== PROCESS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 52px;
    height: 52px;
    background: var(--charcoal);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Connector line between steps */
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 26px;
    left: calc(50% + 34px);
    width: calc(100% - 68px);
    height: 1px;
    background: var(--border);
}

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

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

.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About page — larger photo layout */
.about-photo-large {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    overflow: hidden;
    margin: 0 auto;
}

.about-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    margin-bottom: 1.25rem;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: gap 0.2s;
}

.about-link:hover {
    gap: 10px;
}

/* ===== TIMELINE (About page) ===== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 56px;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 3px solid var(--green);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.active .timeline-dot {
    background: var(--green);
}

.timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.timeline-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.timeline-item p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== SWISS FOCUS ===== */
.swiss-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.swiss-card {
    display: flex;
    gap: 16px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.swiss-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.swiss-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.swiss-card p {
    font-size: 0.88rem;
    line-height: 1.6;
}

.swiss-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.swiss-compact-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.swiss-compact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.swiss-compact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-soft);
    border-radius: var(--radius);
    color: var(--green-dark);
}

.swiss-compact-icon svg {
    width: 26px;
    height: 26px;
}

.swiss-compact-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.swiss-compact-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

[data-theme="dark"] .swiss-compact-icon {
    background: var(--green-soft);
    color: var(--green);
}

@media (prefers-reduced-motion: reduce) {
    .swiss-compact-item { transition: none; }
    .swiss-compact-item:hover { transform: none; }
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: var(--green);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
    user-select: none;
}

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

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    background: var(--bg);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.faq-item[open] summary::after {
    content: "\2212";
    background: var(--green-soft);
    color: var(--green-dark);
}

.faq-item summary:hover {
    color: var(--green-dark);
}

.faq-item-body {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== CONTACT OPTIONS ===== */
.contact-options {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.contact-option {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.25s ease;
}

.contact-option:hover {
    box-shadow: var(--shadow-md);
}

.contact-option-recommended {
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green), var(--shadow-md);
}

.contact-option-recommended:hover {
    box-shadow: 0 0 0 1px var(--green), var(--shadow-lg);
}

.contact-option-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.contact-option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-option-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.contact-option-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
}

.contact-option-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-option-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.contact-option .btn-secondary {
    display: inline-flex;
    width: auto;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.contact-form select {
    cursor: pointer;
    appearance: auto;
}

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

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.contact-info {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-info a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: var(--charcoal);
}

/* Contact Options Responsive */
@media (max-width: 900px) {
    .contact-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== INSIGHT CARD (Blog/Artikel) ===== */
.insight-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.insight-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: block;
}

.insight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: transparent;
}

.insight-card-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.insight-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--charcoal);
    line-height: 1.35;
}

.insight-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-light);
}

.insight-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 100px;
    margin-top: 14px;
}

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

/* Keep CTA section readable in dark mode */
[data-theme="dark"] .cta-section {
    background: #141422;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

[data-theme="dark"] .cta-section h2 {
    color: #ffffff;
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-section .btn-primary {
    font-size: 1.05rem;
    padding: 16px 40px;
}

.cta-email {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

.cta-email a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.cta-email a:hover {
    color: #ffffff;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-left strong {
    color: var(--text-light);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--charcoal);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .services-grid,
    .cases-grid,
    .swiss-grid,
    .swiss-compact,
    .detail-cards-grid,
    .case-cards-full-grid {
        grid-template-columns: 1fr;
    }

    .insight-cards-grid {
        grid-template-columns: 1fr;
    }

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

    .process-step:not(:last-child)::after {
        display: none;
    }

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

    .about-photo {
        max-width: 360px;
        margin: 0 auto;
    }

    .comparison-table {
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--nav-bg);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-light);
        padding: 16px 24px 24px;
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 1rem;
    }

    .nav-links .nav-cta {
        margin-left: 0;
        margin-top: 8px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-controls {
        gap: 8px;
    }

    .section {
        padding: 72px 0;
    }

    .section-lg {
        padding: 80px 0;
    }

    .hero {
        padding: 56px 0 48px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .page-hero {
        padding: 36px 0 28px;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .trust-bar {
        gap: 24px;
    }

    .trust-item {
        font-size: 0.8rem;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 360px;
        margin: 0 auto;
    }

    .cases-grid {
        gap: 16px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .timeline::before {
        left: 16px;
    }

    .timeline-item {
        padding-left: 48px;
    }

    .timeline-dot {
        left: 8px;
    }
}

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

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

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .detail-card {
        padding: 28px 20px;
    }

    .case-card-full {
        padding: 24px 20px;
    }

    .faq-item summary {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
    }

    .insight-card {
        padding: 22px 18px;
    }

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

    .project-tier-weeks {
        grid-template-columns: 1fr;
    }

    .insights-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ===== CONTACT OPTIONS CARDS ===== */
.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.contact-option {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-option:hover {
    border-color: var(--text-muted);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-option-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-soft);
    border-radius: 12px;
    color: var(--green-dark);
    flex-shrink: 0;
}

.contact-option-icon svg {
    width: 28px;
    height: 28px;
}

.contact-option-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.contact-option-description {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.5;
    flex-grow: 1;
}

.contact-option-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-option-link:hover {
    color: var(--green-hover);
}

.contact-option-recommended {
    border-color: var(--green);
    border-width: 2px;
}

.contact-option-recommended:hover {
    border-color: var(--green-dark);
}

.contact-option-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Contact options — dark mode */
[data-theme="dark"] .contact-option {
    background: var(--white);
    border-color: var(--border);
}

[data-theme="dark"] .contact-option:hover {
    border-color: var(--text-muted);
}

[data-theme="dark"] .contact-option-icon {
    background: var(--green-soft);
    color: var(--green);
}

[data-theme="dark"] .contact-option-title {
    color: var(--charcoal);
}

[data-theme="dark"] .contact-option-recommended {
    border-color: var(--green);
}

[data-theme="dark"] .contact-option-recommended:hover {
    border-color: var(--green-dark);
}

[data-theme="dark"] .contact-option-badge {
    background: var(--green);
    color: #fff;
}

/* Contact options — tablet */
@media (max-width: 900px) {
    .contact-options {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== PROJECT TIMELINE (Leistungen) ===== */
.project-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-tier {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.project-tier-header {
    padding: 24px 24px 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.project-tier-weeks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
    flex-grow: 1;
}

.project-week {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 12px 16px;
    border-left: 3px solid var(--border);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project-week strong {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.project-week span {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.4;
}

.project-week:hover {
    box-shadow: var(--shadow-sm);
}

/* Project timeline — dark mode */
[data-theme="dark"] .project-tier {
    background: var(--white);
    border-color: var(--border);
}

[data-theme="dark"] .project-week {
    background: var(--bg-alt);
}

/* Project timeline — responsive */
@media (max-width: 1024px) {
    .project-tiers-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .project-tiers-grid {
        max-width: 100%;
    }
}

/* ===== IFRAME EMBED ===== */
.iframe-embed {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.iframe-embed iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .iframe-embed iframe {
        height: 500px;
    }
}

/* ===== DEMO EMBED CARD ===== */
.demo-embed-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.demo-embed-preview {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.demo-embed-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.demo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.demo-dot:first-child { background: #ff5f57; }
.demo-dot:nth-child(2) { background: #febc2e; }
.demo-dot:nth-child(3) { background: #28c840; }

.demo-url {
    margin-left: 12px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-family: 'Inter', monospace;
}

.demo-embed-body {
    padding: 20px;
}

.demo-code-line {
    font-family: 'Inter', monospace;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.demo-code-line .demo-key {
    color: #00E86C;
    font-weight: 600;
    margin-right: 8px;
}

.demo-code-line.dim {
    color: rgba(255,255,255,0.3);
    font-style: italic;
}

.demo-embed-info h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.demo-embed-info p {
    margin-bottom: 16px;
}

.demo-embed-info .detail-checklist {
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .demo-embed-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
}

/* Demo embed — dark mode */
[data-theme="dark"] .demo-embed-preview {
    background: #0a0a14;
}

/* ===== ROADMAP ===== */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.roadmap-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s;
}

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

.roadmap-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.roadmap-size {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.roadmap-s .roadmap-size {
    background: #e8faf0;
    color: #059669;
}

.roadmap-m .roadmap-size {
    background: #eff6ff;
    color: #2563eb;
}

.roadmap-l .roadmap-size {
    background: #f3e8ff;
    color: #7c3aed;
}

.roadmap-header h3 {
    font-size: 1rem;
    font-weight: 700;
}

.roadmap-examples {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.roadmap-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.roadmap-step {
    display: flex;
    gap: 10px;
    font-size: 0.82rem;
    padding: 8px 12px;
    background: var(--bg);
    border-radius: 8px;
}

.roadmap-step strong {
    color: var(--charcoal);
    font-weight: 600;
    white-space: nowrap;
    min-width: 70px;
}

.roadmap-step span {
    color: var(--text-light);
}

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

.roadmap-duration {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
}

.roadmap-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
}

.roadmap-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

/* ===== SHOWCASE ===== */
.showcase-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}

.showcase-card h3 {
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.showcase-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.showcase-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.showcase-flow-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text);
}

.showcase-flow-step.active {
    background: var(--green-soft);
    border-color: var(--green);
    color: var(--green-dark);
    font-weight: 600;
}

.showcase-flow-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.showcase-flow-step.active .showcase-flow-num {
    background: var(--green);
    color: var(--charcoal);
}

.showcase-flow-arrow {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Showcase Compare (AI before/after) */
.showcase-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.showcase-before,
.showcase-after {
    padding: 24px;
    border-radius: var(--radius);
}

.showcase-before {
    background: var(--bg);
    border: 1px solid var(--border);
}

.showcase-after {
    background: var(--green-soft);
    border: 1px solid rgba(0, 232, 108, 0.2);
}

.showcase-compare-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.showcase-before .showcase-compare-label {
    color: var(--text-muted);
}

.showcase-after .showcase-compare-label {
    color: var(--green-dark);
}

.showcase-compare p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.showcase-compare-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.showcase-after .showcase-compare-time {
    color: var(--green-dark);
}

@media (max-width: 768px) {
    .showcase-flow {
        flex-direction: column;
    }

    .showcase-flow-arrow {
        transform: rotate(90deg);
    }

    .showcase-compare {
        grid-template-columns: 1fr;
    }

    .showcase-card {
        padding: 24px;
    }
}

/* Showcase — dark mode */
[data-theme="dark"] .showcase-after {
    background: rgba(0, 232, 108, 0.05);
    border-color: rgba(0, 232, 108, 0.15);
}

/* ===== INSIGHTS TABS ===== */
.insights-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 32px;
}

.insights-tab {
    padding: 12px 24px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: inherit;
}

.insights-tab:hover {
    color: var(--text);
}

.insights-tab.active {
    color: var(--charcoal);
    font-weight: 700;
    border-bottom-color: var(--green);
}

/* Insights tabs — dark mode */
[data-theme="dark"] .insights-tabs {
    border-bottom-color: var(--border);
}

[data-theme="dark"] .insights-tab {
    color: var(--text-muted);
}

[data-theme="dark"] .insights-tab:hover {
    color: var(--text);
}

[data-theme="dark"] .insights-tab.active {
    color: var(--charcoal);
    border-bottom-color: var(--green);
}

/* ===== CONTACT PAGE ===== */
.contact-page-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-page-form .contact-form {
    max-width: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-page-aside {
    position: sticky;
    top: 100px;
}

.contact-page-aside-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.contact-page-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 10px;
}

.contact-page-option:hover {
    border-color: var(--text-muted);
    background: var(--bg-alt);
    transform: translateX(2px);
}

.contact-page-option-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    color: var(--text-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page-option-icon-wa {
    color: #25D366;
}

.contact-page-option-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1px;
}

.contact-page-option-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-page-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-page-location svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

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

    .contact-page-aside {
        position: static;
    }
}

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

/* Contact Alt Options (below form) */
.contact-alt-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-alt-divider::before,
.contact-alt-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.contact-alt-divider span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.contact-alt-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.contact-alt-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
}

.contact-alt-option:hover {
    border-color: var(--text-muted);
    background: var(--bg-alt);
}

.contact-alt-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-alt);
    color: var(--text-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-alt-icon-wa {
    color: #25D366;
}

.contact-alt-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal);
}

.contact-alt-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.contact-alt-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-alt-location svg {
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .contact-alt-options {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT MODAL ===== */
.contact-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.contact-modal-overlay.active {
    display: flex;
    animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-modal {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 44px 40px 36px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255,255,255,0.05);
    animation: modalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.contact-modal-close:hover {
    background: var(--bg-alt);
    color: var(--charcoal);
    border-color: var(--border);
}

.contact-modal-header {
    margin-bottom: 28px;
}

.contact-modal-title {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.contact-modal-sub {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Primary option - Termin buchen */
.contact-modal-primary {
    background: var(--white);
    border: 1.5px solid var(--green);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.contact-modal-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 232, 108, 0.04), transparent);
    pointer-events: none;
}

.contact-modal-primary:hover {
    border-color: var(--green-dark);
    box-shadow: 0 8px 32px rgba(0, 232, 108, 0.12);
    transform: translateY(-1px);
}

.contact-modal-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--green);
    color: var(--charcoal);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px 3px;
    border-radius: 0 0 8px 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-modal-primary-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.contact-modal-option-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--green-soft);
    color: var(--green-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-option-content {
    flex: 1;
    min-width: 0;
}

.contact-modal-option-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.contact-modal-option-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.45;
}

.contact-modal-option-arrow {
    flex-shrink: 0;
    color: var(--green-dark);
    opacity: 0.6;
    transition: all 0.2s;
}

.contact-modal-primary:hover .contact-modal-option-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Divider */
.contact-modal-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-modal-divider::before,
.contact-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.contact-modal-divider span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Secondary options row */
.contact-modal-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-modal-sec-option {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-modal-sec-option:hover {
    border-color: var(--text-muted);
    background: var(--bg-alt);
}

.contact-modal-sec-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-alt);
    color: var(--text-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-sec-icon-wa {
    color: #25D366;
}

.contact-modal-sec-text {
    min-width: 0;
}

.contact-modal-sec-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1px;
}

.contact-modal-sec-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Dark mode overrides */
[data-theme="dark"] .contact-modal-overlay {
    background: rgba(0, 0, 0, 0.75);
}

[data-theme="dark"] .contact-modal {
    border-color: var(--border);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.03);
}

[data-theme="dark"] .contact-modal-primary {
    border-color: rgba(0, 232, 108, 0.4);
}

[data-theme="dark"] .contact-modal-primary::before {
    background: linear-gradient(135deg, rgba(0, 232, 108, 0.06), transparent);
}

[data-theme="dark"] .contact-modal-primary:hover {
    box-shadow: 0 8px 32px rgba(0, 232, 108, 0.08);
}

[data-theme="dark"] .contact-modal-sec-icon-wa {
    color: #25D366;
}

/* Mobile */
@media (max-width: 480px) {
    .contact-modal {
        padding: 32px 24px 28px;
        border-radius: 16px;
    }

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

    .contact-modal-primary-inner {
        gap: 12px;
    }

    .contact-modal-option-icon {
        width: 40px;
        height: 40px;
    }
}

/* ===== WECLAPP API EXPLORER ===== */
.explorer {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.request-bar {
    display: flex;
    gap: 0;
    padding: 1.5rem;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    align-items: stretch;
}

.method-select {
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-dark);
    cursor: pointer;
    appearance: auto;
    min-width: 90px;
}

.url-display {
    flex: 1;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: none;
    border-right: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: var(--text);
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
}

.url-base { color: var(--text-muted); }
.url-version { color: var(--blue); font-weight: 600; }
.url-endpoint { color: var(--charcoal); font-weight: 600; }
.url-params { color: var(--text-muted); }

.btn-send {
    padding: 10px 24px;
    background: var(--green);
    color: #1a1a2e;
    border: 1px solid var(--green-dark);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-send:hover { background: var(--green-hover); }

.explorer-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 500px;
}

.sidebar {
    border-right: 1px solid var(--border);
    padding: 1rem 0;
    overflow-y: auto;
    max-height: 600px;
}

.sidebar-group { margin-bottom: 0.5rem; }

.sidebar-group-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
}

.endpoint-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 1.25rem;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 0.84rem;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: all 0.15s ease;
}

.endpoint-btn:hover { background: var(--bg-alt); }

.endpoint-btn.active {
    background: var(--green-soft);
    color: var(--green-dark);
    font-weight: 600;
}

.endpoint-method {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    min-width: 36px;
    text-align: center;
}

.method-get { background: var(--blue-soft); color: var(--blue); }
.method-post { background: var(--green-soft); color: var(--green-dark); }
.method-put { background: var(--orange-soft); color: var(--orange); }
.method-delete { background: var(--red-soft); color: var(--red); }

.response-panel { display: flex; flex-direction: column; }

.response-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}

.response-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-200 { color: var(--green-dark); }
.status-201 { color: var(--blue); }

.response-tabs { display: flex; gap: 0; }

.tab-btn {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s ease;
}

.tab-btn:not(:first-child) { margin-left: -1px; }
.tab-btn:first-child { border-radius: 6px 0 0 6px; }
.tab-btn:last-child { border-radius: 0 6px 6px 0; }

.tab-btn.active {
    background: var(--white);
    color: var(--charcoal);
    font-weight: 600;
    z-index: 1;
}

.response-body {
    flex: 1;
    overflow: auto;
    max-height: 460px;
}

.code-block {
    background: var(--code-bg);
    color: var(--code-text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    line-height: 1.7;
    padding: 1.25rem;
    margin: 0;
    white-space: pre;
    overflow-x: auto;
    min-height: 100%;
}

.info-panel { padding: 1.5rem; }
.info-panel h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.info-panel p { font-size: 0.88rem; margin-bottom: 1rem; }

.info-section {
    margin-bottom: 1.5rem;
}

.info-section h5 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.param-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.param-table th {
    text-align: left;
    padding: 8px 10px;
    background: var(--bg-alt);
    color: var(--charcoal);
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.param-table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
}

.param-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--charcoal);
    font-weight: 500;
}

.param-type {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.filter-example {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--code-bg);
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--code-text);
    overflow-x: auto;
}

.info-tip {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--green-soft);
    border-radius: var(--radius);
    font-size: 0.82rem;
    color: var(--text-light);
}

.info-tip strong { color: var(--charcoal); }

.info-tip code {
    background: rgba(0,0,0,0.06);
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 0.78rem;
}

.info-warn {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--orange-soft);
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: var(--text-light);
    border-left: 3px solid var(--orange);
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
}

.empty-state .icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-state p { font-size: 0.9rem; color: var(--text-muted); }

.demo-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-soft);
    border: 1px solid var(--orange);
    padding: 0.3em 0.8em;
    border-radius: 100px;
    margin-left: 0.75rem;
    vertical-align: middle;
}

.version-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--blue);
    background: var(--blue-soft);
    border: 1px solid var(--blue);
    padding: 0.25em 0.7em;
    border-radius: 100px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Explorer responsive */
@media (max-width: 768px) {
    .explorer-body { grid-template-columns: 1fr; }

    .sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
        max-height: 200px;
        display: flex;
        flex-wrap: wrap;
        padding: 0.75rem;
        gap: 4px;
    }

    .sidebar-group { margin-bottom: 0; }
    .sidebar-group-title { display: none; }

    .endpoint-btn {
        padding: 6px 10px;
        font-size: 0.78rem;
        width: auto;
        border-radius: 6px;
        border: 1px solid var(--border);
    }

    .request-bar { flex-wrap: wrap; gap: 8px; }
    .method-select { border-radius: var(--radius); border-right: 1px solid var(--border); }
    .url-display {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        width: 100%;
        order: 3;
        font-size: 0.72rem;
    }
    .btn-send { border-radius: var(--radius); }
    .code-block { font-size: 0.72rem; }
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
    padding: 12px 0;
    font-size: 0.78rem;
}

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

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

.breadcrumb-sep {
    color: var(--border);
    margin: 0 8px;
}

.breadcrumb-current {
    color: var(--text-light);
    font-weight: 500;
}
