:root {
    --color-primary: #1f3b57;
    --color-primary-light: #34597f;
    --color-accent: #d9a441;
    --color-bg: #ffffff;
    --color-bg-light: #f5f7fa;
    --color-text: #1e1e1e;
    --color-muted: #6c6c6c;
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
    --radius-card: 16px;
    --transition-fast: 0.2s ease-in-out;
    --container-width: 1120px;
    --header-height: 72px;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Global */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

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

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

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* Header & Navigation */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.logo span {
    border: 2px solid var(--color-primary);
    padding: 4px 10px;
    border-radius: 999px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
}

.logo img {
    height: 55px;        /* Logo-Höhe nach Wunsch anpassen */
    width: auto;
    display: block;
}


.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 1.4rem;
}

/* Hero */

.hero {
    padding: 64px 0 48px;
    background: linear-gradient(135deg, #f0f4fa 0%, #ffffff 60%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.45);
}

.hero-text p {
    font-size: 1.05rem;
    color: #ffffff;
    max-width: 32rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.45);

}



.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-image-placeholder,
.property-image-placeholder,

.map-container {
    margin-top: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #1a1a1a;
}

.phone-icon {
    width: 20px;
    height: 20px;
    color: #D4AF37; /* Gold */
}

.map-container iframe {
    width: 100%;
    height: 280px;   /* Sie können das nach Wunsch vergrössern, z.B. 320px oder 350px */
    display: block;
}


.team-photo {
    width: 100%;
    max-width: 180px;   /* Breite begrenzen */
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto;     /* zentriert */
}


.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* passt perfekt ohne Verzerrung */
    display: block;
}



.hero-image-placeholder {
    min-height: 260px;
    box-shadow: var(--shadow-soft);
}

/* ================================
   PAGE HERO MIT HINTERGRUNDBILD
================================ */

.hero-image {
    position: relative;
    padding: 160px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

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

.hero-image h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.hero-image p {
    font-size: 1.1rem;
    opacity: 0.9;
    
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(31,59,87,0.75),
        rgba(31,59,87,0.65)
    );
    z-index: 1;
}

.hero-dienstleistungen {
    background-image: url("../images/slide-3.jpg");
}

.hero-ueberuns {
    background-image: url("../images/slide-3.jpg");
}

.hero-kontakt {
    background-image: url("../images/slide-3.jpg");
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

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

.btn-secondary {
    background: #ffffff;
    color: var(--color-primary);
    border: 1px solid #d4dbe8;
}

.btn-secondary:hover {
    background: #f2f4f9;
}

.btn-link {
    border: none;
    background: none;
    padding: 0;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
}

.link-more {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Sections & Layout */

.section {
    padding: 56px 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.bg-light {
    background-color: var(--color-bg-light);
}

.grid-4,
.grid-3 {
    display: grid;
    gap: 24px;
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

/* Cards */

.card {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 20px 20px 22px;
    box-shadow: var(--shadow-soft);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-muted);
}

/* USP / Checklists */

.checklist {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
}

.checklist li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    font-size: 0.96rem;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* Property Cards */

.property-card .property-content h2,
.property-card .property-content h3 {
    margin: 0 0 6px;
}

.property-meta {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* Testimonials */

.testimonials .quote {
    font-style: italic;
    font-size: 0.95rem;
}

.quote-author {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 8px;
}

/* CTA */

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #314b6a 60%);
    color: #ffffff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Page Hero */

.page-hero {
    padding: 64px 0 24px;
}

.page-hero:not(.hero-image) {
    background: linear-gradient(135deg, #f0f4fa 0%, #ffffff 60%);
}

.small-hero {
    padding: 56px 0 24px;
}

.page-hero h1 {
    margin: 0 0 10px;
    color: #ffffff;
}

.page-hero p {
    margin: 0;
    color: #e1e5f0;
}

/* Dienstleistungen Detail */

.service-detail article {
    margin-bottom: 40px;
    max-width: 760px;
}

.service-detail h2 {
    margin-top: 0;
    color: var(--color-primary);
}

.service-image-area {
    position: relative;
    height: 300px; /* nach Bedarf */
}

.service-image-bg {
    width: 100%;
    height: 100%;
    background: #e8eff6;   /* Ihre Wunschfarbe */
    border-radius: 0 0 40px 40px;
}

.service-section {
    padding: 100px 0;
}

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

.service-two-col.reverse {
    direction: rtl;
}

.service-two-col.reverse > * {
    direction: ltr;
}

.service-image {
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

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

.service-text h2 {
    margin-top: 0;
    font-size: 2rem;
}

.service-text p {
    margin-bottom: 20px;
    max-width: 520px;
}



/* Immobilien Filter */

.property-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.filter-group label {
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--color-muted);
}

.filter-group select,
.filter-group input {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #d4dbe8;
    font-size: 0.9rem;
}

.hint {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 16px;
}

/* Über uns Layout */

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    gap: 32px;
}

.about-text h2 {
    margin-top: 0;
}

.about-side .card + .card {
    margin-top: 16px;
}

/* Team */

/* Teamkarte */
.team-member {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;   /* Textbereich bleibt weiß */
    box-shadow: var(--shadow-soft);
}

/* FOTO-BEREICH mit grauem Hintergrund */
.team-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #ffffff22;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    position: relative;
    height: 90vh;
    min-height: 520px;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.45)
    );
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-bg-video {
        display: none;
    }

    .hero-video {
        background: url("../images/hero-fallback.jpg") center / cover no-repeat;
    }
}

/* ================================
   ONLINE IMMOBILIENBEWERTUNG
================================ */

.valuation-section {
    background: linear-gradient(
        135deg,
        rgba(31, 59, 87, 0.95),
        rgba(31, 59, 87, 0.85)
    );
    color: #ffffff;
}

.valuation-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.valuation-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.valuation-text h2 {
    font-size: 2.4rem;
    margin: 0 0 12px;
}

.valuation-subtitle {
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.9);
}

