﻿ /* =========================================
           GRUNDLAGEN
        ========================================= */

        :root {
            --primary: #0b63ce;
            --primary-dark: #084b9b;
            --secondary: #0d1726;
            --text: #263241;
            --muted: #657184;
            --light: #f4f7fb;
            --white: #ffffff;
            --border: #e3e8ef;
            --success: #16845b;
            --shadow: 0 15px 45px rgba(15, 35, 60, 0.10);
            --radius: 18px;
            --container: 1180px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Poppins", Arial, sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.7;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: min(92%, var(--container));
            margin: 0 auto;
        }


        /* =========================================
           HEADER
        ========================================= */

        header {
            background: rgba(255,255,255,0.97);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .header-inner {
            min-height: 88px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .logo img {
            width: 210px;
            height: auto;
        }

        nav ul {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        nav a {
            font-size: 15px;
            font-weight: 600;
            color: var(--secondary);
            transition: color .2s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        .nav-button {
            background: var(--primary);
            color: #fff !important;
            padding: 12px 20px;
            border-radius: 10px;
        }

        .nav-button:hover {
            background: var(--primary-dark);
        }


        /* =========================================
           HERO
        ========================================= */

        .hero {
            background:
                linear-gradient(135deg, #f4f8fd 0%, #ffffff 60%);
            padding: 90px 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            gap: 65px;
            align-items: center;
        }

        .eyebrow {
            display: inline-block;
            color: var(--primary);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            margin-bottom: 14px;
        }

        h1 {
            font-size: clamp(38px, 5vw, 62px);
            line-height: 1.12;
            color: var(--secondary);
            margin-bottom: 25px;
            letter-spacing: -1.5px;
        }

        .hero p {
            font-size: 19px;
            color: var(--muted);
            max-width: 650px;
            margin-bottom: 32px;
        }

        .buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            min-height: 50px;
            padding: 13px 24px;
            border-radius: 10px;
            font-weight: 700;
            transition: all .2s ease;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #fff;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: #fff;
        }

        .hero-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .hero-image img {
            width: 100%;
            min-height: 390px;
            object-fit: cover;
        }


        /* =========================================
           SECTIONS
        ========================================= */

        section {
            padding: 90px 0;
        }

        .section-header {
            max-width: 720px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .section-header span {
            color: var(--primary);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        .section-header h2 {
            font-size: clamp(30px, 4vw, 43px);
            line-height: 1.2;
            color: var(--secondary);
            margin: 10px 0 15px;
        }

        .section-header p {
            color: var(--muted);
        }


        /* =========================================
           LEISTUNGEN
        ========================================= */

        .services {
            background: #fff;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(15, 35, 60, .05);
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .card:hover {
            transform: translateY(-7px);
            box-shadow: var(--shadow);
        }

        .card img {
            width: 100%;
            height: 210px;
            object-fit: cover;
        }

        .card-content {
            padding: 27px;
        }

        .card h3 {
            font-size: 21px;
            color: var(--secondary);
            margin-bottom: 9px;
        }

        .card p {
            color: var(--muted);
            font-size: 15px;
        }

        .card-link {
            display: inline-block;
            color: var(--primary);
            font-weight: 700;
            margin-top: 15px;
        }


        /* =========================================
           VORTEILE
        ========================================= */

        .benefits {
            background: var(--light);
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .benefit {
            background: #fff;
            border-radius: var(--radius);
            padding: 30px 24px;
            text-align: center;
            border: 1px solid var(--border);
        }

        .icon {
            width: 62px;
            height: 62px;
            margin: 0 auto 18px;
            border-radius: 50%;
            background: #eaf3ff;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 27px;
            font-weight: 700;
        }

        .benefit h3 {
            color: var(--secondary);
            margin-bottom: 8px;
        }

        .benefit p {
            color: var(--muted);
            font-size: 14px;
        }


        /* =========================================
           REGION / ÜBER UNS
        ========================================= */

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            color: var(--secondary);
            font-size: 38px;
            line-height: 1.2;
            margin: 10px 0 20px;
        }

        .about-text p {
            color: var(--muted);
            margin-bottom: 18px;
        }

        .check-list {
            list-style: none;
            margin: 25px 0;
        }

        .check-list li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--success);
            font-weight: 800;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }


        /* =========================================
           CTA
        ========================================= */

        .cta {
            padding: 70px 0;
        }

        .cta-box {
            background: linear-gradient(135deg, #0b63ce, #084b9b);
            color: #fff;
            padding: 55px;
            border-radius: 25px;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .cta-box h2 {
            font-size: 35px;
            margin-bottom: 12px;
        }

        .cta-box p {
            max-width: 700px;
            margin: 0 auto 28px;
            opacity: .92;
        }

        .cta-box .btn {
            background: #fff;
            color: var(--primary);
        }


        /* =========================================
           SUPPORT / KONTAKT
        ========================================= */

        .contact-section {
            background: var(--light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 45px;
            align-items: stretch;
        }

        .support-card,
        .map-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 5px 25px rgba(15,35,60,.05);
        }

        .support-card {
            padding: 40px;
        }

        .support-card h2 {
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 12px;
        }

        .support-card p {
            color: var(--muted);
            margin-bottom: 20px;
        }

        .contact-item {
            padding: 15px 0;
            border-bottom: 1px solid var(--border);
        }

        .contact-item:last-child {
            border-bottom: none;
        }

        .contact-item strong {
            display: block;
            color: var(--secondary);
            margin-bottom: 3px;
        }

        .contact-item a {
            color: var(--primary);
            font-weight: 600;
        }

        .teamviewer {
            margin-top: 25px;
        }

        .teamviewer img {
            width: 100%;
            max-height: 150px;
            object-fit: cover;
            border-radius: 12px;
        }

        .map-card iframe {
            width: 100%;
            height: 100%;
            min-height: 450px;
            border: 0;
        }


        /* =========================================
           FAQ
        ========================================= */

        .faq {
            max-width: 850px;
            margin: auto;
        }

        details {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 12px;
            padding: 18px 22px;
        }

        summary {
            cursor: pointer;
            font-weight: 700;
            color: var(--secondary);
        }

        details p {
            color: var(--muted);
            margin-top: 12px;
        }


        /* =========================================
           FOOTER
        ========================================= */

        footer {
            background: var(--secondary);
            color: #fff;
            padding: 45px 0 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 45px;
            padding-bottom: 35px;
        }

        footer h3 {
            margin-bottom: 12px;
        }

        footer p,
        footer a {
            color: #b8c3d1;
            font-size: 14px;
        }

        footer a:hover {
            color: #fff;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 7px;
        }

        .copyright {
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,.12);
            text-align: center;
            color: #9eabba;
            font-size: 13px;
        }


        /* =========================================
           RESPONSIVE
        ========================================= */

        @media (max-width: 950px) {

            .hero-grid,
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefit-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero {
                padding: 65px 0;
            }

            .hero-image img {
                min-height: 300px;
            }

            .about-grid {
                gap: 35px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 650px) {

            header {
                position: relative;
            }

            .header-inner {
                min-height: auto;
                padding: 18px 0;
                flex-direction: column;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px 18px;
            }

            .logo img {
                width: 190px;
            }

            .hero {
                padding: 50px 0;
            }

            h1 {
                font-size: 39px;
            }

            .hero p {
                font-size: 17px;
            }

            section {
                padding: 65px 0;
            }

            .cards,
            .benefit-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .cta-box {
                padding: 35px 22px;
            }

            .cta-box h2 {
                font-size: 28px;
            }

            .support-card {
                padding: 28px 22px;
            }

            .map-card iframe {
                min-height: 350px;
            }

            .buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }