:root {
    --primary-blue: #3385d6;
    /* Vibrant Blue from SFC */
    --dark-blue: #0056b3;
    /* Slightly darker for hover */
    --accent-blue: #3385d6;
    --dark-grey: #2c3e50;
    /* Dark Blue-Gray from SFC */
    --medium-grey: #7F8C8D;
    --light-grey: #f0f4f8;
    /* Light Blue-Gray from SFC */
    --white: #FFFFFF;
    --text-color: #333333;
    --container-width: 900px;
    --header-width: 1200px;
    --transition: all 0.3s ease;
}

header .container,
footer .container {
    max-width: var(--header-width);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    color-scheme: light;
}

@media (prefers-color-scheme: dark) {
    body {
        color-scheme: light;
        background-color: var(--white);
        color: var(--text-color);
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

.grid {
    display: grid;
    gap: 2.5rem;
    /* Reset to normal */
    margin-bottom: 4rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}


h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-grey);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    margin-top: 0;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    margin-top: 0;
}

.text-center {
    text-align: center;
}

.text-blue {
    color: var(--primary-blue);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    /* Confirmed 8px */
    transition: var(--transition);
    border: none;
    /* SFC uses no border on primary buttons */
    cursor: pointer;
    text-align: center;
    margin-top: 1.5rem;
    box-shadow: none;
    /* Flat design */
}

.btn:first-child {
    margin-top: 0;
}

.btn:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 86, 179, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 61, 130, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 61, 130, 0.3);
}

.btn-accent,
.btn-accent:hover,
.btn-accent:active,
.btn-accent:visited {
    background-color: var(--accent-blue);
    color: #ffffff;
    border-color: var(--accent-blue);
    text-decoration: none;
}

.btn-accent:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(51, 133, 214, 0.3);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.version-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(51, 133, 214, 0.3);
}

.badge-accent {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #333;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin: 1.5rem 0 2rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--medium-grey);
}

.full-width {
    width: 100%;
    display: block;
}

header {
    padding: 1.5rem 0;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-grey);
}

.logo span {
    color: var(--primary-blue);
}

.logo-group {
    display: flex;
    flex-direction: column;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: 2rem;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 500;
    transition: var(--transition);
}

header nav .nav-links a.btn:not(.btn-outline),
header nav .nav-links a.btn:not(.btn-outline):visited,
header nav .nav-links a.btn:not(.btn-outline):hover {
    color: #ffffff;
    text-decoration: none;
    margin-top: 0;
    padding: 0.7rem 1.5rem;
    /* Slightly smaller for header */
}

header nav .nav-links a.btn.btn-outline {
    color: var(--primary-blue);
    padding: 0.7rem 1.5rem;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
}

/* Mobile Navigation */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--dark-grey);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
        overflow-y: auto;
        border-top-left-radius: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.btn) {
        padding: 1.2rem 1rem;
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }

    .nav-links .btn {
        margin-top: 1.5rem;
        text-align: center;
        width: 100%;
    }
}