.valuation-cta {
    font-size: 1rem;
    padding: 12px 26px;
}

/* Schritte */

.valuation-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.valuation-step {
    display: flex;
    gap: 16px;
    background: rgba(255,255,255,0.95);
    color: var(--color-text);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: var(--shadow-soft);
}

.step-icon {
    font-size: 1.4rem;
    background: var(--color-accent);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.valuation-step h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.valuation-step p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-muted);
}

/* Responsive */

@media (max-width: 992px) {
    .valuation-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}


/* TEXT-BEREICH wieder weiß */
.team-info {
    background: #ffffff;   /* weißer Hintergrund */
    padding: 16px 18px 20px;
}

.team-info h3 {
    margin: 0 0 6px;
    color: var(--color-primary);
}

.team-role,
.team-text {
    margin: 0 0 8px;
    color: var(--color-muted);
}



/* Kontakt */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.contact-info .card p {
    color: var(--color-text);
}

.map-placeholder {
    margin-top: 16px;
    min-height: 200px;
}

.contact-form-wrapper h2 {
    margin-top: 0;
}

.contact-form .form-group {
    margin-bottom: 14px;
}

.contact-form label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid #d4dbe8;
    font-size: 0.95rem;
    font-family: var(--font-sans);
}

.contact-form textarea {
    border-radius: 14px;
    resize: vertical;
}

.form-group-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form input[type="checkbox"] {
    width: auto;
}

/* Footer */

.site-footer {
    background: #0f1724;
    color: #e1e5f0;
    padding: 24px 0;
    margin-top: 32px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}

.site-footer a {
    color: #e1e5f0;
}

.footer-meta {
    text-align: right;
}

/* Responsive */

@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

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

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

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-layout,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-meta {
        text-align: left;
    }
}

/* ================================WIDE SCREENS (ab 1440px)
================================ */



    /* ================================
   HERO OPTIMIERUNG FÜR WIDE SCREENS
================================ */

@media (min-width: 1440px) {

    .hero-inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .hero-text {
        max-width: 820px;
        text-align: left;
    }
}


@media (min-width: 1440px) {

    .hero-text h1 {
        font-size: 3.2rem;
        line-height: 1.15;
    }

    .hero-text p {
        font-size: 1.25rem;
    }
}


@media (min-width: 1800px) {

    .hero-text h1 {
        font-size: 3.6rem;
    }

    .hero-text p {
        font-size: 1.35rem;
    }
}


