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

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

.hero-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(13, 110, 253, 0.85) 0%, rgba(108, 117, 125, 0.75) 100%);
  z-index: 2;
}

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

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

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

.hero-actions {
  margin-top: 2rem;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
  color: #ffffff;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
  background: linear-gradient(135deg, #0b5ed7 0%, #5a0ecc 100%);
}

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

@media (max-width: 768px) {
  .hero-banner {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .btn-primary-hero {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

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

/* Block 2 */
.ai-powered-insights {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

.ai-powered-insights::before {
  content: '';
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  top: -400px;
  right: -400px;
  z-index: 1;
}

.ai-powered-insights::after {
  content: '';
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -300px;
  left: -300px;
  z-index: 1;
}

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

.insights-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(13, 110, 253, 0.15);
  transition: transform 0.4s ease;
}

.insights-image:hover {
  transform: translateY(-8px);
}

.floating-metrics {
  position: relative;
  margin-top: -60px;
  z-index: 3;
}

.metric-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 24px;
  margin: 16px;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: floatAnimation 6s ease-in-out infinite;
}

.metric-card-secondary {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  animation-delay: -2s;
}

.metric-card-accent {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  animation-delay: -4s;
}

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

.metric-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.metric-data {
  display: flex;
  flex-direction: column;
  color: white;
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.metric-label {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 4px;
}

.insights-content {
  z-index: 2;
  position: relative;
  padding-right: 40px;
}

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

.insights-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.insights-description {
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 48px;
}

.insights-features {
  margin-bottom: 48px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
}

.feature-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

.insights-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-insights-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
}

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

.insights-learn-more {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.insights-learn-more:hover {
  color: #764ba2;
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .ai-powered-insights {
    padding: 80px 0;
  }
  
  .insights-content {
    padding-right: 0;
    margin-top: 60px;
  }
  
  .insights-title {
    font-size: 36px;
  }
  
  .floating-metrics {
    margin-top: 20px;
  }
  
  .metric-card {
    margin: 8px;
    padding: 20px;
  }
  
  .insights-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .insights-title {
    font-size: 28px;
  }
  
  .insights-description {
    font-size: 16px;
  }
  
  .feature-item {
    gap: 16px;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  
  .metric-value {
    font-size: 24px;
  }
  
  .metric-label {
    font-size: 12px;
  }
}

/* Block 3 */
.collaboration-ecosystem {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.collaboration-ecosystem::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ecosystem-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ecosystem-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.collaboration-showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
}

.showcase-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

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

.feature-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: float 3s ease-in-out infinite;
}

.feature-bubble-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.feature-bubble-2 {
  top: 50%;
  right: 15%;
  animation-delay: 1s;
}

.feature-bubble-3 {
  bottom: 25%;
  left: 20%;
  animation-delay: 2s;
}

.bubble-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1e293b;
}

.bubble-content i {
  color: #6366f1;
  font-size: 16px;
}

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

.team-benefits {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.benefit-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.benefit-content p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.ecosystem-stats {
  margin: 80px 0;
  padding: 60px 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #6366f1;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ecosystem-cta {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  color: white;
}

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

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

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

.btn-ecosystem-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ecosystem-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

.btn-ecosystem-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ecosystem-secondary:hover {
  background: white;
  color: #1e293b;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .ecosystem-title {
    font-size: 2.5rem;
  }
  
  .collaboration-showcase {
    margin-bottom: 60px;
  }
  
  .showcase-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .collaboration-ecosystem {
    padding: 60px 0;
  }
  
  .ecosystem-title {
    font-size: 2rem;
  }
  
  .ecosystem-subtitle {
    font-size: 1.1rem;
  }
  
  .benefit-card {
    flex-direction: column;
    text-align: center;
  }
  
  .ecosystem-cta h3 {
    font-size: 1.8rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-ecosystem-primary,
  .btn-ecosystem-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

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

.order-form-section::before {
  content: '';
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  opacity: 0.05;
  top: -150px;
  right: -150px;
  transform: rotate(45deg);
}

.form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
}

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

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

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

.form-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.order-form {
  max-width: 480px;
  margin: 0 auto;
}

.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  font-size: 15px;
}

.form-input {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  font-size: 16px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  position: relative;
}

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

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

.form-input:focus + .input-highlight {
  width: 100%;
}

.form-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 40px 0;
  padding: 24px;
  background: #f8f9ff;
  border-radius: 16px;
  border-left: 4px solid #667eea;
}

.feature-check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2c3e50;
  font-weight: 500;
}

.feature-check i {
  color: #28a745;
  font-size: 18px;
}

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

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

.button-text {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.button-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.submit-button.loading .button-text {
  opacity: 0;
}

.submit-button.loading .button-loader {
  opacity: 1;
}

.form-disclaimer {
  text-align: center;
  font-size: 13px;
  color: #6c757d;
  line-height: 1.5;
}

.form-disclaimer a {
  color: #667eea;
  text-decoration: none;
}

.form-disclaimer a:hover {
  text-decoration: underline;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e9ecef;
}

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

.trust-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.trust-item span {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
}

.benefits-panel {
  background: white;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.panel-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 32px;
  text-align: center;
}

.benefit-list {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.benefit-icon-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.benefit-content p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.pricing-highlight {
  background: linear-gradient(135deg, #f8f9ff, #e8f2ff);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  border: 2px solid rgba(102, 126, 234, 0.1);
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 1.2rem;
  color: #6c757d;
  font-weight: 500;
}

.price-details p {
  color: #6c757d;
  margin-bottom: 16px;
  font-size: 15px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-features span {
  font-size: 14px;
  color: #28a745;
  font-weight: 500;
}

@media (max-width: 992px) {
  .benefits-panel {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .form-wrapper,
  .benefits-panel {
    padding: 40px 30px;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .trust-indicators {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .benefit-item {
    gap: 16px;
  }
  
  .benefit-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