.hero {
    padding: 6rem 0 8rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .hero-sub {
    text-align: center !important;
}

.hero-sub {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center;
    margin-top: 2.5rem;
}

.hero-buttons .btn {
    margin-top: 0;
}

.features {
    padding: 8rem 0;
}

.page-header {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
}

.page-header p {
    font-size: 1.25rem;
    color: #666;
}

.content-section {
    padding: 6rem 0;
}

.feature-card {
    padding: 2.5rem;
    background-color: var(--white);
    border: 2px solid #eee;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    /* Moderate spacing */
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight {
    padding: 4rem 0;
    background-color: var(--light-grey);
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
}

.highlight-box h2 {
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.highlight-box h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.9);
}

.targets {
    padding: 6rem 0;
    background-color: var(--dark-grey);
    color: var(--white);
}

.targets h2 {
    color: var(--white);
}

.targets h3 {
    color: var(--white);
}

.target-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.target-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.target-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.target-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.target-card li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.specs {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.specs h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.specs-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    opacity: 0.95;
}

.specs-grid {
    max-width: 800px;
    margin: 0 auto;
}

.spec-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.spec-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.download {
    padding: 6rem 0;
    background-color: var(--light-grey);
}

footer {
    padding: 4rem 0 2rem 0;
    background: linear-gradient(to bottom, #c8d6e5 0%, #b2c1d1 100%);
    color: #495057;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-col a {
    color: #495057;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    display: inline-block;
}

.footer-links a:hover,
.footer-col a:hover {
    color: #212529;
    font-weight: 600;
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 0 2rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 4rem 0 5rem 0;
    }

    .hero::after {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .nav-links {
        gap: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .grid {
        gap: 2rem;
    }

    .section {
        padding: 3rem 0 !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 3rem 0 4rem 0;
    }

    .grid {
        gap: 1.5rem;
    }

    .content-box {
        padding: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }
}

.page-content {
    padding: 6rem 0 4rem 0;
    min-height: 60vh;
}

.section {
    padding: 8rem 0;
}

.section.bg-light {
    background-color: var(--light-grey);
}

.section .content-box+.grid {
    margin-top: 3rem;
}

/* Trial Section - kompakteres Padding */
.section#trial {
    padding: 3rem 0;
}

.mb-4 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 3rem;
}

.my-4 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Überschriften in Sections */
.section .text-center h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section .text-center p {
    margin-bottom: 0;
}

.content-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #eee;
    line-height: 1.8;
    margin-bottom: 3rem;
    /* Safety spacing */
}

.content-box h3 {
    margin-bottom: 1rem;
}

.content-box p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box .btn {
    margin-top: 1.5rem;
}

