@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    --primary: #6B5CE7;
    --primary-light: #8B7CF7;
    --primary-dark: #5346C7;
    --secondary: #FF6B9D;
    --accent: #4ECDC4;
    --warm: #FFE66D;
    --bg-light: #FAFBFF;
    --bg-cream: #FFF9F0;
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(107, 92, 231, 0.15);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 20px;
    --radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    height: 28px;
    width: auto;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-icon {
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.header-icon:hover {
    color: var(--primary);
}

nav ul {
    display: none;
    list-style: none;
    gap: 30px;
}

nav a {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 50%, #E8F4F8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(107, 92, 231, 0.08) 0%, transparent 70%);
    animation: pulse-bg 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    animation: pulse-bg 10s ease-in-out infinite reverse;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--warm), #FFD93D);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    animation: bounce-soft 2s ease-in-out infinite;
}

@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.hero-feature i {
    color: var(--accent);
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-current {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.price-old {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-save {
    background: var(--secondary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(107, 92, 231, 0.4);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 92, 231, 0.5);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 92, 231, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.float-item:nth-child(1) {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    bottom: 20%;
    left: -30px;
    animation-delay: 1s;
}

.float-item:nth-child(3) {
    bottom: 5%;
    right: 10%;
    animation-delay: 2s;
}

.float-item i {
    font-size: 1.2rem;
}

.float-item:nth-child(1) i { color: var(--warm); }
.float-item:nth-child(2) i { color: var(--accent); }
.float-item:nth-child(3) i { color: var(--secondary); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, var(--accent), #3DB8B0);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, var(--secondary), #FF8FB1);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, var(--warm), #FFD93D);
}

.benefit-card:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, #A29BFE, #6C5CE7);
}

.benefit-card:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, #74B9FF, #0984E3);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.gallery {
    background: linear-gradient(180deg, var(--bg-light), var(--bg-cream));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 92, 231, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.colors {
    background: var(--white);
}

.colors-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.color-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-btn.active,
.color-btn:hover {
    border-color: var(--primary);
    transform: scale(1.1);
}

.color-btn::after {
    content: attr(data-name);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.color-btn:hover::after,
.color-btn.active::after {
    opacity: 1;
}

.color-btn[data-color="blau"] { background: linear-gradient(135deg, #4A90D9, #2E6AB3); }
.color-btn[data-color="grau"] { background: linear-gradient(135deg, #9E9E9E, #757575); }
.color-btn[data-color="violette"] { background: linear-gradient(135deg, #9C27B0, #7B1FA2); }
.color-btn[data-color="beige"] { background: linear-gradient(135deg, #D7CCC8, #BCAAA4); }
.color-btn[data-color="gruen"] { background: linear-gradient(135deg, #66BB6A, #43A047); }
.color-btn[data-color="regenbogen"] { background: linear-gradient(90deg, #FF6B6B, #FFE66D, #4ECDC4, #6B5CE7); }
.color-btn[data-color="pink-grau"] { background: linear-gradient(135deg, #F48FB1, #9E9E9E); }
.color-btn[data-color="farbenzauber"] { background: linear-gradient(135deg, #FF6B9D, #6B5CE7, #4ECDC4); }

.color-display {
    display: flex;
    justify-content: center;
}

.color-image {
    max-width: 500px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
}

.specs {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.specs .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.spec-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.spec-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.spec-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.spec-item p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.reviews {
    background: var(--bg-cream);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.review-stars {
    color: var(--warm);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.review-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.review-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cta-section {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cta-image img {
    width: 100%;
    display: block;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-price .price-current {
    font-size: 3rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.cta-feature i {
    color: var(--accent);
    font-size: 1.2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(107, 92, 231, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 92, 231, 0.5);
}

footer {
    background: #f7f7f7;
    color: var(--text-dark);
    padding: 50px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.footer-badges {
    display: flex;
    flex-direction: column;
}

.trust-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.trust-badge {
    height: 32px;
    width: auto;
    opacity: 0.8;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 22px;
    width: auto;
}

.footer-support-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.footer-support-hours {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-support-email {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-features {
        align-items: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-badges {
        order: 1;
    }
    
    .footer-brand {
        order: 2;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 12px 20px;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-soft);
    }
    
    nav ul.active {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-price {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .price-current {
        font-size: 2.2rem;
    }
    
    .float-item {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-badges {
        order: 1;
    }
    
    .footer-brand {
        order: 2;
    }
    
    .trust-badges {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-feature {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .hero-cta,
    .btn-primary {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .color-btn {
        width: 45px;
        height: 45px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .review-card {
        padding: 25px;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}
