/* ============================================================
   KI-Katalog.de - Feng Shui Design System
   Warm, natural, calm aesthetic - No neon, no glow
   ============================================================ */

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */

:root {
    --bg-primary: #FFF8F0;
    --bg-section: #FAF4EC;
    --color-primary: #16a34a;
    --color-primary-light: #22c55e;
    --color-cta: #FF8C00;
    --color-cta-light: #FFA500;
    --color-text: #2c3e50;
    --color-text-muted: #6b7280;
    --color-dark: #1e2a38;
    --color-success: #10b981;
    --color-warning: #dc2626;
    --color-gold: #d97706;
    --border-color: #e8dfd4;
    --shadow-soft: 0 2px 12px rgba(30, 42, 56, 0.06);
    --shadow-card: 0 4px 20px rgba(30, 42, 56, 0.08);
    --shadow-hover: 0 8px 32px rgba(30, 42, 56, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-body: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    --max-width: min(70vw, 1400px);
    --nav-height: 70px;
}


/* ============================================================
   2. Global Reset & Base
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #FFF8F0 0%, #FAF4EC 50%, #FFF5E6 100%);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 15% 30%, rgba(22, 163, 74, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(255, 140, 0, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 85%, rgba(22, 163, 74, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 65%, rgba(217, 119, 6, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

main {
    flex: 1;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.4rem;
}

strong {
    font-weight: 600;
    color: var(--color-text);
}

::selection {
    background-color: rgba(255, 140, 0, 0.2);
    color: var(--color-text);
}


/* ============================================================
   3. Navigation
   ============================================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #fff 0%, #FFF8F0 100%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-primary), var(--color-cta), var(--color-primary)) 1;
    box-shadow: 0 2px 16px rgba(30, 42, 56, 0.06);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    backdrop-filter: blur(8px);
    overflow-x: clip;
}

.nav-container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
}


.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-cta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

.logo svg,
.logo img {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    padding: 0;
    margin: 0 0 0 auto;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a,
.nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-menu a:hover,
.nav-link:hover {
    background-color: var(--bg-section);
    color: var(--color-primary);
}

.nav-menu a.active,
.nav-link.active {
    color: var(--color-primary);
    background-color: rgba(22, 163, 74, 0.08);
    font-weight: 600;
}

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

.nav-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    color: var(--text-nav, #374151);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn.active {
    background-color: rgba(22, 163, 74, 0.08);
    color: var(--color-primary);
}

.nav-arrow {
    font-size: 0.65em;
    transition: transform 0.2s ease;
    display: inline-block;
}

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

.nav-submenu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    min-width: 170px;
    z-index: 200;
    padding: 0.4rem 0;
    list-style: none;
    margin: 0;
}

.nav-dropdown.open .nav-submenu {
    display: block;
}

.nav-submenu li a {
    display: block;
    padding: 0.55rem 1.1rem;
    color: var(--text-nav, #374151);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0;
    transition: background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.nav-submenu li a:hover {
    background-color: rgba(22, 163, 74, 0.08);
    color: var(--color-primary);
}

/* Mobile-only auth links (nur im Hamburger sichtbar) */
.nav-mobile-auth {
    display: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    transform-origin: center;
}

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

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

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Navbar scroll-Effekt */
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(30, 42, 56, 0.1);
}

/* Logo SVG Icon */
.logo-icon {
    display: inline-flex;
    align-items: center;
}


/* ============================================================
   4. Main Content + Container
   ============================================================ */

.container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

main > .container {
    padding-top: 2rem;
    padding-bottom: 3rem;
}


/* ============================================================
   5. Hero Section
   ============================================================ */

.hero {
    background-image: url('/public/images/hero/hero-ai-tech.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    color: #fff;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 30, 60, 0.82) 0%,
        rgba(8, 50, 35, 0.75) 40%,
        rgba(15, 25, 50, 0.80) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta), var(--color-primary));
    z-index: 3;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 4rem 2rem 3.5rem;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero .highlight {
    color: var(--color-cta-light);
    -webkit-text-fill-color: var(--color-cta-light);
    font-weight: 800;
}

.hero .value-prop,
.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    margin: 0 auto 1.5rem;
    line-height: 1.65;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hero-badge-icon {
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.hero-cta .btn-primary {
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--color-cta), #e67e00);
    border: none;
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.35);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 140, 0, 0.45);
    color: #fff;
}

.hero-cta .btn-secondary-light {
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-cta .btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff;
}


/* ============================================================
   6. Mission Section
   ============================================================ */

.mission-section {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    background:
        linear-gradient(135deg, rgba(22, 163, 74, 0.04) 0%, transparent 50%),
        linear-gradient(225deg, rgba(255, 140, 0, 0.03) 0%, transparent 50%),
        var(--bg-section);
}

.mission-content {
    max-width: var(--max-width);
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 3.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.mission-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta), var(--color-primary));
}

.mission-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--color-text);
    position: relative;
    padding-bottom: 1rem;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta));
    border-radius: 2px;
}

.mission-content p {
    font-size: 1.08rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}


/* ============================================================
   7. Section Titles
   ============================================================ */

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   8. Use-Case Section
   ============================================================ */

.use-case-section {
    padding: 4rem 2rem;
    background-color: var(--bg-primary);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.use-case-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: var(--color-text);
    display: block;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: var(--color-text);
    border-top-color: var(--color-cta);
}

.use-case-card .use-case-icon,
.use-case-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.use-case-card .use-case-title,
.use-case-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.use-case-card .use-case-desc,
.use-case-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}


/* ============================================================
   9. Top Tools + Tool Cards
   ============================================================ */

.top-tools-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-primary) 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.tools-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.tool-compact,
.tool-card.hidden {
    display: none !important;
}

.tool-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-text);
}

.tool-compact:hover,
.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--color-cta);
}

.tool-card.dangerous {
    border-left-color: #dc2626;
    background: linear-gradient(135deg, #fff 90%, #fef2f2 100%);
}

.tool-card.dangerous:hover {
    border-left-color: #b91c1c;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.tool-compact a,
.tool-card a {
    text-decoration: none;
    color: inherit;
}

.tool-card .tool-icon,
.tool-compact .tool-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.tool-card h3,
.tool-compact h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.tool-card p,
.tool-compact p {
    font-size: 0.93rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 0.75rem;
}

.tool-card .tool-meta,
.tool-compact .tool-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.tool-card .tool-category-badge,
.tool-compact .tool-category-badge {
    display: inline-block;
    background-color: rgba(22, 163, 74, 0.1);
    color: var(--color-primary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.tool-card .tool-rating,
.tool-compact .tool-rating {
    color: var(--color-gold);
    font-weight: 600;
}


/* ============================================================
   10. Tool Detail Page
   ============================================================ */

.tool-detail {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

.tool-hero {
    background: #fff;
    color: var(--color-text);
    padding: 3.5rem 2rem;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.tool-hero::before {
    display: none;
}

.tool-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta), var(--color-primary));
}

.tool-hero h1 {
    font-size: 2.4rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.tool-tagline {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.tool-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    background: #fff;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.meta-value a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(22, 163, 74, 0.3);
    text-underline-offset: 2px;
}

.meta-value a:hover {
    text-decoration-color: var(--color-primary);
}

.rating-stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.rating-stars .star-filled {
    color: var(--color-gold);
}

.rating-stars .star-empty {
    color: rgba(0, 0, 0, 0.15);
}

/* Warning-Box inside hero (light bg) */
.tool-hero .warning-box {
    background: #fef2f2;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-left: 4px solid #dc2626;
    color: var(--color-text);
}

.tool-hero .warning-box h3 {
    color: #dc2626;
    font-weight: 700;
}

.tool-hero .warning-box p {
    color: #991b1b;
}

/* Tool-detail meta context */
.tool-detail .content-section .meta-label {
    color: var(--color-text-muted);
}

.tool-detail .content-section .meta-value {
    color: var(--color-text);
}


/* ============================================================
   11. Warning Box
   ============================================================ */

.warning-box {
    background-color: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-left: 4px solid var(--color-warning);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--color-text);
}

.warning-box p {
    margin-bottom: 0;
}

.warning-badge {
    display: inline-block;
    background-color: var(--color-warning);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 0.5rem;
}


/* ============================================================
   12. Buttons
   ============================================================ */

.btn-primary,
button.btn-primary,
a.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-cta) 0%, #FFA500 100%);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary,
button.btn-secondary,
a.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    line-height: 1.4;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
}

.btn-details {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s ease, color 0.25s ease;
    margin-top: auto;
}

.btn-details:hover {
    border-bottom-color: var(--color-cta);
    color: var(--color-cta);
}

.tool-price {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.tool-price .price-free {
    color: var(--color-primary);
    font-weight: 700;
}

.tool-card .tool-tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}


/* ============================================================
   13. CTA Box
   ============================================================ */

.cta-box,
.cta-section {
    background: linear-gradient(135deg, var(--color-cta) 0%, #FFA500 50%, #FFB84D 100%);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    margin: 3rem auto;
    max-width: var(--max-width);
    position: relative;
    overflow: hidden;
}

.cta-box::before,
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2,
.cta-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-box p,
.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.cta-box .btn-primary,
.cta-section .btn-primary,
.cta-box .btn-cta {
    background: #fff;
    color: var(--color-cta);
    border-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-box .btn-primary:hover,
.cta-section .btn-primary:hover,
.cta-box .btn-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-cta);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}


/* ============================================================
   14. Warning Section
   ============================================================ */

.warning-section {
    background: #fff;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-left: 4px solid var(--color-warning);
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    margin: 2rem auto 3rem;
    max-width: var(--max-width);
    box-shadow: var(--shadow-soft);
}

.warning-section h3 {
    color: var(--color-warning);
    margin-bottom: 1rem;
}

.warning-section p {
    color: var(--color-text);
}


/* ============================================================
   15. Content Sections
   ============================================================ */

.content-section {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.content-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-primary), var(--color-cta), transparent) 1;
    color: var(--color-text);
}

