/* ============================================
   Модальные окна авторизации - StormHosting UA
   ============================================ */

/* Основные модальные стили */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
}

.auth-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.auth-modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-modal.show .auth-modal-content {
    transform: scale(1) translateY(0);
}

/* Кнопка закрытия */
.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.auth-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #495057;
    transform: rotate(90deg);
}

/* Заголовок модального окна */
.auth-modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-right: 40px;
}

.auth-modal-header h2 {
    color: #2d3748;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-modal-header p {
    color: #718096;
    font-size: 16px;
    margin: 0;
}

/* Форма */
.auth-form {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label i {
    color: #667eea;
    width: 16px;
}

/* Input Groups */
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6b7280;
    text-align: center;
    white-space: nowrap;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 12px 0 0 12px;
    border-right: none;
}

.input-group .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-left: none;
    border-radius: 0;
}

/* Password toggle button */
.input-group .btn-outline-secondary {
    border-left: none;
    border-radius: 0 12px 12px 0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-color: #d1d5db;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.input-group .btn-outline-secondary:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #374151;
}

.input-group .btn-outline-secondary:focus,
.input-group .btn-outline-secondary:active {
    box-shadow: none !important;
    outline: none !important;
    background: #e5e7eb;
    border-color: #6b7280;
}

/* Form Controls */
.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #374151;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #374151;
    background-color: #ffffff;
    border-color: #667eea;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* Validation States */
.form-control.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #ef4444;
}

.invalid-feedback.show,
.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Checkbox */
.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
    margin-left: -1.5rem;
    vertical-align: top;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    transition: all 0.15s ease-in-out;
}

.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-check-label {
    color: #374151;
    font-size: 0.95rem;
    cursor: pointer;
}

