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

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

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
}

.hero-content::before {
    content: '';
    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) 100%);
    z-index: -1;
}

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

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

.hero-cta {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    color: white;
    background: linear-gradient(45deg, #3730a3, #6d28d9);
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

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

/* Block 2 */
.quantum-mesh-network {
      padding: 120px 0;
      background: linear-gradient(135deg, #0c0c1e 0%, #1a1a3a 50%, #2d1b69 100%);
      color: #ffffff;
      overflow: hidden;
      position: relative;
    }

    .quantum-mesh-network::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.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
      pointer-events: none;
    }

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

    .section-title {
      font-size: 3.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #00d4ff, #ff0080, #8000ff);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
      letter-spacing: -2px;
    }

    .section-subtitle {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.7);
      margin: 0;
      font-weight: 300;
    }

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

    .feature-highlight {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 50px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

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

    .feature-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 25px;
      color: #ffffff;
      line-height: 1.2;
    }

    .feature-description {
      font-size: 1.1rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 35px;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 40px 0;
    }

    .feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.9);
    }

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

    .cta-wrapper {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn-quantum, .btn-outline-quantum {
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .btn-quantum {
      background: linear-gradient(135deg, #00d4ff, #ff0080);
      color: white;
      border: none;
    }

    .btn-quantum:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
      color: white;
    }

    .btn-outline-quantum {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: white;
    }

    .btn-outline-quantum:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.6);
      color: white;
    }

    .visual-container {
      position: relative;
      z-index: 2;
    }

    .quantum-visualization {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
    }

    .main-visual {
      width: 100%;
      height: 450px;
      object-fit: cover;
      border-radius: 24px;
    }

    .floating-stats {
      position: absolute;
      top: 30px;
      right: 30px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .stat-item {
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 15px 20px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-value {
      font-size: 1.4rem;
      font-weight: 800;
      color: #00d4ff;
      margin-bottom: 5px;
    }

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

    .technology-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      position: relative;
      z-index: 2;
    }

    .tech-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .tech-card:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(0, 212, 255, 0.3);
      box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
    }

    .tech-icon-wrapper {
      margin-bottom: 25px;
    }

    .tech-icon {
      width: 60px;
      height: 60px;
      filter: brightness(0) saturate(100%) invert(67%) sepia(100%) saturate(6000%) hue-rotate(180deg);
    }

    .tech-title {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: #ffffff;
    }

    .tech-description {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 768px) {
      .quantum-mesh-network {
        padding: 80px 0;
      }

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

      .feature-highlight {
        padding: 30px;
        margin-bottom: 40px;
      }

      .feature-title {
        font-size: 2rem;
      }

      .cta-wrapper {
        flex-direction: column;
        align-items: stretch;
      }

      .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
      }

      .technology-grid {
        grid-template-columns: 1fr;
      }
    }

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

.neural-connectivity-ecosystem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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%);
  pointer-events: none;
}

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

