/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Benisch Immobilien Original Colors - Weiß, Schwarz, Gold */
    --primary-color: #000000;
    --primary-light: #333333;
    --secondary-color: #ffffff;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4e4a6;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-light: #999999;
    --background-light: #ffffff;
    --background-grey: #f8f9fa;
    --background-hero: #ffffff;
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--background-light);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation Header */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.brand-text {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.brand-text small {
    font-size: 0.7rem;
    font-weight: 500;
    color: #cccccc;
    letter-spacing: 1px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: 1rem;
}

.nav-button {
    background: transparent;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.nav-button:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    transform: translateY(-1px);
}

.nav-button:active {
    transform: translateY(0);
}

.navbar-cta {
    margin-left: 0;
}

.cta-button {
    background: var(--accent-gold);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.cta-button:hover {
    background: #f4e4a6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Mobile Hamburger Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.mobile-nav-button {
    background: transparent;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    padding: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 250px;
    text-align: center;
    display: block;
    text-decoration: none;
}

.mobile-nav-button:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    transform: scale(1.05);
}

.mobile-cta-button {
    background: var(--accent-gold);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin-top: 1rem;
    text-align: center;
    display: block;
    text-decoration: none;
}

.mobile-cta-button:hover {
    background: #f4e4a6;
    transform: scale(1.05);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: var(--background-hero);
    color: var(--text-primary);
    padding: 8rem 0 3rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
}

.hero-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--background-light);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
    color: var(--text-primary);
}

.hero-title-highlight {
    display: block;
    color: var(--accent-gold);
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    position: relative;
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-accent {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.feature-pill:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.feature-pill i {
    color: var(--accent-gold);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--accent-gold);
    color: var(--background-light);
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0.75rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.cta-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.property-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    height: 100%;
    padding: 2rem;
}

.floating-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    color: var(--text-primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: cardFloat 4s ease-in-out infinite;
}

.floating-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    display: block;
}

.floating-card span {
    font-size: 1rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.card-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-1 {
    animation: cardFloat 4s ease-in-out infinite;
}

.card-2 {
    animation: cardFloat 4s ease-in-out infinite 1s;
}

.card-3 {
    animation: cardFloat 4s ease-in-out infinite 2s;
}

.card-4 {
    animation: cardFloat 4s ease-in-out infinite 3s;
}

/* Kickstart Section */
.kickstart {
    padding: 6rem 0;
    background: var(--background-light);
    position: relative;
}

.kickstart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-dark), transparent);
}

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

.kickstart h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.kickstart h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold));
    margin: 1.5rem auto;
}

.timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-gold), var(--accent-gold));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.timeline-number {
    width: 4rem;
    height: 4rem;
    background: var(--accent-gold);
    color: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--background-light);
}

.timeline-content {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    width: 45%;
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--background-light);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent var(--background-light) transparent transparent;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--background-light);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.feature {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--accent-gold);
    color: var(--background-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Form Section - SUPER PROMINENT */
.form-section {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, #f8f4e6 0%, #ffffff 50%, #f5f0e0 100%),
        radial-gradient(ellipse at 25% 25%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 75%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

/* Aufmerksamkeits-Glow für die Form Section */
.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), #f4e4a6, var(--accent-gold));
    animation: formSectionGlow 3s ease-in-out infinite;
}

@keyframes formSectionGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.form-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

/* Aufmerksamkeits-Badge für die Form */
.form-header::before {
    content: '🎯 JETZT IMMOBILIE BEWERTEN LASSEN';
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-gold), #f4e4a6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.form-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary), var(--accent-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

/* Eleganter Shine-Effekt für die Form - ENTFERNT */

/* Sicherstellen, dass Form-Inhalte über dem Shine-Effekt liegen */
.form-progress,
.form-step,
.multi-step-form {
    position: relative;
    z-index: 2;
}

/* Schwebender Bewertungs-Button */
.floating-bewertung-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(45deg, var(--accent-gold), #f4e4a6);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-bewertung-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.floating-bewertung-btn i {
    font-size: 1.2rem;
}

@keyframes floatPulse {
    0%, 100% { 
        transform: translateY(0); 
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
    50% { 
        transform: translateY(-5px); 
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
    }
}

/* Mobile anpassung für Floating Button */
@media (max-width: 768px) {
    .floating-bewertung-btn {
        bottom: 20px;
        left: 20px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}



/* Form Progress */
.form-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--background-grey);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    font-size: 1.2rem;
}

.progress-step.active .step-circle {
    background: var(--accent-gold);
    color: var(--background-light);
    border-color: var(--accent-gold);
}

.progress-step.completed .step-circle {
    background: var(--accent-gold);
    color: var(--background-light);
    border-color: var(--accent-gold);
}

.progress-step span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.progress-step.active span {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-step h3 i {
    color: var(--accent-gold);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 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 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.selection-btn {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.selection-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.selection-btn.selected {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
}

.selection-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Emoji-Größe für Selection Buttons */
.selection-btn {
    font-size: 1rem;
}

.selection-btn::first-line {
    font-size: 2rem;
    line-height: 1.2;
}

/* Enhanced Bewertung Options */
.bewertung-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

#option-online,
#option-vor-ort {
    order: 1;
}

.bewertung-option {
    background: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.bewertung-option:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.bewertung-option.selected {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Clickable Options */
.bewertung-option.clickable-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.bewertung-option.clickable-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Selected State - Only when user clicks */
.bewertung-option.selected {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffcf5 100%);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
    position: relative;
}

.bewertung-option.selected::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-gold), #f4e4a6);
    border-radius: 0.75rem;
    z-index: -1;
    opacity: 0.1;
}

/* Recommendation Badge */
.recommendation-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-gold), #f4e4a6);
    color: var(--background-light);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    z-index: 10;
}

