/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a5c57;
    --primary-dark: #134845;
    --primary-light: #237a73;
    --accent: #e8612d;
    --accent-hover: #d4541f;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --star-color: #f59e0b;

    /* Farbtiefe: Tints und Verlaeufe statt Flaechenfarben */
    --primary-050: #f0f7f6;
    --primary-100: #d8ebe9;
    --primary-mint: #7fd6cb;
    --accent-050: #fef3ec;
    --accent-100: #fbdcc9;

    --grad-hero: linear-gradient(135deg, #1f6b65 0%, #164e4a 55%, #0f3b38 100%);
    --grad-accent: linear-gradient(135deg, #f0a46b 0%, #e8612d 100%);
    --grad-section: linear-gradient(180deg, #ffffff 0%, var(--primary-050) 100%);

    /* Weichere, farbig getoente Schatten statt neutralem Grau */
    --shadow-brand: 0 10px 30px -12px rgba(26, 92, 87, 0.28);
    --shadow-brand-lg: 0 24px 48px -20px rgba(26, 92, 87, 0.38);
    --shadow-accent: 0 10px 26px -12px rgba(232, 97, 45, 0.45);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 0;
    text-align: center;
}

/* ===== Navbar ===== */
.navbar {
    background: var(--primary);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-buttons .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    background: var(--grad-hero);
    color: var(--white);
    text-align: left;
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

/* Weiches Licht hinter der Illustration */
.hero::before {
    content: '';
    position: absolute;
    top: -18%;
    right: -8%;
    width: 780px;
    height: 780px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 214, 203, 0.20) 0%, transparent 62%);
    pointer-events: none;
    animation: aura 18s ease-in-out infinite alternate;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
}

.hero-visual {
    justify-self: center;
    width: 100%;
    max-width: 560px;
    animation: float-y 8s ease-in-out infinite;
}

.hero-visual img { width: 100%; height: auto; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-badge .stars {
    color: var(--star-color);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    max-width: 620px;
    margin: 0 0 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-desc {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 40px;
}

.service-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 40px;
}

.pill {
    padding: 14px 28px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    transition: all 0.2s;
    background: rgba(255,255,255,0.05);
}

.pill:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary-mint);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.55);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-bottom-strip {
    background: rgba(0,0,0,0.15);
    padding: 24px 0;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.strip-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.strip-item span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.section-subtitle a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ===== Vorteile ===== */
.vorteile {
    padding: 80px 0;
    background: var(--grad-section);
}

/* ===== Cards Grid ===== */
.cards-grid {
    display: grid;
    gap: 24px;
}

.three-col {
    grid-template-columns: repeat(3, 1fr);
}

/* ===== Feature Card (Vorteile) ===== */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-orange {
    background: #fef3e2;
    color: #e8612d;
}

.icon-yellow {
    background: #fef9e7;
    color: #f59e0b;
}

.icon-blue {
    background: #e8f4f8;
    color: #0ea5e9;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
    flex-grow: 1;
}

/* ===== Dienstleistungen ===== */
.dienstleistungen {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary-050) 0%, #ffffff 100%);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    background: var(--primary-050);
    color: var(--primary);
    border: 1px solid var(--primary-100);
}

.service-icon svg { width: 26px; height: 26px; }

/* Icon-Flaechen der Vorteile-Karten */
.card-icon svg { width: 26px; height: 26px; }

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.spezial-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 48px 0 24px;
}

/* ===== CTA Banner ===== */
.cta-banner {
    margin-top: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.cta-banner p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Bewertungen ===== */
.bewertungen {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-wrapper {
    position: relative;
    overflow: visible;
    margin-bottom: 40px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 0 16px;
    cursor: grab;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 300px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.testimonial-card .stars {
    color: var(--star-color);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 32px;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-300);
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    width: 48px;
}

/* ===== 3 Schritte ===== */
.schritte {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--primary-050) 100%);
}

.step-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.step-card p strong {
    color: var(--gray-800);
}

