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

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

.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(0, 0, 0, 0.7) 0%, rgba(45, 45, 45, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  padding: 60px 0;
  z-index: 1;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .hero-content {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 500px;
    height: 80vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 20px 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* Block 2 */
.security-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    position: relative;
}

.security-features::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(102,126,234,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="20" fill="url(%23grid)"/></svg>');
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

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

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

.features-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(102,126,234,0.1);
    border: 1px solid rgba(102,126,234,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102,126,234,0.2);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card-text {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

.security-stats {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 50px rgba(102,126,234,0.1);
    border: 2px solid rgba(102,126,234,0.1);
    position: relative;
    overflow: hidden;
}

.security-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102,126,234,0.03), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #5a6c7d;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .features-title {
        font-size: 2.2rem;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .security-stats {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .features-title {
        font-size: 1.8rem;
    }
    
    .security-features {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

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

.automation-workflow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
  background-size: 50px 50px;
  animation: floatPattern 20s infinite linear;
}

@keyframes floatPattern {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-50px) translateY(-50px); }
}

.workflow-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.workflow-description {
  font-size: 1.125rem;
  color: #5a6c7d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.workflow-metrics {
  margin-bottom: 2.5rem;
}

.metric-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: #3498db;
  display: block;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.875rem;
  color: #7f8c8d;
  font-weight: 500;
}

.workflow-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.workflow-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
}

.workflow-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workflow-main-image {
  width: 100%;
  max-width: 450px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 450px;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 15px;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  opacity: 0.6;
}

.step-indicator.active {
  opacity: 1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
}

.step-indicator:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.step-label {
  font-size: 0.875rem;
  font-weight: 600;
}

.integration-showcase {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-top: 2rem;
}

.integration-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2.5rem;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.category-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #34495e;
  margin-bottom: 1.5rem;
}

.integration-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.integration-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.integration-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.automation-feature {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.automation-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.feature-mini-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.feature-mini-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.feature-mini-text {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.feature-mini-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: #5a6c7d;
  font-size: 0.9rem;
}

.feature-mini-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

@media (max-width: 768px) {
  .automation-workflow {
    padding: 60px 0;
  }
  
  .workflow-title {
    font-size: 2rem;
  }
  
  .metric-group {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .workflow-steps {
    grid-template-columns: 1fr;
  }
  
  .integration-grid {
    grid-template-columns: 1fr;
  }
  
  .integration-showcase {
    padding: 2rem 1rem;
  }
}

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

.order-form-section::before {
  content: '';
  background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

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

.form-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.3));
}

.form-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.contact-form {
  max-width: 100%;
}

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

.input-group {
  position: relative;
}

.form-label {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
  gap: 10px;
}

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

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.form-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.feature-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(96%) saturate(2089%) hue-rotate(213deg) brightness(101%) contrast(97%);
}

.feature-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border: none;
  border-radius: 16px;
  padding: 20px 40px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

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

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

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.submit-button:hover .button-glow {
  left: 100%;
}

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

.trust-indicators {
  text-align: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.trust-icon {
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(96%) saturate(2089%) hue-rotate(213deg) brightness(101%) contrast(97%);
}

.trust-content {
  text-align: left;
}

.trust-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.compliance-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.compliance-badge {
  width: 60px;
  height: 60px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.compliance-badge:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 40px 25px;
    margin: 20px;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .form-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    justify-content: flex-start;
    min-width: auto;
  }
  
  .trust-item {
    flex-direction: column;
    text-align: center;
  }
  
  .trust-content {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 1.75rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
  
  .submit-button {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}
