:root {
    --primary-color: var(--bs-primary);
    --secondary-color: var(--bs-secondary);
    --accent-color: #E9C46A;
    --light-color: #F8F9FA;
    --dark-color: #2A2A2A;
    --swiss-red: #DA291C;
    --quantum-neon: #00ffff;
    --quantum-purple: #8b5cf6;
    --quantum-pink: #ec4899;
    --quantum-dark: #0f0f23;
    --quantum-darker: #050511;
    --quantum-glow: #64ffda;
    --quantum-orange: #ff6b35;
    --quantum-green: #10b981;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    background-color: #FCFCFC;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0;
    color: white;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.swiss-flag {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--swiss-red);
    margin-right: 10px;
}

.swiss-flag:after {
    content: '';
    position: absolute;
    background: white;
    height: 12px;
    width: 4px;
    top: 4px;
    left: 8px;
}

.swiss-flag:before {
    content: '';
    position: absolute;
    background: white;
    height: 4px;
    width: 12px;
    top: 8px;
    left: 4px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
}

.about-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-icon {
    background-color: var(--primary-color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* News Section */
.news {
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.news-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.news-img {
    object-fit: cover;
}

.news-date {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

.news-tag {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    background-color: rgba(14, 59, 98, 0.1);
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Price Section */
.price {
    background-color: var(--light-color);
    padding: 100px 0;
}

.price-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.price-header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    text-align: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.price-period {
    font-size: 14px;
    opacity: 0.8;
}

.price-feature {
    padding: 15px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-feature i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.price-footer {
    padding: 30px;
    text-align: center;
}

.price-popular {
    position: relative;
}

.price-popular:before {
    content: 'Beliebt';
    position: absolute;
    top: 18px;
    right: -28px;
    transform: rotate(45deg);
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.form-control {
    border: none;
    background-color: #F5F7FA;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.btn-submit {
    background-color: var(--secondary-color);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #e55a29;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Alert */
.alert-success {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
    animation: fadeIn 0.5s, fadeOut 0.5s 3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Features Section */
.features-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, var(--quantum-darker) 0%, #1a1a2e 50%, var(--quantum-dark) 100%);
}

/* Quantum Grid Background */
.quantum-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridShift 15s linear infinite;
    z-index: 1;
}

@keyframes gridShift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

/* Neural connections */
.neural-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--quantum-neon), transparent);
    animation: connectionPulse 4s ease-in-out infinite;
}

@keyframes connectionPulse {
    0%,
    100% {
        opacity: 0.2;
        transform: scaleX(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.content-container {
    position: relative;
    z-index: 10;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.quantum-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--quantum-purple), var(--quantum-pink));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.quantum-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, var(--quantum-neon), var(--quantum-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 25px;
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    animation: featureGlow 8s linear infinite;
    z-index: 1;
}

@keyframes featureGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--quantum-neon);
    box-shadow: 0 25px 50px rgba(0, 255, 255, 0.2);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--quantum-purple), var(--quantum-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: iconShine 4s ease-in-out infinite;
}

@keyframes iconShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-specs li {
    color: var(--quantum-neon);
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.feature-specs li i {
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Reviews Section */
.reviews-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--quantum-dark) 50%, var(--quantum-darker) 100%);
    position: relative;
}

/* Floating testimonial elements */
.testimonial-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.quote-particle {
    position: absolute;
    font-size: 2rem;
    color: var(--quantum-purple);
    opacity: 0.1;
    animation: quoteFloat 10s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.quote-particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.quote-particle:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.quote-particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.quote-particle:nth-child(4) {
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.8s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--quantum-purple);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.review-card:hover::before {
    left: 100%;
}

.review-card > * {
    position: relative;
    z-index: 2;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.reviewer-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--quantum-neon), var(--quantum-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.8rem;
    color: white;
    animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    }
}

.reviewer-info h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.reviewer-title {
    color: var(--quantum-neon);
    font-size: 0.9rem;
    font-weight: 600;
}

.review-rating {
    display: flex;
    margin-bottom: 20px;
}

.star {
    color: var(--quantum-orange);
    font-size: 1.2rem;
    margin-right: 3px;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.star:nth-child(2) {
    animation-delay: 0.2s;
}

.star:nth-child(3) {
    animation-delay: 0.4s;
}

.star:nth-child(4) {
    animation-delay: 0.6s;
}

.star:nth-child(5) {
    animation-delay: 0.8s;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.review-quote {
    font-size: 3rem;
    color: var(--quantum-purple);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    right: 20px;
}

.review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-align: right;
}

/* Stats Section */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 80px;
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--quantum-neon);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--quantum-neon);
    margin-bottom: 10px;
    animation: numberCount 2s ease-out;
}

@keyframes numberCount {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

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

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

    .feature-card,
    .review-card {
        padding: 30px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}