/* ========================================
   Magnos Turbosystems - Landingpage CSS
   Mobile-First | Clean | Automotive
   ======================================== */

/* CSS Variables */
:root {
    --primary: #1a1a1a;
    --primary-light: #2d2d2d;
    --accent: #c41e3a;
    --accent-hover: #a01830;
    --accent-light: #e8344f;
    --background: #ffffff;
    --background-alt: #f5f5f5;
    --background-dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --text-inverse: #ffffff;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);

    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Courier New', monospace;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-sm);
}

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

.section-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.text-center .section-intro {
    margin-left: auto;
    margin-right: auto;
}

.problem-content .section-intro {
    color: var(--text);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

/* Container & Grid */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

@media (min-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1100px;
        padding: 0 var(--space-xl);
    }
}

.grid {
    display: grid;
    gap: var(--space-lg);
    align-items: stretch;
}

.grid > * {
    height: 100%;
    box-sizing: border-box;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Section */
.section {
    padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-xxl) 0;
    }
}

.section-dark {
    background: var(--background-dark);
    color: var(--text-inverse);
}

.section-dark h2,
.section-dark h3 {
    color: var(--text-inverse);
}

.section-dark .section-intro {
    color: rgba(255, 255, 255, 0.7);
}

.section-alt {
    background: var(--background-alt);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-inverse);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--text-inverse);
}

.btn-secondary {
    background: transparent;
    color: var(--text-inverse);
    border-color: var(--text-inverse);
}

.btn-secondary:hover {
    background: var(--text-inverse);
    color: var(--primary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary);
    color: var(--text-inverse);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    transition: transform var(--transition);
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-contact-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-inverse);
    text-decoration: none;
    transition: color var(--transition);
}

.top-contact-link:hover {
    color: var(--accent-light);
}

.top-contact-link svg {
    flex-shrink: 0;
}

.whatsapp-link {
    color: #25D366;
}

.whatsapp-link:hover {
    color: #128C7E;
}

/* Hide email text on mobile, show WhatsApp */
@media (max-width: 600px) {
    .email-text {
        display: none;
    }
    .top-bar-contact {
        gap: 0.75rem;
    }
}

@media (max-width: 400px) {
    .whatsapp-text {
        display: none;
    }
}

/* Header */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
    .header-inner {
        padding: 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
}

.footer-logo {
    height: 60px;
}

.nav {
    display: none;
    align-items: center;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 106px; /* 36px top-bar + 70px header */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(26, 26, 26, 0.7) 50%,
        rgba(26, 26, 26, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-xl) 0;
    color: var(--text-inverse);
}

.hero h1 {
    color: var(--text-inverse);
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: var(--space-lg);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.stat {
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

.stat-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
}

.hero-trust-badges .trust-badge img {
    height: 50px;
    width: auto;
}

.trustpilot-link-hero {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    text-decoration: none;
}

.trustpilot-link-hero img {
    height: 22px !important;
}

.trustpilot-rating-hero {
    font-size: 0.875rem;
    font-weight: 600;
    color: #00b67a;
}

/* Problem / Solution */
.problem-solution {
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
    position: relative;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.problem-solution .grid-2 {
    align-items: stretch;
}

.problem-content {
    background: var(--background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.problem-content::before {
    content: '⚠';
    position: absolute;
    top: -20px;
    left: var(--space-xl);
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.problem-content h2 {
    color: var(--accent);
    margin-top: var(--space-sm);
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.symptom-list {
    margin-top: var(--space-md);
}

.symptom-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-xs);
    background: linear-gradient(90deg, rgba(196, 30, 58, 0.05) 0%, transparent 100%);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
    transition: all var(--transition);
}

.symptom-list li:hover {
    background: linear-gradient(90deg, rgba(196, 30, 58, 0.1) 0%, transparent 100%);
    transform: translateX(5px);
}

.symptom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--text-inverse);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.solution-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.solution-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 3px solid rgba(196, 30, 58, 0.2);
    pointer-events: none;
}

.solution-image img {
    transition: transform 0.5s ease;
}

.solution-image:hover img {
    transform: scale(1.03);
}

.solution-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-inverse);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.solution-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.solution-box h3 {
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.solution-box h3::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    font-size: 1rem;
}

.solution-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.9);
}

