/* ====================================
   CSS RESET & VARIABLES
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Farben */
    --anthrazit: #1a1a1a;
    --schwarz: #0a0a0a;
    --weinrot: #8b1538;
    --porsche-rot: #d5001c;
    --akzent-rot: #a8142e;
    --text-weiss: #f5f5f5;
    --text-grau: #b0b0b0;
    --bg-card: rgba(26, 26, 26, 0.5);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-full: 30px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 15px rgba(168, 20, 46, 0.3);
    --shadow-lg: 0 8px 25px rgba(168, 20, 46, 0.5);
}

/* ====================================
   GLOBAL STYLES
   ==================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--schwarz);
    color: var(--text-weiss);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ====================================
   ACCESSIBILITY
   ==================================== */

.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: 1rem 2rem;
    background: var(--porsche-rot);
    color: var(--text-weiss);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.skip-to-content:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--porsche-rot);
    outline-offset: 3px;
}

/* ====================================
   WILLKOMMENS-ANIMATION
   ==================================== */

.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--schwarz) 0%, var(--anthrazit) 50%, var(--schwarz) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    animation: fadeOut 0.8s ease-in-out 3s forwards;
}

.welcome-content {
    text-align: center;
}

.welcome-logo {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: slideInScale 1s ease-out;
}

.welcome-tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-grau);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.loading-bar {
    width: min(300px, 80vw);
    height: 3px;
    background: var(--anthrazit);
    margin: 2rem auto 0;
    border-radius: 2px;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--weinrot), var(--porsche-rot));
    width: 0;
    animation: loadProgress 2.5s ease-in-out forwards;
}

/* ====================================
   NAVIGATION
   ==================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(168, 20, 46, 0.2);
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDown 0.8s ease-out 3.5s forwards;
    transition: box-shadow var(--transition-base);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    color: var(--text-weiss);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-base);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--porsche-rot), var(--weinrot));
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--porsche-rot);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    color: var(--text-weiss);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-weiss);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--schwarz) 0%, var(--anthrazit) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(168, 20, 46, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(213, 0, 28, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease-out 3.8s forwards;
}

.hero-subtitle {
    color: var(--porsche-rot);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-weiss) 0%, var(--text-grau) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-grau);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    color: var(--text-weiss);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-weiss);
    border: 2px solid var(--porsche-rot);
}

.btn-secondary:hover {
    background: var(--porsche-rot);
    transform: translateY(-3px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 20, 46, 0.2);
    transition: all var(--transition-base);
}

.feature-item:hover {
    border-color: var(--porsche-rot);
    transform: translateX(5px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    stroke: var(--porsche-rot);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-grau);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease-out 4s forwards;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-svg {
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(168, 20, 46, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Background Elements */
.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.bg-element-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--porsche-rot), transparent);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.bg-element-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--weinrot), transparent);
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.bg-element-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--akzent-rot), transparent);
    top: 50%;
    right: 30%;
    animation-delay: 2s;
}

/* ====================================
   KEYFRAME ANIMATIONS
   ==================================== */

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    99% {
        opacity: 0;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   KONTAKT SECTION
   ==================================== */

.kontakt-section {
    min-height: auto;
    padding: 6rem 5% 6rem;
    background: linear-gradient(135deg, var(--anthrazit) 0%, var(--schwarz) 100%);
    position: relative;
    overflow: hidden;
}

.kontakt-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(168, 20, 46, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(213, 0, 28, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.kontakt-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.kontakt-info {
    padding: 0;
}

.kontakt-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-weiss) 0%, var(--text-grau) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kontakt-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-grau);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.kontakt-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.kontakt-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 20, 46, 0.2);
    transition: all var(--transition-base);
}

.kontakt-feature:hover {
    border-color: var(--porsche-rot);
    transform: translateX(10px);
    background: rgba(26, 26, 26, 0.5);
}

.kontakt-icon {
    width: 36px;
    height: 36px;
    stroke: var(--porsche-rot);
    flex-shrink: 0;
}

.kontakt-feature h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-weiss);
}

.kontakt-feature p {
    font-size: 0.85rem;
    color: var(--text-grau);
    line-height: 1.4;
}

.kontakt-direct {
    padding: 1.5rem;
    background: rgba(168, 20, 46, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 20, 46, 0.3);
}

