:root {
    --primary-color: #1a202c;
    --secondary-color: #2d3748;
    --accent-color: #38a169;
    --accent-hover: #2f855a;
    --text-light: #f7fafc;
    --text-dark: #2d3748;
    --bg-light: #edf2f7;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

/* Header & Nav */
header {
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.nav-contact {
    display: flex;
    gap: 1.5rem;
}

.nav-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 32, 44, 0.8), rgba(26, 32, 44, 0.8)), url('images/hero-bg.jpg') center/cover no-repeat;
    color: var(--text-light);
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.trust-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.trust-pill i,
.trust-pill span.emoji {
    font-size: 1.1rem;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-light);
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.trust-item span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* SEO Intro */
.seo-intro {
    padding: 5rem 0;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-with-image {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.section-with-image.reverse {
    flex-direction: row-reverse;
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.section-text {
    flex: 1.2;
}

@media (max-width: 992px) {

    .section-with-image,
    .section-with-image.reverse {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Damages Grid */
.damages {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.damage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.damage-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Process Section */
.process {
    padding: 5rem 0;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

/* FAQ */
.faq {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.faq-item h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

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

.testimonials h2 {
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-card .stars {
    color: #f6e05e;
    font-size: 1.2rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--accent-color);
    margin-top: auto;
}

/* Swiper Customize */
.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.testimonials .swiper {
    padding-bottom: 3.5rem;
}

/* Final CTA & Form */
.final-cta {
    padding: 5rem 0;
    text-align: center;
    border-top: 5px solid var(--accent-color);
}

.ankauf-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.2);
}

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

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    background: #111;
    color: #888;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    margin: 0 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .nav-contact span {
        display: none;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}