/* DiamondHost Homepage CSS - WHMCS Integration - Verbessert */

/* Homepage: */
/* Global Styles - Beh�lt bestehende Schriftart */
body {
    /* Bestehende Template-Schriftart wird beibehalten */
}

/* Hero Section - Verbessert mit Grid Layout */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    margin-top: 0;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

/* Hero Grid Layout f�r bessere Raumnutzung */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Hero Visual Section - NEU f�r rechte Seite */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.server-rack {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    width: 200px;
    height: 350px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.server-slot {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 8px;
    height: 30px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.server-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.6), transparent);
    animation: scan 3s linear infinite;
}

.server-slot:nth-child(2)::before { animation-delay: 0.5s; }
.server-slot:nth-child(3)::before { animation-delay: 1s; }
.server-slot:nth-child(4)::before { animation-delay: 1.5s; }
.server-slot:nth-child(5)::before { animation-delay: 2s; }

.server-lights {
    display: flex;
    gap: 5px;
    margin: 8px 0;
    justify-content: center;
}

.server-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4444;
    animation: blink 2s ease-in-out infinite;
}

.server-light.green {
    background: #00ff44;
    animation-delay: 0.3s;
}

.server-light.blue {
    background: #00d4ff;
    animation-delay: 0.6s;
}

/* Floating Status Cards */
.status-card {
    position: absolute;
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    backdrop-filter: blur(10px);
    min-width: 140px;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.status-card h6 {
    color: #00d4ff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.status-value {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.status-label {
    color: #cccccc;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-card-1 {
    top: 20px;
    left: -70px;
    animation-delay: 0s;
}

.status-card-2 {
    top: 120px;
    right: -90px;
    animation-delay: 2s;
}

.status-card-3 {
    bottom: 60px;
    left: -70px;
    animation-delay: 4s;
}

/* Data Flow Animation */
.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0;
    animation: dataFlow 4s linear infinite;
}

.data-particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.data-particle:nth-child(2) { top: 30%; left: 80%; animation-delay: 1s; }
.data-particle:nth-child(3) { top: 50%; left: 10%; animation-delay: 2s; }
.data-particle:nth-child(4) { top: 70%; left: 90%; animation-delay: 3s; }

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* CTA Buttons - KORRIGIERT f�r linksb�ndige Ausrichtung */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start; /* Linksb�ndig statt center */
    align-items: flex-start; /* Zus�tzliche Ausrichtung */
}

.hero .btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.hero .btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
}

.hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start; /* Auch hier linksb�ndig */
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #00d4ff;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

/* Neue Animationen */
@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes dataFlow {
    0% { 
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    25% { 
        opacity: 1;
        transform: translateY(-50px) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-100px) scale(1);
    }
    75% { 
        opacity: 1;
        transform: translateY(-150px) scale(0.8);
    }
    100% { 
        opacity: 0;
        transform: translateY(-200px) scale(0.5);
    }
}

/* Responsive Anpassungen für Mobile Geräte */

/* Tablet und kleinere Bildschirme */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 80px 20px 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-visual {
        min-height: 400px;
        order: -1; /* Visual vor Content auf Tablet */
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .server-rack {
        width: 180px;
        height: 320px;
    }
}

/* Mobile Geräte */
@media (max-width: 768px) {
    .hero {
        padding: 60px 15px 40px;
        min-height: auto;
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    /* Visual Section kompakter */
    .hero-visual {
        min-height: 350px;
    }
    
    .server-rack {
        width: 160px;
        height: 280px;
        padding: 15px;
    }
    
    .server-slot {
        height: 25px;
        margin-bottom: 12px;
    }
    
    /* Status Cards anpassen */
    .status-card {
        padding: 12px 16px;
        min-width: 120px;
    }
    
    .status-card h6 {
        font-size: 12px;
    }
    
    .status-value {
        font-size: 16px;
    }
    
    .status-label {
        font-size: 10px;
    }
    
    .status-card-1 {
        left: -50px;
        top: 10px;
    }
    
    .status-card-2 {
        right: -60px;
        top: 100px;
    }
    
    .status-card-3 {
        left: -50px;
        bottom: 40px;
    }
    
    /* CTA Buttons */
    .hero .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    /* Stats */
    .hero-stats {
        gap: 30px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* Sehr kleine Mobile Geräte */
@media (max-width: 480px) {
    .hero {
        padding: 50px 10px 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .server-rack {
        width: 140px;
        height: 240px;
        padding: 12px;
    }
    
    .server-slot {
        height: 20px;
        margin-bottom: 10px;
    }
    
    /* Status Cards noch kompakter oder ausblenden */
    .status-card {
        display: none; /* Optional: Auf sehr kleinen Screens ausblenden */
    }
    
    /* Alternativ: Kleinere Status Cards */
    /* .status-card {
        padding: 8px 12px;
        min-width: 100px;
    }
    
    .status-card-1,
    .status-card-2,
    .status-card-3 {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        display: inline-block;
        margin: 5px;
    } */
    
    .hero-stats {
        gap: 20px;
        margin-top: 25px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    /* Data Particles dezenter auf Mobile */
    .data-particle {
        width: 3px;
        height: 3px;
    }
}

/* Landscape Modus für Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 15px;
    }
    
    .hero-visual {
        min-height: 250px;
    }
    
    .server-rack {
        width: 120px;
        height: 200px;
    }
}

/* Touch-optimierte Hover-Effekte deaktivieren */
@media (hover: none) and (pointer: coarse) {
    .hero .btn:hover {
        transform: none;
    }
    
    .hero .btn:active {
        transform: scale(0.98);
    }
}

/* Features Section */
.features {
    background: linear-gradient(180deg, #16213e 0%, #0c0c0c 100%);
    color: #ffffff;
}

.modern-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-desc {
    color: #cccccc;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
}

.service-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-desc {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: #cccccc;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.service-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-buttons .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-buttons .btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    border: none;
}

.service-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Custom Solutions Section */
.custom-solutions {
    background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.custom-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.solutions-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.solutions-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.solutions-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.solution-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.solution-icon {
    font-size: 28px;
    margin-right: 20px;
    width: 50px;
    text-align: center;
    color: #00d4ff;
}

.solution-content h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.solution-content p {
    color: #cccccc;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.solutions-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.solutions-visual {
    position: relative;
    padding: 60px 20px;
    min-height: 400px;
}

.solutions-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    position: absolute;
    min-width: 160px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.solutions-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.floating-card-1 {
    top: 20px;
    left: 20px;
    animation: float 6s ease-in-out infinite;
}

.floating-card-2 {
    top: 80px;
    right: 30px;
    animation: float 6s ease-in-out infinite 2s;
}

.floating-card-3 {
    bottom: 80px;
    left: 60px;
    animation: float 6s ease-in-out infinite 4s;
}

.floating-card-4 {
    bottom: 20px;
    right: 20px;
    animation: float 6s ease-in-out infinite 1s;
}

.solutions-card .card-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #00d4ff;
}

.solutions-card h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
}

.solutions-card p {
    color: #cccccc;
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
}

/* Location Section - Verbessert mit gr��erem rechten Bereich */
.location-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #0c0c0c 100%);
    color: #ffffff;
    position: relative;
}

.location-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
}

.location-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(5px);
    border-color: rgba(0, 212, 255, 0.2);
}

.benefit-icon {
    font-size: 28px;
    margin-right: 20px;
    width: 50px;
    text-align: center;
    color: #00d4ff;
}

.benefit-text h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
}

.benefit-text p {
    color: #cccccc;
    margin: 0;
    font-size: 14px;
}

.location-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    min-width: 120px;
}

.stat-item .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #00d4ff;
}

.stat-item .stat-label {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.map-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.map-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
    max-width: 100%;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    min-width: 500px;
}