.kontakt-direct h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-weiss);
}

.kontakt-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.kontakt-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    text-decoration: none;
}

.kontakt-method:hover {
    background: rgba(168, 20, 46, 0.2);
    transform: translateX(5px);
}

.kontakt-method svg {
    width: 20px;
    height: 20px;
    stroke: var(--porsche-rot);
    flex-shrink: 0;
}

.kontakt-method div {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    color: var(--text-grau);
    margin-bottom: 0.1rem;
}

.method-value {
    font-size: 0.9rem;
    color: var(--text-weiss);
    font-weight: 600;
}

.kontakt-form-wrapper {
    background: rgba(26, 26, 26, 0.5);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(168, 20, 46, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ====================================
   KONTAKTFORMULAR STYLES
   ==================================== */

.contact-form {
    width: 100%;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-weiss);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-grau);
    margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(139, 21, 56, 0.3);
    border-radius: var(--radius-sm);
    color: var(--text-weiss);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--transition-base);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(176, 176, 176, 0.5);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--porsche-rot);
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 0 0 2px rgba(213, 0, 28, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f5f5f5' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: var(--anthrazit);
    color: var(--text-weiss);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(139, 21, 56, 0.3) 20%, 
        rgba(139, 21, 56, 0.3) 80%, 
        transparent
    );
    margin: 1.5rem 0;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    color: var(--text-weiss);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    display: none;
}

.form-privacy {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: var(--text-grau);
    text-align: center;
    line-height: 1.4;
}

.form-privacy a {
    color: var(--porsche-rot);
    text-decoration: underline;
}

.form-privacy a:hover {
    color: var(--text-weiss);
}

/* Hidden honeypot field */
#website {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

/* Nachricht */
.form-message {
    display: none;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.5);
    color: #4ade80;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.5);
    color: #ff6b6b;
}

/* ====================================
   LEGAL PAGES STYLING
   ==================================== */

.legal-page {
    min-height: 100vh;
    padding: 120px 5% 80px;
    background: linear-gradient(180deg, var(--schwarz) 0%, var(--anthrazit) 50%, var(--schwarz) 100%);
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.legal-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--weinrot), var(--porsche-rot));
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.legal-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-weiss), var(--text-grau));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: var(--text-grau);
    max-width: 600px;
    margin: 0 auto;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.legal-section {
    background: var(--bg-card);
    border: 1px solid rgba(168, 20, 46, 0.2);
    border-radius: var(--radius-md);
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    animation: fadeInUp 0.8s ease;
}

.legal-section:hover {
    border-color: var(--weinrot);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-weiss);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--weinrot);
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-weiss);
    margin: 25px 0 15px 0;
}

.legal-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-weiss);
    margin: 20px 0 10px 0;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-grau);
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.legal-section li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-grau);
    line-height: 1.6;
}

.legal-section li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--porsche-rot);
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-section a {
    color: var(--porsche-rot);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.legal-section a:hover {
    color: var(--text-weiss);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--text-weiss);
    font-weight: 600;
}

.legal-section em {
    color: var(--text-grau);
    font-style: italic;
}

.legal-back {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(168, 20, 46, 0.2);
}

.legal-back .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--weinrot), var(--porsche-rot));
    color: var(--text-weiss);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.legal-back .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-weiss);
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
}

.legal-back .btn-primary:active {
    transform: translateY(-1px);
}

.legal-back .btn-primary svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform var(--transition-base);
}

.legal-back .btn-primary:hover svg {
    transform: translateX(-4px);
}

/* ====================================
   COOKIE BANNER
   ==================================== */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(168, 20, 46, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-weiss);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-icon {
    font-size: 1.3rem;
}

.cookie-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-grau);
    margin-bottom: 1rem;
}