.content-box h2 {
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-box h2:first-child {
    margin-top: 0;
}

.content-box h3 {
    color: var(--dark-grey);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-box h4 {
    color: var(--medium-grey);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.content-box a:not(.btn) {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.content-box a:not(.btn):hover {
    text-decoration: underline;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #eee;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-bottom: 3rem;
    /* Added safe spacing */
}

.card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.card p:last-of-type {
    margin-bottom: 0;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.card.featured {
    background-color: #f8fbff;
    border-color: var(--primary-blue);
}

.border-accent {
    border-color: var(--primary-blue) !important;
    border-width: 2px !important;
}

.card.border-accent {
    border-color: var(--primary-blue);
    border-width: 2px;
}

.faq-category {
    margin-top: 4rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 0.5rem;
    display: inline-block;
    color: var(--primary-blue);
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #eee;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 16px rgba(74, 144, 217, 0.12);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.7;
}

.faq-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 0;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-box .btn {
    margin-top: 1rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2.5rem;
    justify-content: center;
}

.hero-buttons .btn {
    margin-top: 0;
}

.hero-sub {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.7;
}

/* Utility Classes */
.align-center {
    align-items: center;
}

/* List Styles */
.content-box ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.9;
}

.content-box ul li {
    margin-bottom: 0.5rem;
}

.content-box ul li strong {
    color: var(--primary-blue);
}

/* Link Styles in Content */
.content-box a[href^="mailto:"] {
    color: var(--accent-blue);
    font-weight: 600;
}

/* Logo Tagline */
.logo-tagline {
    font-size: 0.75rem;
    /* Slightly smaller */
    color: #888;
    margin-top: -0.2rem;
    font-weight: 400;
}

/* Beta Banner Optimization */
.beta-banner {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 3px solid #ffd700;
}

.beta-banner a {
    color: #ffd700;
    text-decoration: underline;
}

/* Animation für Hover-Effekte */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.faq-item {
    animation: slideIn 0.4s ease-out;
}

/* Portal Body Branding */
.portal-body {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%) !important;
    min-height: 100vh;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Launch Special Banner */
.launch-special {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.launch-special::before {
    content: '★';
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 5rem;
    color: rgba(255, 193, 7, 0.1);
    transform: rotate(15deg);
}

.launch-special h2 {
    color: #856404;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.launch-special p {
    font-size: 1.15rem;
    color: #856404;
    margin-bottom: 1.5rem;
}

.launch-special ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.launch-special li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #664d03;
}

.launch-special li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
    color: #ffc107;
}

.launch-special strong {
    color: #533f03;
}

/* Glass Cards Animation (Re-added) */
.hero-visual {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 86, 179, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark-grey);
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
    z-index: 2;
    font-family: 'Inter', sans-serif;
}

.glass-card i {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.glass-card:nth-child(1) {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.glass-card:nth-child(2) {
    top: 45%;
    right: 0;
    animation-delay: 2s;
}

.glass-card:nth-child(3) {
    top: 70%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Authentication & Form Styles */
.auth-page {
    background: linear-gradient(135deg, #f0f4f8 0%, #dfe9f3 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}

.auth-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
}

.auth-header p {
    color: var(--medium-grey);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background-color: var(--white);
    color: var(--text-color);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(51, 133, 214, 0.1);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--medium-grey);
}

.form-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Cookie Banner Premium Style */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: rgba(15, 23, 42, 0.95);
    /* High opacity for legibility */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    visibility: visible;
}

.cookie-banner.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 50px);
    pointer-events: none;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 !important;
    max-width: 100%;
}

.cookie-text h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    margin: 0 !important;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-buttons .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.cookie-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 15px;
        width: 95%;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .cookie-buttons {
        width: 100%;
        gap: 0.8rem;
    }

    .cookie-buttons .btn {
        flex: 1;
        text-align: center;
    }
}

/* ========================================
   CONTACT FORM (O36)
   ======================================== */
.form-field {
    margin-bottom: 1rem;
}

.form-label-contact {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-input-contact {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-input-contact:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 133, 214, 0.1);
}

select.form-input-contact {
    appearance: auto;
}

/* ========================================
   TIPPS & TRICKS PAGE
   ======================================== */
.tipps-section {
    margin-bottom: 6rem;
}

.tipps-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tipps-section-header i {
    font-size: 2rem;
}

.tipps-section-header h2 {
    margin: 0;
}

.tipps-quick-access {
    padding: 1.5rem;
    margin-bottom: 4rem;
    text-align: center;
    background: #f8fbff;
    border-color: var(--accent-blue);
}

.tipps-quick-access p {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.tipps-quick-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tipps-quick-links a {
    text-decoration: none;
    font-weight: 500;
}

.tipps-highlight {
    padding: 1.5rem;
    border-radius: 8px;
}

.tipps-highlight-blue {
    background: #f8fbff;
    border: 1px solid var(--accent-blue);
}

.tipps-highlight-yellow {
    background: #fffcf5;
    border: 1px solid #ffeeba;
}

.tipps-highlight-red {
    background: #fffcfc;
    border: 1px solid #f5c6cb;
}

.tipps-highlight-green {
    background: #f0fff4;
    border: 1px solid #c3e6cb;
}

.tipps-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tipps-back-link {
    text-align: right;
    margin-top: 2rem;
}

.tipps-back-link a {
    font-size: 0.9rem;
    text-decoration: none;
}

.tipps-checklist {
    padding-left: 0;
    list-style: none;
    line-height: 2;
}

.tipps-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-blue);
    margin-right: 0.8rem;
}

.tipps-warn-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.tipps-warn-box h4 {
    color: #856404;
    margin-top: 0;
}

/* ============================================
   KONTAKT-WIZARD (Gefuehrter Anfrage-Assistent)
   Optimiert v4.10 – Premium Design, Preisrechner-Stil
   ============================================ */
.wizard-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    margin-top: 3rem;
    border: 1px solid rgba(51, 133, 214, 0.08);
}

