<style>  
  /* --- 0. Variablen & Basis-Reset --- */
:root {
    --magenta: #c53873;
    --soft-green: #90c7b6;
    --light-bg: #ffffff;
    --wave-color: #f2f8f6;
}

/* --- Ultimativer IE & Schrift-Fix --- */
body, p, li, span, a, div {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-weight: 400 !important; /* Erzwingt normales Gewicht */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Ausnahmen für Überschriften explizit definieren */
h1, h2, h3, h4, .cta, .tab-btn, b, strong {
    font-weight: 700 !important;
    font-family: 'Quicksand', sans-serif !important;
}

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

body { 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
    background: var(--light-bg);
}

/* --- 1. Header & Navigation --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%; /* Etwas mehr Luft im Standard-Zustand */
    background: #ffffff;
    position: fixed;
    top: 0; 
    width: 100%; 
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Zustand beim Scrollen (kompakter & dezenter) */
header.scrolled {
    padding: 10px 8%;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.98);
}

.logo img { 
    height: 45px; 
    width: auto;
    transition: transform 0.3s ease;
    display: block;
}

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

nav { 
    display: flex; 
    gap: 25px; 
    align-items: center; 
}

nav a {
    text-decoration: none;
    color: var(--magenta);
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
}

/* Hover-Linie */
nav a::after {
    content: '';
    position: absolute;
    width: 0; 
    height: 3px;
    bottom: -5px; 
    left: 0;
    background: var(--soft-green);
    border-radius: 2px;
    transition: width 0.3s ease;
}

nav a:hover { color: var(--soft-green); }
nav a:hover::after { width: 100%; }

/* --- 2. Hamburger Icon & Mobile Menu --- */
.menu-toggle {
    display: none; /* Nur auf Mobilgeräten sichtbar */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 5000;
}

