/* MY-HOSTING SERVICES - ZENTRALE CSS DATEI */
/* ============================================= */
/* Version: 2.1 - Banner-Problem korrigiert */
/* Datum: Januar 2025 */

/* GRUNDLAGEN & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin-top: 120px; /* Desktop Header Offset OHNE Banner */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* DESKTOP BANNER - NUR DESKTOP SICHTBAR */
.desktop-banner {
    display: none;          /* Standardmäßig versteckt */
    width: 100%;
    height: 40px;
    background: url('assets/images/desktop-banner-1920x80.png') center center,
                linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002;         /* HÖHER als Header */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* HEADER & NAVIGATION - KOMPLETT MIT BANNER */
.header-top {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 0.8rem;
    position: fixed;        /* IMMER fixed */
    top: 0;                /* Standardmäßig top: 0 */
    left: 0;
    right: 0;
    z-index: 1001;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    gap: 20px;
}

.header-contact span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-actions a {
    color: white;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.header-actions a:hover {
    background: rgba(255,255,255,0.2);
}

.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 12px 0;
    position: fixed;        /* IMMER fixed - nicht nur mobile */
    top: 32px;             /* Standardmäßig nach header-top */
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Banner nur auf Desktop ÜBER 1200px aktivieren */
@media (min-width: 1200px) {
    .desktop-banner {
        display: block;      /* Banner auf Desktop anzeigen */
    }
    
    .header-top {
        top: 40px;          /* Banner-Höhe berücksichtigen */
    }
    
    .main-header {
        top: 72px;          /* Banner (40px) + Header-top (32px) */
    }
    
    body {
        margin-top: 160px;   /* Banner (40px) + Header-top (32px) + Main-header (48px) + Abstand */
    }
}

/* TABLET & KLEINERE DESKTOPS - Banner versteckt, Header bleibt fixed */
@media (min-width: 769px) and (max-width: 1199px) {
    .desktop-banner {
        display: none !important;
    }
    
    .header-top {
        position: fixed;     /* Header bleibt fixed */
        top: 0;
    }
    
    .main-header {
        position: fixed;     /* Header bleibt fixed */
        top: 32px;
    }
    
    body {
        margin-top: 120px;   /* Normale Header-Margin ohne Banner */
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2c3e50;
}

.logo-img {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.logo-text p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
    padding: 10px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.main-nav li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.main-nav li > a:hover {
    color: #667eea;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 220px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    transition: background 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #667eea;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    body {
        margin-top: 85px; /* Mobile Header Offset */
    }
    
    .header-top {
        padding: 2px 0;
        font-size: 0.7rem;
        top: 0;              /* Mobile: Kein Banner */
    }
    
    .header-top-content {
        flex-direction: row;          /* GEÄNDERT: horizontal statt vertikal */
        gap: 0;                       /* GEÄNDERT: kein gap */
        justify-content: space-between; /* HINZUGEFÜGT: space-between */
        align-items: center;          /* HINZUGEFÜGT: center alignment */
    }
    
    .header-contact {
        gap: 10px;
        justify-content: flex-start;  /* GEÄNDERT: links ausrichten */
    }
    
    .header-contact .phone,
    .header-contact .location {
        display: none;                /* Telefon und Ort verstecken */
    }
    
    .header-contact .email {
        display: flex;                /* Nur Email anzeigen */
    }
    
    .header-actions {
        display: flex;                /* Beide Buttons anzeigen */
        gap: 10px;
        flex-shrink: 0;              /* HINZUGEFÜGT: Buttons nicht schrumpfen */
    }
    
    .main-header {
        padding: 6px 0;
        top: 24px;           /* Mobile: Nur header-top Höhe */
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        display: none;
        z-index: 1000;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav li > a {
        padding: 15px 0;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 10px;
        border-radius: 8px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.btn-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

/* HERO SECTIONS */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>') no-repeat bottom center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
    max-width: 200px;
}

.hero-feature .icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.hero-feature:hover .icon-circle {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.hero-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-feature p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CARDS & GRIDS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card.featured {
    border-color: #e74c3c;
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(231, 76, 60, 0.15);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.service-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card .description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.price-highlight {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.price {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-detail {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.features-list {
    text-align: left;
    margin: 25px 0;
}

.features-list .feature {
    padding: 8px 0;
    color: #2c3e50;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.features-list .feature i {
    color: #27ae60;
    margin-right: 10px;
    width: 16px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* PLANS & PRICING */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.plan-card {
    background: white;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.plan-card.popular {
    border-color: #e74c3c;
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(231, 76, 60, 0.15);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.plan-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.plan-description {
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.price-display {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.price-period {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.price-includes {
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    color: #2c3e50;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.plan-features i {
    color: #27ae60;
    margin-right: 12px;
    width: 18px;
}

.plan-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-item i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
    display: block;
}

.feature-item h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* MSP360 SPEZIFISCHE FEATURES */
.msp360-features {
    padding: 100px 0;
    background: #f8f9fa;
}

.msp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.msp-feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.msp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,102,204,0.15);
    border-color: #0066cc;
}

.msp-feature-icon {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0,102,204,0.3);
}

.feature-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* BACKGROUND VARIATIONS */
.solutions-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.plans-section {
    padding: 100px 0;
    background: white;
}

.features-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.technical-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.backup-technologies {
    padding: 100px 0;
    background: white;
}

.use-cases {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.performance-metrics {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-section p, 
.footer-section li {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    padding: 5px 0;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #bdc3c7;
}

/* TECHNICAL SPECS */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.tech-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0,102,204,0.3);
}

.tech-item h5 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.tech-item p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* TABLES */
.comparison-table, .tech-comparison {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-top: 60px;
}

.comparison-table table, .tech-comparison table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .tech-comparison th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 25px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td, .tech-comparison td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.comparison-table tr:hover, .tech-comparison tr:hover {
    background: #f8f9fa;
}

.feature-yes, .feature-supported {
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-no, .feature-not-supported {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-partial {
    color: #f39c12;
    font-weight: 600;
    font-size: 1.1rem;
}

/* TECHNOLOGY DEEP DIVE */
.tech-accordion {
    margin-top: 60px;
}

.tech-accordion .tech-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-header {
    padding: 30px 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.tech-header:hover {
    background: #f8f9fa;
}

.tech-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tech-toggle {
    color: #0066cc;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.tech-body {
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tech-body.active {
    padding: 30px 40px;
    max-height: 1000px;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.tech-description {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 1.05rem;
}

.tech-benefits {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.tech-benefits h5 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 8px 0;
    color: #2c3e50;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: #27ae60;
    margin-right: 10px;
    width: 16px;
}

/* USE CASES */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.use-case-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 25px;
    display: block;
}

.use-case-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.use-case-card p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* PERFORMANCE METRICS */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.metric-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
    display: block;
}

.metric-label {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.metric-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* CTA BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #667eea;
}

/* ANIMATIONS */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Delays */
.service-card:nth-child(1) { animation: slideInUp 0.6s ease 0.1s both; }
.service-card:nth-child(2) { animation: slideInUp 0.6s ease 0.2s both; }
.service-card:nth-child(3) { animation: slideInUp 0.6s ease 0.3s both; }
.service-card:nth-child(4) { animation: slideInUp 0.6s ease 0.4s both; }
.service-card:nth-child(5) { animation: slideInUp 0.6s ease 0.5s both; }
.service-card:nth-child(6) { animation: slideInUp 0.6s ease 0.6s both; }

.msp-feature-card:nth-child(1) { animation: slideInUp 0.6s ease 0.1s both; }
.msp-feature-card:nth-child(2) { animation: slideInUp 0.6s ease 0.2s both; }
.msp-feature-card:nth-child(3) { animation: slideInUp 0.6s ease 0.3s both; }
.msp-feature-card:nth-child(4) { animation: slideInUp 0.6s ease 0.4s both; }
.msp-feature-card:nth-child(5) { animation: slideInUp 0.6s ease 0.5s both; }
.msp-feature-card:nth-child(6) { animation: slideInUp 0.6s ease 0.6s both; }

/* UTILITIES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* PRINT STYLES */
@media print {
    .header-top,
    .main-header,
    .footer,
    .btn,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        margin-top: 0;
        color: black;
        background: white;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .service-card,
    .plan-card,
    .feature-item {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}