/* PRACHTPLAN MAKLERSERVICE - Main Stylesheet */
/* Modern, Conversion-Optimized Design */

/* CSS Custom Properties (Variablen) */
:root {
    --primary-color: #DC2626;
    --primary-dark: #B91C1C;
    --secondary-color: #EF4444;
    --accent-color: #10B981;
    --accent-light: #34D399;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #DC2626;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 12px;
    --container-max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-md {
    padding: 60px 0;
}

.section-sm {
    padding: 40px 0;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Buttons - Enhanced Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1.2;
    min-height: 52px;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.2rem;
    min-height: 60px;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(135deg, var(--warning-color) 0%, #F97316 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.urgency-bar i {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23DC2626" stop-opacity="0.05"/><stop offset="100%" stop-color="%23DC2626" stop-opacity="0"/></radialGradient></defs><circle cx="50%" cy="50%" r="500" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-clean {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    justify-content: center;
}

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

.stat-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 200px;
}

/* Victor Card */
.victor-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.victor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--accent-color);
}

.victor-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.badge {
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.victor-note {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

/* Team Card */
.team-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.partner-badge {
    background: var(--accent-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

/* Target Selection */
.target-selection {
    background: var(--bg-white);
    position: relative;
}

.target-selection-header {
    text-align: center;
    margin-bottom: 60px;
}

.target-buttons-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.target-card-enhanced {
    background: var(--bg-white);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 40px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.target-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.target-card-enhanced:hover::before {
    transform: scaleX(1);
}

.target-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.target-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.target-icon {
    font-size: 2.5rem;
    color: white;
}

.target-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.target-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.target-features {
    list-style: none;
    margin-bottom: 30px;
}

.target-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
}

.target-features i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.target-cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.quick-contact {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 2;
}

.trust-section .lead {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px 32px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.trust-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 24px;
    display: block;
}

.trust-badge h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.trust-badge p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Product Sections */
.product-section {
    padding: 80px 0;
    position: relative;
}

.product-section:nth-child(even) {
    background: var(--bg-light);
}

.product-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-header h2 {
    margin-bottom: 20px;
}

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

.service-text h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-hook {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.4;
}

.service-stats {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.big-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.service-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    display: block;
    text-align: center;
}

/* Victor Tips */
.victor-tips {
    background: var(--accent-color);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.victor-tips h4 {
    color: white;
    margin-bottom: 20px;
}

.tip-list {
    list-style: none;
    padding: 0;
}

.tip-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tip-list li:last-child {
    border-bottom: none;
}

.victor-quote {
    background: var(--text-dark);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
}

.victor-quote h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* CTA Groups */
.cta-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Calculator Widgets */
.calculator-widget {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.slider-container {
    margin: 20px 0;
}

.slider-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.slider-container input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--bg-light);
    outline: none;
    margin-bottom: 10px;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.calculation-result {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

/* Shock Statistics */
.shock-statistics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.shock-stat {
    background: var(--danger-color);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.shock-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.contact-section-minimal {
    background: var(--text-dark);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-minimal h2 {
    color: white;
    margin-bottom: 15px;
}

.contact-minimal .lead {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-quick {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--accent-color);
}

.contact-item i {
    font-size: 1.3rem;
}

.contact-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

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

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.contact-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: left;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-detail i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
}

/* Floating Elements */
.floating-whatsapp,
.floating-app {
    position: fixed;
    bottom: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp {
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.floating-app {
    right: 110px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: white;
    width: 120px;
    border-radius: 30px;
    font-size: 0.9rem;
    gap: 8px;
}

.floating-whatsapp:hover,
.floating-app:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

/* Footer Styling */
footer a:hover {
    color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    footer > .container > div:nth-child(2) {
        gap: 20px !important;
        flex-direction: column;
        align-items: center;
    }
    
    footer > .container > div:nth-child(2) a {
        padding: 8px 0;
    }
}

/* Mobile-First Responsive Design - No Horizontal Scroll */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Typography Mobile */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    /* Grid Layouts - Stack on Mobile */
    .hero-content,
    .service-content,
    .target-buttons-enhanced {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .target-buttons-enhanced {
        grid-template-columns: 1fr;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Buttons Mobile */
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    /* Trust Badges Mobile */
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-badge {
        padding: 30px 20px;
    }
    
    /* Navigation Mobile */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    /* Floating Elements Mobile */
    .floating-app {
        display: none;
    }
    
    .floating-whatsapp {
        right: 20px;
        bottom: 20px;
    }
    
    /* Contact Mobile */
    .contact-quick {
        flex-direction: column;
        gap: 15px;
    }
    
    .quick-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Sections Mobile */
    .section-lg {
        padding: 60px 0;
    }
    
    .product-section {
        padding: 60px 0;
    }
    
    .trust-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .trust-badge,
    .victor-card,
    .team-card {
        padding: 25px 15px;
    }
    
    .calculator-widget {
        padding: 20px;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
