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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(49, 27, 146, 0.75) 50%, rgba(15, 23, 42, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    padding: 2rem 0;
    animation: heroSlideIn 1.2s ease-out;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.btn-hero-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .btn-hero-primary {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Block 2 */
.ai-innovations-showcase {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.ai-innovations-showcase::before {
  content: '';
  background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

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

.innovation-header {
  margin-bottom: 40px;
}

.innovation-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.innovation-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.innovation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.innovation-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.innovation-card:hover .innovation-img {
  transform: scale(1.05);
}

.innovation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.8) 0%, rgba(139, 92, 246, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.innovation-card:hover .innovation-overlay {
  opacity: 1;
}

.innovation-icon {
  color: white;
  font-size: 3rem;
  animation: pulse 2s infinite;
}

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

.innovation-content {
  padding: 30px;
}

.innovation-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.innovation-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.innovation-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #4f46e5;
  font-weight: 600;
}

.metric-item i {
  margin-right: 10px;
  width: 16px;
  color: #6366f1;
}

.innovation-cta {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  padding: 50px 40px;
  border-radius: 25px;
  color: white;
  text-align: center;
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
}

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

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-innovation-primary,
.btn-innovation-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.btn-innovation-primary {
  background: white;
  color: #6366f1;
  border-color: white;
}

.btn-innovation-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  color: #4f46e5;
}

.btn-innovation-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.btn-innovation-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
  color: white;
}

@media (max-width: 768px) {
  .innovation-title {
    font-size: 2.2rem;
  }
  
  .innovation-subtitle {
    font-size: 1.1rem;
  }
  
  .innovation-content {
    padding: 25px;
  }
  
  .innovation-cta {
    padding: 40px 25px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-innovation-primary,
  .btn-innovation-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

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

.quantum-ecosystem-hub::before {
content: '';
width: 100%;
height: 100%;
background: radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
z-index: 1;
}

.quantum-ecosystem-hub .container {
position: relative;
z-index: 2;
}

.ecosystem-badge {
display: inline-block;
background: linear-gradient(45deg, #00ffff, #ff00ff);
color: #000;
padding: 8px 20px;
border-radius: 25px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
}

.ecosystem-title {
font-size: 3rem;
font-weight: 800;
background: linear-gradient(135deg, #fff 0%, #00ffff 50%, #ff00ff 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
line-height: 1.2;
margin-bottom: 25px;
}

.ecosystem-subtitle {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
margin-bottom: 30px;
}

.ecosystem-network-img {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
border: 1px solid rgba(0, 255, 255, 0.3);
}

.ecosystem-node {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 30px;
height: 100%;
transition: all 0.4s ease;
backdrop-filter: blur(10px);
position: relative;
overflow: hidden;
}

.ecosystem-node::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
opacity: 0;
transition: opacity 0.4s ease;
z-index: 1;
}

.ecosystem-node:hover::before {
opacity: 1;
}

.ecosystem-node:hover {
transform: translateY(-10px);
border-color: rgba(0, 255, 255, 0.5);
box-shadow: 0 25px 50px rgba(0, 255, 255, 0.2);
}

.node-header {
position: relative;
margin-bottom: 25px;
}

.node-icon {
width: 80px;
height: 80px;
border-radius: 15px;
object-fit: cover;
border: 2px solid rgba(0, 255, 255, 0.3);
}

.node-pulse {
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
border: 2px solid #00ffff;
border-radius: 20px;
animation: pulse 2s infinite;
opacity: 0.6;
}

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

.node-title {
color: #fff;
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 15px;
position: relative;
z-index: 2;
}

.node-description {
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 20px;
position: relative;
z-index: 2;
}

.node-features {
list-style: none;
padding: 0;
margin: 0;
position: relative;
z-index: 2;
}

.node-features li {
color: rgba(255, 255, 255, 0.8);
font-size: 0.9rem;
margin-bottom: 8px;
display: flex;
align-items: center;
}

.node-features i {
color: #00ffff;
margin-right: 10px;
width: 16px;
}

.integration-visual {
position: relative;
margin-bottom: 30px;
}

.integration-img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 20px;
border: 1px solid rgba(0, 255, 255, 0.3);
}

.integration-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
}

.data-flow-animation {
position: relative;
width: 100px;
height: 100px;
}

.flow-particle {
position: absolute;
width: 8px;
height: 8px;
background: #00ffff;
border-radius: 50%;
animation: flowMotion 3s infinite linear;
}

.flow-particle:nth-child(2) {
animation-delay: 1s;
background: #ff00ff;
}

.flow-particle:nth-child(3) {
animation-delay: 2s;
background: #ffff00;
}

@keyframes flowMotion {
0% { transform: translate(0, 0) scale(1); opacity: 0; }
25% { transform: translate(40px, -20px) scale(1.5); opacity: 1; }
50% { transform: translate(80px, 10px) scale(1); opacity: 0.8; }
75% { transform: translate(40px, 40px) scale(0.8); opacity: 0.6; }
100% { transform: translate(0, 0) scale(1); opacity: 0; }
}

.integration-title {
color: #fff;
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 20px;
text-align: center;
}

.integration-text {
color: rgba(255, 255, 255, 0.8);
font-size: 1.1rem;
line-height: 1.7;
text-align: center;
margin-bottom: 30px;
}

.integration-stats {
display: flex;
justify-content: center;
gap: 60px;
margin-bottom: 40px;
flex-wrap: wrap;
}

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

.stat-number {
display: block;
font-size: 2.5rem;
font-weight: 800;
color: #00ffff;
line-height: 1;
}

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

.btn-ecosystem-explore {
display: inline-flex;
align-items: center;
background: linear-gradient(45deg, #00ffff, #ff00ff);
color: #000;
padding: 15px 35px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s ease;
border: none;
box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-ecosystem-explore:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
color: #000;
}

@media (max-width: 768px) {
.ecosystem-title {
font-size: 2.2rem;
}

.integration-stats {
gap: 30px;
}

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

.quantum-ecosystem-hub {
padding: 60px 0;
}

.ecosystem-network-img {
height: 250px;
}
}

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

.consultation-form-section::before {
  content: '';
  background: url('quantum-grid-pattern.jpg') repeat;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.consultation-form-section .container {
  position: relative;
  z-index: 2;
}

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

.form-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.consultation-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.benefit-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.benefit-text {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}

.form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-floating-group {
  margin-bottom: 30px;
}

.floating-field {
  position: relative;
}

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

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

.form-input:focus + .form-label,
.form-input:valid + .form-label {
  top: -10px;
  font-size: 12px;
  color: #667eea;
  background: white;
  padding: 0 8px;
}

.form-label {
  position: absolute;
  top: 20px;
  left: 50px;
  color: #6c757d;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label i {
  position: absolute;
  left: -30px;
  color: #667eea;
}

.field-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.form-input:focus ~ .field-underline {
  width: 100%;
}

.btn-submit-consultation {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  padding: 18px 30px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

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

.btn-quantum-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.quantum-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: quantumFloat 3s infinite ease-in-out;
}

.quantum-particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.quantum-particle:nth-child(2) {
  top: 60%;
  right: 30%;
  animation-delay: 1s;
}

.quantum-particle:nth-child(3) {
  bottom: 25%;
  left: 60%;
  animation-delay: 2s;
}

@keyframes quantumFloat {
  0%, 100% { transform: translateY(0) opacity(0.7); }
  50% { transform: translateY(-10px) opacity(1); }
}

.privacy-note {
  color: #6c757d;
  font-size: 13px;
  text-align: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.privacy-note i {
  color: #28a745;
}

.response-timeline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-title {
  color: white;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 600;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.timeline-step {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
}

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

.step-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.5;
}

.step-time {
  color: #667eea;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .form-title {
    font-size: 2.5rem;
  }
  
  .consultation-card {
    margin-bottom: 30px;
  }
  
  .timeline-steps {
    grid-template-columns: 1fr;
  }
}
