
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(25, 25, 25, 0.75) 100%);
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: #e8f4ff;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
}

.hero-cta {
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.6);
    background: linear-gradient(135deg, #0056d2 0%, #5a359a 100%);
}

.hero-cta:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
        text-align: center;
    }
    
    .hero-text {
        padding: 2rem 0;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 50vh;
    }
    
    .hero-text {
        padding: 1.5rem 0;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Block 2 */
.ai-security-innovations {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    position: relative;
}

.ai-security-innovations::before {
    content: '';
    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="%23e0e7ff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: 1;
}

.ai-security-innovations .container {
    position: relative;
    z-index: 2;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.innovation-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.innovation-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.innovation-card:hover .card-image {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-description {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.card-metrics {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.metric-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.metric-value {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1.1rem;
}

.metric-label {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-left: 0.25rem;
}

.ai-stats-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.ai-stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    border-radius: 50%;
    filter: blur(60px);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .ai-security-innovations {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .ai-stats-banner {
        padding: 2rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

@media (max-width: 576px) {
    .section-title {
        font-size: 1.9rem;
    }

    .card-image-wrapper {
        height: 200px;
    }

    .stat-number {
        font-size: 1.7rem;
    }
}

/* Block 3 */
.threat-intelligence-hub {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #ffffff;
}

.threat-intelligence-hub .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.threat-intelligence-hub .section-subtitle {
    font-size: 1.2rem;
    color: #b8b8d1;
    margin-bottom: 0;
}

.threat-map-container {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}

.threat-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.threat-indicators {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.threat-level {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.threat-level.critical {
    background: #dc3545;
    color: #ffffff;
}

.threat-level.high {
    background: #fd7e14;
    color: #ffffff;
}

.threat-level.medium {
    background: #ffc107;
    color: #000000;
}

.threat-level.low {
    background: #28a745;
    color: #ffffff;
}

.threat-map-visual {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

.threat-map-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.threat-pulse {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #dc3545;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
}

.pulse-1 {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.pulse-2 {
    top: 40%;
    left: 70%;
    animation-delay: 0.5s;
    background: #fd7e14;
}

.pulse-3 {
    top: 60%;
    left: 45%;
    animation-delay: 1s;
    background: #ffc107;
}

.pulse-4 {
    top: 35%;
    left: 85%;
    animation-delay: 1.5s;
}

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

.threat-summary {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b8b8d1;
}

.summary-item i {
    color: #ffc107;
    font-size: 1.1rem;
}

.intelligence-feed {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}

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

.feed-container {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.feed-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid;
    background: rgba(255,255,255,0.03);
}

.feed-item.urgent {
    border-left-color: #dc3545;
}

.feed-item.warning {
    border-left-color: #fd7e14;
}

.feed-item.info {
    border-left-color: #17a2b8;
}

.feed-timestamp {
    font-size: 0.75rem;
    color: #8e8ea0;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

.feed-content {
    flex: 1;
}

.feed-type {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.feed-description {
    color: #b8b8d1;
    font-size: 0.85rem;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.feed-severity {
    color: #ffc107;
}

.feed-load-more {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feed-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.intelligence-partners {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.partners-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
}

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

.partner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    filter: brightness(0.9) contrast(1.1);
}

.partner-name {
    font-weight: 600;
    color: #b8b8d1;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    .threat-intelligence-hub {
        padding: 60px 0;
    }
    
    .threat-intelligence-hub .section-title {
        font-size: 2.2rem;
    }
    
    .threat-map-header {
        flex-direction: column;
        text-align: center;
    }
    
    .threat-summary {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    background: url('security-pattern.png') repeat;
    opacity: 0.05;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.form-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.form-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.order-form-container {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.form-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.progress-step.active .step-label {
    color: #333;
    font-weight: 600;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.step-label {
    font-size: 0.85rem;
    color: #6c757d;
    white-space: nowrap;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: #e9ecef;
    margin: 0 20px;
}

.form-content {
    max-width: 500px;
    margin: 0 auto;
}

.input-group-wrapper {
    margin-bottom: 30px;
}

.input-field {
    position: relative;
}

.field-label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.field-label i {
    color: #667eea;
    margin-right: 8px;
    width: 16px;
}

.form-input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e9ecef;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-bottom-color: #667eea;
}

.form-input:focus + .input-underline,
.form-input:valid + .input-underline {
    transform: scaleX(1);
}

.input-underline {
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    margin-top: -2px;
}

.security-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
}

.feature-checkbox {
    position: relative;
}

.checkbox-input {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
}

.checkbox-label:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.15);
}

.checkbox-input:checked + .checkbox-label {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom::after {
    content: '✓';
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-info strong {
    color: #333;
    font-size: 1rem;
}

.feature-info small {
    color: #6c757d;
    font-size: 0.85rem;
}

.form-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: rgba(102,126,234,0.05);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-item i {
    color: #667eea;
    font-size: 1rem;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.button-icon {
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(5px);
}

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.security-badge {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.security-badge:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2rem;
    }
    
    .order-form-container {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .form-progress-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .progress-line {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .security-badges {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .security-badge {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .security-features-grid {
        gap: 15px;
    }
    
    .checkbox-label {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