.wizard-progress {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.wiz-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e0e5ec;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.wiz-dot.active {
    background: var(--primary-blue);
    transform: scale(1.35);
    box-shadow: 0 0 0 4px rgba(51, 133, 214, 0.2);
}

.wiz-dot.done {
    background: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
}

.wiz-dot-label {
    font-size: 0.7rem;
    color: var(--medium-grey);
    margin-top: 0.35rem;
    font-weight: 600;
    text-align: center;
}

.wiz-line {
    width: 48px;
    height: 3px;
    background: #e0e5ec;
    border-radius: 3px;
    transition: background 0.4s ease;
    margin-top: 5px;
}

.wiz-line.done {
    background: #27ae60;
}

.wiz-step {
    display: none;
}

.wiz-step.active {
    display: block;
    animation: wizFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes wizFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered card entrance animation */
@keyframes wizCardIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wiz-step.active .wiz-card {
    animation: wizCardIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.wiz-step.active .wiz-card:nth-child(1) {
    animation-delay: 0.04s;
}

.wiz-step.active .wiz-card:nth-child(2) {
    animation-delay: 0.08s;
}

.wiz-step.active .wiz-card:nth-child(3) {
    animation-delay: 0.12s;
}

.wiz-step.active .wiz-card:nth-child(4) {
    animation-delay: 0.16s;
}

.wiz-step.active .wiz-card:nth-child(5) {
    animation-delay: 0.20s;
}

.wiz-step.active .wiz-card:nth-child(6) {
    animation-delay: 0.24s;
}

.wiz-step.active .wiz-card:nth-child(7) {
    animation-delay: 0.28s;
}

.wiz-step.active .wiz-card:nth-child(8) {
    animation-delay: 0.32s;
}

.wiz-step.active .wiz-card:nth-child(9) {
    animation-delay: 0.36s;
}

.wiz-step.active .wiz-card:nth-child(10) {
    animation-delay: 0.40s;
}

.wiz-step.active .wiz-card:nth-child(11) {
    animation-delay: 0.44s;
}

.wiz-step.active .wiz-card:nth-child(12) {
    animation-delay: 0.48s;
}

.wiz-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark-grey);
}

.wiz-subtitle {
    color: var(--medium-grey);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

/* Kategorie-Header (wie Preisrechner) */
.wiz-card-category {
    grid-column: 1 / -1;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-blue);
    margin-top: 1.2rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wiz-card-category:first-child {
    margin-top: 0.3rem;
}

.wiz-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.wiz-cards.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.wiz-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.6rem 1rem;
    border: 2px solid #e8edf2;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    text-align: center;
    user-select: none;
}

.wiz-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 133, 214, 0.15);
}

.wiz-card:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(51, 133, 214, 0.1);
}

.wiz-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(51, 133, 214, 0.08);
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.wiz-card:hover .wiz-card-icon {
    transform: scale(1.1);
}

.wiz-card-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-grey);
    line-height: 1.3;
}

.wiz-card-hint {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.3;
}

.wiz-card.selected {
    border-color: #27ae60;
    background: linear-gradient(135deg, #f0fff4, #e8faf0);
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.12);
}

.wiz-card.selected .wiz-card-icon {
    background: rgba(39, 174, 96, 0.12);
    color: #27ae60;
}

.wiz-card.selected::after {
    content: '\2713';
    position: absolute;
    top: 8px;
    right: 10px;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 22px;
    height: 22px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3);
}

.wiz-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, #f0f7ff, #f5f8fc);
    border-radius: 14px;
    border: 1px solid #d6e4f0;
}

.wiz-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(51, 133, 214, 0.25);
    letter-spacing: 0.01em;
}

.wiz-arrow {
    color: #c0cfe0;
    font-size: 0.85rem;
}

.wiz-optional label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.wiz-optional textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid #e8edf2;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 70px;
    transition: all 0.3s;
    background: #fafbfd;
}

.wiz-optional textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(51, 133, 214, 0.08);
    background: white;
}