@media (min-width: 1440px) {

    :root {
        --header-height: 88px;
    }

    .logo img {
        height: 68px;
    }

    .main-nav a {
        font-size: 1.05rem;
    }

    .main-nav ul {
        gap: 32px;
    }
}

/* ================================ULTRA-WIDE (ab 1800px)
================================ */

@media (min-width: 1800px) {

    :root {
        --header-height: 96px;
    }

    .logo img {
        height: 76px;
    }

    .main-nav a {
        font-size: 1.1rem;
    }

    .container {
        max-width: 1320px;
    }
}


@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: var(--header-height);
        right: 0;
        left: 0;
        background: #ffffff;
        display: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 8px 16px 12px;
        gap: 4px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .grid-4,
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 40px;
    }

    .section {
        padding: 40px 0;
    }

    .site-footer {
        padding: 20px 0;
    }




}

/* ================================
VALUATION SLIDESHOW BACKGROUND
================================ */

.valuation-slideshow {
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.valuation-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

.valuation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(31, 59, 87, 0.85),
        rgba(31, 59, 87, 0.75)
    );
    z-index: 2;
}

.valuation-inner {
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .valuation-bg {
        transition: none;
    }
}

/* ================================
/* ================================
   BEAUTIFUL CONTACT CTA
================================ */

.contact-cta {
    background: #f5f7fa;
}

.contact-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: center;
}

/* Bild */

.contact-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Inhalt */

.contact-cta-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: 10px;
}

.contact-cta-content h2 {
    font-size: 2.1rem;
    margin: 0 0 12px;
    color: var(--color-primary);
}

.contact-cta-content p {
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 520px;
    margin-bottom: 28px;
}

/* Aktionen */

.contact-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Call Button */

.contact-cta-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 1.05rem;
    box-shadow: var(--shadow-soft);
}

.contact-cta-call:hover {
    background: var(--color-primary-light);
    text-decoration: none;
}

/* Mail Form */

.contact-cta-mail {
    display: flex;
    gap: 10px;
}

.contact-cta-mail input {
    flex: 1;
    padding: 14px 16px;
    border-radius: 999px;
    border: 1px solid #d4dbe8;
    font-size: 0.95rem;
}

.contact-cta-mail button {
    background: var(--color-accent);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 600;
    cursor: pointer;
}

.contact-cta-mail button:hover {
    opacity: 0.9;
}

/* Responsive */

@media (max-width: 992px) {
    .contact-cta-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .contact-cta-actions {
        align-items: stretch;
    }

    .contact-cta-mail {
        flex-direction: column;
    }
}

/* ================================
PROPERTY IMAGES
================================ */

.property-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.property-image img {
    transition: transform 0.4s ease;
}

/* ================================
   TRUST NUMBERS
================================ */

.trust-numbers {
    background: var(--color-primary);
    color: #ffffff;
    padding: 70px 0;
}

.trust-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-item {
    position: relative;
}

.trust-number {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.trust-label {
    margin-top: 8px;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
}

/* feine Trennlinie auf Desktop */
.trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .trust-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-item:not(:last-child)::after {
        display: none;
    }
}

/* ================================
   PARTNER FIX & MITTIG
================================ */

.partner-section {
    background: #ffffff;
    text-align: center;
}

.partner-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-item img {
    max-height: 70px;
    max-width: 220px;
    object-fit: contain;
    opacity: 0.75;
}

.partner-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .review-card {
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    }
}


/* Logos */
.partner-track a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-track img {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.review-section {
    background: var(--color-bg-light);
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
}

.review-card::before {
    content: "“";
    font-size: 4rem;
    color: var(--color-accent);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.2;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    color: var(--color-primary);
}

/* ================================
   REVIEW SLIDER
================================ */

.review-slider {
    overflow: hidden;
    margin-top: 40px;
}

.review-track {
    display: flex;
    transition: transform 0.6s ease;
}

.review-card {
    min-width: 50%;
    padding: 30px;
    box-sizing: border-box;
}

/* Mobile: nur 1 sichtbar */
@media (max-width: 768px) {
    .review-card {
        min-width: 100%;
    }
}