.menu-toggle span {
    width: 30px; 
    height: 3px;
    background: var(--magenta);
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile Media Query */
@media (max-width: 1024px) {
    .menu-toggle { display: flex; }

    nav {
        position: fixed;
        top: 0; 
        right: -100%; 
        width: 100%; 
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    nav.active { right: 0; }
    nav a { font-size: 1.8rem; }

    /* Hamburger Animation zu "X" */
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
}

/* --- 2. GLOBALER SEKTIONS-REDUZIERER (Gegen die Lücken) --- */
section {
    padding: 60px 8% !important; /* Einheitsmaß für alle Sektionen */
    overflow: hidden;
    position: relative;
    display: block;
}

/* Killt den automatischen Abstand über JEDER Überschrift */
h2, .hero-content h1 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Spezieller Fix für den Übergang Webpakete/Webspace (Wave-Integration) */
.wave-container, .footer-wave-container {
    line-height: 0 !important;
    margin-top: -1px !important;
    margin-bottom: -1px !important;
}

/* --- 3. HERO SECTION (Desktop) --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 120px 8% 60px 8% !important; /* Mehr Platz oben für fixierten Header */
    background: #ffffff;
    gap: 40px;
    position: relative;
}

.hero-content {
    flex: 1.2; /* Etwas mehr Platz für den Text */
    text-align: left;
    z-index: 5;
    padding-left: 2%; /* Dezenter Abstand vom Rand */
}

.hero-content span { 
    color: var(--soft-green); 
    letter-spacing: 3px; 
    font-weight: 700; 
    font-size: 0.85rem;
    text-transform: uppercase;
    display: block; /* Sorgt für saubere Zeilentrennung */
    margin-bottom: 10px;
}

.hero-content h1 { 
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem); 
    color: var(--magenta); 
    margin-bottom: 20px !important; 
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p { 
    color: #666; 
    font-size: 1.15rem; 
    max-width: 520px; 
    margin-bottom: 40px; 
    line-height: 1.8; 
}

.cta {
    padding: 16px 36px;
    background: var(--magenta);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.cta:hover { 
    background: var(--soft-green); 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(144, 199, 182, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 600px; /* Lotusblume darf wirken */
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.05));
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- 4. RESPONSIVE OPTIMIERUNG (Mobile) --- */
@media (max-width: 991px) {
    .hero {
        flex-direction: column; 
        text-align: center;
        padding: 120px 5% 40px 5% !important;
        min-height: auto;
    }

    .hero-image {
        order: 1; 
        justify-content: center;
        margin-bottom: 20px;
    }

    .hero-content {
        order: 2;
        text-align: center;
        padding-left: 0;
    }

    .hero-image img {
        max-width: 280px; /* Lotusblume auf Handy kompakter */
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* --- 5. Allgemeiner Sektions-Atemraum (Lücken-Killer) --- */
section, 
.contact-form-section, 
.about-section, 
.portfolio-section, 
.benefits-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    margin: 0 !important;
    display: block;
    position: relative;
}

/* --- Vorteile Sektion --- */
.benefits-section {
    background-color: #f2f8f6; /* Sanftes Grün */
    text-align: center;
}

.benefits-intro {
    max-width: 700px;
    margin: 0 auto 50px auto; /* Etwas kompakter */
}

.benefits-intro h2 {
    font-family: 'Quicksand', sans-serif;
    color: var(--magenta);
    font-size: 2.2rem;
    margin-bottom: 15px;
    margin-top: 0; /* Verhindert Lücke nach oben */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px; /* Etwas runder passend zum Lotus-Look */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(144, 199, 182, 0.25);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
    background: url('https://artofexpression.ch/assets/images/lotusblumeicon.jpg') no-repeat center/contain;
}

.benefit-card h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--magenta);
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: #555; /* Etwas mehr Kontrast für Inter */
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Dezenter Bambus-Akzent */
.benefit-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 90px;
    height: 110px;
    background: linear-gradient(135deg, transparent, rgba(144, 199, 182, 0.12));
    border-radius: 50% 0 0 0;
    z-index: 0;
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .benefits-section { 
        padding: 40px 5% !important; /* Lücke auf Mobile schließen */
    }
    
    .benefits-intro {
        margin-bottom: 35px;
    }
    
    .benefits-intro h2 {
        font-size: 1.8rem;
    }

    .benefits-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
}
	
/* --- Web Pakete Sektion (Reparatur & Vollständigkeit) --- */
.packages-section {
    padding: 60px 8% !important;
    background-color: #f2f8f6; 
    text-align: center;
}

.packages-section h2 {
    font-family: 'Quicksand', sans-serif !important;
    color: var(--magenta);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700 !important;
}

.packages-grid {
    display: grid;
    /* Verhindert das Überlappen: Karten werden sauber nebeneinander verteilt */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px; 
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.package-card {
    background: #ffffff;
    border-radius: 35px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    /* Der Hover-Effekt: Sanftes Anheben */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    text-align: left;
    height: 100%;
    z-index: 1; /* Basis-Z-Index */
}

/* --- HOVER EFFEKT --- */
.package-card:hover {
    transform: translateY(-15px); /* Karte hebt sich ab */
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    z-index: 10; /* Karte kommt beim Hover nach vorne */
}

/* Featured / Empfehlung Karte */
.package-card.featured {
    border: 3px solid var(--soft-green);
    box-shadow: 0 25px 55px rgba(144, 199, 182, 0.2);
}

.package-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #f2f8f6;
    padding-bottom: 15px;
}

.package-header h3 {
    font-family: 'Quicksand', sans-serif !important;
    color: var(--magenta);
    font-size: 1.8rem;
    font-weight: 700 !important;
}

.package-card img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto 25px auto;
    display: block;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.package-features li {
    padding-left: 35px;
    margin-bottom: 12px;
    position: relative;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    color: var(--soft-green); /* Deine Akzentfarbe für die Häkchen */
}

/* Kleingedrucktes */
.package-footer {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    background: #f9f9f9; 
    padding: 15px;
    border-radius: 15px;
    margin-top: 25px;
    font-weight: 400 !important;
}

.featured-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--soft-green);
    color: white;
    padding: 6px 25px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 15;
}