.recommendation-badge i {
    font-size: 0.7rem;
}

/* Recommended Option Styling */
.bewertung-option.recommended-option {
    position: relative;
}

.bewertung-option.recommended-option .option-header h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.option-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0.5rem 0 1rem 0;
    font-style: italic;
}

/* Price Section Improvements */
.price-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: var(--background-grey);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.price-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.bewertung-option.selected .price-section {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
}

.bewertung-option.selected .price {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-prev {
    background: var(--background-grey);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-prev:hover {
    background: var(--border-color);
}

.btn-next,
.btn-submit {
    background: var(--accent-gold);
    color: var(--background-light);
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

/* Testimonials */
.testimonials {
    background: var(--background-light);
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.stars i {
    margin-right: 0.25rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== TYPOGRAPHY OPTIMIZATION ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Section Headings */
.kickstart h2,
.features h2,
.form-header h2,
.testimonials h2,
.comparison h2,
.faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Section Subtitles */
.comparison-subtitle,
.faq-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Timeline Content */
.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature Cards */
.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Form Elements */
.form-step h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* FAQ */
.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials */
.testimonial p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 100px 0;
    background: white;
    position: relative;
}

.faq-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    text-align: left;
    align-items: start; /* Verhindert dass Items sich an der Höhe der anderen orientieren */
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative; /* Isoliert jedes FAQ-Item */
    z-index: 1;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 300px; /* Etwas mehr Platz für längere Antworten */
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-radius: 20px;
    margin-top: 3rem;
}

.faq-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.faq-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-gold);
}

.cta-secondary:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
}

/* Comparison Section */
.comparison {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.comparison-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 3rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    background: var(--bg-primary);
    padding: 0;
}

.comparison-header .comparison-item {
    padding: 2rem 1.5rem;
    text-align: center;
}

.comparison-header .comparison-item:first-child {
    background: transparent;
}

.comparison-header .comparison-item.competitor {
    background: #fee;
    border-right: 1px solid var(--border-color);
}

.comparison-header .comparison-item.us {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    position: relative;
}

.comparison-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.comparison-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.comparison-row:hover {
    background: #fafbfc;
}