.content-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.content-section .content-text h3 {
    margin-top: 2rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.07), rgba(255, 140, 0, 0.03));
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-dark);
}

.content-section h4 {
    font-size: 1.05rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.content-section .content-text h4 {
    color: var(--color-primary);
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: 1.7;
}

.content-section .content-text ul,
.content-section .content-text ol {
    margin-bottom: 1.25rem;
    padding: 0.75rem 1.25rem 0.75rem 2.25rem;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.content-section ul,
.content-section ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.content-section strong {
    font-weight: 600;
    color: var(--color-text);
}


/* ============================================================
   16. Features Grid
   ============================================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-item h3,
.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.feature-item p {
    font-size: 0.93rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}


/* ============================================================
   17. Pros/Cons
   ============================================================ */

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pros-box,
.cons-box {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.pros-box {
    border-top: 3px solid var(--color-success);
}

.cons-box {
    border-top: 3px solid var(--color-warning);
}

.pros-box h3 {
    color: var(--color-success);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.cons-box h3 {
    color: var(--color-warning);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.pros-box ul,
.cons-box ul {
    list-style: none;
    padding: 0;
}

.pros-box li,
.cons-box li {
    padding: 0.4rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
}

.pros-box li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: 1rem;
}

.cons-box li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--color-warning);
    font-weight: 700;
    font-size: 1rem;
}


/* ============================================================
   18. Use Cases Grid (Tool Detail)
   ============================================================ */

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.use-case-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
    transition: box-shadow 0.25s ease;
}

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

.use-case-item .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.use-case-item h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.use-case-item p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}


/* ============================================================
   19. Similar Tools
   ============================================================ */

.similar-tools {
    margin: 3rem 0;
}

.similar-tools h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.similar-tool-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    text-decoration: none;
    color: var(--color-text);
    flex-wrap: wrap;
    overflow: hidden;
}

.similar-tool-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
    color: var(--color-text);
}

.similar-tool-card .tool-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.similar-tool-card h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.similar-tool-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}


/* ============================================================
   20. Categories
   ============================================================ */

.categories-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

.category-detail {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

.category-detail .category-header {
    background: linear-gradient(135deg, #1e2a38 0%, #0f3d2e 40%, #1a3a4a 100%);
    color: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.category-detail .category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta), var(--color-primary));
}

.category-detail .category-header h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-detail .category-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.category-detail .category-stats {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.category-detail .category-stats .stat-value {
    color: #fff;
}

.category-detail .category-stats .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.categories-header {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #1e2a38 0%, #0f3d2e 40%, #1a3a4a 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.categories-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta), var(--color-primary));
}

.categories-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.categories-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-card,
.category-box {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-decoration: none;
    color: var(--color-text);
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: var(--color-text);
    border-color: var(--color-primary);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h3,
.category-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.category-card p,
.category-box p {
    font-size: 0.93rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stat-value-danger {
    color: var(--color-warning);
}

.category-nav-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.nav-link-back,
.nav-link-forward {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: background-color 0.25s ease;
}

.nav-link-back:hover,
.nav-link-forward:hover {
    background-color: rgba(22, 163, 74, 0.08);
}

.nav-separator {
    color: var(--border-color);
    font-size: 1.5rem;
}

.section-cta {
    background-color: var(--bg-section);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.section-cta h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.section-cta p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   21. Filter Bar
   ============================================================ */

.filter-bar {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: calc(var(--nav-height) + 0.75rem);
    z-index: 10;
}

.filter-section {
    margin-bottom: 1rem;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    display: block;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--bg-section);
    color: var(--color-text-muted);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-weight: 500;
}

.filter-btn:hover {
    background-color: rgba(22, 163, 74, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.filter-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--color-text);
    cursor: pointer;
}

.search-input,
input[type="search"].search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--color-text);
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.search-input::placeholder {
    color: var(--color-text-muted);
}


/* ============================================================
   22. Breadcrumbs
   ============================================================ */

.breadcrumb,
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    padding: 1rem 0;
    list-style: none;
    margin: 0;
}

.breadcrumb a,
.breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumbs a:hover {
    text-decoration: underline;
}

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

.breadcrumb-separator {
    color: var(--border-color);
    margin: 0 0.2rem;
}


/* ============================================================
   23. Table of Contents (TOC)
   ============================================================ */

.toc {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.toc h3,
.toc h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-weight: 600;
}

.toc ol,
.toc ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.toc li {
    margin-bottom: 0.4rem;
    font-size: 0.93rem;
}

.toc a {
    color: var(--color-primary);
    text-decoration: none;
}

.toc a:hover {
    text-decoration: underline;
}


/* ============================================================
   24. Info Box
   ============================================================ */

.info-box {
    background-color: rgba(22, 163, 74, 0.06);
    border: 1px solid rgba(22, 163, 74, 0.15);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.info-box p {
    margin-bottom: 0;
    color: var(--color-text);
}

.info-box strong {
    color: var(--color-primary);
}


/* ============================================================
   25. Kostenrechner (Calculator)
   ============================================================ */

.calculator-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.calculator-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta), var(--color-primary));
}

.calculator-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.calculator-header .subtitle,
.calculator-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.calculator-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
}

.form-label,
.calculator-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.label-icon {
    margin-right: 0.4rem;
}

.form-select,
.calculator-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--color-text);
    background-color: #fff;
    cursor: pointer;
    appearance: auto;
    transition: border-color 0.25s ease;
}

.form-select:focus,
.calculator-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-input,
.calculator-form input[type="text"],
.calculator-form input[type="number"],
.calculator-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--color-text);
    background: #fff;
    transition: border-color 0.25s ease;
}

.form-input:focus,
.calculator-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-hint {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    margin-top: 0.4rem;
    display: block;
}

.form-submit {
    text-align: center;
    padding-top: 1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}


/* ============================================================
   26. Kostenrechner Wizard
   ============================================================ */

.calculator-wizard {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
}