.frankfurt-pin {
    position: absolute;
    top: 45%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.pin-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 50%;
    border: 4px solid #ffffff;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.map-info-card {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-info-card h6 {
    color: #00d4ff;
    font-weight: 700;
    margin: 0;
    font-size: 16px;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Responsive Verbesserungen */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-content {
        order: 1;
    }
    
    .status-card-1, .status-card-2, .status-card-3 {
        position: relative;
        margin: 10px auto;
        display: block;
        animation: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
        min-height: 80vh;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .server-rack {
        width: 150px;
        height: 250px;
        padding: 15px;
    }
    
    .server-slot {
        height: 20px;
        margin-bottom: 10px;
    }
    
    .status-card {
        position: relative;
        margin: 10px auto;
        display: block;
        animation: none;
        min-width: 120px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .features-grid,
    .games-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        gap: 30px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .service-buttons {
        flex-direction: column;
    }
    
    .solutions-visual {
        padding: 40px 10px;
        min-height: 300px;
    }
    
    .floating-card-1, .floating-card-2, .floating-card-3, .floating-card-4 {
        position: relative;
        margin: 10px auto;
        display: block;
        animation: none;
    }
    
    .map-image {
        min-width: 350px;
    }
    
    .map-info-card {
        position: relative;
        margin-top: 20px;
        right: auto;
        top: auto;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .location-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-icon {
        font-size: 24px;
        width: 40px;
        margin-right: 15px;
    }
    
    .benefit-text h5 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .modern-title {
        font-size: 24px;
    }
    
    .feature-card,
    .service-card {
        padding: 25px;
    }
    
    .server-rack {
        width: 120px;
        height: 200px;
        padding: 10px;
    }
    
    .server-slot {
        height: 15px;
        margin-bottom: 8px;
    }
    
    .status-card {
        min-width: 100px;
        padding: 10px 15px;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

/* Header: */

/* Modern Header CSS f�r DiamondHost - Angepasst an Homepage Design */

/* Toolbar (Top Bar) - Passend zum dunklen Homepage Design */
.navbar.toolbar {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 8px 0;
    font-size: 13px;
    min-height: auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.toolbar .nav-link {
    color: #cccccc !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 12px;
    font-size: 13px;
}

.navbar.toolbar .nav-link:hover {
    color: #00d4ff !important;
    text-decoration: none;
}

.navbar.toolbar .nav-link i {
    margin-right: 6px;
    color: #00d4ff;
}

/* Main Navigation - Passend zum Homepage-Gradient */
.navbar.navbar-expand-lg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.1);
}

/* Language/Currency Dropdown */
.navbar.toolbar .nav-link .radisic-flag {
    width: 18px;
    height: 12px;
    margin-right: 8px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Search Dropdown - Dunkles Theme passend zur Homepage */
.dropdown-menu-search {
    background: rgba(26, 26, 46, 0.95) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    backdrop-filter: blur(20px);
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    min-width: 300px;
}

.dropdown-menu-search .form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.dropdown-menu-search .form-control:focus {
    border-color: #00d4ff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

.dropdown-menu-search .form-control::placeholder {
    color: #cccccc !important;
}

.dropdown-menu-search .btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc) !important;
    border: none !important;
    border-radius: 8px !important;
}

/* Logo - Angepasst an dunkles Theme */
.navbar-brand {
    font-size: 28px;
    font-weight: 800 !important;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-decoration: none !important;
    background: linear-gradient(45deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

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

/* Navigation Links - Wei�e Farben f�r dunklen Hintergrund */
.navbar-nav .nav-item .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 20px !important;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 2px;
    position: relative;
    text-decoration: none !important;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #00d4ff !important;
    background: rgba(0, 212, 255, 0.1);
    text-decoration: none !important;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

/* Active Navigation Item */
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link.active {
    color: #00d4ff !important;
    background: rgba(0, 212, 255, 0.15);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown Menus - Dunkles Theme */
.navbar-nav .dropdown-menu {
    background: rgba(26, 26, 46, 0.95) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    backdrop-filter: blur(20px);
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    margin-top: 8px;
    padding: 12px 0;
}

.navbar-nav .dropdown-item {
    color: #cccccc !important;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 8px;
    font-weight: 500;
}

.navbar-nav .dropdown-item:hover {
    color: #ffffff !important;
    background: rgba(0, 212, 255, 0.15) !important;
    text-decoration: none;
}

.navbar-nav .dropdown-item:active {
    background: rgba(0, 212, 255, 0.25) !important;
}

/* Mobile Toggle Button - Cyan f�r dunklen Hintergrund */
.navbar-toggler {
    border: 2px solid rgba(0, 212, 255, 0.4) !important;
    border-radius: 8px !important;
    padding: 6px 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: rgba(0, 212, 255, 0.6) !important;
    background: rgba(0, 212, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 212, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Notification Bell - Angepasst f�r dunkles Theme */
.notification .nav-link {
    color: #cccccc !important;
    padding: 8px 12px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    position: relative;
}

.notification .nav-link:hover {
    color: #00d4ff !important;
    background: rgba(0, 212, 255, 0.15) !important;
}

.notification .badge-counter {
    background: linear-gradient(45deg, #ff4444, #cc0000) !important;
    border: 2px solid #1a1a2e;
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Notification Dropdown - Dunkles Theme */
.dropdown-notification {
    background: rgba(26, 26, 46, 0.95) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    backdrop-filter: blur(20px);
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    min-width: 320px;
    max-width: 400px;
}

.dropdown-notification .dropdown-header {
    background: rgba(0, 212, 255, 0.15);
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    margin-bottom: 8px;
    border-radius: 12px 12px 0 0;
}

.dropdown-notification .dropdown-item {
    padding: 12px 20px;
    border-radius: 8px;
    margin: 4px 8px;
    transition: all 0.3s ease;
    color: #cccccc !important;
}

.dropdown-notification .dropdown-item:hover {
    background: rgba(0, 212, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Header Scroll Effect - Verst�rkte Dunkelheit beim Scrollen */
.navbar.navbar-expand-lg.scrolled {
    background: linear-gradient(135deg, #16213e 0%, #0c0c0c 100%) !important;
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 25px rgba(0, 212, 255, 0.2);
}

/* Mobile Responsive - Dunkles Mobile-Navigation */
@media (max-width: 991px) {
    .navbar.toolbar {
        padding: 6px 0;
    }
    
    .navbar.navbar-expand-lg {
        padding: 12px 0;
    }
    
    .navbar-brand {
        font-size: 24px;
    }
    
    .navbar-collapse {
        background: rgba(26, 26, 46, 0.98);
        margin-top: 15px;
        border-radius: 12px;
        padding: 20px;
        border: 1px solid rgba(0, 212, 255, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    
    .navbar-nav .nav-item .nav-link {
        padding: 12px 16px !important;
        margin: 2px 0;
        color: #ffffff !important;
    }
    
    .navbar-nav .nav-item .nav-link:hover {
        background: rgba(0, 212, 255, 0.15) !important;
        color: #00d4ff !important;
    }
    
    .alert-desktop {
        display: none !important;
    }
    
    .alert-mobile {
        display: flex !important;
    }
}

/* Notification Icon Circles - Beibehalten */
.dropdown-notification .icon-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-notification .bg-color-red {
    background: linear-gradient(45deg, #ff4444, #cc0000) !important;
}

.dropdown-notification .bg-color-orange {
    background: linear-gradient(45deg, #ff8800, #cc6600) !important;
}

.dropdown-notification .bg-color-blue {
    background: linear-gradient(45deg, #00d4ff, #0099cc) !important;
}

.dropdown-notification .bg-color-green {
    background: linear-gradient(45deg, #00cc44, #008833) !important;
}

@media (min-width: 992px) {
    .alert-mobile {
        display: none !important;
    }
    
    .alert-desktop {
        display: flex !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.animated--grow-in {
    animation: growIn 0.3s ease-out;
}

@keyframes growIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Language Flags */
.radisic-flag {
    display: inline-block;
    width: 20px;
    height: 14px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Flag Styles */
.radisic-flag.de {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 3"><rect width="5" height="1" fill="%23000"/><rect width="5" height="1" y="1" fill="%23D00"/><rect width="5" height="1" y="2" fill="%23FFCE00"/></svg>');
}

.radisic-flag.us {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 10"><rect width="19" height="10" fill="%23B22234"/><rect width="19" height="10" fill="white"/><rect width="7.6" height="5.385" fill="%23002868"/></svg>');
}

/* Custom Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px !important;
    padding: 8px 20px;
}



.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3) !important;
    text-decoration: none !important;
    color: #ffffff !important;
}

/* Search Input Styles */
.navbar-search .form-control {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #495057;
    border-radius: 8px 0 0 8px;
    transition: all 0.3s ease;
}

.navbar-search .form-control:focus {
    background: #ffffff;
    border-color: #00d4ff;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
    color: #495057;
}

/* Verbesserte Hover-Effekte */
.navbar-nav .nav-item .nav-link {
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.05), rgba(0, 153, 204, 0.05));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-item .nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Search Input Styles - Dunkles Theme */
.navbar-search .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 8px 0 0 8px;
    transition: all 0.3s ease;
}

.navbar-search .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d4ff;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
    color: #ffffff;
}

.navbar-search .form-control::placeholder {
    color: #cccccc;
}

/* Verbesserte Hover-Effekte f�r dunkles Theme */
.navbar-nav .nav-item .nav-link {
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.08), rgba(0, 153, 204, 0.08));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-item .nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Zus�tzliche Verbesserungen - Konsistent mit Homepage */
.navbar.toolbar {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.navbar.toolbar .nav-link {
    color: #cccccc !important;
    font-weight: 500;
}

.navbar.toolbar .nav-link:hover {
    color: #00d4ff !important;
}

/* Logo perfekt abgestimmt auf dunkles Design */
.navbar-brand {
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover {
    background: linear-gradient(45deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Perfekte Schatten f�r dunkles Design */
.navbar.navbar-expand-lg {
    box-shadow: 0 2px 15px rgba(0, 212, 255, 0.1);
}

.navbar.navbar-expand-lg.scrolled {
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
} Flags */
.radisic-flag {
    display: inline-block;
    width: 20px;
    height: 14px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Flag Styles */
.radisic-flag.de {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 3"><rect width="5" height="1" fill="%23000"/><rect width="5" height="1" y="1" fill="%23D00"/><rect width="5" height="1" y="2" fill="%23FFCE00"/></svg>');
}

.radisic-flag.us {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 10"><rect width="19" height="10" fill="%23B22234"/><rect width="19" height="0.769" y="0.769" fill="white"/><rect width="19" height="0.769" y="2.308" fill="white"/><rect width="19" height="0.769" y="3.846" fill="white"/><rect width="19" height="0.769" y="5.385" fill="white"/><rect width="19" height="0.769" y="6.923" fill="white"/><rect width="19" height="0.769" y="8.462" fill="white"/><rect width="7.6" height="5.385" fill="%23002868"/></svg>');
}

/* Custom Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px !important;
    padding: 8px 20px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3) !important;
    text-decoration: none !important;
    color: #ffffff !important;
}

/* Search Input Styles */
.navbar-search .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 8px 0 0 8px;
}

.navbar-search .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
    color: #ffffff;
}


/* Footer: */

/* Modern Footer CSS für DiamondHost - Korrigiert */

/* Modern CTA Section */
.modern-cta {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.modern-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-cta {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(180deg, #0c0c0c 0%, #000000 100%);
    color: #ffffff;
    position: relative;
}

.footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand Section */
.footer-brand {
    padding-right: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
}

.brand-name {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.brand-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 15px;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 15px;
}

.footer-links a:hover {
    color: #00d4ff;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-links i {
    width: 16px;
    text-align: center;
    opacity: 0.7;
}

/* Language & Social - MIT ABSTAND */
.footer-language {
    margin-bottom: 35px; /* WICHTIG: Abstand nach unten */
}

.language-selector {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 20px; /* Größere Padding für bessere Höhe */
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    font-size: 15px; /* Größere Schrift */
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #ffffff;
}

.flag-container {
    display: flex;
    align-items: center;
}

.language-text {
    font-weight: 500;
    flex: 1;
}

/* Social Section - MIT ABSTAND OBEN */
.footer-social {
    margin-top: 35px; /* WICHTIG: Abstand nach oben */
}

.social-label {
    color: #cccccc;
    font-size: 15px; /* Größere Schrift */
    font-weight: 600; /* Fetter */
    margin-bottom: 15px;
    display: block;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 42px; /* Größer */
    height: 42px; /* Größer */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px; /* Größere Icons */
}

.social-link:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.5);
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.5);
}

.social-link.discord:hover {
    background: rgba(114, 137, 218, 0.2);
    border-color: rgba(114, 137, 218, 0.5);
}

.social-link.tiktok:hover {
    background: rgba(255, 0, 80, 0.2);
    border-color: rgba(255, 0, 80, 0.5);
}

.company-links {
    margin-top: 25px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

.copyright {
    margin: 0;
}

.copyright p {
    color: #888;
    margin: 0;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: #00d4ff;
    text-decoration: none;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Flag Styles */
.iti-flag {
    width: 20px;
    height: 15px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    display: inline-block;
}

.iti-flag.de {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 3"><rect width="5" height="1" fill="%23000"/><rect width="5" height="1" y="1" fill="%23D00"/><rect width="5" height="1" y="2" fill="%23FFCE00"/></svg>');
}

.iti-flag.us {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 10"><rect width="19" height="10" fill="%23B22234"/><rect width="19" height="10" fill="white"/><rect width="7.6" height="5.385" fill="%23002868"/></svg>');
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-brand {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .modern-cta {
        padding: 40px 0;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-social {
        text-align: center;
        margin-top: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 15px;
    }
    
    .language-selector {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .social-links {
        gap: 8px;
    }
}


/* Webspaces */

/* DiamondHost Webhosting CSS - Modernes Design */
/* DiamondHost Webhosting CSS - Modernes Design */

/* Webhosting Header */
.webhosting-header {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.webhosting-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Header Background Elements */
.header-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-server {
    position: absolute;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(10px);
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.floating-server-1 {
    top: 15%;
    right: 10%;
    width: 120px;
    height: 80px;
    animation-delay: 0s;
    z-index: 1;
}

.floating-server-2 {
    bottom: 20%;
    left: 8%;
    width: 100px;
    height: 60px;
    animation-delay: 3s;
    z-index: 1;
}

.floating-server-3 {
    top: 50%;
    right: 5%;
    width: 80px;
    height: 50px;
    animation-delay: 6s;
    z-index: 1;
}

.server-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    height: 100%;
    justify-content: center;
}

.server-line {
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.6), rgba(0, 212, 255, 0.3));
    border-radius: 2px;
    animation: pulse-line 2s ease-in-out infinite;
}

.server-line:nth-child(2) { animation-delay: 0.5s; }
.server-line:nth-child(3) { animation-delay: 1s; }

.header-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 6s linear infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 1s; }
.particle:nth-child(5) { top: 10%; left: 60%; animation-delay: 3s; }
.particle:nth-child(6) { top: 70%; left: 40%; animation-delay: 5s; }

.webhosting-header .container {
    position: relative;
    z-index: 2;
}

.webhosting-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    margin-bottom: 20px;
}

.webhosting-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.webhosting-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    text-align: left;
}

/* Webhosting Plans */
.webhosting-plans {
    background: linear-gradient(180deg, #16213e 0%, #0c0c0c 100%);
    padding: 80px 0;
    position: relative;
}

.plans-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

.plans-title span {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Modern Plan Cards */
.plan-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.plan-card.featured {
    border: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
    transform: scale(1.05);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header {
    padding: 30px 30px 20px;
    text-align: center;
    position: relative;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #ffffff;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.plan-description {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 0;
}

.plan-price {
    background: rgba(0, 212, 255, 0.1);
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #00d4ff;
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: #888;
    margin-left: 5px;
}

.plan-features {
    padding: 30px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.plan-features li {
    padding: 10px 0;
    color: #cccccc;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    width: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.plan-features span {
    color: #00d4ff;
    font-weight: 600;
}

.plan-cta {
    padding: 0 30px 30px;
}

.plan-cta .btn {
    width: 100%;
    padding: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.plan-cta .btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    color: #ffffff;
}

.plan-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}
/* Free Package Section - Verbesserte Version */
.free-package-section {
    background: linear-gradient(180deg, #0c0c0c 0%, #1a1a2e 100%);
    padding: 60px 0;
    color: #ffffff;
}

.free-package-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 20px;
}

.free-package-subtitle {
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
}

.free-package-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Verbessertes horizontales Layout */
.free-plan-horizontal {
    background: rgba(76, 175, 80, 0.05);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    padding: 30px;
}

.free-plan-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.5);
}

.free-badge-horizontal {
    position: absolute;
    top: -8px;
    left: 30px;
    background: linear-gradient(45deg, #4caf50, #388e3c);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

/* Layout Container */
.free-plan-content {
    display: grid;
    grid-template-columns: 200px 1fr 150px 180px;
    gap: 30px;
    align-items: center;
}

/* Plan Info - ohne Icon */
.free-plan-info {
    text-align: left;
}

.free-plan-name-horizontal {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.free-plan-description-horizontal {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

/* Features in 2 Spalten untereinander */
.free-plan-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.free-feature-item {
    color: #cccccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.free-feature-item::before {
    content: '✓';
    color: #4caf50;
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
}

.free-feature-item span {
    color: #4caf50;
    font-weight: 600;
}

/* Preis Section */
.free-plan-price-section {
    text-align: center;
    padding: 0 20px;
    border-left: 1px solid rgba(76, 175, 80, 0.2);
    border-right: 1px solid rgba(76, 175, 80, 0.2);
}

.free-price-amount-horizontal {
    font-size: 28px;
    font-weight: 800;
    color: #4caf50;
    line-height: 1;
    display: block;
}

.free-price-period-horizontal {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* Button Section */
.free-plan-button {
    text-align: center;
}

.free-plan-button .btn {
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(45deg, #4caf50, #388e3c);
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
}

.free-plan-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    text-decoration: none;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .free-plan-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .free-plan-features-grid {
        justify-items: center;
        gap: 8px 15px;
    }
    
    .free-plan-price-section {
        border: none;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .free-plan-horizontal {
        padding: 25px 20px;
    }
    
    .free-plan-features-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .free-feature-item {
        justify-content: center;
    }
}

/* Webhosting Features */
.webhosting-features {
    background: linear-gradient(180deg, #0c0c0c 0%, #1a1a2e 100%);
    padding: 80px 0;
    color: #ffffff;
}

.features-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffffff;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 14px;
}

/* Control Panel Section */
.control-panel-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    color: #ffffff;
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.panel-info h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.panel-info p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.panel-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.panel-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-features li {
    padding: 8px 0;
    color: #cccccc;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.panel-features i {
    color: #00d4ff;
    margin-right: 10px;
    width: 16px;
}

.panel-visual {
    position: relative;
}

.panel-mockup {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.panel-mockup img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.panel-mockup:hover img {
    transform: scale(1.02);
}

/* Modern Carousel */
.modern-carousel {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.carousel-item img {
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .panel-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .webhosting-header {
        padding: 80px 0 60px;
    }
    
    .webhosting-plans,
    .webhosting-features,
    .control-panel-section {
        padding: 60px 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .panel-features {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        margin: 0 10px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .webhosting-header {
        padding: 60px 0 40px;
    }
    
    .plan-header {
        padding: 25px 20px 15px;
    }
    
    .plan-features,
    .plan-cta {
        padding: 25px 20px;
    }
    
    .plan-price {
        padding: 15px 20px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes particle-float {
    0% { 
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    25% { 
        opacity: 1;
        transform: translateY(-50px) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-100px) scale(1);
    }
    75% { 
        opacity: 1;
        transform: translateY(-150px) scale(0.8);
    }
    100% { 
        opacity: 0;
        transform: translateY(-200px) scale(0.5);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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

.plan-card {
    animation: fadeInUp 0.6s ease-out;
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }

.feature-item {
    animation: fadeInUp 0.6s ease-out;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }
.feature-item:nth-child(7) { animation-delay: 0.7s; }
.feature-item:nth-child(8) { animation-delay: 0.8s; }


/* Dedicated Server CSS - DiamondHost */

/* Header Section */
.dedicated-header {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.dedicated-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Header Background Elements */
.header-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-server {
    position: absolute;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(10px);
    animation: float 8s ease-in-out infinite;
}

.floating-server-1 {
    top: 15%;
    right: 10%;
    width: 120px;
    height: 80px;
    animation-delay: 0s;
    z-index: 1;
}

.floating-server-2 {
    bottom: 20%;
    left: 8%;
    width: 100px;
    height: 60px;
    animation-delay: 3s;
    z-index: 1;
}

.floating-server-3 {
    top: 50%;
    right: 5%;
    width: 80px;
    height: 50px;
    animation-delay: 6s;
    z-index: 1;
}

.server-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    height: 100%;
    justify-content: center;
}

.server-line {
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.6), rgba(0, 212, 255, 0.3));
    border-radius: 2px;
    animation: pulse-line 2s ease-in-out infinite;
}

.server-line:nth-child(2) { animation-delay: 0.5s; }
.server-line:nth-child(3) { animation-delay: 1s; }

.header-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 6s linear infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 1s; }
.particle:nth-child(5) { top: 10%; left: 60%; animation-delay: 3s; }
.particle:nth-child(6) { top: 70%; left: 40%; animation-delay: 5s; }

.dedicated-header .container {
    position: relative;
    z-index: 2;
}

.dedicated-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    margin-bottom: 20px;
}

.dedicated-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left;
}

.dedicated-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    text-align: left;
}

/* Konfigurator Section */
.dedicated-configurator {
    background: linear-gradient(180deg, #16213e 0%, #0c0c0c 100%);
    padding: 80px 0;
    color: #ffffff;
}

.config-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.config-form {
    flex: 1;
    max-width: 65%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.config-form:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
}

.config-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: left;
}

.config-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #00d4ff;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
}

.config-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: auto;
    min-height: 48px;
}

.form-control:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
}

.form-control option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 12px 8px;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
}

.form-control optgroup {
    background: #16213e;
    color: #00d4ff;
    font-weight: 600;
    padding: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 25px;
}

/* Summary Column - Angepasst f�r nur Preis�bersicht */
.summary-column {
    width: 35%;
    max-width: 400px;
}

        /* Intel Offer Section - Zwei Angebote nebeneinander */
        .intel-offer-section {
            background: linear-gradient(180deg, #0c0c0c 0%, #1a1a2e 100%);
            padding: 60px 0;
            position: relative;
        }

        .intel-offer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.03) 0%, transparent 60%);
            pointer-events: none;
        }

        .intel-offers-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .intel-offer-card {
            background: rgba(255, 255, 255, 0.02);
            border: 2px solid rgba(0, 212, 255, 0.2);
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            position: relative;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .intel-offer-card:hover {
            border-color: rgba(0, 212, 255, 0.4);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
            transform: translateY(-5px);
        }

        .intel-badge {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 15px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .intel-content {
            padding: 30px;
        }

        .intel-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .intel-header h3 {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(45deg, #ffffff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .intel-header p {
            color: #cccccc;
            font-size: 14px;
            margin: 0;
        }

        .intel-specs {
            margin-bottom: 25px;
        }

        .intel-spec-row {
            margin-bottom: 15px;
        }

        .intel-spec-row:last-child {
            margin-bottom: 0;
        }

        .intel-spec-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .intel-spec-item:hover {
            background: rgba(0, 212, 255, 0.05);
            border-color: rgba(0, 212, 255, 0.2);
        }

        .intel-spec-item i {
            color: #00d4ff;
            font-size: 18px;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .intel-spec-item div {
            flex: 1;
        }

        .intel-spec-item strong {
            color: #ffffff;
            font-weight: 600;
            display: block;
            margin-bottom: 2px;
            font-size: 14px;
        }

        .intel-spec-item span {
            color: #cccccc;
            font-size: 13px;
            line-height: 1.3;
        }

        .intel-spec-note {
            text-align: center;
            padding: 10px;
        }

        .intel-spec-note small {
            color: #888;
            font-style: italic;
            font-size: 12px;
        }

        .intel-cta {
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding: 20px;
            background: rgba(0, 212, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .intel-price {
            display: flex;
            align-items: baseline;
            gap: 8px;
            justify-content: center;
        }

        .intel-price .price-label {
            color: #cccccc;
            font-size: 13px;
            font-weight: 500;
        }

        .intel-price .price-amount {
            color: #00d4ff;
            font-size: 28px;
            font-weight: 800;
            line-height: 1;
        }

        .intel-price .price-period {
            color: #888;
            font-size: 13px;
            font-weight: 500;
        }

        .intel-cta .btn {
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .intel-cta .btn:hover {
            background: linear-gradient(45deg, #0099cc, #007acc);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .intel-offers-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .intel-content {
                padding: 20px;
            }
            
            .intel-header h3 {
                font-size: 20px;
            }
            
            .intel-price .price-amount {
                font-size: 24px;
            }
        }

/* Price Summary */
.price-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.price-summary:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item i {
    color: #00d4ff;
    width: 16px;
    margin-right: 8px;
    flex-shrink: 0;
}

.summary-item span {
    color: #cccccc;
    flex: 1;
}

.summary-item strong {
    color: #ffffff;
    font-weight: 600;
}

.summary-item.total {
    font-size: 16px;
    font-weight: 700;
    padding: 15px 0;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    margin: 10px 0;
}

.summary-item.total strong {
    color: #00d4ff;
    font-size: 18px;
}

.summary-item.discount {
    color: #4caf50;
    font-style: italic;
}

.summary-item.first-payment {
    font-size: 15px;
    font-weight: 600;
    padding: 15px 0;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
    border-bottom: none;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    margin: 15px 0;
}

.summary-info {
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #cccccc;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #00d4ff;
    width: 16px;
    flex-shrink: 0;
}

/* Special Offer */
.special-offer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.special-offer:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.special-title {
    font-size: 18px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    text-align: center;
}

.special-specs {
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(0, 212, 255, 0.05);
}

.spec-item i {
    color: #00d4ff;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.spec-item div {
    flex: 1;
}

.spec-item strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.spec-item span {
    color: #cccccc;
    font-size: 14px;
}

.spec-note {
    text-align: center;
    margin-top: 10px;
}

.spec-note small {
    color: #888;
    font-style: italic;
}

.special-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 20px 0;
}

.special-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.special-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: #00d4ff;
}

.special-price i {
    font-size: 18px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    text-decoration: none;
    color: #ffffff;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Features Section */
.dedicated-features {
    background: linear-gradient(180deg, #0c0c0c 0%, #1a1a2e 100%);
    padding: 80px 0;
    color: #ffffff;
}

.features-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffffff;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* FAQ Section */
.dedicated-faq {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    color: #ffffff;
}

.faq-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-question h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    padding-right: 15px;
}

.faq-question i {
    color: #00d4ff;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    background: rgba(255, 255, 255, 0.01);
}

.faq-answer.show {
    padding: 20px 25px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .config-container {
        gap: 30px;
    }
    
    .config-form {
        max-width: 60%;
    }
    
    .summary-column {
        width: 40%;
    }
    
    .intel-spec-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .intel-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .intel-cta .btn {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .config-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .config-form,
    .summary-column {
        max-width: 100%;
        width: 100%;
    }
    
    .intel-content {
        padding: 30px;
    }
    
    .intel-spec-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .intel-spec-item {
        padding: 12px;
    }
    
    .intel-cta {
        padding: 20px;
        gap: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .dedicated-header {
        padding: 80px 0 60px;
    }
    
    .dedicated-configurator,
    .dedicated-features,
    .dedicated-faq {
        padding: 60px 0;
    }
    
    .intel-offer-section {
        padding: 40px 0;
    }
    
    .config-form {
        padding: 30px 25px;
    }
    
    .price-summary {
        padding: 25px 20px;
    }
    
    .intel-content {
        padding: 25px 20px;
    }
    
    .intel-header h3 {
        font-size: 24px;
    }
    
    .intel-spec-item {
        padding: 12px 15px;
    }
    
    .intel-price .price-amount {
        font-size: 28px;
    }
    
    .intel-cta {
        padding: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .floating-server-1,
    .floating-server-2,
    .floating-server-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .dedicated-header {
        padding: 60px 0 40px;
    }
    
    .config-form {
        padding: 25px 20px;
    }
    
    .price-summary {
        padding: 20px 15px;
    }
    
    .intel-content {
        padding: 20px 15px;
    }
    
    .intel-badge {
        left: 20px;
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .intel-spec-item {
        padding: 10px 12px;
    }
    
    .intel-price .price-amount {
        font-size: 24px;
    }
    
    .intel-cta {
        padding: 12px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .summary-item {
        font-size: 13px;
        padding: 10px 0;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.show {
        padding: 15px 20px;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes particle-float {
    0% { 
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    25% { 
        opacity: 1;
        transform: translateY(-50px) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-100px) scale(1);
    }
    75% { 
        opacity: 1;
        transform: translateY(-150px) scale(0.8);
    }
    100% { 
        opacity: 0;
        transform: translateY(-200px) scale(0.5);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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

/* Animation Classes */
.config-form {
    animation: fadeInUp 0.6s ease-out;
}

.price-summary {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.special-offer {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }

.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

/* Smooth Transitions */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.8);
}

/* Focus States for Accessibility */
.form-control:focus,
.btn:focus,
.faq-question:focus {
    outline: 2px solid rgba(0, 212, 255, 0.5);
    outline-offset: 2px;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .config-form,
    .price-summary,
    .special-offer,
    .feature-card,
    .faq-item {
        border-width: 2px;
    }
    
    .form-control {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-server,
    .particle {
        animation: none !important;
    }
}

/* Login Page CSS - DiamondHost */

/* Login Header */
.login-header {
    display: flex;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    min-height: 30vh;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.login-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Login Background Elements */
.login-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-diamond {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    transform: rotate(45deg);
    border-radius: 8px;
    animation: float 6s ease-in-out infinite;
}

.floating-diamond-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.floating-diamond-2 {
    bottom: 30%;
    left: 10%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

.floating-diamond-3 {
    top: 60%;
    right: 8%;
    width: 30px;
    height: 30px;
    animation-delay: 4s;
}

.diamond-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 3px;
    animation: pulse 2s ease-in-out infinite;
}

.login-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.login-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s linear infinite;
}

.login-particles .particle:nth-child(1) { top: 20%; left: 25%; animation-delay: 0s; }
.login-particles .particle:nth-child(2) { top: 50%; left: 75%; animation-delay: 2s; }
.login-particles .particle:nth-child(3) { top: 70%; left: 20%; animation-delay: 4s; }
.login-particles .particle:nth-child(4) { top: 30%; left: 60%; animation-delay: 6s; }
.login-particles .particle:nth-child(5) { top: 80%; left: 80%; animation-delay: 1s; }

.login-header-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
}

.login-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.login-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-align: left;
}

.login-subtitle {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 0;
    line-height: 1.6;
    text-align: left;
}

/* Login Content */
.login-content {
    background: linear-gradient(180deg, #16213e 0%, #0c0c0c 100%);
    padding: 60px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

/* Login Card */
.login-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.login-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
    transform: translateY(-5px);
}

.login-card-header {
    text-align: center;
    padding: 40px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.login-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.login-card-subtitle {
    color: #cccccc;
    font-size: 15px;
    margin: 0;
}

.login-card-body {
    padding: 30px 40px;
    flex-direction: column;
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.forgot-link {
    color: #00d4ff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    z-index: 2;
    color: #00d4ff;
    font-size: 16px;
    pointer-events: none;
}

.form-control {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
}

.form-control::placeholder {
    color: #888;
}

/* Password Reveal Button */
.btn-reveal-pw {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-reveal-pw:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.btn-reveal-pw:focus {
    outline: 2px solid rgba(0, 212, 255, 0.5);
    outline-offset: 2px;
}

/* Custom Checkbox */
.remember-me {
    display: flex;
    align-items: center;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-input:checked + .checkbox-custom {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-color: #00d4ff;
}

.checkbox-input:checked + .checkbox-custom::after {
    opacity: 1;
}

.checkbox-input:focus + .checkbox-custom {
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
}

.checkbox-label {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
}

/* Login Button */
.btn-login {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    background: linear-gradient(45deg, #0099cc, #00d4ff);
}

.btn-login:focus {
    outline: 2px solid rgba(0, 212, 255, 0.5);
    outline-offset: 2px;
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2) !important;
}

/* Login Card Footer */
.login-card-footer {
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.register-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.register-text {
    color: #cccccc;
    font-size: 14px;
}

.register-btn {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.register-btn:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.1);
    text-decoration: none;
}

/* Flash Messages */
.alert {
    border-radius: 12px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ffccd5;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #c8e6c9;
}

.alert-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #b3e5fc;
}

/* Captcha Styling */
.captcha-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

/* Provider Linking */
.providerLinkingFeedback {
    margin-bottom: 20px;
}

/* Linked Accounts */
.social-signin {
    margin-top: 30px;
}

.social-signin-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.social-signin-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.social-signin-divider span {
    background: linear-gradient(180deg, #16213e 0%, #0c0c0c 100%);
    padding: 0 20px;
    color: #888;
    font-size: 14px;
}

.social-signin-btn {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-signin-btn:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-header {
        padding: 40px 0 30px;
        min-height: 25vh;
        text-align: center;
    }
    
    .login-header-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .login-badge {
        justify-content: center;
        margin: 0 auto 15px auto;
        width: fit-content;
    }
    
    .login-title,
    .login-subtitle {
        text-align: center;
    }
    
    .login-content {
        padding: 40px 0;
    }
    
    .login-card-header,
    .login-card-body,
    .login-card-footer {
        padding: 25px 25px;
    }
    
    .login-card-header {
        padding-bottom: 15px;
    }
    
    .login-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .login-title {
        font-size: 24px;
    }
    
    .floating-diamond-1,
    .floating-diamond-2,
    .floating-diamond-3 {
        display: none;
    }
    
    .register-link {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .login-header {
        padding: 30px 0 25px;
        min-height: 20vh;
    }
    
    .login-content {
        padding: 30px 0;
    }
    
    .login-card-header,
    .login-card-body,
    .login-card-footer {
        padding: 20px;
    }
    
    .form-control {
        padding: 12px 12px 12px 45px;
        font-size: 14px;
    }
    
    .input-icon {
        left: 12px;
        font-size: 14px;
    }
    
    .btn-reveal-pw {
        right: 12px;
    }
    
    .btn-login {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes particle-float {
    0% { 
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    25% { 
        opacity: 1;
        transform: translateY(-30px) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-60px) scale(1);
    }
    75% { 
        opacity: 1;
        transform: translateY(-90px) scale(0.8);
    }
    100% { 
        opacity: 0;
        transform: translateY(-120px) scale(0.5);
    }
}


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

/* Smooth Transitions */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .login-card,
    .form-control,
    .checkbox-custom {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-diamond,
    .login-particles .particle {
        animation: none !important;
    }
}

/* Register Page CSS - DiamondHost */

/* Register Header */
.register-header {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    min-height: 30vh;
    display: flex;
    align-items: center;
}

.register-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Register Background Elements */
.register-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-diamond {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    transform: rotate(45deg);
    border-radius: 8px;
    animation: float 6s ease-in-out infinite;
}

.floating-diamond-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.floating-diamond-2 {
    bottom: 30%;
    left: 10%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

.floating-diamond-3 {
    top: 60%;
    right: 8%;
    width: 30px;
    height: 30px;
    animation-delay: 4s;
}

.diamond-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 3px;
    animation: pulse 2s ease-in-out infinite;
}

.register-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.register-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s linear infinite;
}

.register-particles .particle:nth-child(1) { top: 20%; left: 25%; animation-delay: 0s; }
.register-particles .particle:nth-child(2) { top: 50%; left: 75%; animation-delay: 2s; }
.register-particles .particle:nth-child(3) { top: 70%; left: 20%; animation-delay: 4s; }
.register-particles .particle:nth-child(4) { top: 30%; left: 60%; animation-delay: 6s; }
.register-particles .particle:nth-child(5) { top: 80%; left: 80%; animation-delay: 1s; }

.register-header-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
}

.register-badge {
    display: inline-flex;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    align-items: center;
    gap: 8px;
}

.register-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-align: left;
}

.register-subtitle {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 0;
    line-height: 1.6;
    text-align: left;
}

/* Register Content */
.register-content {
    background: linear-gradient(180deg, #16213e 0%, #0c0c0c 100%);
    padding: 60px 0;
    min-height: 70vh;
}

.register-form-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Register Cards */
.register-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.register-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.register-card:nth-child(1) { animation-delay: 0.1s; }
.register-card:nth-child(2) { animation-delay: 0.2s; }
.register-card:nth-child(3) { animation-delay: 0.3s; }
.register-card:nth-child(4) { animation-delay: 0.4s; }

.register-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.register-step {
    flex-shrink: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.register-card-title h2 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.register-card-title p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.register-card-body {
    padding: 30px 40px;
}

/* Form Grid */
.register-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 0;
}

.form-group-full {
    grid-column: 1 / -1;
}

/* Form Elements */
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.optional {
    color: #888;
    font-weight: 400;
    font-size: 13px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    z-index: 2;
    color: #00d4ff;
    font-size: 16px;
    pointer-events: none;
}

.form-control {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
}

.form-control::placeholder {
    color: #888;
}

.form-control option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 12px 8px;
}

/* Generate Password Button */
.btn-generate-password {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-generate-password:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    color: #ffffff;
}

/* Password Strength */
.password-strength-container {
    margin-top: 20px;
}

.password-strength-meter {
    margin-bottom: 0;
}

.progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #dc3545, #ffc107, #28a745);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.password-strength-label {
    color: #cccccc;
    font-size: 13px;
    text-align: center;
    margin: 0;
}

/* Custom Checkbox */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    flex: 0 0 30px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 10px;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-input:checked + .checkbox-custom {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-color: #00d4ff;
}

.checkbox-input:checked + .checkbox-custom::after {
    opacity: 1;
}

.checkbox-input:focus + .checkbox-custom {
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
}

.checkbox-label {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
}

/* Toggle Switch for Marketing */
.marketing-card {
    border-color: rgba(76, 175, 80, 0.2);
}

.marketing-toggle {
    display: flex;
    justify-content: center;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.toggle-wrapper:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.toggle-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.toggle-custom {
    width: 50px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.toggle-custom::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-custom {
    background: linear-gradient(45deg, #4caf50, #388e3c);
    border-color: #4caf50;
}

.toggle-input:checked + .toggle-custom::after {
    transform: translateX(22px);
}

.toggle-input:focus + .toggle-custom {
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.toggle-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

/* Terms & Register Button */
.terms-acceptance {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.register-submit {
    text-align: center;
}

.btn-register {
    width: 100%;
    max-width: 300px;
    padding: 18px 30px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    background: linear-gradient(45deg, #0099cc, #00d4ff);
}

.btn-register:focus {
    outline: 2px solid rgba(0, 212, 255, 0.5);
    outline-offset: 2px;
}

.btn-register:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2) !important;
}

/* Field Help Text */
.field-help-text {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    font-style: italic;
}

/* Alerts */
.alert {
    border-radius: 12px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ffccd5;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #c8e6c9;
}

.alert-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #b3e5fc;
}

/* Captcha Styling */
.captcha-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

/* Social Login Integration */
.social-signin {
    margin-bottom: 30px;
}

.social-signin-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.social-signin-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.social-signin-divider span {
    background: linear-gradient(180deg, #16213e 0%, #0c0c0c 100%);
    padding: 0 20px;
    color: #888;
    font-size: 14px;
}

.social-signin-btn {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-signin-btn:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .register-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .register-header {
        padding: 40px 0 30px;
        min-height: 25vh;
        text-align: center;
    }
    
    .register-header-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .register-badge {
        justify-content: center;
        margin: 0 auto 15px auto;
        width: fit-content;
    }
    
    .register-title,
    .register-subtitle {
        text-align: center;
    }
    
    .register-content {
        padding: 40px 0;
    }
    
    .register-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .register-card-header {
        padding: 25px 25px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .register-card-body {
        padding: 25px;
    }
    
    .floating-diamond-1,
    .floating-diamond-2,
    .floating-diamond-3 {
        display: none;
    }
    
    .form-control {
        padding: 12px 12px 12px 45px;
        font-size: 14px;
    }
    
    .input-icon {
        left: 12px;
        font-size: 14px;
    }
    
    .btn-register {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .register-header {
        padding: 30px 0 25px;
        min-height: 20vh;
    }
    
    .register-content {
        padding: 30px 0;
    }
    
    .register-card-header,
    .register-card-body {
        padding: 20px;
    }
    
    .register-card-header {
        padding-bottom: 10px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .register-card-title h2 {
        font-size: 18px;
    }
    
    .register-card-title p {
        font-size: 13px;
    }
    
    .form-control {
        padding: 10px 10px 10px 40px;
        font-size: 14px;
    }
    
    .input-icon {
        left: 10px;
        font-size: 13px;
    }
    
    .btn-register {
        padding: 15px 25px;
        font-size: 15px;
    }
    
    .toggle-wrapper {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .toggle-label {
        font-size: 14px;
        text-align: center;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes particle-float {
    0% { 
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    25% { 
        opacity: 1;
        transform: translateY(-30px) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-60px) scale(1);
    }
    75% { 
        opacity: 1;
        transform: translateY(-90px) scale(0.8);
    }
    100% { 
        opacity: 0;
        transform: translateY(-120px) scale(0.5);
    }
}

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

/* Utility Classes */
.w-hidden {
    display: none !important;
}

.hidden {
    display: none !important;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .register-card,
    .form-control,
    .checkbox-custom,
    .toggle-custom {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-diamond,
    .register-particles .particle {
        animation: none !important;
    }
}

/* Focus States for Better Accessibility */
.form-control:focus,
.btn-register:focus,
.btn-generate-password:focus,
.social-signin-btn:focus {
    outline: 2px solid rgba(0, 212, 255, 0.5);
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.8);
}


/* Client Area CSS - DiamondHost */

/* Client Area Header */
.clientarea-header {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    min-height: 30vh;
    display: flex;
    align-items: center;
}

.clientarea-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Header Background Elements */
.clientarea-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-diamond {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    transform: rotate(45deg);
    border-radius: 8px;
    animation: float 6s ease-in-out infinite;
}

.floating-diamond-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.floating-diamond-2 {
    bottom: 30%;
    left: 10%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

.floating-diamond-3 {
    top: 60%;
    right: 8%;
    width: 30px;
    height: 30px;
    animation-delay: 4s;
}

.diamond-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 3px;
    animation: pulse 2s ease-in-out infinite;
}

.clientarea-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.clientarea-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s linear infinite;
}

.clientarea-particles .particle:nth-child(1) { top: 20%; left: 25%; animation-delay: 0s; }
.clientarea-particles .particle:nth-child(2) { top: 50%; left: 75%; animation-delay: 2s; }
.clientarea-particles .particle:nth-child(3) { top: 70%; left: 20%; animation-delay: 4s; }
.clientarea-particles .particle:nth-child(4) { top: 30%; left: 60%; animation-delay: 6s; }

.clientarea-header-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
}

.welcome-badge {
    display: inline-flex;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    align-items: center;
    gap: 8px;
}

.clientarea-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-align: left;
}

.clientarea-subtitle {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 0;
    line-height: 1.6;
    text-align: left;
}

/* Client Area Content */
.clientarea-content {
    background: linear-gradient(180deg, #16213e 0%, #0c0c0c 100%);
    padding: 60px 0;
    min-height: 70vh;
}

/* Stats Dashboard */
.stats-dashboard {
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }

.stat-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.stat-link:hover {
    text-decoration: none;
    color: inherit;
}

.stat-content {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #cccccc;
    font-weight: 500;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    color: #00d4ff;
}

.stat-card:hover .stat-icon {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
}

.stat-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    transition: all 0.3s ease;
}

.stat-accent.services {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
}

.stat-accent.domains {
    background: linear-gradient(45deg, #4caf50, #388e3c);
}

.stat-accent.affiliates {
    background: linear-gradient(45deg, #4caf50, #388e3c);
}

.stat-accent.quotes {
    background: linear-gradient(45deg, #4caf50, #388e3c);
}

.stat-accent.tickets {
    background: linear-gradient(45deg, #ff5722, #d84315);
}

.stat-accent.credit {
    background: linear-gradient(45deg, #9c27b0, #7b1fa2);
}

.stat-accent.invoices {
    background: linear-gradient(45deg, #ffc107, #ff8f00);
}

.stat-card:hover .stat-accent {
    height: 6px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Addon Section */
.addon-section {
    margin-bottom: 30px;
}

/* Home Panels */
.home-panels {
    margin-top: 20px;
}

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

.panels-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Panel Cards */
.panel-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.panel-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.panel-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.panel-title-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.panel-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.panel-title-content {
    flex: 1;
}

.panel-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.panel-badge {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.panel-action {
    flex-shrink: 0;
}

.btn-panel-action {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-panel-action:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.panel-body {
    padding: 25px 30px;
    color: #cccccc;
    line-height: 1.6;
}

.panel-list {
    background: rgba(255, 255, 255, 0.01);
}

.panel-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.panel-list-item:last-child {
    border-bottom: none;
}

.panel-list-item:hover {
    background: rgba(0, 212, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    padding-left: 35px;
}

.panel-list-item.active {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border-left: 3px solid #00d4ff;
}

.panel-list-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.panel-list-icon {
    width: 16px;
    text-align: center;
    color: #00d4ff;
    flex-shrink: 0;
}

.panel-list-label {
    font-weight: 500;
    flex: 1;
}

.panel-list-badge {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.panel-list-arrow {
    color: #888;
    font-size: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.panel-list-item:hover .panel-list-arrow {
    color: #00d4ff;
    transform: translateX(3px);
}

.panel-footer {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 13px;
}

/* Panel Color Variants */
.panel-blue {
    border-left: 4px solid #00d4ff;
}

.panel-blue .panel-icon {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
}

.panel-green {
    border-left: 4px solid #4caf50;
}

.panel-green .panel-icon {
    background: linear-gradient(45deg, #4caf50, #388e3c);
}

.panel-orange {
    border-left: 4px solid #ff9800;
}

.panel-orange .panel-icon {
    background: linear-gradient(45deg, #ff9800, #f57c00);
}

.panel-red {
    border-left: 4px solid #f44336;
}

.panel-red .panel-icon {
    background: linear-gradient(45deg, #f44336, #d32f2f);
}

.panel-purple {
    border-left: 4px solid #9c27b0;
}

.panel-purple .panel-icon {
    background: linear-gradient(45deg, #9c27b0, #7b1fa2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .panels-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .clientarea-header {
        padding: 40px 0 30px;
        min-height: 25vh;
        text-align: center;
    }
    
    .clientarea-header-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .welcome-badge {
        justify-content: center;
        margin: 0 auto 15px auto;
        width: fit-content;
    }
    
    .clientarea-title,
    .clientarea-subtitle {
        text-align: center;
    }
    
    .clientarea-content {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-content {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .panels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .panel-header {
        padding: 20px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .panel-title-section {
        gap: 12px;
    }
    
    .panel-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .panel-title {
        font-size: 18px;
    }
    
    .panel-body {
        padding: 20px 25px;
    }
    
    .panel-list-item {
        padding: 12px 25px;
    }
    
    .panel-list-item:hover {
        padding-left: 30px;
    }
    
    .panel-footer {
        padding: 15px 25px;
    }
    
    .floating-diamond-1,
    .floating-diamond-2,
    .floating-diamond-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .clientarea-header {
        padding: 30px 0 25px;
        min-height: 20vh;
    }
    
    .clientarea-content {
        padding: 30px 0;
    }
    
    .stat-content {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .panel-header {
        padding: 15px 20px;
    }
    
    .panel-body {
        padding: 15px 20px;
    }
    
    .panel-list-item {
        padding: 10px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .panel-list-arrow {
        display: none;
    }
    
    .panel-footer {
        padding: 12px 20px;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes particle-float {
    0% { 
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    25% { 
        opacity: 1;
        transform: translateY(-30px) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-60px) scale(1);
    }
    75% { 
        opacity: 1;
        transform: translateY(-90px) scale(0.8);
    }
    100% { 
        opacity: 0;
        transform: translateY(-120px) scale(0.5);
    }
}

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

/* Alert Integration */
.alert {
    border-radius: 12px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ffccd5;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #c8e6c9;
}

.alert-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #b3e5fc;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #fff3cd;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.8);
}

/* Focus States for Accessibility */
.stat-link:focus,
.panel-list-item:focus,
.btn-panel-action:focus {
    outline: 2px solid rgba(0, 212, 255, 0.5);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .stat-card,
    .panel-card {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-diamond,
    .clientarea-particles .particle {
        animation: none !important;
    }
}

/* Rootserver */
/* Rootserver Header - Linksbündig */
.rootserver-header {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.rootserver-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.rootserver-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    margin-bottom: 20px;
}

.rootserver-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
    z-index: 100 !important;
    text-align: left;
}

.rootserver-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    text-align: left;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
}

/* Server Type Switcher */
.server-type-switcher {
    background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
    padding: 40px 0;
    position: relative;
}

.switcher-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.switcher-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 20px 30px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.switcher-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.switcher-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.switcher-btn:hover::before {
    opacity: 1;
}

.switcher-btn.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 153, 204, 0.15));
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.switcher-icon {
    font-size: 32px;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.switcher-btn:hover .switcher-icon,
.switcher-btn.active .switcher-icon {
    transform: scale(1.1);
}

.switcher-text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.switcher-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Enterprise Hardware Section */
.enterprise-hardware {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.enterprise-hardware::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hardware-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hardware-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.4);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 20px;
    animation: pulse 3s infinite;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hardware-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffffff, #00d4ff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hardware-subtitle {
    font-size: 18px;
    color: #aaaaaa;
    margin-bottom: 50px;
    line-height: 1.6;
}

.hardware-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.spec-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-highlight:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.spec-icon {
    font-size: 36px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.spec-highlight:hover .spec-icon {
    transform: rotate(5deg) scale(1.05);
}

.spec-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.spec-content p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.5;
    margin: 0;
}

.hardware-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hardware-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hardware-feature:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

.hardware-feature i {
    font-size: 24px;
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.hardware-feature:hover i {
    transform: scale(1.1);
}

.hardware-feature span {
    font-size: 13px;
    color: #cccccc;
    font-weight: 600;
    text-align: center;
}

/* Difference Section */
.difference-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    color: #ffffff;
}

.difference-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.difference-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.difference-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.difference-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.difference-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.difference-card:hover .difference-icon {
    transform: rotate(-5deg) scale(1.05);
}

.difference-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.difference-description {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.difference-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.difference-features li {
    color: #dddddd;
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

.difference-features li:hover {
    transform: translateX(5px);
}

.difference-features li i {
    color: #00d4ff;
    font-size: 12px;
}

.ideal-for {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid #00d4ff;
    border-radius: 8px;
    font-size: 14px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.difference-card:hover .ideal-for {
    background: rgba(0, 212, 255, 0.15);
}

.ideal-for strong {
    color: #00d4ff;
}

/* Rootserver Plans */
.rootserver-plans {
    background: linear-gradient(180deg, #16213e 0%, #0c0c0c 100%);
    padding: 80px 0;
    position: relative;
    display: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rootserver-plans.active {
    display: block;
    opacity: 1;
}

.plans-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.plans-title span {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plans-subtitle {
    text-align: center;
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* KVM Configurator with Sliders */
.configurator-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.configurator-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.configurator-panel:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.config-section {
    margin-bottom: 35px;
}

.config-section:last-child {
    margin-bottom: 0;
}

.config-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.label-icon {
    font-size: 24px;
    margin-right: 5px;
}

.label-text {
    flex: 1;
}

.config-current-value {
    font-size: 16px;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    transition: all 0.3s ease;
}

.config-current-value:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.5);
}

/* Slider Styles */
.slider-wrapper {
    position: relative;
    padding: 10px 0;
}

.config-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(90deg, 
        rgba(0, 212, 255, 0.6) 0%, 
        rgba(0, 212, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.config-slider:hover {
    height: 10px;
}

/* Slider Thumb - Webkit (Chrome, Safari) */
.config-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2), 0 4px 12px rgba(0, 212, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.config-slider::-webkit-slider-thumb:hover {
    width: 28px;
    height: 28px;
    box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.3), 0 6px 20px rgba(0, 212, 255, 0.5);
}

.config-slider:active::-webkit-slider-thumb {
    width: 26px;
    height: 26px;
    box-shadow: 0 0 0 8px rgba(0, 212, 255, 0.4), 0 4px 16px rgba(0, 212, 255, 0.6);
}

/* Slider Thumb - Firefox */
.config-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2), 0 4px 12px rgba(0, 212, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.config-slider::-moz-range-thumb:hover {
    width: 28px;
    height: 28px;
    box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.3), 0 6px 20px rgba(0, 212, 255, 0.5);
}

.config-slider:active::-moz-range-thumb {
    width: 26px;
    height: 26px;
    box-shadow: 0 0 0 8px rgba(0, 212, 255, 0.4), 0 4px 16px rgba(0, 212, 255, 0.6);
}

/* Slider Track - Firefox */
.config-slider::-moz-range-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    height: 8px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0 5px;
}

.slider-labels span {
    font-size: 12px;
    color: #aaaaaa;
    font-weight: 600;
}

/* Configurator Summary */
.configurator-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    height: fit-content;
    position: sticky;
    top: 20px;
    transition: all 0.3s ease;
}

.configurator-summary:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.summary-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.summary-content {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.summary-item:hover {
    padding-left: 5px;
    border-bottom-color: rgba(0, 212, 255, 0.3);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: #aaaaaa;
    font-size: 14px;
}

.summary-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.summary-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
    margin: 20px 0;
}

.summary-price {
    text-align: center;
    margin-bottom: 25px;
}

.price-label {
    display: block;
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.summary-price:hover .price-value {
    transform: scale(1.05);
}

.price-period {
    display: block;
    color: #cccccc;
    font-size: 14px;
}

.summary-note {
    text-align: center;
    color: #aaaaaa;
    font-size: 12px;
    margin-top: 15px;
}

/* Rootserver Features */
.rootserver-features {
    background: linear-gradient(180deg, #0c0c0c 0%, #1a1a2e 100%);
    padding: 80px 0;
    color: #ffffff;
}

.features-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
}

/* Backup Info Card */
.backup-info-card {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.backup-info-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.backup-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.backup-info-card:hover .backup-icon {
    transform: rotate(10deg) scale(1.05);
}

.backup-content h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}

.backup-content p {
    color: #cccccc;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .difference-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .configurator-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .configurator-summary {
        position: static;
    }
    
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hardware-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rootserver-header {
        padding: 80px 0 60px;
    }
    
    .switcher-wrapper {
        flex-direction: column;
        max-width: 400px;
    }
    
    .difference-section,
    .rootserver-plans,
    .rootserver-features,
    .enterprise-hardware {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .hardware-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .config-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .rootserver-header {
        padding: 60px 0 40px;
    }
    
    .difference-title,
    .plans-title,
    .features-title,
    .hardware-title {
        font-size: 28px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .configurator-panel {
        padding: 25px 20px;
    }
    
    .configurator-summary {
        padding: 25px 20px;
    }
    
    .config-label {
        font-size: 16px;
        flex-wrap: wrap;
    }
    
    .config-current-value {
        font-size: 14px;
        min-width: 80px;
    }
    
    .hardware-features-grid {
        grid-template-columns: 1fr;
    }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add smooth entrance animations */
.plan-card,
.difference-card,
.feature-item,
.spec-highlight {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }

.difference-card:nth-child(1) { animation-delay: 0.1s; }
.difference-card:nth-child(2) { animation-delay: 0.2s; }

.feature-item:nth-child(1) { animation-delay: 0.05s; }
.feature-item:nth-child(2) { animation-delay: 0.1s; }
.feature-item:nth-child(3) { animation-delay: 0.15s; }
.feature-item:nth-child(4) { animation-delay: 0.2s; }
.feature-item:nth-child(5) { animation-delay: 0.25s; }
.feature-item:nth-child(6) { animation-delay: 0.3s; }
.feature-item:nth-child(7) { animation-delay: 0.35s; }
.feature-item:nth-child(8) { animation-delay: 0.4s; }

.spec-highlight:nth-child(1) { animation-delay: 0.1s; }
.spec-highlight:nth-child(2) { animation-delay: 0.2s; }
.spec-highlight:nth-child(3) { animation-delay: 0.3s; }
.spec-highlight:nth-child(4) { animation-delay: 0.4s; }

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Control Panel Section */
.control-panel-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    color: #ffffff;
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.panel-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.panel-info > p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.panel-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.panel-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-features li {
    color: #dddddd;
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

.panel-features li:hover {
    transform: translateX(5px);
}

.panel-features li i {
    color: #00d4ff;
    font-size: 12px;
}

.panel-mockup {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
}

.panel-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
}

@media (max-width: 992px) {
    .panel-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .panel-features {
        grid-template-columns: 1fr;
    }
}

/* Promo Banner im Konfigurator Summary - Kompakt in einer Zeile */
.promo-banner-summary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseGlow 3s infinite;
}

.promo-banner-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    }
}

.promo-banner-summary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.promo-icon-summary {
    font-size: 32px;
    flex-shrink: 0;
    animation: promoIconBounce 2s ease-in-out infinite;
    z-index: 1;
    will-change: transform;
}

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

.promo-left {
    flex: 1;
    z-index: 1;
    min-width: 0;
}

.promo-title {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.promo-subtitle {
    font-size: 11px;
    color: #ffdf80;
    font-weight: 600;
    line-height: 1.2;
}

.promo-code-box {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 8px;
    padding: 9px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1;
    flex-shrink: 0;
}

.promo-code-box:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.7);
    transform: scale(1.05);
}

.promo-code-value {
    font-size: 16px;
    font-weight: 800;
    color: #ffd700;
    letter-spacing: 1.5px;
    font-family: 'Courier New', monospace;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .promo-banner-summary {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .promo-icon-summary {
        font-size: 28px;
    }
    
    .promo-title {
        font-size: 16px;
    }
    
    .promo-subtitle {
        font-size: 10px;
    }
    
    .promo-code-value {
        font-size: 14px;
    }
    
    .promo-code-box {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .promo-banner-summary {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 10px;
    }
    
    .promo-icon-summary {
        order: 1;
    }
    
    .promo-left {
        order: 2;
    }
    
    .promo-code-box {
        order: 3;
        width: 100%;
        margin-top: 5px;
    }
}