.comparison-row.highlighted {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

.comparison-feature {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-right: 1px solid var(--border-color);
}

.comparison-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.comparison-value {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    border-right: 1px solid var(--border-color);
}

.comparison-value:last-child {
    border-right: none;
}

.comparison-value.competitor {
    background: #fef7f7;
}

.comparison-value.us {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    font-weight: 600;
}

.comparison-value i {
    font-size: 1.2rem;
}

.comparison-value i.text-red {
    color: #dc3545;
}

.comparison-value i.text-green {
    color: #28a745;
}

.comparison-value i.text-orange {
    color: #fd7e14;
}

.comparison-value i.text-gold {
    color: var(--accent-gold);
}

.comparison-value span {
    font-size: 1rem;
}

.comparison-cta {
    text-align: center;
    margin-top: 2rem;
}

.comparison-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Navbar Mobile */
    .navbar-container {
        padding: 0 1rem;
    }

    .desktop-menu,
    .desktop-cta {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    /* Hero Mobile */
    .hero {
        padding: 6rem 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-pill {
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .property-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .floating-card {
        font-size: 0.85rem;
        padding: 1rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .card-value {
        font-size: 1rem;
    }

    /* Section Typography Mobile */
    .kickstart h2,
    .features h2,
    .form-header h2,
    .testimonials h2,
    .comparison h2,
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .comparison-subtitle,
    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }

    /* Kickstart Mobile */
    .kickstart {
        padding: 4rem 0;
    }
    
    .timeline {
        padding: 0 1rem;
    }
    
    .timeline::before {
        left: 1.5rem;
    }
    
    .timeline-item {
        margin-bottom: 3rem;
    }
    
    .timeline-marker {
        left: 1.5rem;
    }
    
    .timeline-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem !important;
        margin-right: 0 !important;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
    }

    /* Features Mobile */
    .features {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }

    /* Form Mobile */
    .form-section {
        padding: 4rem 0;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-progress {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 2rem;
    }
    
    .form-progress::before {
        left: 15%;
        right: 15%;
    }
    
    .progress-step {
        flex: none;
    }
    
    .step-circle {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .progress-step span {
        font-size: 0.8rem;
    }
    
    .form-step h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .button-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .selection-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .selection-btn i {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .bewertung-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bewertung-option {
        padding: 1.5rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-prev, .btn-next, .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }

    /* Comparison Mobile */
    .comparison {
        padding: 4rem 0;
    }
    
    .comparison-table {
        border-radius: 15px;
        background: transparent;
        box-shadow: none;
    }
    
    .comparison-header {
        display: none;
    }
    
    .comparison-row {
        display: block;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        background: white;
        border-radius: 15px;
        box-shadow: var(--shadow-md);
        border: none;
    }
    
    .comparison-row.highlighted {
        background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
        border: 2px solid var(--accent-gold);
    }
    
    .comparison-feature {
        text-align: center;
        background: var(--bg-primary);
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        border: none;
    }
    
    .comparison-feature h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0;
    }
    
    .comparison-value {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 10px;
        margin-bottom: 0.75rem;
        border: none;
    }
    
    .comparison-value:last-child {
        margin-bottom: 0;
    }
    
    .comparison-value.competitor {
        border-left: 4px solid #dc3545;
    }
    
    .comparison-value.us {
        border-left: 4px solid var(--accent-gold);
        background: linear-gradient(135deg, #fff8e1 0%, #f8f9fa 100%);
        font-weight: 600;
    }
    
    .comparison-value::before {
        content: "";
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        min-width: 120px;
    }
    
    .comparison-value.competitor::before {
        content: "Online-Portale:";
        color: #dc3545;
    }
    
    .comparison-value.us::before {
        content: "Benisch:";
        color: var(--accent-gold);
    }
    
    .comparison-value span {
        flex: 1;
        text-align: right;
    }
    
    .comparison-value i {
        margin-right: 0.5rem;
        font-size: 1.1rem;
    }

    /* FAQ Mobile Styles */
    .faq {
        padding: 4rem 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-cta {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .feature-pill {
        font-size: 0.8rem;
        padding: 0.75rem 1.25rem;
    }
    
    .property-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem; /* Kompakter Abstand */
        padding: 1rem; /* Weniger Außenabstand */
    }
    
    .floating-card {
        font-size: 0.85rem; /* Kompakte Schrift */
        padding: 1rem; /* Ausgewogener Innenabstand */
        border-radius: 1rem; /* Standard Ecken */
        min-height: 100px; /* Kompaktere Mindesthöhe */
        transition: all 0.2s ease; /* Schnellere Transitions */
    }
    
    .floating-card:active {
        transform: scale(0.98); /* Touch-Feedback */
        box-shadow: var(--shadow-md);
    }
    
    .floating-card i {
        font-size: 1.5rem; /* Kompakte Icons */
        margin-bottom: 0.75rem;
    }
    
    .floating-card span {
        font-size: 0.85rem; /* Kompakte Schrift */
        margin-bottom: 0.75rem;
        font-weight: 500;
    }
    
    .card-value {
        font-size: 1rem; /* Kompakte aber gut lesbare Preise */
        font-weight: 700; /* Fetter für bessere Sichtbarkeit */
        color: var(--accent-gold); /* Gold-Farbe für Preise */
    }
    
    .kickstart h2,
    .features h2,
    .testimonials h2,
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .form-step h3 {
        font-size: 1.3rem;
    }
    
    .button-grid {
        grid-template-columns: 1fr;
    }
    
    .selection-btn {
        padding: 1.25rem;
    }
    
    .comparison h2 {
        font-size: 1.8rem;
    }
    
    .comparison-subtitle {
        font-size: 1rem;
    }
    
    .comparison-feature h4 {
        font-size: 1rem;
    }
    
    .comparison-value {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comparison-value::before {
        min-width: auto;
    }
    
    .comparison-value span {
        text-align: left;
    }
    
    .faq h2 {
        font-size: 1.8rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--background-light);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
}

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

.footer-separator {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-separator {
        display: none;
    }
}

/* Checkbox Styles */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: var(--accent-gold);
}

.checkbox-wrapper label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.checkbox-wrapper label a {
    color: var(--accent-gold);
    text-decoration: none;
}

.checkbox-wrapper label a:hover {
    text-decoration: underline;
}

/* Cost Warning Styles */
.cost-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.cost-warning-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cost-warning-content i {
    color: #856404;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.cost-warning-content h4 {
    color: #856404;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cost-warning-content p {
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cost-warning .checkbox-wrapper {
    margin-bottom: 0;
}

.cost-warning .checkbox-wrapper label {
    color: #856404;
    font-weight: 500;
}

/* Responsive Checkbox Styles */
@media (max-width: 768px) {
    .checkbox-wrapper {
        gap: 0.5rem;
    }
    
    .checkbox-wrapper input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .checkbox-wrapper label {
        font-size: 0.85rem;
    }
    
    .cost-warning {
        padding: 1rem;
    }
    
    .cost-warning-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== COOKIE BANNER STYLES ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-banner-icon {
    width: 3rem;
    height: 3rem;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cookie-banner-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

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

.cookie-btn-primary:hover {
    background: #f4e4a6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cookie-btn-secondary {
    background: var(--background-light);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.cookie-btn-secondary:hover {
    background: var(--background-grey);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.cookie-btn-text {
    background: transparent;
    color: var(--text-secondary);
    text-decoration: underline;
    padding: 0.7rem 1rem;
}

.cookie-btn-text:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1) translateY(0);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: var(--background-grey);
    color: var(--text-primary);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-modal-body > p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-category {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--background-light);
}

.cookie-category-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.cookie-category-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
}

.cookie-toggle input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-label {
    display: block;
    width: 50px;
    height: 24px;
    background: #ddd;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-toggle-switch {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-label {
    background: var(--accent-gold);
}

.cookie-toggle input:checked + .cookie-toggle-label .cookie-toggle-switch {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle-label {
    background: var(--accent-gold);
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-privacy-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.cookie-privacy-link:hover {
    color: var(--accent-gold);
}

/* Cookie Settings Button (floating) */
.cookie-settings-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-settings-btn:hover {
    background: #f4e4a6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cookie-settings-btn i {
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .cookie-banner-header {
        text-align: center;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-privacy-link {
        margin-left: 0;
    }
    
    .cookie-settings-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .cookie-settings-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem 0;
    }
    
    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.85rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .cookie-toggle {
        align-self: flex-end;
    }
}

/* ===== ZUSÄTZLICHE MOBILE OPTIMIERUNGEN ===== */
@media (max-width: 480px) {
    /* Kompakte Property Cards */
    .hero-visual {
        padding: 0.5rem;
    }
    
    .property-cards-grid {
        max-width: 100%;
        margin: 0 auto;
        gap: 0.75rem; /* Noch kompakter */
        padding: 0.75rem;
    }
    
    /* Subtile Hervorhebung der Top-Karten */
    .floating-card:nth-child(1),
    .floating-card:nth-child(2) {
        border: 1px solid var(--accent-gold);
        background: linear-gradient(135deg, #ffffff 0%, #fefdf8 100%);
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
    }
    
    /* Touch-Feedback */
    .floating-card {
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
        transition: all 0.2s ease;
    }
}

@media (max-width: 360px) {
    /* Extra kleine Smartphones - noch kompakter */
    .floating-card {
        padding: 0.875rem;
        min-height: 90px;
    }
    
    .floating-card i {
        font-size: 1.4rem;
    }
    
    .card-value {
        font-size: 0.95rem;
    }
    
    .property-cards-grid {
        gap: 0.6rem;
        padding: 0.6rem;
    }
}

 