/* --- MOBILE OPTIMIERUNG Web Pakete (Gap-Killer Fix) --- */
@media (max-width: 991px) {
    .packages-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }

    .packages-grid {
        grid-template-columns: 1fr !important; 
        gap: 35px; /* Abstand zwischen den Karten auf Mobile verringert */
    }

    .packages-section {
        /* Oben 40px, Unten nur 10px Platz vor der Wave/nächsten Section */
        padding: 40px 5% 10px 5% !important; 
    }
    
    /* Verhindert, dass das letzte Element in der Karte (Footer) die Lücke vergrößert */
    .package-card:last-child {
        margin-bottom: 0;
    }
}
    
    .package-header h3 {
        font-size: 1.2rem;
    }
}


/* --- Web Space Section (FINALTUNING) --- */
.hosting-section {
    padding: 10px 8% 60px 8% !important; /* Unten 60px für Abstand zum Accordion */
    background-color: #f2f8f6;
    text-align: center !important;
}

.hosting-section h2 {
    font-family: 'Quicksand', sans-serif !important;
    color: var(--magenta) !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    margin: 0 auto 30px auto !important; /* Von 30px auf 50px erhöht für mehr Luft */
    display: block !important;
    text-align: center !important;
}

/* --- Fix Abstand zum Accordion --- */
.hosting-grid {
    display: flex !important;
    justify-content: center !important;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px !important; 
    margin-bottom: 40px !important; /* Erzeugt den Platz zum Accordion auf Desktop */
}

/* Mobile Korrektur für das Accordion */
@media (max-width: 768px) {
    .hosting-grid {
        margin-bottom: 30px !important; /* Etwas weniger auf dem Handy */
    }
}