.schritte-checks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.schritte-checks span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.schritte-urgency {
    text-align: center;
    margin-top: 24px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.schritte-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    /* Hero klappt auf eine Spalte, Illustration wandert unter den Text */
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    .hero { text-align: center; }

    .hero h1 { margin-inline: auto; }

    .service-pills,
    .hero-ctas { justify-content: center; }

    .hero-visual {
        order: 2;
        max-width: 440px;
    }

    .three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Mobile Call Button ===== */
.mobile-call-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: var(--accent);
        color: var(--white);
        font-weight: 700;
        font-size: 1rem;
        padding: 16px;
        text-align: center;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    }

    .mobile-call-btn:hover {
        background: var(--accent-hover);
    }

    body {
        padding-bottom: 56px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-buttons {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .service-pills {
        gap: 8px;
    }

    .pill {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .three-col {
        grid-template-columns: 1fr;
    }

    .strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-card {
        min-width: 260px;
    }

    .cta-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .strip-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 48px 0 0;
    }

    .hero-ctas .btn-lg {
        width: 100%;
    }
}

/* ============================================
   BEWEGUNG
   Ausschliesslich transform/opacity — kein Reflow.
   ============================================ */

/* Lichtschein im Hero wandert langsam */
@keyframes aura {
    0%   { transform: translate3d(0, 0, 0) scale(1); opacity: .9; }
    100% { transform: translate3d(-3%, 4%, 0) scale(1.12); opacity: 1; }
}

/* Sanftes Schweben der Illustration */
@keyframes float-y {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%      { transform: translate3d(0, -12px, 0); }
}

/* Scroll-Reveal */
@keyframes rise-in {
    from { opacity: 0; transform: translate3d(0, 22px, 0); }
    to   { opacity: 1; transform: none; }
}

/* Pulsierender Ring an den Schrittnummern */
@keyframes ring-pulse {
    0%   { transform: scale(.85); opacity: .55; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Laufband der Vertrauensleiste */
@keyframes strip-in {
    from { opacity: 0; transform: translate3d(0, 12px, 0); }
    to   { opacity: 1; transform: none; }
}

/* --- Reveal-Klassen (loesen die per JS gesetzten Inline-Styles ab) --- */
.reveal-up {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
}

.reveal-up.is-visible {
    animation: rise-in .6s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: var(--reveal-delay, 0ms);
}

/* --- Vertrauensleiste gestaffelt einblenden --- */
.strip-item {
    animation: strip-in .6s cubic-bezier(.16, 1, .3, 1) both;
}
.strip-item:nth-child(1) { animation-delay: .15s; }
.strip-item:nth-child(2) { animation-delay: .28s; }
.strip-item:nth-child(3) { animation-delay: .41s; }
.strip-item:nth-child(4) { animation-delay: .54s; }

/* --- Karten: taktileres Anheben --- */
.card,
.service-card,
.step-card {
    transition: transform .32s cubic-bezier(.16, 1, .3, 1),
                box-shadow .32s cubic-bezier(.16, 1, .3, 1),
                border-color .32s ease;
}

.card:hover,
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-brand-lg);
}

/* Icons reagieren auf das Karten-Hover */
.card-icon,
.service-icon {
    transition: transform .32s cubic-bezier(.16, 1, .3, 1);
}

.card:hover .card-icon,
.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-4deg);
}

/* --- Schrittnummern mit Signalring --- */
.step-number {
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: ring-pulse 3.2s cubic-bezier(.16, 1, .3, 1) infinite;
    pointer-events: none;
}

.step-card:nth-child(2) .step-number::after { animation-delay: .5s; }
.step-card:nth-child(3) .step-number::after { animation-delay: 1s; }