.wizard-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-dark);
    font-size: 1.6rem;
}

.result-new-calc {
    text-align: center;
    margin-top: 2.5rem;
}

.calculator-info-grid {
    margin-top: 3rem;
}

.calculator-info-grid .info-card {
    border-top: 3px solid var(--color-primary);
}

.calculator-info-grid .info-card h3 {
    font-size: 1.05rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.calculator-info-grid .info-card p {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.calculator-info-grid .info-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.35s ease-out;
}

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

.wizard-step#step1 .use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.use-case-option {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    cursor: pointer;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

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

.use-case-option.selected {
    border-color: var(--color-primary);
    background-color: rgba(22, 163, 74, 0.04);
}

.option-icon {
    font-size: 2.25rem;
}

.use-case-option h3 {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin: 0.25rem 0 0;
}

.use-case-option p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

.wizard-step:not(#step1) {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.wizard-step:not(#step1) h2 {
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-primary), var(--color-cta), transparent) 1;
}

.wizard-form {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: 0.95rem;
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.radio-card,
.checkbox-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.radio-card:hover,
.checkbox-card:hover {
    border-color: var(--color-primary);
}

.radio-card:has(input:checked),
.checkbox-card:has(input:checked) {
    border-color: var(--color-primary);
    background-color: rgba(22, 163, 74, 0.06);
}

.radio-card input[type="radio"],
.checkbox-card input[type="checkbox"] {
    accent-color: var(--color-primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.radio-content,
.checkbox-content {
    display: flex;
    flex-direction: column;
}

.radio-content span,
.checkbox-content span {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--color-text);
}

.radio-content small,
.checkbox-content small {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Range Slider */
.range-slider,
input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border-color);
    border-radius: 3px;
    outline: none;
    margin: 1rem 0 0.5rem;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.range-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-top: 0.25rem;
}

.token-preview {
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    border-left: 3px solid var(--color-primary);
}

.token-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.token-breakdown {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
}

.hint {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    margin-top: 0.3rem;
    font-style: italic;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.usage-detail {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.cost-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}


/* ============================================================
   27. Kostenrechner Results
   ============================================================ */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.info-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.info-card h4 {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.info-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0;
}

.result-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.result-header {
    text-align: center;
    margin-bottom: 2rem;
}

.result-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.result-card.winner {
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 24px rgba(22, 163, 74, 0.15);
    background: linear-gradient(180deg, rgba(22, 163, 74, 0.03) 0%, #fff 30%);
}

.winner-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.result-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.cost-display {
    margin: 1rem 0;
    text-align: center;
}

.cost-free {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-success);
}

.cost-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.cost-period {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: block;
    margin-top: 0.2rem;
}

.share-box {
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-top: 2rem;
    text-align: center;
}

.share-url {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--color-text);
    background: #fff;
    margin-top: 0.75rem;
}

.share-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}


/* ============================================================
   28. Blog System
   ============================================================ */

.blog-header {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #1e2a38 0%, #0f3d2e 40%, #1a3a4a 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    margin: 0 auto 2rem;
    max-width: var(--max-width);
    position: relative;
    overflow: hidden;
}

.blog-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta), var(--color-primary));
}

.blog-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.blog-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.blog-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.sidebar-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
}

.sidebar-card h3 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

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

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.93rem;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s ease;
}

.category-link:last-child {
    border-bottom: none;
}

.category-link:hover {
    color: var(--color-primary);
}

.category-link span {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    background: var(--bg-section);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--color-primary);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--color-cta);
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(255, 140, 0, 0.08));
    color: var(--color-primary);
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.9);
}

.post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.post-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    line-height: 1.4;
}

.post-title a {
    color: var(--color-text);
    text-decoration: none;
}

.post-title a:hover {
    color: var(--color-primary);
}

.post-excerpt {
    font-size: 0.93rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.post-author {
    font-size: 0.83rem;
    color: var(--color-text-muted);
}

.read-more {
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.25s ease, gap 0.25s ease;
}

.read-more:hover {
    color: var(--color-cta);
    gap: 0.6rem;
}

.read-more::after {
    content: '\2192';
    transition: transform 0.25s ease;
}

.read-more:hover::after {
    transform: translateX(2px);
}


/* ============================================================
   29. Blog Detail
   ============================================================ */

.blog-post {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

.post-header {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.post-featured-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.post-header-content {
    padding: 1.5rem 2rem 2rem;
}

.post-category-tag {
    display: inline-block;
    background-color: rgba(22, 163, 74, 0.1);
    color: var(--color-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.post-meta-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.post-body {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    line-height: 1.8;
    font-size: 1.05rem;
    columns: 1;
}

.post-body p {
    margin-bottom: 1.25rem;
}

.post-body h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(255, 140, 0, 0.04));
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text);
}

.post-body h2:first-child {
    margin-top: 0;
}

.post-body h3 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-primary), transparent) 1;
    color: var(--color-text);
}

.post-body h4 {
    font-size: 1.1rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.post-body ul,
.post-body ol {
    margin: 1.25rem 0;
    padding: 1rem 1.5rem 1rem 2.5rem;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.post-body li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.post-body li:last-child {
    margin-bottom: 0;
}

.post-body blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: rgba(22, 163, 74, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--color-text-muted);
}

.post-body strong {
    color: var(--color-text);
    font-weight: 700;
}

.post-body .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: var(--radius-sm);
    max-width: 100%;
    width: 100%;
}

.post-body .table-responsive table {
    margin: 0;
    min-width: 500px;
}

.post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    table-layout: auto;
}

.post-body th {
    background: linear-gradient(135deg, #1e2a38, #0f3d2e);
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.post-body td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.post-body tr:nth-child(even) {
    background: var(--bg-section);
}

.post-body tr:hover {
    background: rgba(22, 163, 74, 0.04);
}

.post-body hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-cta), var(--color-primary), transparent);
    margin: 2.5rem 0;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-card);
}

.post-body code {
    background: var(--bg-section);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
    color: var(--color-cta);
}

.post-body pre {
    background: var(--color-dark);
    color: #e0e0e0;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.tag {
    display: inline-block;
    background-color: var(--bg-section);
    color: var(--color-text-muted);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.83rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tag:hover {
    background-color: rgba(22, 163, 74, 0.1);
    color: var(--color-primary);
}

.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.related-posts h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
}

.related-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-decoration: none;
    color: var(--color-text);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    display: block;
}

.related-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
    color: var(--color-text);
    border-left-color: var(--color-cta);
}

.related-card h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.related-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 0.4rem;
}

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

.no-posts {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

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

.blog-back-nav {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
}

.blog-back-link {
    color: var(--color-primary);
    font-size: 1.05rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.blog-back-link:hover {
    color: var(--color-cta);
}


/* ============================================================
   30. Legal Pages
   ============================================================ */

.legal-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

.legal-header {
    background: linear-gradient(135deg, #1e2a38 0%, #0f3d2e 40%, #1a3a4a 100%);
    color: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta), var(--color-primary));
}

.legal-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.legal-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.legal-content {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-primary), var(--color-cta), transparent) 1;
    color: var(--color-text);
}

.legal-section h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.legal-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.4rem;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(22, 163, 74, 0.3);
    text-underline-offset: 2px;
}

.legal-section a:hover {
    text-decoration-color: var(--color-primary);
}


/* ============================================================
   31. Contact Page
   ============================================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--color-text);
    font-family: var(--font-body);
    background: #fff;
    transition: border-color 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

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

.btn-submit {
    display: inline-block;
    background-color: var(--color-cta);
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #b3533a;
    transform: translateY(-2px);
}

.contact-info {
    padding: 1rem 0;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

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


/* ============================================================
   32. Security Page
   ============================================================ */

.security-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

.security-hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
}

.security-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.security-hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
    color: #fff;
}