.cookie-content a {
    color: var(--porsche-rot);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.cookie-content a:hover {
    color: var(--text-weiss);
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    color: var(--text-weiss);
    box-shadow: var(--shadow-sm);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cookie-decline {
    background: transparent;
    color: var(--text-grau);
    border: 1px solid rgba(168, 20, 46, 0.3);
}

.cookie-decline:hover {
    background: rgba(168, 20, 46, 0.1);
    color: var(--text-weiss);
    border-color: var(--porsche-rot);
}

.cookie-settings {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.6rem;
    background: transparent;
    color: var(--text-grau);
    border: none;
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.cookie-settings:hover {
    color: var(--porsche-rot);
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    background: var(--schwarz);
    border-top: 1px solid rgba(168, 20, 46, 0.2);
    padding: 4rem 5% 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-weiss);
    font-weight: 600;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-grau);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-grau);
    transition: color var(--transition-base);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--porsche-rot);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-grau);
    font-size: 0.95rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--porsche-rot);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 20, 46, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-grau);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links-bottom a {
    color: var(--text-grau);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links-bottom a:hover {
    color: var(--porsche-rot);
}

.footer-links-bottom span {
    color: var(--text-grau);
    opacity: 0.5;
}

/* ====================================
   MOBILE RESPONSIVE
   ==================================== */

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .car-svg {
        max-width: 500px;
    }
    
    .kontakt-section {
        padding: 4rem 5%;
    }
    
    .kontakt-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: left var(--transition-base);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid rgba(168, 20, 46, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .bg-element-1,
    .bg-element-2,
    .bg-element-3 {
        display: none;
    }
    
    .footer-links-bottom span {
        display: none;
    }
    
    .legal-page {
        padding: 100px 5% 60px;
    }
    
    .legal-section {
        padding: 20px;
    }
    
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .hero {
        padding: 6rem 5% 3rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .car-svg {
        max-width: 350px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .kontakt-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 3rem 5% 1.5rem;
    }
    
    .footer-links-bottom {
        gap: 15px;
    }
    
    .legal-back .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

/* ====================================
   ACCESSIBILITY - REDUCED MOTION
   ==================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .welcome-screen {
        display: none !important;
    }
    
    .navbar {
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .hero-content,
    .hero-visual {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ====================================
   PRINT STYLES
   ==================================== */

@media print {
    .welcome-screen,
    .navbar,
    .hamburger,
    .btn-primary,
    .btn-secondary,
    .cookie-banner {
        display: none !important;
    }
    
    .hero {
        padding: 2rem 0;
        background: white;
        color: black;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-description {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
}
/* ====================================
   ÜBER UNS SECTION
   ==================================== */

.about-section {
    position: relative;
    padding: 8rem 5% 6rem;
    background: linear-gradient(180deg, var(--schwarz) 0%, var(--anthrazit) 50%, var(--schwarz) 100%);
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 6rem;
}

.about-subtitle {
    display: inline-block;
    color: var(--porsche-rot);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.about-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-weiss) 0%, var(--text-grau) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.about-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--porsche-rot), transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.4s backwards;
}

/* Story Grid */
.about-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.story-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 20, 46, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.story-card:nth-child(1) { animation-delay: 0.1s; }
.story-card:nth-child(2) { animation-delay: 0.2s; }
.story-card:nth-child(3) { animation-delay: 0.3s; }

.story-card:hover {
    transform: translateY(-10px);
    border-color: var(--porsche-rot);
    box-shadow: 0 10px 40px rgba(168, 20, 46, 0.3);
}

.story-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(168, 20, 46, 0.2), rgba(213, 0, 28, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-base);
}

.story-card:hover .story-icon {
    transform: rotate(360deg) scale(1.1);
}

.story-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--porsche-rot);
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-weiss);
    font-weight: 700;
}

.story-card p {
    color: var(--text-grau);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Questions Section */
.about-questions {
    margin-bottom: 6rem;
    padding: 4rem;
    background: rgba(26, 26, 26, 0.3);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(168, 20, 46, 0.15);
}

.questions-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-weiss);
    font-weight: 700;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.question-item {
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.5);
    border-left: 3px solid var(--porsche-rot);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInRight 0.6s ease-out forwards;
}

.question-item:nth-child(1) { animation-delay: 0.1s; }
.question-item:nth-child(2) { animation-delay: 0.2s; }
.question-item:nth-child(3) { animation-delay: 0.3s; }
.question-item:nth-child(4) { animation-delay: 0.4s; }

