
/* Block 1 */
.hero-banner {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
    }
    
    .hero-background {
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(26, 35, 56, 0.85) 0%, rgba(67, 90, 111, 0.75) 50%, rgba(26, 35, 56, 0.9) 100%);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    
    .hero-background,
    .hero-overlay {
        position: absolute;
    }
    
    .hero-banner .container {
        position: relative;
        z-index: 2;
        width: 100%;
    }
    
    .hero-content {
        text-align: center;
        color: white;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-button {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        border: none;
        color: white;
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .hero-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(79, 172, 254, 0.4);
        background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    }
    
    .cta-icon {
        font-size: 1.2rem;
        display: flex;
        align-items: center;
    }
    
    .cta-text {
        display: flex;
        align-items: center;
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-description {
            font-size: 1.1rem;
            padding: 0 1rem;
        }
        
        .hero-cta-button {
            padding: 0.875rem 2rem;
            font-size: 1rem;
        }
        
        .hero-content {
            padding: 1rem 0;
        }
    }
    
    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-description {
            font-size: 1rem;
        }
        
        .hero-cta-button {
            padding: 0.75rem 1.5rem;
            font-size: 0.95rem;
        }
    }

/* Block 2 */
.quantum-security-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.quantum-security-features::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.quantum-security-features .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #a0a0b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(82%) sepia(25%) saturate(1207%) hue-rotate(209deg) brightness(92%) contrast(87%);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-description {
    color: #a0a0b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-metrics {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.metric-badge {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.explore-tech-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.explore-tech-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.explore-tech-btn:hover .btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .quantum-security-features {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .explore-tech-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Block 3 */
.cyberthreat-intelligence {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow: hidden;
}

.intelligence-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #4ecdc4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShimmer 3s ease-in-out infinite;
}

@keyframes titleShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.intelligence-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto;
}

.threat-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.dashboard-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff88;
    animation: pulse 2s infinite;
}

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

.status-text {
    color: #00ff88;
    font-weight: 500;
}

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

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.metric-icon {
    margin-bottom: 15px;
}

.metric-image {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 5px;
}

.metric-label {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 12px;
}

.metric-trend.positive {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.metric-trend.negative {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.metric-trend.stable {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.threat-categories {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.categories-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    border-left: 4px solid #00d4ff;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.category-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.category-name {
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    min-width: 120px;
}

.category-severity {
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-severity.high {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.category-severity.medium {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.category-severity.critical {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.category-description {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.intelligence-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.alert-feed {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.alert-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.alert-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid #00d4ff;
}

.alert-timestamp {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 8px;
}

.alert-type {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 8px;
    margin-bottom: 6px;
    display: inline-block;
}

.alert-type.critical {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.alert-type.warning {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.alert-type.info {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.alert-message {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.threat-map-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.map-container {
    text-align: center;
}

.threat-map {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    filter: brightness(0.7) hue-rotate(200deg);
}

.map-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
}

.stat-label {
    font-size: 0.8rem;
    color: #b8b8b8;
}

.intelligence-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-description {
    color: #b8b8b8;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.intelligence-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border: none;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.intelligence-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .intelligence-title {
        font-size: 2.2rem;
    }
    
    .threat-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .map-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .intelligence-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cyberthreat-intelligence {
        padding: 60px 0;
    }
    
    .threat-dashboard,
    .alert-feed,
    .threat-map-preview,
    .intelligence-cta {
        padding: 20px;
    }
}

/* Block 4 */
.order-consultation-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.order-consultation-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(1deg); }
    66% { transform: translate(-15px, 15px) rotate(-1deg); }
}

.consultation-card {
    background: white;
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.card-header {
    padding: 50px 40px 30px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: white;
    text-align: center;
    position: relative;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: white;
    border-radius: 20px 20px 0 0;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    backdrop-filter: blur(10px);
}

.consultation-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
}

.form-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 0;
    line-height: 1.6;
}

.card-body {
    padding: 40px;
}

.consultation-form {
    max-width: none;
}

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

.form-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: #374151;
}

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

.input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    z-index: 2;
    opacity: 0.6;
}

.form-control {
    width: 100%;
    padding: 16px 16px 16px 52px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.5;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.consultation-benefits {
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.benefits-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #6366f1;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
}

.form-actions {
    text-align: center;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.submit-button:active {
    transform: translateY(-1px);
}

.btn-image {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.btn-text {
    flex: 1;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.submit-button:hover .btn-arrow {
    transform: translateX(4px);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.trust-badge {
    width: 20px;
    height: 20px;
}

.trust-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

.card-footer {
    padding: 32px 40px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.response-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.response-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.response-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.response-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .order-consultation-form {
        padding: 60px 0;
    }

    .card-header {
        padding: 40px 24px 24px;
    }

    .form-title {
        font-size: 1.875rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .card-body {
        padding: 24px;
    }

    .consultation-benefits {
        padding: 24px;
        margin: 32px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .submit-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .trust-indicators {
        gap: 16px;
    }

    .trust-item {
        padding: 6px 12px;
    }

    .card-footer {
        padding: 24px;
    }

    .response-time {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        gap: 12px;
    }

    .benefit-item {
        padding: 10px;
    }

    .benefit-text {
        font-size: 0.9rem;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