.security-hero-overlay h1 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.security-hero-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.security-toc {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.security-toc h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.security-toc ol {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.security-toc li {
    margin-bottom: 0.4rem;
    font-size: 0.93rem;
}

.security-toc a {
    color: var(--color-primary);
    text-decoration: none;
}

.security-toc a:hover {
    text-decoration: underline;
}

.security-warning-box {
    background-color: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-left: 4px solid var(--color-warning);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin: 2rem 0;
}

.security-warning-box h4 {
    color: var(--color-warning);
    margin-bottom: 0.5rem;
}

.security-section {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.security-section:last-child {
    margin-bottom: 0;
}

.security-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.security-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.section-image-wrapper {
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.section-image-wrapper img {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

.security-stat-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}


/* ============================================================
   33. Security Tables
   ============================================================ */

.security-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.security-comparison-table th {
    background-color: var(--bg-section);
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    padding: 0.85rem 1rem;
    border-bottom: 2px solid var(--border-color);
}

.security-comparison-table td {
    padding: 0.75rem 1rem;
    font-size: 0.93rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--color-text);
}

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

.security-comparison-table tr:hover {
    background-color: rgba(22, 163, 74, 0.03);
}

.warning-cell {
    color: var(--color-warning);
    font-weight: 600;
}

.safe-cell {
    color: var(--color-success);
    font-weight: 600;
}


/* ============================================================
   34. Security Components
   ============================================================ */

.incident-list {
    margin: 1.5rem 0;
}

.incident-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.2s ease;
}

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

.incident-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.incident-card p {
    font-size: 0.93rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.security-tip {
    background: rgba(22, 163, 74, 0.06);
    border: 1px solid rgba(22, 163, 74, 0.15);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.security-tip h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.security-tip p {
    margin-bottom: 0;
    font-size: 0.93rem;
}

.best-practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.practice-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.25s ease;
}

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

.practice-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.practice-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.practice-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.dangerous-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.dangerous-tool-card {
    background: #fff;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: box-shadow 0.25s ease;
}

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

.dangerous-tool-card h4 {
    color: var(--color-warning);
    margin-bottom: 0.5rem;
}

.btn-warning-details {
    display: inline-block;
    color: var(--color-warning);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.75rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.btn-warning-details:hover {
    border-bottom-color: var(--color-warning);
    color: var(--color-warning);
}

.security-cta {
    background-color: var(--color-primary);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 3rem;
}

.security-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.security-cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.security-cta .btn-primary {
    background-color: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.security-cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}


/* ============================================================
   35. Footer
   ============================================================ */

.footer,
footer {
    background: linear-gradient(180deg, var(--color-dark) 0%, #151d27 100%);
    color: rgba(255, 255, 255, 0.75);
    padding: 0;
    margin-top: auto;
    position: relative;
}

.footer::before,
footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta), var(--color-primary));
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta));
    border-radius: 1px;
}

.footer-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
    color: var(--color-cta-light);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

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

.footer-bottom a:hover {
    color: var(--color-cta-light);
}


/* ============================================================
   36. Page Headers
   ============================================================ */

.page-header {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #1e2a38 0%, #0f3d2e 40%, #1a3a4a 100%);
    color: #fff;
    margin: 0 auto 2rem;
    max-width: var(--max-width);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cta), var(--color-primary));
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-muted);
}

.no-results h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.no-results p {
    font-size: 1rem;
}

/* Tool-Card header (tools/index.php) */
.tool-card .tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

/* Tool-Detail page header */
.tool-hero .tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tool-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
}

.tool-card .tool-name {
    font-size: 1.1rem;
}

.tool-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(255, 140, 0, 0.06));
    color: var(--color-primary);
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.tool-card .tool-rating {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-cta);
    white-space: nowrap;
}


/* ============================================================
   37. Cookie Banner
   ============================================================ */

.cookie-banner,
#cookie-banner,
[id="cookie-banner"] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.25rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-banner-text,
.cookie-banner p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
    min-width: 250px;
    margin-bottom: 0;
    line-height: 1.5;
}

.cookie-banner-text a,
.cookie-banner a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn-essential {
    padding: 0.5rem 1.25rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn-essential:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-accept {
    padding: 0.5rem 1.25rem;
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-btn-accept:hover {
    background-color: var(--color-success);
    border-color: var(--color-success);
}

/* Inline-style fallback support for cookie banner */
div[style*="position: fixed"][style*="bottom: 0"] {
    background-color: var(--color-dark) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-top: none !important;
}

div[style*="position: fixed"][style*="bottom: 0"] a {
    color: rgba(255, 255, 255, 0.9) !important;
}

div[style*="position: fixed"][style*="bottom: 0"] button {
    border-radius: var(--radius-sm) !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}


/* ============================================================
   38. Flash Messages
   ============================================================ */

.flash-message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.flash-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--color-success);
}

.flash-error {
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: var(--color-warning);
}


/* ============================================================
   39. Honeypot
   ============================================================ */

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
    tab-index: -1;
}


/* ============================================================
   40. Tool Detail Extras
   ============================================================ */

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

.cta-footer-section {
    background-color: var(--bg-section);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-footer-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.cta-footer-section p {
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.cta-buttons-centered {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tool-nav-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.tool-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: background-color 0.25s ease;
    font-size: 0.93rem;
}

.tool-nav-link:hover {
    background-color: rgba(22, 163, 74, 0.08);
    color: var(--color-primary);
}

.tool-nav-separator {
    color: var(--border-color);
    font-size: 1.25rem;
}


/* ============================================================
   41. Stats Bar
   ============================================================ */

.stats-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
    font-weight: 500;
}


/* ============================================================
   42. Tool Swiper Slider
   ============================================================ */

.tools-swiper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 3rem 2.5rem;
    position: relative;
}

.tool-slide-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-slide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--color-cta);
}

.tool-slide-card.dangerous {
    border-top-color: var(--color-warning);
}

.tool-slide-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.tool-slide-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.tool-slide-rating {
    background: linear-gradient(135deg, var(--color-cta), #e67e00);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
}

.tool-slide-price {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.tool-slide-price .price-free {
    color: var(--color-primary);
    font-weight: 700;
}

.tool-slide-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
}

.tool-slide-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.25s ease;
    margin-top: auto;
}

.tool-slide-link:hover {
    color: var(--color-cta);
}

/* Swiper Navigation Styling */
.tools-swiper .swiper-button-next,
.tools-swiper .swiper-button-prev {
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.25s ease, color 0.25s ease;
}

.tools-swiper .swiper-button-next::after,
.tools-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 800;
}

.tools-swiper .swiper-button-next:hover,
.tools-swiper .swiper-button-prev:hover {
    color: var(--color-cta);
    box-shadow: var(--shadow-card);
}

.tools-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
}


/* ============================================================
   43. Akkordeon / FAQ
   ============================================================ */

.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.accordion {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
}

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

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

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    transition: background-color 0.25s ease, color 0.25s ease;
    font-family: var(--font-body);
}

.accordion-header:hover {
    background-color: var(--bg-section);
    color: var(--color-primary);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--color-primary);
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

.accordion-content a {
    color: var(--color-primary);
    font-weight: 500;
}


/* ============================================================
   44. Responsive Design
   ============================================================ */