.question-item:hover {
    background: rgba(168, 20, 46, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(168, 20, 46, 0.2);
}

.question-q {
    font-size: 1.1rem;
    color: var(--porsche-rot);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.question-a {
    color: var(--text-grau);
    line-height: 1.6;
    font-size: 1rem;
}

/* Process Section */
.about-process {
    margin-bottom: 6rem;
}

.process-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-weiss);
    font-weight: 700;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 20, 46, 0.2);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.6s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(7) { animation-delay: 0.7s; }

.process-step:hover {
    transform: scale(1.05);
    border-color: var(--porsche-rot);
    box-shadow: 0 10px 30px rgba(168, 20, 46, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-weiss);
    box-shadow: 0 5px 15px rgba(168, 20, 46, 0.4);
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--text-weiss);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-grau);
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-arrow {
    width: 40px;
    opacity: 0.5;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.process-arrow:nth-child(2) { animation-delay: 0.2s; }
.process-arrow:nth-child(4) { animation-delay: 0.4s; }
.process-arrow:nth-child(6) { animation-delay: 0.6s; }

.process-arrow svg {
    width: 100%;
    height: auto;
    stroke: var(--porsche-rot);
}

/* Why Us Section - Compact Version */
.about-why-compact {
    margin-bottom: 4rem;
}

.why-compact-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-weiss);
    font-weight: 700;
}

.why-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-compact-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 20, 46, 0.2);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.why-compact-item:hover {
    transform: translateY(-8px);
    border-color: var(--porsche-rot);
    box-shadow: 0 10px 30px rgba(168, 20, 46, 0.3);
}

.why-compact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(168, 20, 46, 0.2), rgba(213, 0, 28, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform var(--transition-base);
}

.why-compact-item:hover .why-compact-icon {
    transform: scale(1.1) rotate(360deg);
}

.why-compact-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--porsche-rot);
}

.why-compact-item h4 {
    font-size: 1.3rem;
    color: var(--text-weiss);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.why-compact-item p {
    color: var(--text-grau);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Sticky CTA Popup */
.sticky-cta-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    max-width: 380px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.sticky-cta-content {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--porsche-rot);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(168, 20, 46, 0.3);
    position: relative;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(168, 20, 46, 0.3);
    }
    50% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(168, 20, 46, 0.5);
    }
}

.sticky-cta-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 28px;
    height: 28px;
    background: rgba(168, 20, 46, 0.2);
    border: 1px solid rgba(168, 20, 46, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.sticky-cta-close:hover {
    background: var(--porsche-rot);
    transform: rotate(90deg);
}

.sticky-cta-close svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-weiss);
}

.sticky-cta-inner h4 {
    font-size: 1.3rem;
    color: var(--text-weiss);
    margin-bottom: 0.5rem;
    font-weight: 700;
    padding-right: 2rem;
}

.sticky-cta-inner p {
    color: var(--text-grau);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.sticky-cta-buttons {
    display: flex;
    gap: 0.8rem;
}

.sticky-btn-primary,
.sticky-btn-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.sticky-btn-primary {
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    color: var(--text-weiss);
    box-shadow: 0 4px 15px rgba(168, 20, 46, 0.4);
}

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 20, 46, 0.6);
}

.sticky-btn-secondary {
    background: rgba(168, 20, 46, 0.1);
    color: var(--text-weiss);
    border: 1px solid rgba(168, 20, 46, 0.3);
}

.sticky-btn-secondary:hover {
    background: rgba(168, 20, 46, 0.2);
    border-color: var(--porsche-rot);
}

.sticky-btn-primary svg,
.sticky-btn-secondary svg {
    width: 16px;
    height: 16px;
}

/* Responsive Sticky CTA */
@media (max-width: 640px) {
    .sticky-cta-popup {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .sticky-cta-buttons {
        flex-direction: column;
    }
    
    .sticky-btn-primary,
    .sticky-btn-secondary {
        width: 100%;
    }
}

/* Background Elements */
.about-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    pointer-events: none;
}

.about-bg-1 {
    width: 500px;
    height: 500px;
    background: var(--porsche-rot);
    top: 10%;
    left: -10%;
    animation: float 20s ease-in-out infinite;
}

.about-bg-2 {
    width: 400px;
    height: 400px;
    background: var(--weinrot);
    top: 50%;
    right: -5%;
    animation: float 25s ease-in-out infinite reverse;
}