/* --- Buttons: spuerbares Feedback --- */
.btn {
    transition: transform .2s cubic-bezier(.16, 1, .3, 1),
                box-shadow .2s ease,
                background-color .2s ease,
                border-color .2s ease,
                color .2s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary:hover { box-shadow: var(--shadow-accent); }

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero-visual,
    .step-number::after,
    .strip-item {
        animation: none !important;
    }
    .reveal-up { opacity: 1; transform: none; }
    .reveal-up.is-visible { animation: none; }
}

/* Telefon-Icon im mobilen Anruf-Button */
.mobile-call-btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

/* ===== A11y / SEO additions ===== */
.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 3000;
    background: var(--accent);
    color: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
}

.skip-link:focus {
    top: 12px;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.top-bar a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.top-bar a:hover {
    color: var(--primary-mint);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.footer-col ul li a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Standort */
.standort {
    padding: 80px 0;
    background: var(--primary-050);
}

.standort-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.standort-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.standort-card h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.standort-card p,
.standort-card address {
    font-style: normal;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.standort-card ul {
    list-style: disc;
    margin: 0 0 16px 20px;
}

.standort-card li {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.faq-item h3 {
    font-size: 1.05rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* 404 / About extras */
.page-hero {
    background: var(--grad-hero);
    color: var(--white);
    padding: 48px 0;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero p {
    opacity: 0.9;
    max-width: 640px;
}

.about-content {
    padding: 64px 0 80px;
}

.about-content h2 {
    color: var(--primary);
    font-size: 1.35rem;
    margin: 32px 0 12px;
}

.about-content p {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
    max-width: 720px;
}

.error-page {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    text-align: center;
}

.error-page h1 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 16px;
}

.error-page p {
    color: var(--gray-600);
    margin-bottom: 28px;
}

.testimonials-dots .dot {
    border: 0;
    cursor: pointer;
    padding: 0;
    appearance: none;
}

@media (max-width: 768px) {
    .nav-links.show,
    .nav-buttons.show {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 16px 24px;
        gap: 12px;
        z-index: 1001;
    }

    .nav-buttons.show {
        top: calc(100% + 200px);
    }

    .standort-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Content pages (services, locations) ===== */
.breadcrumb {
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.breadcrumb a {
    color: var(--gray-600);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb strong {
    color: var(--gray-800);
}

.prose {
    max-width: 760px;
    margin: 0 auto;
}

.prose h2 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 36px 0 12px;
}

.prose h3 {
    color: var(--gray-900);
    font-size: 1.08rem;
    font-weight: 700;
    margin: 24px 0 8px;
}

.prose p,
.prose li {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.8;
}

.prose p {
    margin-bottom: 14px;
}

.prose ul,
.prose ol {
    margin: 0 0 18px 1.2rem;
    list-style: disc;
}

.prose a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 8px 0 24px;
}

.content-section {
    padding: 56px 0 80px;
    background: var(--white);
}

.content-hero {
    background: var(--grad-hero);
    color: var(--white);
    padding: 48px 0 56px;
}

.content-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 800;
    margin: 0 0 14px;
    max-width: 820px;
}

.content-hero p {
    opacity: 0.92;
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.content-hero .hero-ctas {
    margin: 28px 0 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.related-card {
    display: block;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 18px 20px;
    background: var(--white);
    color: var(--gray-800);
    font-weight: 700;
    transition: border-color 0.2s, transform 0.2s;
}

.related-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    color: var(--primary);
}

.related-card span {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 4px;
}

.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 8px;
}

.area-chips a {
    background: var(--primary-050);
    border: 1px solid var(--primary-100);
    color: var(--primary);
    border-radius: var(--radius-full);
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
}

.area-chips a:hover {
    background: var(--primary);
    color: var(--white);
}

.content-cta {
    margin-top: 40px;
    background: var(--primary-050);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

.content-cta p {
    margin-bottom: 16px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.inline-figure {
    margin: 8px 0 28px;
}

.inline-figure figcaption {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 8px;
}

.service-card a.stretched {
    font-weight: 700;
}

@media (max-width: 768px) {
    .content-hero .hero-ctas {
        justify-content: flex-start;
    }
}