.form-check-label a {
    color: #667eea;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Auth Button */
.btn-auth {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-auth:hover:not(:disabled) {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-auth:active {
    transform: translateY(0);
}

.btn-auth:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Auth Switch */
.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.auth-switch p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.auth-switch a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Forgot Password */
.forgot-password {
    text-align: center;
    margin-top: 1rem;
}

.forgot-password a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.95rem;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Alert Styles */
.alert {
    position: relative;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.alert-success {
    color: #065f46;
    background-color: #d1fae5;
    border-color: #a7f3d0;
}

.alert-danger {
    color: #991b1b;
    background-color: #fee2e2;
    border-color: #fecaca;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.5;
}

.alert-dismissible .btn-close:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-modal-content {
        padding: 30px 20px;
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .auth-modal-header {
        padding-right: 30px;
    }
    
    .auth-modal-header h2 {
        font-size: 1.75rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .btn-auth {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .auth-modal-content {
        padding: 25px 15px;
        margin: 15px;
        max-width: calc(100% - 30px);
    }
    
    .input-group-text,
    .form-control,
    .btn-outline-secondary {
        padding: 0.625rem 0.75rem;
        font-size: 0.95rem;
    }
}

/* Улучшения для accessibility */
.form-control:focus,
.btn-auth:focus,
.form-check-input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* Анимации появления */
.auth-modal {
    animation: fadeInBackdrop 0.3s ease;
}

.auth-modal.show .auth-modal-content {
    animation: slideInUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInBackdrop {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Дополнительные улучшения для лучшего UX */
.form-control:disabled,
.form-control[readonly] {
    background-color: #f9fafb;
    opacity: 1;
}

.input-group .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Стили для корректного отображения иконок */
.bi {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentcolor;
}

/* Убираем outline по умолчанию */
button:focus {
    outline: none;
}

/* Исправления для кнопки показа пароля */
.input-group .btn-outline-secondary {
    position: relative;
    z-index: 2;
    min-width: 48px;
}

.input-group .btn-outline-secondary i {
    font-size: 1rem;
    line-height: 1;
}

/* Убираем стандартные стили кнопки в Firefox */
.input-group .btn-outline-secondary::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Обеспечиваем корректное выравнивание */
.input-group > .form-control,
.input-group > .input-group-text,
.input-group > .btn {
    display: flex;
    align-items: center;
}

/* Исправляем z-index для корректного отображения границ */
.input-group > .form-control:focus {
    z-index: 3;
}

.input-group > .form-control:not(:first-child) {
    margin-left: -1px;
}

.input-group > .btn:not(:first-child) {
    margin-left: -1px;
}/**
 * Premium Design Enhancements for StormHosting UA
 * Modern, prestigious styling improvements
 */

/* ========================================
   Enhanced Color Scheme
   ======================================== */
:root {
    /* Premium Color Palette */
    --premium-primary: #667eea;
    --premium-secondary: #764ba2;
    --premium-accent: #00d4ff;
    --premium-gold: #FFD700;
    --premium-dark: #1a1a2e;
    --premium-light: #f8f9ff;

    /* Gradients */
    --premium-gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --premium-gradient-accent: linear-gradient(135deg, #00d4ff 0%, #667eea 100%);
    --premium-gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);

    /* Shadows */
    --premium-shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.15);
    --premium-shadow-md: 0 4px 16px rgba(102, 126, 234, 0.2);
    --premium-shadow-lg: 0 8px 32px rgba(102, 126, 234, 0.25);
    --premium-shadow-xl: 0 16px 48px rgba(102, 126, 234, 0.3);
}

/* ========================================
   Trust Badges Styling
   ======================================== */
.trust-badges {
    background: linear-gradient(to bottom, transparent, rgba(102, 126, 234, 0.05));
    border-radius: 12px;
    padding: 20px;
}

.trust-badges .badge-item {
    padding: 10px;
    transition: transform 0.3s ease;
}

.trust-badges .badge-item:hover {
    transform: translateY(-5px);
}

.trust-badges .badge-item i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ========================================
   Enhanced Buttons
   ======================================== */
.btn-premium {
    background: var(--premium-gradient-main);
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--premium-shadow-md);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--premium-shadow-lg);
    color: white;
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid var(--premium-primary);
    color: var(--premium-primary);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background: var(--premium-gradient-main);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   Enhanced Cards
   ======================================== */
.premium-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--premium-shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.premium-card:hover {
    box-shadow: var(--premium-shadow-lg);
    transform: translateY(-4px);
    border-color: var(--premium-primary);
}

.premium-card-header {
    background: var(--premium-gradient-main);
    color: white;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    margin: -30px -30px 20px -30px;
}

/* ========================================
   Premium Header Enhancements
   ======================================== */
.main-header {
    backdrop-filter: blur(10px);
    box-shadow: var(--premium-shadow-md);
}

.navbar-brand img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

/* ========================================
   Premium Footer Enhancements
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--premium-gradient-accent);
}

/* ========================================
   Premium Animations
   ======================================== */
@keyframes premium-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.premium-float {
    animation: premium-float 3s ease-in-out infinite;
}

@keyframes premium-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.6); }
}

.premium-glow {
    animation: premium-glow 2s ease-in-out infinite;
}

/* ========================================
   Premium Text Styles
   ======================================== */
.text-premium-gradient {
    background: var(--premium-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-premium-gold {
    background: var(--premium-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ========================================
   Premium Badges
   ======================================== */
.premium-badge {
    background: var(--premium-gradient-main);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--premium-shadow-sm);
}

.premium-badge-gold {
    background: var(--premium-gradient-gold);
    color: #1a1a2e;
}

/* ========================================
   Responsive Enhancements
   ======================================== */
@media (max-width: 768px) {
    .trust-badges {
        gap: 2rem !important;
    }

    .trust-badges .badge-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 576px) {
    .trust-badges .badge-item {
        flex: 0 0 100%;
    }
}

/* ========================================
   Premium Features Section
   ======================================== */
.premium-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--premium-gradient-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: var(--premium-shadow-md);
    margin-bottom: 20px;
}

/* ========================================
   Premium Pricing Cards
   ======================================== */
.premium-pricing-card {
    position: relative;
    overflow: hidden;
}

.premium-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--premium-gradient-main);
}

.premium-pricing-popular {
    border: 2px solid var(--premium-primary);
    transform: scale(1.05);
}

.premium-pricing-popular::after {
    content: 'Популярний';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--premium-gradient-gold);
    color: #1a1a2e;
    padding: 4px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
/* =================================
   CSS для страницы Гарантия качества
   /assets/css/pages/info-quality.css
   ================================= */

/* Hero Section */
.quality-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 70vh;
}

.quality-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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.quality-badge i {
    margin-right: 8px;
    font-size: 16px;
}

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

/* Guarantee Highlights */
.guarantee-highlights {
    margin-top: 40px;
}

.guarantee-highlights .guarantee-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.guarantee-highlights .guarantee-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.guarantee-highlights .guarantee-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.guarantee-info h5 {
    color: white;
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.guarantee-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

/* Hero Visual Dashboard */
.hero-visual {
    position: relative;
    z-index: 2;
}

.quality-dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    animation: float 4s ease-in-out infinite;
}

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

.dashboard-header h6 {
    color: white;
    margin: 0;
    font-weight: 600;
}

.status-indicator {
    display: flex;
    align-items: center;
    color: #4ade80;
    font-size: 12px;
    font-weight: 500;
}

.status-indicator.online .status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.metrics-grid {
    display: grid;
    gap: 15px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 2px;
    animation: progressLoad 2s ease-out;
}

.metric-chart {
    margin-top: 8px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 20px;
}

.bar {
    background: linear-gradient(to top, #667eea, #764ba2);
    width: 3px;
    min-height: 4px;
    border-radius: 1px;
    animation: barGrow 1.5s ease-out;
}

.metric-status {
    margin-top: 8px;
    display: flex;
    align-items: center;
    font-size: 11px;
}

.metric-status.success {
    color: #4ade80;
}

.metric-status i {
    margin-right: 5px;
}

/* SLA Section */
.sla-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.sla-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sla-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.sla-card.featured {
    border-color: #667eea;
    transform: scale(1.02);
}

.sla-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.sla-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sla-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
}

.sla-header h4 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

.sla-percentage {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
    margin-bottom: 15px;
}

.sla-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sla-details {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.detail-label {
    color: #6c757d;
    font-size: 14px;
}

.detail-value {
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
}

/* Response Times */
.response-times {
    display: grid;
    gap: 15px;
}

.response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid;
}

.response-item.urgent {
    background: rgba(239, 68, 68, 0.05);
    border-left-color: #ef4444;
}

.response-item.high {
    background: rgba(249, 115, 22, 0.05);
    border-left-color: #f97316;
}

.response-item.normal {
    background: rgba(34, 197, 94, 0.05);
    border-left-color: #22c55e;
}

.response-item.low {
    background: rgba(59, 130, 246, 0.05);
    border-left-color: #3b82f6;
}

.response-priority {
    font-weight: 600;
    color: #2c3e50;
}

.response-time {
    font-weight: 700;
    color: #667eea;
}

/* Speed Metrics */
.speed-metrics {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.speed-item {
    text-align: center;
}

.speed-value {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.speed-label {
    color: #6c757d;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.speed-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Monitoring Section */
.monitoring-section {
    padding: 80px 0;
}

.monitoring-features {
    margin-top: 30px;
}

.monitoring-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h5 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-weight: 600;
}

.feature-content p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

/* Monitoring Visual */
.monitoring-visual {
    position: relative;
}

.monitoring-dashboard {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.dashboard-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-title h6 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

.live-indicator {
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.monitor-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e9ecef;
}

.monitor-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.monitor-status {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
}

.monitor-status.online {
    color: #22c55e;
}

.monitor-status .status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s infinite;
}

.monitor-metrics {
    display: flex;
    gap: 10px;
    font-size: 10px;
    color: #6c757d;
}

/* Recent Events */
.recent-events {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.events-title {
    font-size: 12px;
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.event-item {
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-size: 11px;
    border-bottom: 1px solid #f0f0f0;
}

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

.event-time {
    color: #6c757d;
    width: 40px;
    flex-shrink: 0;
}

.event-text {
    color: #2c3e50;
    flex: 1;
    margin: 0 10px;
}

.event-status {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 600;
}

.event-status.success {
    background: #22c55e;
    color: white;
}

.event-status.info {
    background: #3b82f6;
    color: white;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: white;
}

.security-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.security-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.1);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.security-card h5 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.security-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Compensation Section */
.compensation-section {
    padding: 80px 0;
}

.compensation-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compensation-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 20px;
    color: white;
    text-align: center;
}

.compensation-header h6 {
    margin: 0;
    font-weight: 600;
}

.compensation-rows {
    padding: 0;
}

.compensation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.compensation-row:last-child {
    border-bottom: none;
}

.downtime-range {
    color: #2c3e50;
    font-weight: 600;
}

.compensation-amount {
    color: #667eea;
    font-weight: 600;
}

/* Calculator Widget */
.calculator-widget {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calculator-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 20px;
    color: white;
    text-align: center;
}

.calculator-header h6 {
    margin: 0;
    font-weight: 600;
}

.calculator-form {
    padding: 25px;
}

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

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

.input-group {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.input-group input {
    border: none;
    padding: 12px 15px;
    flex: 1;
    outline: none;
    font-size: 16px;
}

.input-group:focus-within {
    border-color: #667eea;
}

.input-unit {
    background: #f8f9fa;
    padding: 12px 15px;
    color: #6c757d;
    font-weight: 500;
    border-left: 1px solid #e9ecef;
}

.calculation-result {
    background: rgba(102, 126, 234, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.result-label {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 8px;
}

.result-amount {
    color: #667eea;
    font-size: 2rem;
    font-weight: 700;
}

/* Certificates Section */
.certificates-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.certificate-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.certificate-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.certificate-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.certificate-card h5 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.certificate-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.certificate-status {
    background: #22c55e;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Contact CTA Section */
.contact-cta {
    padding: 60px 0;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes progressLoad {
    0% {
        width: 0;
    }
    100% {
        width: 99.97%;
    }
}

@keyframes barGrow {
    0% {
        height: 4px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .quality-hero {
        padding: 80px 0 60px;
        min-height: 50vh;
    }
    
    .guarantee-highlights .guarantee-item {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-highlights .guarantee-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .sla-grid {
        grid-template-columns: 1fr;
    }
    
    .monitoring-grid {
        grid-template-columns: 1fr;
    }
    
    .speed-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .quality-hero,
    .sla-section,
    .monitoring-section,
    .security-section,
    .compensation-section,
    .certificates-section {
        padding: 60px 0;
    }
    
    .sla-card,
    .monitoring-dashboard,
    .calculator-widget {
        padding: 20px;
    }
    
    .security-icon,
    .certificate-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}