/* ============================================
   ThinkSpecX® - Style Sheet
   Modern, Dark, Gold-Accents, Glassmorphism
   ============================================ */

/* --- GRUNDLEGENDE VARIABLEN --- */
:root {
    --bg-dark: #0a0e1a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    
    /* GOLD vom Logo als Hauptakzent */
    --gold-primary: #fbbf24;
    --gold-light: #fcd34d;
    --gold-dark: #b45309;
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    
    /* Moderne Akzentfarben */
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;
    
    --border-color: rgba(148, 163, 184, 0.1);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --container-width: 1200px;
    --radius: 12px;
    --radius-lg: 16px;
}

/* --- RESET & GRUNDSTYLING --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- HEADER mit Glassmorphism --- */
.site-header {
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

/* LOGO - VERGRÖSSERT */
.logo-img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION mit modernen Effekten --- */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-effect {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--gold-primary);
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.2s both;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* --- WORD ROTATOR ANIMATION --- */
.word-rotator {
    position: relative;
    display: inline-block;
    min-width: 320px;
    height: 1.2em;
    overflow: hidden;
    vertical-align: bottom;
}

.rotator-word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.rotator-word.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* --- HERO DOORS - 3 gleich breite Kästchen --- */
.hero-doors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.door-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease backwards;
    width: 100%;
}

.door-card:nth-child(1) { animation-delay: 0.6s; }
.door-card:nth-child(2) { animation-delay: 0.8s; }
.door-card:nth-child(3) { animation-delay: 1s; }

.door-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.door-card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(251, 191, 36, 0.1);
}

.door-card:hover::before {
    transform: scaleX(1);
}

.door-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.door-icon {
    font-size: 2.5rem;
    display: block;
}

.door-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold-primary);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.door-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 600;
}

.door-card p {
    color: var(--text-muted);
    font-size: 0.975rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.door-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 1rem;
}

.door-cta .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.door-card:hover .door-cta .arrow {
    transform: translateX(4px);
}

/* Spezifische Farben für die Türen */
.door-b2c { border-top: 3px solid var(--accent-blue); }
.door-b2b2c { border-top: 3px solid var(--accent-green); }
.door-b2b { border-top: 3px solid var(--accent-purple); }

/* --- TRUST BAR modernisiert --- */
.trust-bar {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.trust-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem 4rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 280px;
}