.solution-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: 700;
}

/* USP Grid */
.usp-grid {
    margin-bottom: var(--space-xl);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 600px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .usp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.usp-card {
    background: linear-gradient(145deg, #2d2d2d 0%, #252525 100%);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 220px;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(196, 30, 58, 0.3);
}

.usp-card:hover::before {
    opacity: 1;
}

.usp-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    color: var(--accent);
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
    padding: 12px;
    transition: all var(--transition);
}

.usp-card:hover .usp-icon {
    background: rgba(196, 30, 58, 0.2);
    transform: scale(1.1);
}

.usp-icon svg {
    width: 100%;
    height: 100%;
}

.usp-card h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-xs);
    color: var(--text-inverse);
    word-wrap: break-word;
    hyphens: auto;
}

.usp-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
    line-height: 1.5;
}

.usp-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.usp-video {
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.usp-video::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(196, 30, 58, 0.3);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 1;
}

.usp-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* Trustpilot Section */
.trustpilot-section {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
}

/* Elfsight Reviews under FAQ */
.elfsight-reviews-faq {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
}

/* eBay Widget in Hero */
.ebay-widget {
    display: flex;
    align-items: center;
}

/* Process Steps */
.ablauf {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.ablauf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(196, 30, 58, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(196, 30, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Ablauf Header */
.ablauf-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.ablauf-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.ablauf-header h2 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    color: var(--primary);
    margin-bottom: var(--space-sm);
    position: relative;
    display: block;
}

.ablauf-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    line-height: 1.6;
}

.ablauf-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.ablauf-divider::before,
.ablauf-divider::after {
    content: '';
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--background);
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    animation: bounce 2s ease-in-out infinite;
}

.divider-icon svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.ablauf .text-center {
    text-align: center;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Verbindungslinie */
.process-steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: 60px;
    width: 3px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
    border-radius: 3px;
}

@media (min-width: 768px) {
    .process-steps::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.process-step {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    align-items: flex-start;
    position: relative;
}

@media (min-width: 768px) {
    .process-step {
        gap: var(--space-xl);
    }

    .process-step:nth-child(even) {
        flex-direction: row-reverse;
        text-align: right;
    }

    .process-step:nth-child(even) .step-content {
        align-items: flex-end;
    }
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-inverse);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
    position: relative;
    z-index: 2;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0.3;
}

