/* ========================================
   SECTION OTHER FEATURES INTERACTIVE
   ======================================== */

.otherfeatures-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #f1f5f8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.otherfeatures-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.02) 0%, transparent 60%);
    pointer-events: none;
}


/* Container principal */

.otherfeatures-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}


/* Header de la section */

.otherfeatures-header {
    text-align: center;
    margin-bottom: 80px;
}

.otherfeatures-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    color: #0066ff;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
}

.otherfeatures-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a1a 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.otherfeatures-subtitle {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 12px;
}


/* Layout principal */

.otherfeatures-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}


/* Navigation des features */

.features-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.feature-point {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0066ff 0%, #0052d4 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-point.active::before {
    transform: scaleY(1);
}

.feature-point:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.2);
}

.feature-point.active {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 102, 255, 0.02) 100%);
    border-color: rgba(0, 102, 255, 0.25);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.15);
}

.point-indicator {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-point.active .point-indicator {
    background: linear-gradient(135deg, #0066ff 0%, #0052d4 100%);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.point-indicator svg {
    width: 24px;
    height: 24px;
    color: #0066ff;
    transition: all 0.3s ease;
}

.feature-point.active .point-indicator svg {
    color: white;
    transform: scale(1.1);
}

.point-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.point-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}


/* Display des features */

.features-display {
    min-height: 600px;
    position: relative;
}

.feature-display {
    display: none;
    animation: fadeIn 0.5s ease;
}

.feature-display.active {
    display: block;
}

.display-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.08);
    padding: 48px;
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.feature-image {
    margin-bottom: 40px;
}

.feature-info h4 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.feature-info p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-info ul li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 15px;
    color: #4b5563;
    border-bottom: 1px solid rgba(0, 102, 255, 0.05);
}

.feature-info ul li:last-child {
    border-bottom: none;
}

.feature-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066ff;
    font-weight: bold;
    font-size: 18px;
}


/* Network Visualization */

.network-visualization {
    background: linear-gradient(135deg, #f8fafb 0%, #eef3f8 100%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.network-speed-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    justify-content: center;
}

.speed-option {
    padding: 12px 24px;
    background: white;
    border: 2px solid rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
}

.speed-option:hover {
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-2px);
}

.speed-option.active {
    background: linear-gradient(135deg, #0066ff 0%, #0052d4 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
}

.network-graph {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: inset 0 2px 8px rgba(0, 102, 255, 0.05);
}

.graph-bars {
    display: flex;
    gap: 12px;
    height: 120px;
    align-items: flex-end;
    justify-content: space-around;
    margin-bottom: 16px;
}

.bar {
    width: 40px;
    background: linear-gradient(180deg, #0066ff 0%, #0052d4 100%);
    border-radius: 8px 8px 0 0;
    animation: barGrow 1s ease-out;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

@keyframes barGrow {
    from {
        height: 0;
    }
}

.graph-label {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}


/* DNS Panel */

.dns-panel {
    background: linear-gradient(135deg, #f8fafb 0%, #eef3f8 100%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.dns-header h5 {
    margin: 0 0 24px 0;
    font-size: 20px;
    color: #1a1a1a;
}

.dns-entries {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.dns-entry {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.dns-entry .ip {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    color: #6b7280;
    flex: 1;
}

.dns-entry .arrow {
    color: #0066ff;
    font-weight: bold;
}

.dns-entry .hostname {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    color: #1a1a1a;
    flex: 1;
}

.dns-entry .status {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.dns-controls {
    display: flex;
    gap: 12px;
}

.dns-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #0066ff 0%, #0052d4 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.dns-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.dns-btn.secondary {
    background: white;
    color: #0066ff;
    border: 2px solid rgba(0, 102, 255, 0.2);
    box-shadow: none;
}


/* Scaling Dashboard */

.scaling-dashboard {
    background: linear-gradient(135deg, #f8fafb 0%, #eef3f8 100%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.resource-sliders {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
}

.resource-control label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 16px;
}

.slider {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    outline: none;
    transition: all 0.3s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #0052d4 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
}

.slider-values {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 13px;
    color: #6b7280;
}

.scale-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0066ff 0%, #0052d4 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
}

.scale-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
}


/* Panel Mockup */

.panel-mockup {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.panel-header {
    background: linear-gradient(135deg, #0066ff 0%, #0052d4 100%);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-logo {
    font-weight: 700;
    color: white;
    font-size: 18px;
}

.panel-user {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.panel-nav {
    display: flex;
    background: #f8fafb;
    border-bottom: 1px solid #e5e7eb;
}

.nav-items {
    padding: 16px 24px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-items.active {
    color: #0066ff;
    background: white;
}

.nav-items.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066ff 0%, #0052d4 100%);
}

.panel-content {
    padding: 24px;
    background: white;
}

.panel-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.panel-card {
    padding: 20px;
    background: #f8fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.card-title {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.card-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-status.online {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.usage-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 12px;
}

.usage-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066ff 0%, #0052d4 100%);
    border-radius: 4px;
    transition: width 1s ease;
}


/* Backup Schedule */

.backup-schedule {
    background: linear-gradient(135deg, #f8fafb 0%, #eef3f8 100%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.backup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.backup-header h5 {
    margin: 0;
    font-size: 20px;
    color: #1a1a1a;
}

.backup-status {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.backup-status.active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.backup-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.backup-item {
    display: grid;
    grid-template-columns: 80px 100px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.08);
    transition: all 0.3s ease;
}

.backup-item:hover {
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
}

.backup-item.completed {
    border-left: 3px solid #10b981;
}

.backup-item.scheduled {
    border-left: 3px solid #0066ff;
    opacity: 0.8;
}

.backup-time {
    font-weight: 600;
    color: #1a1a1a;
}

.backup-date {
    color: #6b7280;
    font-size: 14px;
}

.backup-size {
    color: #4b5563;
    font-size: 14px;
}

.backup-status-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backup-location {
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    border: 1px solid rgba(0, 102, 255, 0.08);
}


/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */

@media (max-width: 1024px) {
    .otherfeatures-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .features-nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .otherfeatures-section {
        padding: 60px 0;
    }
    .otherfeatures-title {
        font-size: 36px;
    }
    .display-content {
        padding: 32px 24px;
    }
    .features-nav {
        grid-template-columns: 1fr;
    }
    .panel-cards {
        grid-template-columns: 1fr;
    }
    .backup-item {
        grid-template-columns: auto 1fr auto;
    }
    .backup-date {
        display: none;
    }
}

@media (max-width: 480px) {
    .otherfeatures-title {
        font-size: 28px;
    }
    .otherfeatures-subtitle {
        font-size: 16px;
    }
    .feature-point {
        padding: 16px;
    }
    .point-indicator {
        width: 40px;
        height: 40px;
    }
    .point-content h3 {
        font-size: 16px;
    }
    .point-content p {
        font-size: 13px;
    }
}