
/* Block 1 */
.hero-banner {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 80px;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(51, 65, 85, 0.75) 100%);
  width: 100%;
  height: 100%;
  z-index: -1;
  backdrop-filter: blur(1px);
}

.hero-content {
  z-index: 1;
  color: white;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #cbd5e1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

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

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

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

.hero-cta-btn:hover .btn-icon {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 60vh;
    min-height: 450px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

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

.ai-features-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(64, 224, 208, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
}

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #40e0d0, #8a2be2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  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);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #40e0d0, transparent);
  transition: left 0.8s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(64, 224, 208, 0.2);
  border-color: rgba(64, 224, 208, 0.3);
}

.primary-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(138, 43, 226, 0.1));
}

.highlight-card {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(64, 224, 208, 0.15));
}

.feature-image-container {
  position: relative;
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-image {
  transform: scale(1.05);
}

.feature-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.feature-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantum-icon {
  color: #40e0d0;
  font-size: 2rem;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.feature-content {
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #40e0d0;
}

.feature-description {
  color: #b0b0b0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.feature-benefits li {
  padding: 8px 0;
  color: #d0d0d0;
  position: relative;
  padding-left: 25px;
}

.feature-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #40e0d0;
  font-weight: bold;
}

.feature-cta {
  background: linear-gradient(135deg, #40e0d0, #8a2be2);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(64, 224, 208, 0.4);
}

.feature-stats {
  display: flex;
  gap: 30px;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #40e0d0;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #a0a0a0;
}

.progress-indicators {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.progress-label {
  min-width: 120px;
  font-size: 0.9rem;
  color: #b0b0b0;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #40e0d0, #8a2be2);
  border-radius: 4px;
  transition: width 1s ease-in-out;
}

.progress-value {
  min-width: 50px;
  text-align: right;
  font-weight: 600;
  color: #40e0d0;
}

.quantum-metrics {
  display: flex;
  align-items: center;
  gap: 25px;
}

.metric-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #40e0d0, #8a2be2, #40e0d0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.metric-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0f0f23;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #40e0d0;
}

.metric-unit {
  font-size: 0.8rem;
  color: #a0a0a0;
}

.quantum-details {
  flex: 1;
}

.quantum-details p {
  color: #b0b0b0;
  margin: 0;
}

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

.innovation-timeline {
  display: inline-flex;
  gap: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.timeline-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.timeline-item.active .timeline-marker {
  background: linear-gradient(135deg, #40e0d0, #8a2be2);
  box-shadow: 0 0 20px rgba(64, 224, 208, 0.5);
}

.timeline-content {
  text-align: center;
}

.timeline-year {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #40e0d0;
  margin-bottom: 5px;
}

.timeline-event {
  font-size: 0.9rem;
  color: #a0a0a0;
}

.timeline-item.active .timeline-event {
  color: white;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .primary-card {
    grid-column: span 1;
  }
  
  .feature-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .quantum-metrics {
    flex-direction: column;
    text-align: center;
  }
  
  .innovation-timeline {
    flex-direction: column;
    gap: 20px;
  }
  
  .progress-item {
    flex-direction: column;
    text-align: center;
  }
  
  .progress-label {
    min-width: auto;
    margin-bottom: 10px;
  }
}

/* Block 3 */
.smart-automation-hub {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.hub-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

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

.hub-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1a202c, #2d3748);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hub-description {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.7;
  font-weight: 400;
}

.header-visual {
  position: relative;
}

.hub-hero-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

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

.floating-metrics {
  position: absolute;
  top: 20px;
  right: -20px;
}

.metric-bubble {
  background: white;
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
}

.primary-metric {
  animation-delay: 0s;
}

.secondary-metric {
  animation-delay: 1.5s;
}

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

.metric-label {
  display: block;
  font-size: 12px;
  color: #718096;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #667eea;
  margin-top: 5px;
}

.automation-showcase {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  margin-bottom: 80px;
}

.showcase-navigation {
  display: flex;
  background: #f7fafc;
  padding: 0;
  border-bottom: 1px solid #e2e8f0;
}

.nav-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  color: #718096;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-tab i {
  font-size: 18px;
}

.nav-tab:hover {
  background: #edf2f7;
  color: #4a5568;
}

.nav-tab.active-tab {
  background: white;
  color: #667eea;
  border-bottom: 3px solid #667eea;
}

.showcase-content {
  min-height: 600px;
}

.content-panel {
  display: none;
  padding: 60px;
}

.content-panel.active-panel {
  display: block;
}

.panel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.panel-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.panel-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 40px;
}

.feature-highlights {
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.highlight-icon {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.highlight-text p {
  font-size: 0.95rem;
  color: #718096;
  margin: 0;
}

.panel-action-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.panel-action-btn:hover {
  transform: translateY(-2px);
}

.panel-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.workflow-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.stat-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  flex: 1;
}

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

.stat-description {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

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

.integration-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.integration-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.integration-item p {
  font-size: 0.9rem;
  color: #718096;
}

.analytics-dashboard {
  background: #f7fafc;
  border-radius: 15px;
  padding: 30px;
}

.dashboard-widget h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.chart-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.forecast-accuracy {
  background: #48bb78;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.dashboard-insights {
  margin-top: 25px;
}

.insight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.insight-item.urgent {
  background: #fed7d7;
  color: #c53030;
}

.insight-item.positive {
  background: #c6f6d5;
  color: #2f855a;
}

.insight-item.neutral {
  background: #e2e8f0;
  color: #4a5568;
}

.security-features {
  background: #f7fafc;
  border-radius: 15px;
  padding: 30px;
}

.security-layer {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}

.security-image {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

.layer-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.layer-info p {
  color: #718096;
  margin-bottom: 15px;
}

.security-metric {
  background: white;
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
}

.security-certifications {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cert-badge {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.automation-benefits {
  margin-bottom: 80px;
}

.benefits-header {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.benefits-header p {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

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

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon-container {
  background: linear-gradient(45deg, #667eea, #764ba2);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.benefit-icon {
  color: white;
  font-size: 24px;
}

.benefit-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
}

.benefit-stat {
  margin-bottom: 20px;
}

.stat-primary {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #667eea;
}

.stat-secondary {
  display: block;
  font-size: 0.95rem;
  color: #718096;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-card p {
  color: #4a5568;
  line-height: 1.6;
}

.call-to-action-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 25px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: white;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.primary-cta-btn {
  background: white;
  color: #667eea;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.secondary-cta-btn {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid white;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.primary-cta-btn:hover,
.secondary-cta-btn:hover {
  transform: translateY(-2px);
}

.cta-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .hub-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hub-title {
    font-size: 2.5rem;
  }
  
  .showcase-navigation {
    flex-direction: column;
  }
  
  .nav-tab {
    text-align: left;
    justify-content: flex-start;
  }
  
  .panel-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .content-panel {
    padding: 30px;
  }
  
  .integration-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .call-to-action-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .floating-metrics {
    position: static;
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
}

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

.order-form-section::before {
  content: '';
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -400px;
  right: -400px;
  z-index: 1;
}

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

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

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
  line-height: 1.2;
}

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

.form-container {
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

.form-content {
  padding: 50px;
}

.form-benefits {
  margin-bottom: 40px;
}

.benefits-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #4a5568;
}

.benefit-icon {
  color: #48bb78;
  font-size: 18px;
  flex-shrink: 0;
}

.trust-indicators {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.trust-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
}

.trust-item span {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
}

.order-form {
  padding: 50px;
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 16px;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  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);
  transform: translateY(-2px);
}

.form-input::placeholder {
  color: #a0aec0;
}

.form-actions {
  margin-top: 32px;
}

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

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

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.submit-btn:hover .btn-shimmer {
  left: 100%;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #718096;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.success-stories {
  grid-column: 1 / -1;
  padding: 50px;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
}

.stories-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.story-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.story-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.story-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.story-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.9;
}

.story-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.metric {
  background: rgba(102, 126, 234, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .form-title {
    font-size: 2rem;
  }
  
  .form-container {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }
  
  .form-content,
  .order-form,
  .success-stories {
    padding: 30px;
  }
  
  .story-cards {
    grid-template-columns: 1fr;
  }
  
  .trust-indicators {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .order-form-section {
    padding: 40px 0;
  }
  
  .form-content,
  .order-form {
    padding: 20px;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
}