@media (min-width: 768px) {
    .step-number {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--background);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.step-content:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

@media (min-width: 768px) {
    .step-content {
        width: calc(50% - 60px);
    }
}

.step-content h3 {
    margin-bottom: var(--space-xs);
    color: var(--primary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.step-content h3::before {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

@media (min-width: 768px) {
    .process-step:nth-child(even) .step-content h3 {
        flex-direction: row-reverse;
    }
}

.step-content p {
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.step-image {
    margin-top: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(196, 30, 58, 0.15);
    border-radius: var(--radius-md);
    pointer-events: none;
    z-index: 1;
}

.step-image img {
    transition: transform 0.5s ease;
}

.step-image:hover img {
    transform: scale(1.05);
}

/* Target Groups */
.target-grid {
    gap: var(--space-lg);
}

.target-card {
    background: var(--background);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.target-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.target-icon svg {
    width: 100%;
    height: 100%;
}

.target-list {
    flex-grow: 1;
}

.target-list li {
    position: relative;
    padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
}

.target-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Trust Section */
.trust-content {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .trust-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.trust-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.trust-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

@media (min-width: 992px) {
    .trust-facts {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-fact {
    text-align: center;
    padding: var(--space-sm);
    background: var(--background-alt);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
}

.fact-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.fact-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    align-items: center;
    justify-content: flex-start;
}

.trust-badge {
    display: inline-block;
    transition: transform var(--transition);
}

.trust-badge:hover {
    transform: scale(1.05);
}

.trust-badge img {
    height: 60px;
    width: auto;
}

.trustpilot-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: #f5f5f5;
    border-radius: var(--radius-md);
}

.trustpilot-link img {
    height: 24px;
}

.trustpilot-rating {
    font-size: 0.875rem;
    font-weight: 600;
    color: #00b67a;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* faq-column no longer needed - kept for backwards compatibility */
.faq-column {
    display: contents;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(196, 30, 58, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    min-height: 90px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    transition: all var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question span:first-child {
    flex: 1;
}

/* Animated Plus/Minus Icon */
.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--background-alt);
    transition: all var(--transition);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Open State */
.faq-item.open .faq-icon {
    background: var(--accent);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
    background: white;
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item.open .faq-question {
    color: var(--accent);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Contact Form */
.kontakt-content {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .kontakt-content {
        grid-template-columns: 1fr 1.5fr;
        align-items: start;
    }
}

.kontakt-text h2 {
    color: var(--text-inverse);
}

.kontakt-text p {
    opacity: 0.8;
}

.kontakt-info {
    margin-top: var(--space-lg);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.info-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.kontakt-form-wrapper {
    background: var(--background);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

/* Pipedrive Form Styling */
.pipedriveWebForms {
    min-height: 400px;
}

.pipedriveWebForms iframe {
    border-radius: var(--radius-md);
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

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

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
}

.form-checkbox a {
    text-decoration: underline;
}

.form-hint {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Google Maps Section */
.map-section {
    width: 100%;
    background: var(--background-dark);
}

.map-container {
    width: 100%;
    line-height: 0;
    position: relative;
}

.map-link {
    display: block;
    pointer-events: none;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    filter: grayscale(20%);
    transition: filter var(--transition);
    pointer-events: auto;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-overlay-link {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all var(--transition);
    z-index: 10;
}

.map-overlay-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

@media (min-width: 768px) {
    .map-container iframe {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .map-container iframe {
        height: 450px;
    }
}

/* Legal Pages (Impressum, Datenschutz, AGB) */
.legal-page {
    padding: calc(100px + var(--space-xl)) 0 var(--space-xxl);
    min-height: 100vh;
    background: var(--background);
}

.legal-page h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-xl);
    color: var(--primary);
    border-bottom: 3px solid var(--accent);
    padding-bottom: var(--space-md);
}

.legal-section {
    margin-bottom: var(--space-xl);
}

.legal-section h2 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--border);
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin: var(--space-md) 0 var(--space-sm);
}

.legal-section p {
    margin-bottom: var(--space-sm);
    line-height: 1.8;
    color: var(--text);
}

.legal-section a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--accent-hover);
}

.legal-list {
    margin: var(--space-sm) 0 var(--space-md) var(--space-lg);
    list-style: disc;
}

.legal-list li {
    margin-bottom: var(--space-xs);
    line-height: 1.7;
    color: var(--text);
}

.legal-back {
    margin-top: var(--space-xxl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

/* Footer */
.footer {
    background: #ffffff;
    color: var(--text);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

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

.footer-trust-badges {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    align-items: center;
}

.footer-trust-badges a {
    display: inline-block;
    transition: transform var(--transition);
}

.footer-trust-badges a:hover {
    transform: scale(1.05);
}

.footer-trust-badges img {
    height: 45px;
    width: auto;
}

.footer h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-link svg {
    flex-shrink: 0;
    color: var(--accent);
}

.footer-whatsapp {
    color: #25D366;
}

.footer-whatsapp:hover {
    color: #128C7E;
}

.footer-whatsapp svg {
    color: #25D366;
}

.footer-links ul li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--text);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Form Success/Error States */
.form-success {
    background: #d4edda;
    color: #155724;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
}

/* Print Styles */
@media print {
    .header,
    .hero-cta,
    .kontakt-form-wrapper {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--space-lg) 0;
    }

    .section {
        padding: var(--space-md) 0;
    }
}