.wiz-send {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.wiz-btn-wa {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, #25D366, #20bd5a);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.wiz-btn-wa:hover {
    background: linear-gradient(135deg, #20bd5a, #1aab50);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    color: white;
}

.wiz-btn-mail {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 1.5rem;
    background: white;
    color: var(--primary-blue);
    border: 2px solid #d6e4f0;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.wiz-btn-mail:hover {
    background: #f0f7ff;
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(51, 133, 214, 0.12);
}

.wiz-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--medium-grey);
    font-size: 0.85rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    border: none;
    background: none;
    font-family: inherit;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.wiz-back:hover {
    color: var(--primary-blue);
    background: rgba(51, 133, 214, 0.06);
}

.wiz-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eef2f7;
    font-size: 0.82rem;
    color: var(--medium-grey);
}

.wiz-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.wiz-trust i {
    color: #27ae60;
    margin-right: 0.2rem;
}

.wiz-phone {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f5f8fc, #eef3fa);
    border-radius: 14px;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #e0e8f0;
}

.wiz-phone a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.wiz-phone a:hover {
    color: var(--dark-blue);
}

/* Verfügbarkeitszeiten-Anzeige */
.wiz-availability {
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #888;
}

.wiz-availability i {
    color: var(--primary-blue);
    margin-right: 0.3rem;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
    .wizard-box {
        padding: 1.8rem;
        border-radius: 16px;
    }

    .wiz-cards.three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .wiz-title {
        font-size: 1.2rem;
    }

    .wiz-card {
        padding: 1.3rem 0.8rem;
    }

    .wiz-card-icon {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }

    .wiz-direct-buttons {
        flex-wrap: wrap;
    }
}

/* Responsive: Mobile */
@media (max-width: 600px) {

    .wiz-cards,
    .wiz-cards.three-col {
        grid-template-columns: 1fr;
    }

    .wiz-send {
        flex-direction: column;
    }

    .wizard-box {
        padding: 1.2rem;
        border-radius: 14px;
        margin-top: 2rem;
    }

    .wiz-direct-buttons {
        flex-direction: column;
    }

    .wiz-line {
        width: 28px;
    }

    .wiz-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .wiz-summary {
        padding: 1rem;
    }

    .wiz-chip {
        font-size: 0.8rem;
        padding: 0.35rem 0.8rem;
    }
}

/* Extra-klein (< 380px) */
@media (max-width: 380px) {
    .wiz-dot-label {
        font-size: 0.6rem;
    }

    .wiz-line {
        width: 18px;
    }

    .wiz-card {
        padding: 1.1rem 0.6rem;
    }

    .wiz-card-label {
        font-size: 0.88rem;
    }
}

/* Direkt-Kontakt Buttons */
.wiz-direct-buttons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.wiz-direct-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    background: none;
}

.wiz-direct-btn i {
    font-size: 1.25rem;
}

.wiz-direct-btn.wa {
    background: linear-gradient(135deg, #25D366, #20bd5a);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.15);
}

.wiz-direct-btn.wa:hover {
    background: linear-gradient(135deg, #20bd5a, #1aab50);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    color: white;
}

.wiz-direct-btn.phone {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    box-shadow: 0 2px 8px rgba(51, 133, 214, 0.15);
}

.wiz-direct-btn.phone:hover {
    background: linear-gradient(135deg, var(--dark-blue), #004494);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(51, 133, 214, 0.3);
    color: white;
}

.wiz-direct-btn.email {
    background: white;
    color: var(--primary-blue);
    border-color: #d6e4f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wiz-direct-btn.email:hover {
    background: #f0f7ff;
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(51, 133, 214, 0.12);
}

.wiz-divider {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--medium-grey);
    font-size: 0.85rem;
    font-weight: 500;
}

.wiz-divider::before,
.wiz-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 38%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dde3ea, transparent);
}

.wiz-divider::before {
    left: 0;
}

.wiz-divider::after {
    right: 0;
}