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

        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            --primary-color: #667eea;
            --secondary-color: #764ba2;
            --accent-color: #ff6b6b;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f8f9ff;
            --white: #ffffff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo-img {
            height: 80px;
            width: 100px;
            transition: transform 0.3s ease;
        }

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

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            padding: 10px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            transition: 0.3s ease;
            border-radius: 3px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            background: var(--primary-gradient);
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,100 1000,0"/></svg>');
            background-size: cover;
        }

        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-20px) translateX(10px); }
            50% { transform: translateY(-40px) translateX(-10px); }
            75% { transform: translateY(-20px) translateX(5px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            opacity: 0.95;
            font-weight: 500;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-top: 1rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: var(--secondary-gradient);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
            font-size: 1.1rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
        }

        /* Trust Badges */
        .trust-section {
            background: white;
            padding: 60px 0;
            text-align: center;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

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

        .trust-badge-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .trust-badge-number {
            font-size: 2rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .trust-badge-text {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Sections */
        .section {
            padding: 100px 0;
            background: white;
        }

        .section:nth-child(even) {
            background: var(--bg-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

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

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .profile-image-container {
            position: relative;
        }

        .profile-image {
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 50%;
            display: block;
            margin: 0 auto;
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
            border: 5px solid white;
            transition: transform 0.3s ease;
        }

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

        .profile-image-fallback {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
            margin: 0 auto;
        }

        .about-text h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.6rem;
        }

        .about-text h4 {
            color: var(--text-dark);
            margin: 2rem 0 1rem;
            font-size: 1.3rem;
        }

        .about-features {
            list-style: none;
            padding: 0;
        }

        .about-features li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            font-size: 1.05rem;
        }

        .about-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.3rem;
        }

        .about-quote {
            font-style: italic;
            color: var(--primary-color);
            font-weight: 500;
            font-size: 1.2rem;
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(102, 126, 234, 0.1);
            border-left: 4px solid var(--primary-color);
            border-radius: 8px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 3.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotateY(360deg);
        }

        .service-card h3 {
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .service-card ul {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .service-card li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-light);
        }

        .service-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

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

        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 300px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover {
            transform: scale(1.05);
        }

        .portfolio-placeholder {
            text-align: center;
            padding: 2rem;
        }

        /* Process Section */
        .process-timeline {
            max-width: 800px;
            margin: 3rem auto;
        }

        .process-step {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .process-step::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 60px;
            bottom: -30px;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary-color), transparent);
        }

        .process-step:last-child::before {
            display: none;
        }

        .process-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .process-content h3 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }

        .process-content p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .faq-section {
            padding: 60px 20px;
            background: #f8f9fa;
            text-align: center;
        }

        .faq-section h2 {
            margin-bottom: 20px;
            font-size: 2.2rem;
        }

        .faq-intro {
            max-width: 700px;
            margin: 0 auto 40px;
            color: #555;
            font-size: 1.1rem;
        }

        .accordion {
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
        }

        .accordion-item {
            margin-bottom: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            background: white;
        }

        .accordion-header {
            width: 100%;
            padding: 18px 24px;
            background: #fff;
            border: none;
            text-align: left;
            font-size: 1.15rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }

        .accordion-header:hover {
            background: #f0f4ff;
        }

        .accordion-icon {
            font-size: 1.6rem;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .accordion-header.active .accordion-icon {
            transform: rotate(45deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            padding: 0 24px;
            background: #fafafa;
            transition: max-height 0.35s ease-out, padding 0.35s ease-out;
        }

        .accordion-content p {
            margin: 20px 0;
            line-height: 1.6;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px; /* ausreichend hoch – bei Bedarf erhöhen */
            padding: 20px 24px;
        }

        .faq-cta {
            margin-top: 40px;
            font-size: 1.1rem;
        }

        /* Contact Form */
        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

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

        button[type="submit"] {
            background: var(--primary-gradient);
            color: white;
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 4rem 0 1.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-size: 1.3rem;
        }

        .footer-section p,
        .footer-section ul {
            color: #bdc3c7;
            line-height: 1.8;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-flex;
            width: 45px;
            height: 45px;
            background: var(--primary-gradient);
            color: white;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #95a5a6;
        }

        .footer-bottom a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--primary-color);
        }

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

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 280px;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.3rem;
            }

            .hero {
                padding: 140px 0 80px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .section {
                padding: 60px 0;
            }

            .section h2 {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .profile-image {
                width: 200px;
                height: 200px;
            }

            .about-features li {
                text-align: left;
            }

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

            .contact-form {
                padding: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
                font-size: 1.8rem;
            }

            .trust-badges {
                gap: 2rem;
            }

            .process-step {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .process-step::before {
                display: none;
            }
        }

        /*  ===========================================================
   Markenmoment – Kontaktblock
   Stand: 02.08.2026
   Einbau: ans ENDE deiner stylesheet.css anhängen.
   Da es zuletzt steht, überschreibt es die alten Regeln.
   =========================================================== */
 
/* --- Farbvariablen: einmal hier ändern, wirkt überall --- */
:root {
  --mm-accent: #667eea;
  --mm-accent-2: #764ba2;
  --mm-ink: #1f2430;
  --mm-muted: #6b7280;
  --mm-surface: #ffffff;
  --mm-border: #e8e8f0;
}
 
/* --- Der eigentliche Fix ---------------------------------
   Ursache des Problems: .contact-method war nicht "flex".
   Das <i> ist inline, das <div> daneben ist ein Block-Element
   und erzwingt dadurch einen Zeilenumbruch. Deshalb steht das
   Icon allein über dem Text.
   ---------------------------------------------------------- */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
 
.contact-method {
  display: flex;              /* <- das behebt den Umbruch */
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--mm-surface);
  border: 1px solid var(--mm-border);
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
 
.contact-method:hover {
  transform: translateY(-2px);
  border-color: var(--mm-accent);
  box-shadow: 0 6px 20px rgba(102, 126, 234, .15);
}
 
/* Icon als runder Badge statt nacktem Glyph */
.contact-method > i {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, var(--mm-accent), var(--mm-accent-2));
}
 
/* Label über Wert statt nebeneinander */
.contact-method > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;               /* verhindert Überlaufen langer Adressen */
}
 
.contact-method strong {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mm-muted);
}
 
.contact-method a,
.contact-method span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mm-ink);
  text-decoration: none;
  overflow-wrap: anywhere;
}
 
.contact-method a:hover {
  color: var(--mm-accent);
  text-decoration: underline;
}
 
/* --- Zwei Spalten: Infos links, Formular rechts --- */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}
 
@media (max-width: 900px) {
  .contact-content { grid-template-columns: 1fr; gap: 32px; }
}
 
@media (max-width: 480px) {
  .contact-method { padding: 12px 14px; gap: 12px; }
  .contact-method > i { flex-basis: 38px; width: 38px; height: 38px; font-size: .95rem; }
}
 
/* --- Barrierefreiheit: Animation abschalten, wenn gewünscht --- */
@media (prefers-reduced-motion: reduce) {
  .contact-method { transition: none; }
  .contact-method:hover { transform: none; }
}