.about-bg-3 {
    width: 300px;
    height: 300px;
    background: var(--porsche-rot);
    bottom: 10%;
    left: 50%;
    animation: float 30s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.5;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(168, 20, 46, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(168, 20, 46, 0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .about-section {
        padding: 5rem 5% 4rem;
    }
    
    .about-header {
        margin-bottom: 4rem;
    }
    
    .about-story-grid,
    .questions-grid,
    .why-compact-grid {
        gap: 1.5rem;
    }
    
    .about-questions {
        padding: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        width: 30px;
        margin: 0.5rem 0;
    }
    
    .why-compact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 640px) {
    .story-card,
    .question-item,
    .why-compact-item {
        padding: 1.5rem;
    }
    
    .process-step {
        min-width: 100%;
    }
    
    .about-bg-element {
        display: none;
    }
    
    .why-compact-grid {
        grid-template-columns: 1fr;
    }
}


/* ====================================
   AOS (ANIMATE ON SCROLL) STYLES
   ==================================== */

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="fade"] {
    opacity: 0.3;
}

[data-aos="fade"].aos-animate {
    opacity: 0.5;
}

/* Delay variations */
[data-aos][data-aos-delay="50"] {
    transition-delay: 50ms;
}

[data-aos][data-aos-delay="100"] {
    transition-delay: 100ms;
}

[data-aos][data-aos-delay="150"] {
    transition-delay: 150ms;
}

[data-aos][data-aos-delay="200"] {
    transition-delay: 200ms;
}
/* ====================================
   COOKIE BANNER
   ==================================== */

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 5%;
    z-index: 9998;
    border-top: 2px solid var(--porsche-rot);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-content h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    color: var(--text-weiss);
    font-weight: 700;
    margin: 0;
}

.cookie-icon {
    font-size: 1.8rem;
    animation: cookieRotate 2s linear infinite;
}

@keyframes cookieRotate {
    0%, 90% {
        transform: rotate(0deg);
    }
    95% {
        transform: rotate(20deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.cookie-content p {
    color: var(--text-grau);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.cookie-content p a {
    color: var(--porsche-rot);
    text-decoration: underline;
    transition: color var(--transition-base);
}

.cookie-content p a:hover {
    color: var(--weinrot);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    color: var(--text-weiss);
    box-shadow: 0 4px 15px rgba(168, 20, 46, 0.4);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 20, 46, 0.6);
}

.cookie-decline {
    background: rgba(168, 20, 46, 0.1);
    color: var(--text-weiss);
    border: 2px solid rgba(168, 20, 46, 0.3);
}

.cookie-decline:hover {
    background: rgba(168, 20, 46, 0.2);
    border-color: var(--porsche-rot);
}

.cookie-settings {
    background: transparent;
    color: var(--text-grau);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color var(--transition-base);
}

.cookie-settings:hover {
    color: var(--porsche-rot);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem 1rem;
    }
    
    .cookie-content h3 {
        font-size: 1.2rem;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* ====================================
   ANGEBOT SECTION (OFFER SECTION)
   ==================================== */

.angebot-section {
    padding: 8rem 5% 6rem;
    background: linear-gradient(180deg, var(--anthrazit) 0%, var(--schwarz) 100%);
    position: relative;
    overflow: hidden;
}

.angebot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(168, 20, 46, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(213, 0, 28, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.angebot-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.angebot-header {
    text-align: center;
    margin-bottom: 4rem;
}

.angebot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    color: var(--text-weiss);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(168, 20, 46, 0.4);
}

.angebot-badge svg {
    width: 18px;
    height: 18px;
}

.angebot-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-weiss) 0%, var(--text-grau) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.angebot-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-grau);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.angebot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

.angebot-benefits {
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid rgba(168, 20, 46, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.angebot-benefits h3 {
    font-size: 1.8rem;
    color: var(--text-weiss);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.angebot-benefits h3 svg {
    width: 28px;
    height: 28px;
    color: var(--porsche-rot);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(168, 20, 46, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--porsche-rot);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    background: rgba(168, 20, 46, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--porsche-rot);
}

.benefit-text h4 {
    color: var(--text-weiss);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.benefit-text p {
    color: var(--text-grau);
    font-size: 0.95rem;
    line-height: 1.5;
}

.angebot-guarantee {
    background: linear-gradient(135deg, rgba(168, 20, 46, 0.15), rgba(213, 0, 28, 0.1));
    border: 2px solid var(--porsche-rot);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(168, 20, 46, 0.3);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.angebot-guarantee::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 20, 46, 0.1) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.guarantee-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--porsche-rot);
    color: var(--text-weiss);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(168, 20, 46, 0.5);
}

.guarantee-badge svg {
    width: 20px;
    height: 20px;
}

.guarantee-content h3 {
    font-size: 1.8rem;
    color: var(--text-weiss);
    margin-bottom: 1rem;
    font-weight: 900;
}

.guarantee-content p {
    color: var(--text-grau);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.guarantee-point {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-weiss);
    font-weight: 600;
}

.guarantee-point svg {
    width: 20px;
    height: 20px;
    color: var(--porsche-rot);
    flex-shrink: 0;
}

.guarantee-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--text-weiss), #e0e0e0);
    color: var(--schwarz);
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.guarantee-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.guarantee-cta svg {
    width: 20px;
    height: 20px;
}

.angebot-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.4);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(168, 20, 46, 0.2);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(168, 20, 46, 0.05);
    transition: all var(--transition-base);
}

.stat-item:hover {
    background: rgba(168, 20, 46, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-grau);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.angebot-urgency {
    text-align: center;
    background: rgba(168, 20, 46, 0.1);
    border: 2px dashed var(--porsche-rot);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 3rem;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--porsche-rot);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.urgency-timer svg {
    width: 24px;
    height: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.urgency-content h4 {
    font-size: 1.6rem;
    color: var(--text-weiss);
    margin-bottom: 1rem;
    font-weight: 800;
}

.urgency-content p {
    color: var(--text-grau);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.urgency-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--porsche-rot), var(--weinrot));
    color: var(--text-weiss);
    padding: 1.2rem 3rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    box-shadow: 0 6px 20px rgba(168, 20, 46, 0.5);
    text-decoration: none;
    animation: pulseButton 3s ease-in-out infinite;
}

.urgency-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 20, 46, 0.7);
    animation: none;
}

