
/* Block 1 */
.hero-banner {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('cyber-security-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    width: 100%;
    z-index: 2;
    padding: 60px 0;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #e8e8e8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .hero-cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 40px 0;
    }
}

/* Block 2 */
.quantum-security-showcase {
padding: 80px 0;
background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d2d5f 100%);
color: white;
overflow: hidden;
}

.quantum-content {
padding-right: 2rem;
}

.quantum-badge {
display: inline-block;
background: linear-gradient(45deg, #00d4ff, #0099cc);
color: white;
padding: 8px 20px;
border-radius: 25px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.quantum-title {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 1.5rem;
background: linear-gradient(45deg, #ffffff, #b8c6db);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
line-height: 1.2;
}

.quantum-description {
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 2rem;
color: #c7d2fe;
}

.quantum-features {
list-style: none;
padding: 0;
margin-bottom: 2.5rem;
}

.quantum-feature-item {
display: flex;
align-items: center;
margin-bottom: 1rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.quantum-feature-item:hover {
background: rgba(255, 255, 255, 0.08);
transform: translateX(10px);
}

.quantum-icon {
color: #00d4ff;
font-size: 1.2rem;
margin-right: 1rem;
width: 20px;
}

.quantum-cta-btn {
background: linear-gradient(45deg, #00d4ff, #0099cc);
color: white;
border: none;
padding: 15px 35px;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.quantum-cta-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.quantum-visual-wrapper {
display: flex;
justify-content: center;
align-items: center;
}

.quantum-main-image {
width: 100%;
max-width: 480px;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
transform: perspective(1000px) rotateY(-5deg);
transition: transform 0.3s ease;
}

.quantum-main-image:hover {
transform: perspective(1000px) rotateY(0deg);
}

.quantum-floating-card {
display: flex;
align-items: center;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-radius: 15px;
padding: 1.5rem;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
margin-top: -50px;
margin-left: -80px;
z-index: 2;
border: 1px solid rgba(255, 255, 255, 0.3);
animation: float 3s ease-in-out infinite;
}

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

.quantum-card-icon {
width: 50px;
height: 50px;
margin-right: 1rem;
border-radius: 10px;
}

.quantum-card-content {
color: #1a1a3e;
}

.quantum-card-title {
font-size: 1.1rem;
font-weight: 700;
margin: 0 0 0.3rem 0;
color: #1a1a3e;
}

.quantum-card-text {
font-size: 0.9rem;
margin: 0;
color: #666;
}

.quantum-stat-card {
text-align: center;
padding: 2rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
height: 100%;
}

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

.quantum-stat-icon {
width: 70px;
height: 70px;
border-radius: 50%;
background: linear-gradient(45deg, #00d4ff, #0099cc);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
font-size: 1.8rem;
color: white;
}

.quantum-stat-number {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
background: linear-gradient(45deg, #00d4ff, #ffffff);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.quantum-stat-label {
font-size: 1rem;
color: #c7d2fe;
margin: 0;
}

@media (max-width: 768px) {
.quantum-security-showcase {
padding: 60px 0;
}

.quantum-title {
font-size: 2.2rem;
}

.quantum-content {
padding-right: 0;
margin-bottom: 3rem;
}

.quantum-floating-card {
margin-left: 0;
margin-top: -30px;
}

.quantum-main-image {
transform: none;
}

.quantum-feature-item:hover {
transform: none;
}
}

/* Block 3 */
.neural-threat-detection {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
  position: relative;
}

.neural-threat-detection::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="neural-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(%23neural-grid)"/></svg>');
  z-index: 1;
}

.neural-threat-detection .container {
  position: relative;
  z-index: 2;
}

.neural-header-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.neural-category-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.neural-main-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #ffffff, #e3f2fd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neural-main-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.neural-dashboard-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.neural-dashboard-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.neural-pulse-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 15px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

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

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

.pulse-text {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.neural-stats-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.neural-stat-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #00ff88;
}

.stat-label {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  margin-top: 5px;
}

.neural-features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.neural-feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.neural-feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.neural-feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-img {
  width: 32px;
  height: 32px;
}

.neural-feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.neural-feature-desc {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

.neural-metric-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.neural-metric-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.metric-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #00ff88, #0066ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.metric-icon {
  font-size: 1.8rem;
  color: white;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #00ff88;
}

.metric-description {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.metric-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.metric-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff88, #0066ff);
  width: 85%;
  border-radius: 2px;
  animation: progressFill 2s ease-out;
}

@keyframes progressFill {
  from { width: 0%; }
  to { width: 85%; }
}

.neural-cta-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  gap: 40px;
}

.neural-cta-content {
  flex: 1;
}

.neural-cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.neural-cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.neural-cta-buttons {
  display: flex;
  gap: 20px;
}

.neural-primary-btn,
.neural-secondary-btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.neural-primary-btn {
  background: linear-gradient(45deg, #00ff88, #0066ff);
  color: white;
}

.neural-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.neural-secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.neural-secondary-btn:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
}

.neural-cta-visual {
  flex-shrink: 0;
}

.neural-cta-image {
  width: 200px;
  height: auto;
}

.mb-6 {
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .neural-main-title {
    font-size: 2.2rem;
  }
  
  .neural-main-subtitle {
    font-size: 1rem;
  }
  
  .neural-feature-card {
    flex-direction: column;
    text-align: center;
  }
  
  .neural-stats-overlay {
    flex-direction: column;
    gap: 10px;
  }
  
  .neural-cta-section {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  
  .neural-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .neural-primary-btn,
  .neural-secondary-btn {
    width: 100%;
    max-width: 250px;
  }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
}

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

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.form-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.form-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group-wrapper {
    position: relative;
}

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

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

.input-icon {
    position: absolute;
    left: 18px;
    color: #9ca3af;
    font-size: 1.1rem;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.security-features-preview {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #cbd5e1;
}

.features-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

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

.feature-text {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.order-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.order-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

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

.order-submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #10b981;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .order-form-container {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .order-submit-btn {
        font-size: 1.1rem;
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.8rem;
    }
    
    .order-form-container {
        padding: 25px 20px;
    }
    
    .form-input {
        padding: 14px 18px 14px 45px;
    }
    
    .input-icon {
        left: 15px;
    }
}