.trust-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.trust-sub {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* --- ANIMATIONEN --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* --- RESPONSIVE: TABLET (2 Kästchen nebeneinander) --- */
@media (max-width: 900px) {
    .hero-doors {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .word-rotator {
        min-width: 240px;
    }
}

/* --- RESPONSIVE: MOBILE (alle untereinander) --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Logo auch auf Mobile größer */
    .logo-img {
        height: 50px;
    }

    .hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-content h1 {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-doors {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .door-card {
        padding: 2rem;
    }
    
    .trust-inner {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .trust-item {
        text-align: center;
        justify-content: center;
        max-width: 100%;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .word-rotator {
        min-width: 200px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .hero-sub {
        font-size: 1.05rem;
    }
    
    .door-icon {
        font-size: 2rem;
    }
    
    .word-rotator {
        min-width: 170px;
        font-size: 0.8em;
    }
}

/* ============================================
   ZUSATZ-SEKTIONEN: ABOUT, PROCESS, CTA, FOOTER
   ============================================ */

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- ÜBER MICH (GEFIXT) --- */
.about-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3 / 4; /* Hochformat für Porträt */
    object-fit: cover;
    object-position: top center; /* Fokus auf den Kopf */
    border-radius: var(--radius-lg);
    border: 2px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Goldener Akzent-Rahmen hinter dem Bild */
.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    max-width: 450px;
    height: calc(100% * 4 / 3); /* Gleiche Proportionen wie das Bild */
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    z-index: 1;
    opacity: 0.4;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.stat-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- PROZESS (SO FUNKTIONIERT'S) --- */
.process-section {
    padding: 6rem 0;
    background: rgba(30, 41, 59, 0.3);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-5px);
}

.process-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(251, 191, 36, 0.2);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- ABSCHLUSS-CTA --- */
.final-cta {
    padding: 6rem 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(10, 14, 26, 0.8) 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

/* --- FOOTER --- */
.site-footer {
    background: #050811;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- RESPONSIVE ANPASSUNGEN FÜR NEUE SEKTIONEN --- */
@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-img {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
    
    .about-image::before {
        display: none;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-header h2, .about-content h2, .cta-box h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
    
    .about-img {
        max-width: 280px;
    }
}/* ============================================
   UNTERSEITEN: ALLGEMEINE STYLES & B2C SPEZIFISCH
   ============================================ */

/* Aktiver Link in der Navigation */
.nav-links a.active {
    color: var(--gold-primary);
}
.nav-links a.active::after {
    width: 100%;
    background: var(--gold-primary);
}

/* Page Hero (Allgemein für Unterseiten) */
.page-hero {
    padding: 8rem 0 5rem;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* B2C Spezifischer Hero-Hintergrund */
.b2c-hero {
    background: radial-gradient(circle at top center, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
}

/* Allgemeine Sektionen */
.section-padding {
    padding: 6rem 0;
}

.bg-alt {
    background: rgba(30, 41, 59, 0.3);
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Info Cards (Die 3 Wege) */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.3);
}

.highlight-card {
    border: 1px solid rgba(251, 191, 36, 0.3);
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, var(--bg-card) 100%);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.975rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-link {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 0.75rem;
}

/* Trust Section (B2C Spezifisch) */
.trust-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(30, 41, 59, 0.2) 100%);
}

.trust-container {
    max-width: 900px;
    text-align: center;
}

.trust-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.trust-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.check-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.trust-list strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.trust-list span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive für Unterseiten */
@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 6rem 0 4rem;
    }
}

@media (max-width: 768px) {
    .trust-list li {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}/* ============================================
   PREISE-SEITE SPEZIFISCHE STYLES
   ============================================ */

/* Preise Hero mit leichtem Gold-Glow */
.preise-hero {
    background: radial-gradient(circle at top center, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
}

/* Intro Box */
.intro-container {
    max-width: 800px;
}

.intro-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.intro-box h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.intro-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-grid.b2b-grid {
    grid-template-columns: repeat(2, 1fr);
}

.pricing-grid.einrichtungen-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Pricing Card */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.highlight-card {
    border: 1px solid rgba(251, 191, 36, 0.4);
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, var(--bg-card) 100%);
}

.price-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-icon {
    font-size: 2rem;
}

.price-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 600;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-desc {
    color: var(--text-muted);
    font-size: 0.975rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-details {
    background: rgba(10, 14, 26, 0.5);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid var(--border-color);
}

.price-details strong {
    display: block;
    color: var(--text-main);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-details li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.price-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.3);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.975rem;
    line-height: 1.6;
}

/* Responsive für Preisseite */
@media (max-width: 900px) {
    .pricing-grid,
    .pricing-grid.b2b-grid,
    .pricing-grid.einrichtungen-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}/* ============================================
   UNTERNEHMEN (B2B) SPEZIFISCHE STYLES
   ============================================ */

/* B2B Spezifischer Hero-Hintergrund (Tech-Purple Glow) */
.b2b-hero {
    background: radial-gradient(circle at top center, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
}

/* Grid-2 für Problem/Lösung */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.problem-box, .solution-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.solution-box {
    border-color: rgba(251, 191, 36, 0.3);
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.03) 0%, var(--bg-card) 100%);
}

.problem-box h2, .solution-box h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.problem-box p, .solution-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* B2B Pricing Cards spezifisch */
.pricing-card.b2b-card {
    border-top: 3px solid var(--accent-purple);
}

.pricing-card.b2b-card.highlight-card {
    border-top: 3px solid var(--gold-primary);
}

/* Responsive für B2B Grids */
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-box, .solution-box {
        padding: 2rem 1.5rem;
    }
}/* ============================================
   EINRICHTUNGEN SPEZIFISCHE STYLES
   ============================================ */

/* Einrichtungen Spezifischer Hero-Hintergrund (Care-Green Glow) */
.einrichtungen-hero {
    background: radial-gradient(circle at top center, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
}

/* Einrichtungen Pricing Cards spezifisch */
.pricing-card.einrichtungen-card {
    border-top: 3px solid var(--accent-green);
}

.pricing-card.einrichtungen-card.highlight-card {
    border-top: 3px solid var(--gold-primary);
}/* ============================================
   RECHTLICHE SEITEN: IMPRESSUM & DATENSCHUTZ
   ============================================ */

.impressum-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-main);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-primary);
}

.impressum-content h2:first-child {
    margin-top: 0;
}

.impressum-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-main);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.impressum-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.impressum-content a {
    color: var(--gold-primary);
    text-decoration: underline;
    transition: color 0.2s;
}

.impressum-content a:hover {
    color: var(--gold-light);
}

/* Responsive für Rechtstexte */
@media (max-width: 768px) {
    .impressum-content h2 {
        font-size: 1.5rem;
    }
    
    .impressum-content h3 {
        font-size: 1.1rem;
    }
}/* ============================================
   KONTAKT-SEITE SPEZIFISCHE STYLES
   ============================================ */

/* Kontakt Hero mit warmem Glow */
.kontakt-hero {
    background: radial-gradient(circle at top center, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
}

/* Kontakt Grid: Info links, Formular rechts */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Kontakt Info (linke Seite) */
.kontakt-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.kontakt-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.kontakt-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.kontakt-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

.kontakt-method:hover {
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateX(5px);
}

.method-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.kontakt-method strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.kontakt-method span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.kontakt-trust {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.kontakt-trust .trust-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.kontakt-trust p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.kontakt-trust a {
    color: var(--gold-primary);
    text-decoration: underline;
}

/* Kontakt Formular (rechte Seite) */
.kontakt-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.kontakt-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.875rem 1rem;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(10, 14, 26, 0.8);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 