.urgency-cta svg {
    width: 20px;
    height: 20px;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(168, 20, 46, 0.5);
    }
    50% {
        box-shadow: 0 8px 30px rgba(168, 20, 46, 0.7);
    }
}

/* Angebot Section Responsive */
@media (max-width: 968px) {
    .angebot-section {
        padding: 5rem 5% 4rem;
    }
    
    .angebot-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .angebot-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .angebot-benefits,
    .angebot-guarantee {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .angebot-benefits,
    .angebot-guarantee,
    .angebot-urgency {
        padding: 1.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .guarantee-cta,
    .urgency-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

/* ====================================
   SECTION BACKGROUND VARIATIONS
   ==================================== */

/* Über Uns Section - Diagonal Pattern */
.about-section {
    background: linear-gradient(135deg, var(--schwarz) 0%, var(--anthrazit) 50%, var(--schwarz) 100%);
    position: relative;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(168, 20, 46, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(168, 20, 46, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(168, 20, 46, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(168, 20, 46, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.5;
    pointer-events: none;
}

/* Angebot Section - Mesh Gradient */
.angebot-section {
    background: 
        radial-gradient(at 0% 0%, rgba(168, 20, 46, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(213, 0, 28, 0.06) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(168, 20, 46, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(213, 0, 28, 0.06) 0px, transparent 50%),
        linear-gradient(180deg, var(--schwarz) 0%, #0f0f0f 50%, var(--schwarz) 100%);
    position: relative;
}

.angebot-section::before {
    background: none;
}

.angebot-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(168, 20, 46, 0.02) 0px, transparent 2px, transparent 4px),
        repeating-linear-gradient(90deg, rgba(168, 20, 46, 0.02) 0px, transparent 2px, transparent 4px);
    pointer-events: none;
}

/* Alternative: Wenn du lieber Dots möchtest */
/*
.angebot-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(168, 20, 46, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}
*/

/* Stats/Features Section - Clean with subtle gradient */
.features-section {
    background: linear-gradient(to bottom, #0a0a0a 0%, #121212 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 20, 46, 0.5), transparent);
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 20, 46, 0.5), transparent);
}