.innovation-badge {
  display: inline-block;
  background: linear-gradient(45deg, #ff006e, #8338ec);
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.ecosystem-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #a8edea, #fed6e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ecosystem-intro {
  font-size: 1.2rem;
  color: #b8b8d4;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.neural-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 20px 40px rgba(0, 0, 0, 0.3);
}

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

.dashboard-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.status-indicators {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #b8b8d4;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

.indicator.warning .pulse-dot {
  background: #fbbf24;
}

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

.neural-visualization-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.neural-network-visual {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.overlay-metrics {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
}

.metric-cluster {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 12px 16px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-cluster.top-left { top: 20px; left: 20px; }
.metric-cluster.top-right { top: 20px; right: 20px; }
.metric-cluster.bottom-left { bottom: 20px; left: 20px; }
.metric-cluster.bottom-right { bottom: 20px; right: 20px; }

.metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #4ade80;
}

.metric-label {
  font-size: 0.8rem;
  color: #b8b8d4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.intelligence-panel {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: fit-content;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.panel-icon {
  width: 40px;
  height: 40px;
}

.panel-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.feature-block {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

.feature-visual {
  width: 24px;
  height: 24px;
}

.feature-name {
  font-weight: 600;
  color: #a8edea;
  font-size: 1rem;
}

.feature-detail {
  color: #b8b8d4;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

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

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ade80, #06d6a0);
  border-radius: 2px;
  animation: fillBar 2s ease-out forwards;
  width: 0;
}

.bar-fill[data-percent="96"] { animation-fill-mode: forwards; }
.bar-fill[data-percent="89"] { animation-fill-mode: forwards; }
.bar-fill[data-percent="92"] { animation-fill-mode: forwards; }

@keyframes fillBar {
  to { width: var(--percent, 85%); }
}

.feature-block:nth-child(1) .bar-fill { --percent: 96%; }
.feature-block:nth-child(2) .bar-fill { --percent: 89%; }
.feature-block:nth-child(3) .bar-fill { --percent: 92%; }

.action-controls {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.control-btn {
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.control-btn.primary {
  background: linear-gradient(45deg, #8338ec, #3a86ff);
  color: white;
}

.control-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(131, 56, 236, 0.3);
}

.control-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.control-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.evolution-timeline {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-header {
  text-align: center;
  margin-bottom: 40px;
}

.timeline-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.timeline-subtitle {
  color: #b8b8d4;
  font-size: 1rem;
}

.timeline-stages {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
  gap: 30px;
}

.timeline-stages::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, #4ade80, #06d6a0, #8338ec, #666);
  z-index: 1;
}

.stage {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stage-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid #666;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.stage.completed .stage-marker {
  background: linear-gradient(45deg, #4ade80, #06d6a0);
  border-color: #4ade80;
}

.stage.active .stage-marker {
  background: linear-gradient(45deg, #8338ec, #3a86ff);
  border-color: #8338ec;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 20px rgba(131, 56, 236, 0.5); }
  to { box-shadow: 0 0 30px rgba(131, 56, 236, 0.8); }
}

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

.stage-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.stage-description {
  font-size: 0.9rem;
  color: #b8b8d4;
  margin: 0;
}

.stage.future {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .ecosystem-title {
    font-size: 2.5rem;
  }
  
  .neural-dashboard {
    padding: 20px;
  }
  
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .status-indicators {
    width: 100%;
    justify-content: space-between;
  }
  
  .timeline-stages {
    flex-direction: column;
  }
  
  .timeline-stages::before {
    display: none;
  }
  
  .control-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .ecosystem-title {
    font-size: 2rem;
  }
  
  .neural-network-visual {
    height: 250px;
  }
  
  .metric-cluster {
    position: static;
    display: inline-block;
    margin: 5px;
  }
  
  .overlay-metrics {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    margin-top: -60px;
    position: relative;
    z-index: 3;
    border-radius: 0 0 15px 15px;
  }
}

/* Block 4 */
.premium-consultation-form {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.premium-consultation-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

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

.header-visual {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.consultation-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
}

.signal-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wave {
  position: absolute;
  border: 2px solid rgba(102, 126, 234, 0.4);
  border-radius: 50%;
  animation: pulse-wave 3s infinite ease-out;
}

.wave-1 {
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
}

.wave-2 {
  width: 130px;
  height: 130px;
  margin: -65px 0 0 -65px;
  animation-delay: 0.5s;
}

.wave-3 {
  width: 160px;
  height: 160px;
  margin: -80px 0 0 -80px;
  animation-delay: 1s;
}

@keyframes pulse-wave {
  0% {
    opacity: 1;
    transform: scale(0.3);
  }
  70% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.form-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.consultation-form-container {
  padding-right: 30px;
}

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

.input-group {
  position: relative;
}

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

.input-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 20px;
  z-index: 2;
  filter: brightness(0) saturate(100%) invert(47%) sepia(88%) saturate(1345%) hue-rotate(213deg) brightness(94%) contrast(86%);
}

.form-input {
  width: 100%;
  padding: 20px 20px 20px 60px;
  border: 2px solid #e1e5e9;
  border-radius: 16px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
}

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

.input-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 0 0 16px 16px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

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

.field-enhancement {
  margin-top: 8px;
  padding-left: 60px;
}

.enhancement-text {
  font-size: 0.9rem;
  color: #667eea;
  font-weight: 500;
}

.form-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

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

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

.submit-section {
  text-align: center;
}

.submit-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 20px 50px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

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

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

.privacy-notice {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #888;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-benefits {
  background: rgba(102, 126, 234, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  height: fit-content;
}

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

.benefits-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
}

.premium-badge {
  width: 30px;
  height: 30px;
}

.benefits-list {
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.benefit-item:hover {
  background: rgba(102, 126, 234, 0.08);
}

.benefit-visual {
  flex-shrink: 0;
}

.benefit-icon {
  width: 40px;
  height: 40px;
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.benefit-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.consultation-stats {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  padding: 25px;
  color: white;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stat-row:last-child {
  margin-bottom: 0;
}

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

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .consultation-form-container {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .form-wrapper {
    padding: 40px 30px;
  }
  
  .form-title {
    font-size: 2.2rem;
  }
  
  .form-features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .premium-consultation-form {
    padding: 50px 0;
  }
  
  .form-wrapper {
    padding: 30px 20px;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .form-subtitle {
    font-size: 1.1rem;
  }
  
  .submit-button {
    padding: 18px 40px;
    font-size: 1rem;
  }
  
  .stat-row {
    flex-direction: column;
    gap: 15px;
  }
}