/* Deine bestehenden Karten-Styles (hier nur die Basis zur Sicherheit) */
.hosting-card {
    background: white;
    border-radius: 25px;
    width: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* --- Gradient Hover & Bestseller Logik --- */
.hosting-card::before {
    content: '';
    position: absolute;
    top: -2px; bottom: -2px; left: -2px; right: -2px;
    z-index: -1;
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hosting-card.orange-box:hover { transform: translateY(-10px); }
.hosting-card.orange-box:hover::before { opacity: 1; background: linear-gradient(135deg, #ff9a44, #ff6a00); }

.hosting-card.apfel-box:hover { transform: translateY(-10px); }
.hosting-card.apfel-box:hover::before { opacity: 1; background: linear-gradient(135deg, #90c7b6, #689e8d); }

.hosting-card.melone-box { transform: scale(1.02); z-index: 2; }
.hosting-card.melone-box::before { opacity: 1; background: linear-gradient(135deg, #ff5f6d, #ffc371); }
.hosting-card.melone-box:hover { transform: scale(1.04) translateY(-5px); box-shadow: 0 15px 40px rgba(197, 56, 115, 0.2); }

/* --- BESTSELLER BADGE --- */
.bestseller-badge {
    position: absolute;
    top: -18px;
    right: 15px;
    background: var(--magenta);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 10;
    border: 2px solid white;
}

.h-card-header {
    padding: 40px 20px;
    color: white;
    text-align: center;
    border-radius: 22px 22px 0 0;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.h-card-header.orange { background: linear-gradient(135deg, #ff9a44 0%, #ff6a00 100%); }
.h-card-header.melone { background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%); }
.h-card-header.apfel  { background: linear-gradient(135deg, #90c7b6 0%, #689e8d 100%); }

/* --- Webspace Features (Häkchen linksbündig & zentriert) --- */
.h-features { 
    list-style: none; 
    padding: 30px 25px; 
    background: white; 
    border-radius: 0 0 22px 22px; 
    flex-grow: 1;
    /* Zentriert die Liste als Block in der Karte */
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.h-features li { 
    padding: 12px 0; 
    border-bottom: 1px solid #f2f2f2; 
    font-size: 0.95rem; 
    color: #555; 
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Häkchen und Text starten links */
    gap: 12px;
    width: 100%;
    max-width: 240px; /* Hält die Liste kompakt in der Mitte */
}

.h-features li::before { 
    content: '✓'; 
    color: var(--soft-green); 
    font-weight: bold; 
    font-size: 1.1rem;
    flex-shrink: 0; /* Verhindert Verformung */
    width: 20px; /* Feste Breite für das Häkchen für perfekte Ausrichtung */
}

/* Letzte Linie entfernen für saubere Optik */
.h-features li:last-child {
    border-bottom: none;
}


/* --- INFOBEREICH ACCORDION --- */
.info-accordion {
    max-width: 900px;
    margin: 5px auto 0 auto; /* Ganz nah an die Boxen geschoben */
    text-align: left;
}

.accordion-item {
    border: 1px solid #eee;
    border-radius: 15px;
    margin-bottom: 10px;
    overflow: hidden;
    background: white;
}

.accordion-header {
    padding: 20px 25px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 700 !important;
    color: var(--magenta);
    transition: background 0.3s;
}

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

.accordion-header::after { content: '+'; font-size: 1.5rem; color: var(--soft-green); }

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    color: #666;
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    padding: 20px 25px 30px 25px;
    max-height: 3000px;
}

.accordion-item.active .accordion-header::after { content: '−'; }

.info-tagline {
    margin-top: 20px;
    font-weight: 600;
    color: var(--soft-green);
    text-align: center;
}

/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 768px) {
    .hosting-section h2 { font-size: 1.8rem !important; }
    .hosting-section { padding: 40px 5% !important; }
    
    .hosting-card { width: 100%; max-width: 100%; }
    .hosting-card.melone-box { transform: scale(1); margin: 10px 0; }
    
    .info-accordion { margin-top: 10px; }
}

	/* --- Werbegrafik Sektion (AUFGERÄUMT) --- */
.graphics-section {
    padding: 40px 8% 80px 8%; /* Oben von 80px auf 40px reduziert */
    background-color: #ffffff;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}

.graphics-section h2 {
    color: var(--magenta);
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0; /* Verhindert zusätzlichen Browser-Abstand */
    margin-bottom: 40px;
}

/* --- Tabs Navigation --- */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 2px solid #f2f8f6;
    padding-bottom: 10px;
    
    /* Mobile Swipe-Support */
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.tabs-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tab-btn {
    background: none;
    border: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--soft-green);
    cursor: pointer;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.tab-btn:hover, 
.tab-btn.active {
    color: var(--magenta);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--magenta);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.tab-btn.active::after {
    width: 100%;
}

/* --- Tab Content & Layout --- */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    max-width: 1100px;
    margin: 0 auto;
}

.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Bild- & Text-Details (FIXED) --- */
.graphic-preview {
    background-color: #f2f8f6;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

.graphic-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.graphic-details h3 {
    color: var(--magenta);
    font-size: 1.6rem;
    margin-top: 0;
}

.price-tag {
    display: inline-block;
    background: var(--light-green);
    color: var(--magenta);
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Abstand vom Text zur Liste */
.graphic-details p {
    margin-bottom: 25px !important;
}

.graphic-details ul {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.graphic-details li {
    padding-left: 35px; /* Etwas mehr Platz für die Blume */
    margin-bottom: 12px;
    position: relative;
    color: #555;
    line-height: 1.4;
}

/* Die Blume als Icon */
.graphic-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background-image: url('https://artofexpression.ch/assets/images/lotusblumeicon.jpg');
    background-size: contain;
    background-repeat: no-repeat;
}

.seo-text {
    font-size: 0.95rem;
    color: #777;
    margin-top: 25px;
    font-style: italic;
}

/* --- Mobile Optimierung (Zusammengefasst) --- */
@media (max-width: 900px) {
    .graphics-section {
        padding-top: 20px;
    }
    
    .graphics-section h2 {
        font-size: 1.8rem; /* Wie gewünscht auf 1.8em/rem */
    }

    .tabs-nav {
        justify-content: flex-start;
        padding-left: 15px;
        gap: 15px;
    }

    .tab-btn {
        font-size: 1.1rem;
        padding: 10px;
    }

    .tab-content.active {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center; /* Text auf Mobile zentrieren für bessere Optik */
    }
    
    .graphic-details li {
        text-align: left; /* Aufzählung bleibt linksbündig */
    }
}

	
	/* --- Portfolio Sektion (KOMPLETT & OPTIMIERT) --- */
.portfolio-section {
    padding: 20px 8% 100px 8% !important; /* Minimaler Abstand oben zur Welle */
    background: #f2f8f6;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}

.portfolio-section h2 {
    color: var(--magenta);
    font-size: 2.5rem;
    margin-top: 0 !important;
    margin-bottom: 10px;
    font-weight: 700;
}

.portfolio-section .subtitle {
    color: var(--soft-green);
    font-size: 1.1rem;
    margin-bottom: 50px;
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- Portfolio Grid & Items mit Animation --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    cursor: pointer;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    
    /* Animation: Startzustand */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Zustand wenn im Sichtfeld (wird durch JS getriggert) */
.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bild-Bereich */
.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    padding: 30px 30px 10px 30px; 
    background: #fcfefe;
    box-sizing: border-box;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px; 
    transition: transform 0.6s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.05));
}

/* Info-Bereich & Optimiertes Label */
.portfolio-info {
    padding: 25px 30px 35px 30px;
    text-align: left;
    background: white;
    flex-grow: 1;
}

.portfolio-label {
    display: inline-block;
    background: var(--soft-green); /* Volle Farbe für Lesbarkeit */
    color: #ffffff !important; /* Weißer Text auf Grün */
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: var(--magenta);
}

.portfolio-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
}

/* Hover Effekte */
.portfolio-item:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 45px rgba(144, 199, 182, 0.2);
    border-color: var(--soft-green);
}

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

/* --- Mobile Optimierung --- */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 15px 20px 60px 20px !important;
    }

    .portfolio-section h2 {
        font-size: 1.8rem !important;
    }

    .portfolio-section .subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .portfolio-grid {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .portfolio-img-wrapper {
        padding: 20px 20px 5px 20px;
    }

    .portfolio-info {
        padding: 20px 20px 25px 20px;
    }
}

  /* --- GEMEINSAME VARIABLEN --- */
:root {
    --magenta: #c53873;
    --soft-green: #90c7b6;
    --wave-bg: #f2f8f6;
}

/* --- KUNDEN-FEEDBACK SEKTION --- */
.feedback-section {
    padding: 40px 8% 80px 8% !important; /* Oben eingekürzt */
    background-color: #ffffff;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    position: relative;
}

.feedback-section h2 {
    color: var(--magenta);
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.feedback-subtitle {
    color: var(--soft-green);
    font-size: 1.1rem;
    margin-bottom: 50px;
    display: block;
    font-weight: 600;
}

.widget-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95); 
    padding: 40px;
    border-radius: 40px;
    border: 1px solid #f0f8f6;
    box-shadow: 0 15px 40px rgba(144, 199, 182, 0.1);
    overflow: hidden;
}

/* Plugin Branding entfernen */
.sk-ww-google-reviews a[href*="sociablekit"] {
    display: none !important;
    visibility: hidden !important;
}

/* --- ÜBER MICH SEKTION (ABOUT) --- */
.about-section {
    padding: 40px 5% 140px 5% !important; /* Oben enger, unten Platz für Welle */
    background-color: #f2f8f6 !important;
    position: relative;
    overflow: hidden;
    font-family: 'Quicksand', sans-serif;
}

.about-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 40px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
    z-index: 2;
    position: relative;
}

/* Foto & Morph Effekt */
.about-visual {
    flex: 0 0 250px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.morph-aura {
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, var(--soft-green), var(--magenta));
    opacity: 0.45;
    filter: blur(35px);
    border-radius: 50%;
    animation: morphSimple 10s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes morphSimple {
    0% { transform: scale(1); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { transform: scale(1.1); border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
}

.about-visual img {
    width: 210px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* Text-Inhalt */
.about-content {
    flex: 1;
    text-align: left;
}

.about-content h2 {
    color: var(--magenta);
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-content p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-content b { 
    color: var(--magenta); 
}

/* --- MOBILE OPTIMIERUNG (Zusammengefasst) --- */
@media (max-width: 768px) {
    /* Feedback Sektion */
    .feedback-section {
        padding-top: 20px !important;
    }
    .feedback-section h2 {
        font-size: 1.8rem !important;
    }
    .widget-container {
        padding: 20px;
        border-radius: 30px;
    }

    /* About Sektion */
    .about-section {
        padding-top: 20px !important;
        padding-bottom: 100px !important;
    }
    .about-card {
        flex-direction: column !important;
        padding: 40px 25px !important;
        gap: 40px !important;
        text-align: center;
    }
    .about-content {
        text-align: center;
    }
    .about-content h2 {
        font-size: 1.8rem !important;
    }
    .about-visual img {
        width: 180px;
    }
}

/* --- Fix: Morph-Leuchten & Sektions-Abstand --- */

.feedback-section {
    padding-bottom: 20px !important; /* Weniger Abstand nach unten zur About-Sektion */
}

.about-section {
    padding-top: 0 !important; /* Zieht die About-Sektion näher an die Feedback-Sektion */
}

.about-card {
    /* ... deine restlichen Styles ... */
    overflow: hidden; /* Schneidet das Leuchten an den Kartenrändern sauber ab */
    z-index: 2;
}

.morph-aura {
    /* ... deine restlichen Styles ... */
    width: 100%; /* Etwas verkleinert, damit es innerhalb der Karte bleibt */
    height: 100%;
    opacity: 0.35; /* Leicht dezenter, damit es nicht zu hart abgeschnitten wirkt */
}

/* Mobile Korrektur */
@media (max-width: 768px) {
    .feedback-section {
        padding-bottom: 10px !important;
    }
}

	
	/* --- Kontakt Sektion (OPTIMIERT & CAPTCHA-SAFE) --- */
.contact-form-section {
    padding: 40px 8% 100px 8% !important; /* Oben eingekürzt für besseren Fluss */
    background-color: var(--wave-bg);
    display: flex;
    justify-content: center;
    font-family: 'Quicksand', sans-serif;
}

.form-stage {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: white;
    padding: 60px;
    border-radius: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    z-index: 2;
    box-sizing: border-box;
}

.form-info h2 {
    color: var(--magenta);
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-info p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Der Bereich für das Formular-Widget / Captcha */
.contact-widget-area {
    min-height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    overflow: visible; /* Wichtig, damit das Captcha nicht abgeschnitten wird */
}

/* --- MOBILE OPTIMIERUNG (Maximaler Platz für Captcha) --- */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 20px 10px 60px 10px !important;
    }

    .form-stage {
        grid-template-columns: 1fr;
        padding: 40px 20px; /* Genug Platz für Captcha, aber kompakt */
        gap: 30px;
        border-radius: 35px;
    }

    .form-info h2 {
        font-size: 1.8rem !important; /* Einheitlich mit anderen Sektionen */
        text-align: center;
    }

    .form-info p {
        text-align: center;
        font-size: 1rem;
    }

    /* Der Captcha-Retter: Skaliert das Widget, falls das Handy zu schmal ist */
    .g-recaptcha, 
    .wpcf7-form-control-wrap {
        transform: scale(0.88);
        transform-origin: 0 0;
        -webkit-transform: scale(0.88);
        -webkit-transform-origin: 0 0;
        max-width: 100%;
    }
}

/* Verhindert horizontales Scrollen auf kleinsten Geräten */
@media (max-width: 360px) {
    .g-recaptcha {
        transform: scale(0.80);
    }
}

/* --- Finaler Sanfter Footer Fix --- */

/* 1. Die Sektion direkt VOR dem Footer (wahrscheinlich Kontakt) 
      muss einen weißen Hintergrund haben, damit die grüne Welle darauf wirkt */
.contact-form-section {
    background-color: #ffffff !important; 
}

/* 2. Der Container für die Welle bekommt die grüne Farbe */
.footer-wave-container {
    background-color: #ffffff; /* Farbe der Sektion darüber */
    line-height: 0;            /* Verhindert feine Lücken */
}

.footer-wave-svg {
    display: block;
    width: 100%;
    height: 80px; /* Höhe der Welle */
    fill: #90c7b6; /* DEIN SANFTES GRÜN */
}

/* 3. Der eigentliche Footer in der gleichen Farbe */
footer {
    background-color: #90c7b6 !important; /* GRÜN BIS GANZ UNTEN */
    color: white;
    padding: 20px 8% 60px 8%;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    margin: 0; /* Keine Abstände */
}

/* Links & Texte im Footer */
.footer-links {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    font-size: 0.9rem;
}


    /* --- Back to Top: Bambus-Stil --- */
    .back-to-top {
        position: fixed;
        bottom: 40px;
        right: 40px;
        width: 50px;
        height: 50px;
        background: white;
        border: 2px solid var(--soft-green);
        border-radius: 12px; /* Leicht eckig wie ein Bambus-Stück */
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 100;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .back-to-top::before {
        content: '▲';
        color: var(--soft-green);
        font-size: 1.2rem;
    }

    .back-to-top:hover {
        background: var(--magenta);
        border-color: var(--magenta);
        transform: translateY(-5px);
    }

    .back-to-top:hover::before { color: white; }

    @media (max-width: 900px) {
        .form-stage { grid-template-columns: 1fr; padding: 30px; }
        .back-to-top { right: 20px; bottom: 20px; }
    }
	
.back-to-top {
    box-shadow: 0 5px 15px rgba(144, 199, 182, 0.4);
    border-bottom: 3px solid #90c7b6; /* Die "Bambus-Kante" */
}

  .footer-waves-container {
        line-height: 0;
        background-color: #f2f8f6; /* Hintergrund der Kontakt-Sektion davor */
        margin-top: 40px;
    }
    
    .footer-waves-container svg {
        display: block;
        width: 100%;
        height: 120px;
    }

    /* Drei Schichten Magenta für Tiefe */
    .wave-1 { fill: rgba(197, 56, 115, 0.2); }
    .wave-2 { fill: rgba(197, 56, 115, 0.5); }
    .wave-3 { fill: #c53873; }

    footer {
        background-color: #c53873;
        padding: 40px 8%;
        color: white;
        text-align: center;
        margin-top: -1px;
    }
	
	/* --- Universal Wellen-System --- */
.section-wave {
    width: 100%;
    line-height: 0;
    position: relative;
    margin-top: -1px; /* Verhindert Blitzer-Linien */
    z-index: 10;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: 80px; /* Hier steuerst du die Intensität der Kurve */
}

/* Die Füll-Farben für die Wellen */
.wave-fill-green { fill: #f2f8f6; }
.wave-fill-magenta { fill: #c53873; }
.wave-fill-white { fill: #fefefe; }
</style>