/* Navigation ab 1280px → Hamburger */
@media (max-width: 1280px) {
    .nav-container .nav-desktop-auth {
        display: none;
    }

    .nav-mobile-auth {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        padding: 0.75rem 1.5rem;
        border-top: 1px solid var(--border-color, #e5e7eb);
        margin-top: 0.5rem;
    }

    /* Dropdown im Hamburger: submenu statisch */
    .nav-submenu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--bg-section, #f9fafb);
        padding: 0 0 0 1rem;
        min-width: unset;
    }

    .nav-dropdown-btn {
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
        width: 100%;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-overlay {
        display: none;
    }

    .nav-overlay.active {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        max-width: 80vw;
        background: #fff;
        flex-direction: column;
        padding: calc(var(--nav-height) + 1rem) 0 2rem;
        gap: 0;
        margin-left: 0;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a,
    .nav-link {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
        transition: background-color 0.2s ease, padding-left 0.2s ease;
    }

    .nav-menu a:hover {
        padding-left: 2rem;
        background-color: var(--bg-section);
    }

    .nav-menu a.active {
        border-left: 3px solid var(--color-primary);
        background-color: rgba(22, 163, 74, 0.06);
        padding-left: calc(1.5rem - 3px);
    }

    .nav-auth-links {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        gap: 0.5rem;
        padding: 0.75rem 0 0;
        border-top: 1px solid var(--border-light, #e8e0d5);
        width: 100%;
    }
}

/* Tablets and smaller desktops */
@media (max-width: 900px) {
    :root {
        --nav-height: 60px;
        --max-width: 92vw;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    /* Stats-Bar mobil */
    .stats-container {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Hero */
    .hero {
        min-height: 400px;
    }

    .hero-inner {
        padding: 3rem 1.5rem 2.5rem;
    }

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

    .hero .value-prop,
    .hero p {
        font-size: 1.05rem;
    }

    .hero-badges {
        gap: 0.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }

    /* Tool Hero */
    .tool-hero {
        padding: 2.5rem 1.5rem;
    }

    .tool-hero h1 {
        font-size: 1.8rem;
    }

    /* Grids */
    .tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .tools-compact {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

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

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    /* Blog Layout */
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sidebar-card {
        position: static;
    }

    /* Contact Layout */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Container */
    .container {
        padding: 0 1.5rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Security */
    .security-hero {
        min-height: 250px;
    }

    .security-hero-overlay h1 {
        font-size: 1.8rem;
    }

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

    /* Calculator */
    .radio-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .wizard-step#step1 .use-case-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Results */
    .results-grid {
        grid-template-columns: 1fr;
    }

    /* Tool meta */
    .tool-meta {
        gap: 1rem;
    }

    /* Cookie Banner */
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    /* Page header */
    .page-header {
        padding: 2rem 1.5rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    /* Category nav bottom */
    .category-nav-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-separator {
        display: none;
    }
}

/* Mobile phones */
@media (max-width: 600px) {
    :root {
        --max-width: 96vw;
    }

    html {
        font-size: 15px;
    }

    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.15rem; }

    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero {
        min-height: 360px;
    }

    .hero-inner {
        padding: 2.5rem 1rem 2rem;
    }

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

    .hero .value-prop,
    .hero p {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary-light {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Stats Bar */
    .stats-container {
        gap: 1rem;
    }

    .stat-item {
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    /* Swiper Slider */
    .tools-swiper {
        padding: 0 1rem 2rem;
    }

    .tools-swiper .swiper-button-next,
    .tools-swiper .swiper-button-prev {
        display: none;
    }

    /* Akkordeon */
    .faq-section {
        padding: 2rem 1rem 3rem;
    }

    .accordion-header {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .accordion-content p {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }

    /* Tool Hero */
    .tool-hero {
        padding: 2rem 1rem;
    }

    .tool-hero h1 {
        font-size: 1.5rem;
    }

    .tool-tagline {
        font-size: 1rem;
    }

    .tool-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    /* Content sections */
    .content-section {
        padding: 1.25rem 1rem;
    }

    /* Wizard use-case grid */
    .wizard-step#step1 .use-case-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .use-case-option {
        padding: 1.25rem 0.75rem;
    }

    .option-icon {
        font-size: 1.75rem;
    }

    .use-case-option h3 {
        font-size: 0.95rem;
    }

    .use-case-option p {
        font-size: 0.8rem;
    }

    /* Wizard form steps */
    .wizard-step:not(#step1) {
        padding: 1.5rem 1rem;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    .content-container {
        padding: 1.5rem 1rem;
    }

    /* Grids - single column */
    .use-case-grid,
    .tools-grid,
    .tools-compact,
    .categories-grid,
    .features-grid,
    .use-cases-grid,
    .related-grid,
    .info-grid,
    .best-practices-grid,
    .dangerous-tools-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }

    /* Cards */
    .tool-compact,
    .tool-card,
    .category-card,
    .category-box,
    .use-case-card {
        padding: 1.25rem;
    }

    /* Blog */
    .blog-header {
        padding: 2rem 1rem;
    }

    .blog-layout {
        padding: 0 1rem 2rem;
    }

    .blog-post {
        padding: 1.5rem 1rem;
    }

    .post-featured-image {
        height: 200px;
    }

    .post-body p {
        font-size: 1rem;
    }

    /* Legal */
    .legal-page {
        padding: 1.5rem 1rem;
    }

    .legal-header h1 {
        font-size: 1.6rem;
    }

    /* Contact */
    .contact-layout {
        padding: 1.5rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Security */
    .security-page {
        padding: 1.5rem 1rem;
    }

    .security-hero {
        min-height: 200px;
    }

    .security-hero-overlay {
        padding: 2rem 1rem;
    }

    .security-hero-overlay h1 {
        font-size: 1.5rem;
    }

    .security-stat-highlight {
        grid-template-columns: 1fr;
    }

    .security-comparison-table {
        font-size: 0.85rem;
    }

    .security-comparison-table th,
    .security-comparison-table td {
        padding: 0.6rem 0.75rem;
    }

    /* Calculator */
    .calculator-header {
        padding: 2rem 1rem;
    }

    .calculator-header h1 {
        font-size: 1.7rem;
    }

    .calculator-form,
    .calculator-wizard {
        padding: 1.5rem 1rem;
    }

    .result-container {
        padding: 1.5rem 1rem;
    }

    .cost-amount {
        font-size: 1.6rem;
    }

    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .cta-buttons-centered {
        flex-direction: column;
        align-items: center;
    }

    /* CTA Box */
    .cta-box,
    .cta-section {
        padding: 2rem 1.25rem;
        margin: 2rem 0;
    }

    /* Page header */
    .page-header {
        padding: 1.5rem 1rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.5rem;
    }

    /* Filter */
    .filter-bar {
        padding: 1rem;
    }

    .filter-buttons {
        gap: 0.4rem;
    }

    .filter-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.83rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cookie Banner */
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn-essential,
    .cookie-btn-accept {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
    }

    /* Tool navigation */
    .tool-nav-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .tool-nav-separator {
        display: none;
    }

    /* Pros/Cons */
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Category stats */
    .category-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Mission */
    .mission-section {
        padding: 2.5rem 1rem;
    }

    /* Share box */
    .share-url {
        font-size: 0.8rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    footer,
    .cookie-banner,
    .hamburger-button,
    .hamburger,
    .cta-box,
    .cta-section,
    .filter-bar {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    .hero {
        background: #fff;
        color: #000;
        padding: 1rem 0;
    }

    .hero h1 {
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* =============================================
   DSGVO-AMPEL
   ============================================= */

.dsgvo-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}
.dsgvo-dot-green { background: #16a34a; }
.dsgvo-dot-yellow { background: #f59e0b; }
.dsgvo-dot-red { background: #dc2626; }

/* DSGVO-Box auf Detail-Seite */
.dsgvo-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 4px solid #ccc;
}
.dsgvo-box.dsgvo-green { border-left-color: #16a34a; }
.dsgvo-box.dsgvo-yellow { border-left-color: #f59e0b; }
.dsgvo-box.dsgvo-red { border-left-color: #dc2626; }

.dsgvo-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.dsgvo-criteria {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dsgvo-criterion {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-text);
}

.dsgvo-criterion-label {
    font-weight: 600;
    margin-right: 4px;
}

/* DSGVO-Badge auf Tool-Card */
.dsgvo-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.dsgvo-badge-green {
    background: #dcfce7;
    color: #166534;
}
.dsgvo-badge-yellow {
    background: #fef3c7;
    color: #92400e;
}
.dsgvo-badge-red {
    background: #fee2e2;
    color: #991b1b;
}

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

/* =============================================
   TOOL-VERGLEICH
   ============================================= */

/* Selector / Dropdowns */
.compare-selector {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.compare-selector h2 {
    margin-bottom: 16px;
    color: var(--color-primary);
}
.compare-selector-inline {
    padding: 16px 24px;
}
.compare-dropdowns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.compare-select {
    flex: 1;
    min-width: 180px;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fff;
}
.compare-select:focus {
    border-color: var(--color-primary);
    outline: none;
}
.compare-vs {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}
.compare-start-btn {
    display: inline-block;
}

/* Beliebte Vergleiche */
.compare-popular {
    margin-bottom: 30px;
}
.compare-popular h2 {
    margin-bottom: 16px;
}
.compare-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.compare-popular-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border-left: 3px solid var(--color-primary);
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.2s, box-shadow 0.2s;
}
.compare-popular-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.compare-popular-names {
    font-weight: 600;
}
.compare-popular-count {
    font-size: 0.8rem;
    color: #64748b;
}

/* Info Box */
.compare-info {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.compare-info h2 {
    margin-bottom: 12px;
}

/* Vergleichstabelle */
.compare-table-wrap {
    overflow-x: auto;
    margin-bottom: 30px;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    table-layout: fixed;
}
.compare-table th,
.compare-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}
.compare-table thead th {
    background: var(--color-dark);
    color: #fff;
    font-size: 1.05rem;
    padding: 16px;
}
.compare-table thead th a {
    color: #fff;
    text-decoration: none;
}
.compare-table thead th a:hover {
    text-decoration: underline;
}
.compare-label-col {
    width: 18%;
}
.compare-tool-col {
    width: 27.3%;
}
.compare-label {
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
}
.compare-label-sub {
    padding-left: 28px;
    font-weight: 400;
}
.compare-section-row td {
    border-top: 2px solid #e2e8f0;
    padding-top: 16px;
}
.compare-rating {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
}
.compare-pros li::marker { content: "✓ "; color: #16a34a; }
.compare-cons li::marker { content: "✗ "; color: #dc2626; }
.compare-pros, .compare-cons {
    list-style: none;
    padding: 0;
    margin: 0;
}
.compare-pros li, .compare-cons li {
    padding: 3px 0;
    font-size: 0.88rem;
}

/* Aufklappbare Details */
.compare-details {
    margin-bottom: 30px;
}
.compare-details h2 {
    margin-bottom: 16px;
}
.compare-detail-section {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.compare-detail-section summary {
    padding: 16px 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}
.compare-detail-section summary:hover {
    color: var(--color-primary);
}
.compare-detail-grid {
    display: grid;
    gap: 20px;
    padding: 0 20px 20px;
}
.compare-cols-2 { grid-template-columns: 1fr 1fr; }
.compare-cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.compare-detail-col h3 {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 8px;
}
.compare-detail-col h4 {
    font-size: 0.85rem;
    margin: 8px 0 4px;
}
.compare-detail-col ul {
    padding-left: 16px;
    font-size: 0.88rem;
}
.compare-detail-col li {
    padding: 2px 0;
}

/* CTA Buttons */
.compare-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Tool-Card Vergleich-Checkbox */
.tool-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.compare-checkbox {
    font-size: 0.78rem;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.compare-checkbox input {
    accent-color: var(--color-primary);
}

/* Floating Compare Bar */
.compare-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: #fff;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}
.compare-floating-bar .btn-primary {
    padding: 8px 20px;
    font-size: 0.9rem;
}
.compare-floating-bar .btn-secondary {
    padding: 8px 16px;
    font-size: 0.85rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .compare-dropdowns {
        flex-direction: column;
    }
    .compare-select {
        min-width: 100%;
    }
    .compare-vs {
        display: none;
    }
    .compare-cols-2, .compare-cols-3 {
        grid-template-columns: 1fr;
    }
    .compare-table {
        font-size: 0.85rem;
    }
    .compare-label-col {
        width: 28%;
    }
    .compare-floating-bar {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 16px;
    }
}

/* =============================================
   BRANCHENSEITEN
   ============================================= */

/* Branchen-Übersicht Grid */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.branch-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid var(--color-primary);
}
.branch-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.branch-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}
.branch-card h2 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-text);
}
.branch-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 12px;
}
.branch-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Branchen-Detail: Use Cases */
.branch-usecases {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.branch-usecase-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-section);
    padding: 16px 20px;
    border-radius: 10px;
}
.branch-usecase-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.branch-usecase-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* DSGVO-Hinweis Box */
.branch-dsgvo-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 30px;
}
.branch-dsgvo-note h3 {
    margin-bottom: 8px;
    color: #92400e;
    font-size: 1rem;
}
.branch-dsgvo-note p {
    font-size: 0.9rem;
    color: #78350f;
    margin: 0;
}

/* Tool-Empfehlungen */
.branch-tools-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.branch-tool-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 3px solid var(--color-primary);
}
.branch-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
.branch-tool-header h3 {
    font-size: 1.1rem;
    margin: 0;
}
.branch-tool-header h3 a {
    color: var(--color-text);
    text-decoration: none;
}
.branch-tool-header h3 a:hover {
    color: var(--color-primary);
}
.branch-tool-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.branch-tool-rec {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 12px;
}
.branch-tool-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Weitere Tools Grid */
.branch-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
}
.branch-tool-small {
    background: #fff;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.branch-tool-small h4 {
    margin: 0 0 6px;
    font-size: 0.95rem;
}
.branch-tool-small h4 a {
    color: var(--color-text);
    text-decoration: none;
}
.branch-tool-small h4 a:hover {
    color: var(--color-primary);
}
.branch-tool-small p {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 8px;
}

/* Andere Branchen Navigation */
.branch-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
.branch-nav-link {
    padding: 12px 16px;
    background: var(--bg-section);
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.branch-nav-link:hover {
    background: #e2e8f0;
}

@media (max-width: 600px) {
    .branch-tool-header {
        flex-direction: column;
        gap: 8px;
    }
    .branch-tool-footer {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

/* ============================================================
   QUIZ - "Welches KI-Tool passt zu mir?"
   ============================================================ */

/* Fortschrittsbalken */
.quiz-progress {
    background: #e5e7eb;
    border-radius: 20px;
    height: 8px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.quiz-progress-bar {
    background: linear-gradient(90deg, #16a34a, #22c55e);
    height: 100%;
    border-radius: 20px;
    transition: width 0.4s ease;
}
.quiz-progress-text {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Fragen */
.quiz-question {
    text-align: center;
    margin-bottom: 2rem;
}
.quiz-question h2 {
    font-size: 1.6rem;
    color: #1f2937;
    font-weight: 700;
}

/* Antwort-Karten */
.quiz-answers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.quiz-answer-card {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}
.quiz-answer-card:hover {
    border-color: #16a34a;
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}
.quiz-answer-card.selected {
    border-color: #16a34a;
    background: #f0fdf4;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}
.quiz-answer-card input[type="radio"] {
    display: none;
}
.quiz-answer-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #374151;
    width: 100%;
    text-align: center;
}

/* Navigation */
.quiz-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.quiz-btn-back,
.quiz-btn-submit {
    min-width: 160px;
}

/* === Ergebnis-Seite === */

/* Antwort-Zusammenfassung */
.quiz-answer-summary {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Top-Match */
.quiz-top-match {
    background: #fff;
    border: 2px solid #16a34a;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.12);
}
.quiz-top-badge {
    position: absolute;
    top: -14px;
    left: 2rem;
    background: #16a34a;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.quiz-top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.quiz-top-header h2 {
    font-size: 1.5rem;
    margin: 0;
}
.quiz-top-header h2 a {
    color: #1f2937;
    text-decoration: none;
}
.quiz-top-header h2 a:hover {
    color: #16a34a;
}
.quiz-match-percent {
    font-size: 1.1rem;
    font-weight: 700;
    color: #16a34a;
    background: #f0fdf4;
    padding: 4px 12px;
    border-radius: 8px;
    white-space: nowrap;
}
.quiz-match-percent.quiz-match-high {
    font-size: 1.3rem;
    background: #dcfce7;
}
.quiz-top-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.quiz-top-meta .tool-category {
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #4b5563;
}
.quiz-top-meta .tool-price {
    font-weight: 600;
    color: #1f2937;
}
.quiz-top-meta .tool-rating {
    color: #d97706;
    font-weight: 600;
}

/* Weitere Empfehlungen */
.quiz-results-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.quiz-result-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    transition: border-color 0.2s;
}
.quiz-result-card:hover {
    border-color: #16a34a;
}
.quiz-result-rank {
    font-size: 1.3rem;
    font-weight: 800;
    color: #9ca3af;
    min-width: 40px;
    text-align: center;
}
.quiz-result-content {
    flex: 1;
}
.quiz-result-content h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1.1rem;
}
.quiz-result-content h3 a {
    color: #1f2937;
    text-decoration: none;
}
.quiz-result-content h3 a:hover {
    color: #16a34a;
}
.quiz-result-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}
.quiz-result-meta .tool-category {
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #6b7280;
}
.quiz-result-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.quiz-result-footer .tool-price {
    font-size: 0.9rem;
    color: #6b7280;
}
.quiz-result-card .btn-details {
    white-space: nowrap;
}

/* Aktionen */
.quiz-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

/* Quiz CTA Box */
.quiz-cta-box {
    border-left: 4px solid #FF8C00;
}

/* Mobile */
@media (max-width: 768px) {
    .quiz-question h2 {
        font-size: 1.3rem;
    }
    .quiz-answers {
        grid-template-columns: 1fr;
    }
    .quiz-top-match {
        padding: 1.5rem 1rem;
    }
    .quiz-top-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .quiz-result-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .quiz-result-rank {
        min-width: auto;
    }
    .quiz-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .quiz-actions a,
    .quiz-actions button {
        text-align: center;
    }
}

/* ============================================
   FEATURED BLOG POSTS (Homepage)
   ============================================ */
.featured-posts-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1rem 2rem;
}

.featured-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.featured-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.featured-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #16a34a;
}

.featured-post-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-content {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-post-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #16a34a;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.featured-post-content h3 {
    font-size: 1.05rem;
    line-height: 1.4;
    color: #1a1a2e;
    margin: 0 0 0.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-post-content p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.featured-post-date {
    font-size: 0.78rem;
    color: #999;
    margin-top: 0.75rem;
}

@media (max-width: 900px) {
    .featured-posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .featured-post-card {
        flex-direction: row;
    }
    .featured-post-image {
        width: 120px;
        height: auto;
        min-height: 100px;
        flex-shrink: 0;
    }
    .featured-post-content h3 {
        font-size: 0.95rem;
        -webkit-line-clamp: 2;
    }
    .featured-post-content p {
        display: none;
    }
}

/* ============================================
   GLOSSAR
   ============================================ */

.glossary-hero {
    background: linear-gradient(135deg, #1e2a38 0%, #2d3748 100%);
    padding: 3rem 1rem 2.5rem;
    text-align: center;
}

.glossary-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.glossary-hero h1 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.glossary-hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.glossary-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

/* Kategorie-Navigation */
.glossary-nav {
    position: sticky;
    top: 60px;
    z-index: 10;
    background: var(--bg-primary);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.glossary-nav-inner {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.glossary-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 20px;
    background: #fff;
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.glossary-nav-link:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.glossary-nav-count {
    background: rgba(0,0,0,0.07);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    padding: 0.1rem 0.45rem;
    border-radius: 10px;
}

.glossary-nav-link:hover .glossary-nav-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Suche */
.glossary-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.glossary-search {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.8rem;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.2s;
}

.glossary-search:focus {
    outline: none;
    border-color: var(--color-primary);
}

.glossary-search-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

/* Kategorie-Sektionen */
.glossary-category {
    margin-bottom: 2.5rem;
}

.glossary-category-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.glossary-category-icon {
    display: flex;
    align-items: center;
    color: var(--color-primary);
}

/* Term Cards */
.glossary-terms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.glossary-term-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.glossary-term-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: var(--color-primary);
}

.glossary-term-title {
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.glossary-term-explanation {
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.65;
}

/* Keine Ergebnisse */
.glossary-no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* CTA */
.glossary-cta {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #f0fdf4, #FFF8F0);
    border-radius: 16px;
    margin-top: 2rem;
}

.glossary-cta h2 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
}

.glossary-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 540px) {
    .glossary-hero h1 {
        font-size: 1.6rem;
    }
    .glossary-hero-subtitle {
        font-size: 0.95rem;
    }
    .glossary-nav-inner {
        gap: 0.35rem;
    }
    .glossary-nav-link {
        font-size: 0.78rem;
        padding: 0.35rem 0.7rem;
    }
    .glossary-category-title {
        font-size: 1.15rem;
    }
    .glossary-term-card {
        padding: 1rem 1.1rem;
    }
    .glossary-cta h2 {
        font-size: 1.1rem;
    }
}

/* ============================================================
   GLOSSARY SHOW PAGE - v3.10.0
   ============================================================ */

/* Term-Card Link-Styles auf Übersicht */
a.glossary-term-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
}
a.glossary-term-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.glossary-term-more {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Hero */
.glossary-show-hero {
    background: var(--color-dark, #1e2a38);
    color: #fff;
    padding: 2.5rem 0 2rem;
    text-align: center;
}
.glossary-show-hero h1 {
    font-size: 2.2rem;
    margin: 0.5rem 0 0.75rem;
    color: #fff;
}
.glossary-show-category {
    display: inline-block;
    background: rgba(22, 163, 74, 0.2);
    color: #4ade80;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.glossary-show-short {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Layout: Content + Sidebar */
.glossary-show-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    padding: 2rem 0 3rem;
    align-items: start;
}

/* Article Content */
.glossary-show-content {
    min-width: 0;
}
.glossary-show-article {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text, #2c3e50);
}
.glossary-show-article h2 {
    font-size: 1.5rem;
    color: var(--color-dark, #1e2a38);
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--color-primary, #16a34a);
}
.glossary-show-article h3 {
    font-size: 1.2rem;
    color: var(--color-dark, #1e2a38);
    margin: 1.5rem 0 0.5rem;
}
.glossary-show-article p {
    margin-bottom: 1rem;
}
.glossary-show-article ul,
.glossary-show-article ol {
    margin: 0.75rem 0 1.25rem 1.5rem;
}
.glossary-show-article li {
    margin-bottom: 0.4rem;
}
.glossary-show-article img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.glossary-show-article blockquote {
    border-left: 4px solid var(--color-primary, #16a34a);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    background: rgba(22, 163, 74, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}
.glossary-show-article strong {
    color: var(--color-dark, #1e2a38);
}
.glossary-show-article a {
    color: var(--color-primary, #16a34a);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.glossary-show-article a:hover {
    color: var(--color-cta, #FF8C00);
}

/* Verwandte Tools */
.glossary-show-tools {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.glossary-show-tools h2 {
    font-size: 1.4rem;
    color: var(--color-dark, #1e2a38);
    margin-bottom: 0.5rem;
}
.glossary-show-tools-intro {
    color: #64748b;
    margin-bottom: 1.25rem;
}
.glossary-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.glossary-tool-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}
.glossary-tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.glossary-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}
.glossary-tool-header h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--color-dark, #1e2a38);
}
.glossary-tool-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 0.75rem;
    line-height: 1.5;
}
.glossary-tool-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.85rem;
}
.glossary-tool-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: #FF8C00;
}
.glossary-tool-pricing {
    color: #64748b;
    background: rgba(0,0,0,0.04);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

/* Verwandte Begriffe */
.glossary-show-related {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.glossary-show-related h2 {
    font-size: 1.4rem;
    color: var(--color-dark, #1e2a38);
    margin-bottom: 1.25rem;
}
.glossary-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.glossary-related-card {
    display: block;
    background: var(--bg-section, #FAF4EC);
    border-radius: 10px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}
.glossary-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.glossary-related-card h3 {
    font-size: 1rem;
    color: var(--color-primary, #16a34a);
    margin: 0 0 0.4rem;
}
.glossary-related-card p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Prev/Next Navigation */
.glossary-show-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    gap: 1rem;
}
.glossary-nav-prev,
.glossary-nav-next {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: background 0.2s;
    max-width: 45%;
}
.glossary-nav-prev:hover,
.glossary-nav-next:hover {
    background: var(--bg-section, #FAF4EC);
}
.glossary-nav-next {
    text-align: right;
    margin-left: auto;
}
.glossary-nav-label {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}
.glossary-nav-term {
    font-size: 1rem;
    color: var(--color-primary, #16a34a);
    font-weight: 600;
}

/* Sidebar */
.glossary-show-sidebar {
    min-width: 0;
}
.glossary-sidebar-sticky {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 0.5rem;
}
.glossary-sidebar-sticky h3 {
    font-size: 1.1rem;
    color: var(--color-dark, #1e2a38);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary, #16a34a);
}
.glossary-sidebar-cat {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1rem 0 0.4rem;
    font-weight: 600;
}
.glossary-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.glossary-sidebar-list li {
    margin-bottom: 0.15rem;
}
.glossary-sidebar-list li a {
    display: block;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--color-text, #2c3e50);
    font-size: 0.88rem;
    transition: background 0.15s;
}
.glossary-sidebar-list li a:hover {
    background: var(--bg-section, #FAF4EC);
    color: var(--color-primary, #16a34a);
}
.glossary-sidebar-list li.active a {
    background: rgba(22, 163, 74, 0.1);
    color: var(--color-primary, #16a34a);
    font-weight: 600;
}
.glossary-sidebar-cta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 900px) {
    .glossary-show-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .glossary-show-sidebar {
        display: none;
    }
    .glossary-show-hero h1 {
        font-size: 1.7rem;
    }
    .glossary-tools-grid,
    .glossary-related-grid {
        grid-template-columns: 1fr;
    }
    .glossary-show-nav {
        flex-direction: column;
    }
    .glossary-nav-prev,
    .glossary-nav-next {
        max-width: 100%;
        text-align: left;
    }
}

/* ============================================================
   REVIEW SYSTEM - v3.9.0
   ============================================================ */

/* Review Section Wrapper */
.review-section {
    margin-top: 2.5rem;
}

/* Flash Messages */
.flash-messages {
    margin-bottom: 1.5rem;
}
.flash-message {
    padding: 0.85rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
}
.flash-success {
    background: rgba(22, 163, 74, 0.15);
    border: 1px solid rgba(22, 163, 74, 0.4);
    color: #16a34a;
}
.flash-error {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #dc2626;
}
.flash-warning {
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.35);
    color: #a16207;
}
.flash-info {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #2563eb;
}

/* Aggregate */
.review-aggregate {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.review-aggregate-score {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}
.review-avg-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #16a34a;
    line-height: 1;
}
.review-avg-label {
    font-size: 1rem;
    color: #6b7280;
}
.review-aggregate-stars {
    font-size: 1.4rem;
    letter-spacing: 2px;
}
.review-count {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Star Colors */
.star-filled {
    color: #FF8C00;
}
.star-half {
    color: #FF8C00;
    opacity: 0.6;
}
.star-empty {
    color: #d1d5db;
}

/* Review List */
.review-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Review Card */
.review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.3rem 1.5rem;
    transition: box-shadow 0.2s ease;
}
.review-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #FF8C00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
    min-width: 0;
}
.review-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111827;
}
.review-date {
    font-size: 0.8rem;
    color: #9ca3af;
}
.review-stars {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-left: auto;
}
.review-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}
.review-content {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.65;
    margin: 0 0 1rem 0;
}
.review-card-footer {
    border-top: 1px solid #f3f4f6;
    padding-top: 0.8rem;
}
.helpful-form {
    display: inline-block;
}
.btn-helpful {
    background: none;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    font-size: 0.82rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-helpful:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #374151;
}

/* Empty State */
.review-empty {
    color: #9ca3af;
    font-style: italic;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

/* CTA Box (not logged in / not verified) */
.review-cta-box {
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.review-cta-box p {
    margin: 0;
    font-size: 1rem;
    color: #374151;
}
.review-cta-warning {
    border-color: #fbbf24;
    background: #fffbeb;
}
.review-cta-hint {
    font-size: 0.85rem !important;
    color: #9ca3af !important;
}

/* Review Form */
.review-form-container {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.8rem 2rem;
    margin-top: 1rem;
}
.review-form-container h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.15rem;
    color: #1f2937;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}
.form-label .required {
    color: #dc2626;
    margin-left: 2px;
}
.form-input {
    width: 100%;
    padding: 0.6rem 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    font-size: 0.93rem;
    color: #1f2937;
    background: #fff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}
.form-input:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}
.form-textarea {
    resize: vertical;
    min-height: 110px;
}
.form-hint {
    display: block;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 0.3rem;
}
.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    gap: 0.3rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.star-label {
    cursor: pointer;
    font-size: 1.6rem;
    color: #d1d5db;
    transition: color 0.15s ease;
}
.star-label input[type="radio"] {
    display: none;
}
.star-label:hover,
.star-label:hover ~ .star-label {
    color: #FF8C00;
}
.star-label input[type="radio"]:checked ~ .star-icon,
.star-rating-input:has(.star-label input:checked) .star-label:has(~ .star-label input:checked) .star-icon,
.star-rating-input:has(.star-label input:checked) .star-label:has(input:checked) .star-icon {
    color: #FF8C00;
}

/* Responsive */
@media (max-width: 600px) {
    .review-aggregate {
        flex-wrap: wrap;
        padding: 1rem;
    }
    .review-card {
        padding: 1rem;
    }
    .review-form-container {
        padding: 1.2rem 1rem;
    }
    .review-card-header {
        gap: 0.6rem;
    }
    .form-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   AUTH PAGES (Login, Register, Verify, Reset)
   v3.9.0
   ============================================ */

.auth-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: var(--bg-primary);
}

.auth-container {
    width: 100%;
    max-width: 460px;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light, #e8e0d5);
}

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

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(22,163,74,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--color-primary);
}

.auth-icon-success {
    background: rgba(22,163,74,0.12);
    color: var(--color-primary);
}

.auth-icon-error {
    background: rgba(220,38,38,0.1);
    color: #dc2626;
}

.auth-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.4rem;
    line-height: 1.2;
}

.auth-subtitle {
    color: var(--color-muted, #6b7280);
    font-size: 0.95rem;
    margin: 0;
}

.auth-text {
    color: var(--color-text);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-legal {
    font-size: 0.82rem;
    color: var(--color-muted, #6b7280);
    margin: 0;
    line-height: 1.5;
}

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

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light, #e8e0d5);
    font-size: 0.9rem;
    color: var(--color-muted, #6b7280);
}

.auth-footer a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Auth Form Fields */
.form-label-link {
    float: right;
    font-size: 0.82rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 400;
}

.form-label-link:hover {
    text-decoration: underline;
}

.form-error {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.82rem;
    color: #dc2626;
}

.form-group.has-error .form-input {
    border-color: #dc2626;
    outline-color: #dc2626;
}

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

/* Flash Messages (global) */
.flash-message {
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.flash-success {
    background: rgba(22,163,74,0.1);
    color: #15803d;
    border: 1px solid rgba(22,163,74,0.25);
}

.flash-error {
    background: rgba(220,38,38,0.08);
    color: #b91c1c;
    border: 1px solid rgba(220,38,38,0.2);
}

.flash-info {
    background: rgba(37,99,235,0.08);
    color: #1d4ed8;
    border: 1px solid rgba(37,99,235,0.2);
}

/* Nav Auth Links */
.nav-auth-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.nav-auth-links a {
    font-size: 0.88rem;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.nav-auth-btn-login {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.nav-auth-btn-login:hover {
    background: rgba(22,163,74,0.08);
}

.nav-auth-btn-register {
    background: var(--color-primary);
    color: #fff !important;
}

.nav-auth-btn-register:hover {
    background: #15803d;
}

.nav-auth-user {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--color-text);
}

.nav-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

